Rabu, Januari 22, 2014

TM net / Telekom : ADSL-INNATECH-W7100N

Login: tmadmin
Pass : Adm@****

Nota : **** adalah 4 digit akhir fizikal CPE MAC ID


Linux : MAC address gateway / router / modem

maria@ozawa:~$ ip neigh

Jumaat, Januari 17, 2014

Linux / CentOS 6 : owncloud

Langkah 1 : Pasang pakej EPEL yang terkini melalui Fedora Project1
#  wget http://ftp.riken.jp/Linux/fedora/epel/6/i386/epel-release-6-8.noarch.rpm
#  rpm -i epel-release-6-8.noarch.rpm

Langkah 2 : Masukan owncloud terkini kedalam repo
http://owncloud.org/install/
# wget http://download.opensuse.org/repositories/isv:ownCloud:community/CentOS_CentOS-6/isv:ownCloud:community.repo

Langkah 3 : Pasangkan owncloud
# yum install owncloud

1. https://fedoraproject.org/wiki/EPEL

Khamis, Januari 16, 2014

Pemasaran : Strategi

(1) Tetapkan Sasaran Pelanggan

[+] Lakukan kajian dan ambil tahu tentang umur, jantina dan latar belakang seperti hobi serta kerjaya.

[+] Lakukan kajian dengan membuat semakan pada insight page, google trends, google adwords, survey atau berbincang dengan rakan IM lain.

(2) Kaji Masalah Pelanggan


[+] Ambil contoh masalah kegemukan pelanggan yang bekerja seperti mereka tiada masa bersenam. Jadi, kita boleh jual produk kurus untuk memudahkan dan tarik perhatian mereka.

[+] Jangan lupa sertakan DISKAUN dah HADIAH PERCUMA sekali-sekala.

[+] Contoh mesej pemasaran yang boleh anda gunakan :

"Cara pelik tampil kurus tanpa bersenam dalam 2 minggu"

(3) Berikan Pek Percubaan Percuma

[+] Cara ini boleh digunakan untuk produk makanan ataupun kesihatan.

[+] Anda perlu letakkan syarat terlebih dahulu kepada prsopek untuk mewujudkan win-win situations seperti "anda perlu berikan saya nombor telefon 2 orang rakan anda untuk saya berikan pek percubaan ini secara percuma dengan segera".

[+] Kelebihan :

==> Luaskan kolam pelanggan
==> Jimatkan kos pengiklanan

(4) Berikan Kejutan Hadiah

[+] Di sini, anda dapat lihat betapa pentingnya mengumpul data pelanggan.

[+] Anda sebagai peniaga digalakkan memberikan kejutan hadiah ketika musim perayaan, hari lahir dan masa-masa yang difikirkan sesuai. Poskan hadiah berupa baucar atau pek percubaan produk baru anda.

[+] Kelebihan :

==> Anda lebih dihargai dan diingati
==> Perkhidmatan anda disebarkan dari mulut ke mulut dengan lebih cep

Pemasaran : Facebook

================================
1) Update Status Sekurang-kurangnya 3 Kali Sehari
================================

✓ Jika rajin, boleh update hingga 6 kali sehari.
✓ Waktu mujarabnya adalah di antara 9-10 pagi, 12-2 petang atau 6-8 malam.
✓ Pastikan status anda memberi manfaat terhadap bisnes orang lain.
✓ Pelbagaikan teknik penulisan status seperti softselling dan hardselling.
✓ Wujudkan pertandingan LIKE, SHARE, KOMEN agar post anda jadi lebih viral.
✓ Boleh juga sertakan link affiliate di akhir post tersebut (mana tahu boleh sangkut sales kan?)



===============================
2) Upload Gambar Menarik Berkaitan Produk Anda
===============================

✓ Dengan adanya gambar yang menarik, prospek akan lebih berminat untuk mengetahui lebih lanjut atau membeli terus produk anda dengan sekali pandang sahaja.
✓ Jangan letakkan harga produk terlebih dahulu.
✓ Jika prospek berminat, minta mereka komen “PM”. Di PM nanti barulah anda closing mereka kaw-kaw.
✓ Berikan juga tawaran yang tidak dapat ditolak (rebat, diskaun, freegift, jaminan pemulangan wang 100%).
✓ Jangan lupa ! Tonjolkan juga keunikan bisnes anda.



=========================
3) Tawaran Sertai Group Premium Anda
=========================

✓ Group premium boleh jade group pemasaran, group affiliate ataupun group dropship.
✓ Sertakan testimoni ahli group yang mengatakan group anda itu sangat membantu bisnes mereka.
✓ Letakkan syarat seperti “sanggup labur wang RMxx” untuk sertai group tersebut.
✓ Berikan juga beberapa freegift seperti ebook pemasaran Facebook jika mereka minat untuk sertai group anda.

Rabu, Januari 15, 2014

Hacked : myfren.id1945.com

Saje jer kacau projek member..hehe jangan marah yer

Ahad, Januari 12, 2014

PHP : Time zone Asia / Kuala Lumpur

<?php
date_default_timezone_set('Asia/Kuala_Lumpur');
echo date('Y-m-d H:i:s');
?>

Linux \ Unix : Listen port

awek@bilik57 ~ $ netstat -anltp | grep "LISTEN"

Sabtu, Januari 11, 2014

Geolocation Malaysia

Country: Malaysia
WOEID: 23424901
Location (lat/lon): 3.945150, 114.401657
Bounding Box:
NE 7.583780, 119.448433
SW 0.663640, 98.935059

Rujukan :
http://isithackday.com/geoplanet-explorer/index.php?woeid=23424901

Jumaat, Januari 10, 2014

C++ : Linear search a.k.a Sequential search (Brute force)

#include <iostream>

using namespace std;

// Size of array nums
const int Element=10;
//Function prototype
int linearSearch(int[], int, int);

int main()
{
 // Listing of element in array nums
 int nums[Element]={5,10,22,32,45,67,73,98,99,101};
 int item,location;

 cout<<"Enter the item you are searching for: ";
 cin>>item;

 // Calling  and passing parameter to function linearSearch()
 location=linearSearch(nums,Element,item);

 // Passing function result back to main()
    if(location> -1)
        cout<<"The item was found at index location "<<location<<endl;
    else
        cout<<"The item was not found in the array\n";
 return 0;
}

// compare key to every element of array until location is
// found or until end of array is reached. Return subscript of
// element if key is found or -1 if key not found
int linearSearch(int list[ ],int size,int key) {
 int i;
  for(i=0;i<size;i++) {
   if (list[i]==key)
   return  i;
  } return -1;
}

C++ : Bubble Sort ( For loop algorithm)

#include<iostream>
using namespace std;

void bubble(int arr[],int size);

int main(void){
    int x[]={4,2,1,3};
    bubble(x,4);

    for(int i = 0; i < 4; i++) {
        cout << x[i] << " ";
    }
return 0;
}

void bubble(int a[], int s){
    for(int i=1;i<s;i++){
        for(int j=0;j<(s-i);j++){
            if(a[j] > a[j+1]){
                int swap = a[j];
                a[j] = a[j+1];
                a[j+1]= swap;

            }
        }
    }
}

Algoritma:
Given array a[1…..n] in ascending order.
    1.   begin

    2.    For i=1 to n-1 do
            2.1   For j = 1 to i do
                     2.1.1   if (a[j]  >  a[j+1] then swap a[j] and a[j+1]
    3.     end

C++ : Bubble sort

#include <iostream>
using namespace std;

void bubbleSort(int x[],int n);

int main()
{

    int x[]={2,6,5,3,7,4,1,8,9,5};

    // Display before sort
    cout<<"Before sort:\n";
    for(int i = 0; i < 10; i++) {
        cout << x[i] << " ";
    }

    // Sort the given array
    bubbleSort(x,10);

    // Display the sorted array
    cout<<"\n\nAfter sort:\n";
    for(int i = 0; i < 10; i++) {
        cout << x[i] << " ";
    }
}

void bubbleSort (int x[],int n) {
    int temp, flag = 1;

    while(flag) {
        flag = 0;

        for(int a = 0; a < (n - 1); a++) {
            if(x[a] > x[a + 1]) {
                flag = 1;

                temp = x[a];
                x[a] = x[a + 1];
                x[a + 1] = temp;
            }
        }
    }
}

Output:
Before sort:
2 6 5 3 7 4 1 8 9 5

After sort:
1 2 3 4 5 5 6 7 8 9

Isnin, Januari 06, 2014

New Strait Time - 06 January 2014 : Trend ICT careers still hot

By Rozana Sani - FANCY a career in ICT but unsure of whether there is a bright future in the field? There is and prospects in ICT are expected to continue to be rosy.

After all, the industry has been a significant contributor in efforts to develop the country into a high-income-based economy. With that, more high skilled talents are needed, especially in the newly developing and emerging areas of ICT, such as big data, cloud computing and embedded systems — in tandem with key trends in the industry.

“With more world-class ICT companies setting up businesses and building their regional facilities in Malaysia, coupled with local champions who are growing to be world-class players in their own right, the demand for ta-lents who are highly skilled and certified will continue to rise, and this is something that we need to address swiftly and holistically,” says Muhammad Imran Kunalan Abdullah, talent head at the Multimedia Development Corporation (MDeC) — the outfit responsible for the growth of the ICT industry in the country.

He says MSC Malaysia, the national ICT initiative driven by MDeC, continues to play a vital role in talent development for the ICT industry by forging relationships with key industry players and institutions of higher learning (IHLs) in the country to increase interest and participation in the industry.

“The ICT industry is rather unique. The pace of technology changes is very rapid and IHLs will continuously face a catching-up game with the industry demand. Hence, we will always see the need for specific interventions based on skills and competencies required by industry at certain point of time. These interventions are in the form of up-skilling training or certification training to specific needs of the industry. The MSC Malaysia MyProCert and MyUniAlliance training and international certification programmes is one of many ongoing intiatives led by MDeC which seeks to address this skill gap.”


ENCOURAGE USE OF ICT
Muhammad Imran stresses that there is a need to equip graduates across all disciplines and fields with ICT skills.“About five million Malaysians will be entering the workforce over the next few years and they need to be prepared to face the new work environment and go beyond being just casual users of technology. To achieve that, there must be encouragement on the use of ICT as a tool with efforts to push for minimum hours of ICT in education, be it in the form of labs or practical training.”He notes that the focus is now on how to institutionalise ICT use further in schools so it can benefit more young people, especially those from outside urban hotspots where parents may not be aware of or have no access to ICT.

“We have to improve on institutionalising such training in schools from the start to avoid increasing the digital divide,” he says.

On market trends, the MSC Malaysia MSC Malaysia Talent Supply-Demand Study 2010-2013 report cites that 90 per cent of companies hired workers with at least one to five years of experience, with only 10 per cent of companies hiring fresh graduates. The study was conducted with more than 1,000 companies and 133 faculties in IHLs, in addition to secondary research and consultation with industry experts.

Current skill gaps highlighted by the study saw software development (42 per cent) skills topping the list followed by database (23 per cent) and networking and security (18 per cent).
To that end, IHLs must adapt their curricula accordingly with more emphasis on practical industry experience, says Muhammad Imran.

Additionally, the e-leadership capabilities also need to be addressed in tandem with the maturity level of the ICT organisation as well as the progress the organisation may be going through especially the small and medium enterprises (SMEs).
“This type of organisation tends to focus on the technical capabilities that is necessary for the successful running of its day to day operations. They need to look at the other management capability development aspects if they want to grow their business. So, the emphasis on e-leadership is rather timely if we wish to see the local ICT companies grow and compete in the global arena since ICT has made the world borderless.”

Muhammad Imran also notes that in the shared services and outsourcing industry, the country is taking various measures to move beyond the business process outsourcing.

“Our strategy is to move up the value chain and concentrate on high value Knowledge Process Outsourcing (KPO)-type of services, in line with the country’s vision to be a sustainable, highly-competitive, high-value and high-income developed nation by 2020,” he says.MSC Malaysia has developed suitable niches within the local ICT industry and inspired local companies to become leaders in them, he adds.“The creative and animation industry is one where Malaysia is a newcomer, but has grown exponentially over the past few years, with many of our locally developed animated programmes showing all over the world, from China and Indonesia to UK and the Middle East,” he says. “All in all, we observed that demand generally exceeds supply in almost all areas. This is not surprising as the trend remains true worldwide and not just limited to Malaysia. What is more interesting is that the demand for experienced ICT personnel has grown noticeably and has exceeded the demand for fresh graduates. This trend also holds for the rest of the world. For example, Europe expects to face shortages for e-leaders (organisational leaders who are apt at business as well as ICT skills) in the near to medium-term.”

And what are the job trends he sees moving forward? “Job trends will always follow the technology trends,” he says, citing Gartner’s top 10 technology trends for 2014. “They are in line with the general trend that we have observed in 2013, i.e. Cloud and Big Data, Mobile and Mobility, Internet of Things, and 3D printing. So there will be increasing demand for engineers, programmers and technicians to support these emerging trends and technologies.”

Gartner’s top ten technology trends for 2014:

1. Mobile Device Diversity and Management
2. Mobile Apps and Applications
3. The Internet of Everything
4. Hybrid Cloud and IT as Service Broker
5. Cloud/Client Arhitecture
6. The Era of Personal Cloud
7. Software-Defined Anything
8. Web-Scale IT
9. Smart Machines
10. 3D Printing

Sumber :
Rozana Sani (2014). TRENDS: ICT careers still hot. The Electronic Text Center. Retrieved January 6, 2014, from New Strait Time website: http://www.nst.com.my/life-times/tech/trends-ict-careers-still-hot-1.455618