Feeds:
Posts
Comments

Archive for the ‘Programming’ Category

Bagi yang sering men-develop sistem aplikasi pertama kali yang harus dilakukan adalah merancang / mendisain struktur database setelah menganalisa sistem yang akan dibuat. Disini saya akan menjelaskan merancang struktur database  serta men-generate kode SQL untuk membuat tabel dengan mudah.
Untuk tidak memperpanjang lebar mukadimah nya, saya akan langsung aja menjelaskannya. Hal-hal / software yang dibutuhkan (yang [...]

Read Full Post »

 Sering kali kita merasa terganngu oleh kehadiran iklan yang ada pada suatu situs. Hal ini bisa menyebabkan loading page suatu halaman tersebut menjadi lambat. Kebanyakan dari kita ketika mengunjungi suatu situs hanya ingin melihat suatu content berita nya saja, tanpa harus melihat iklan nya. Tanpa banyak basa-basi  disini saya akan berikan tips untuk menghilangkan advertising [...]

Read Full Post »

Looping in C#

Source Code :
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Collections;
// Intro to C#.net
// C# Basic
// Comment 1 Line
/*
Comment 1 Paraghrap (Multiple Line)
*/
namespace Basic_CSharp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnWhile_Click(object sender, EventArgs e)
{
int tempValue = 0;
lblWhile.Text = “”;
while (tempValue < 10)
{
lblWhile.Text = lblWhile.Text + “Loop Value: ” + tempValue + “\n”;
tempValue++; [...]

Read Full Post »

Technorati Tags: Shortcuts in IE7,IE7,Keyboard Shortcuts,Browser
 
Keyboard shortcuts

Open links in a new tab in the background

CTRL+click

Open links in a new tab in the foreground

CTRL+SHIFT+click

Open a new tab in the foreground

CTRL+T

Open a new tab from the Address bar

ALT+ENTER

Open a new tab from the search box

ALT+ENTER

Open Quick [...]

Read Full Post »

Systems administrators among Indonesia’s most wanted
By Victoria Ho, ZDNet Asia
Thursday, June 05, 2008 11:46 AM
 
Systems administrators are among the most sought-after IT workers in Indonesia.
According to the ZDNet Asia IT Salary Benchmark Survey 2008, those with systems administration skills pulled the highest average salary, at 78,606,878 rupiah (US$8,332) per annum, compared to the other [...]

Read Full Post »

Older Posts »