This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* read more on : | |
* https://developers.google.com/blogger/docs/3.0/getting_started | |
* | |
*/ | |
$key["server"] = "YOUR_BLOGGER_API_KEY"; | |
$blogId = "YOUR_BLOG_API"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC | |
"-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>jqlock usage</title> | |
<meta name="author" content="[email protected]" /> | |
<script src="jquery-1.7.1.min.js"></script> | |
<script src="jqlock.js"></script> | |
<script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android | |
droid = android.Android() | |
title = 'DHCP Client List' | |
droid.dialogCreateAlert(title) | |
clients = [] | |
fp = open("/data/misc/dhcp/dnsmasq.leases","r") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; | |
class MyFrame extends JFrame { | |
private JButton btnTutup = new JButton("Tutup"); | |
private JButton btnTambah = new JButton("Tambah"); | |
private JTextField txtA = new JTextField(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; | |
import java.util.*; | |
class Combo extends JFrame{ | |
private JLabel lbl1 = new JLabel("Bilangan : "); | |
private JTextField tBil = new JTextField(); | |
private JButton btnTambah = new JButton("Tambah"); | |
private DefaultComboBoxModel ganjil = new DefaultComboBoxModel(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.... | |
private DefaultComboBoxModel ganjil = new DefaultComboBoxModel(); | |
private JComboBox cmb = new JComboBox(ganjil); | |
private DefaultListModel genap = new DefaultListModel(); | |
private JList list = new JList(genap); | |
.... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
header("content-type: text/plain"); | |
for($i=0;$i<=5;$i++){ | |
$items[] = array( | |
"title"=>"Simple Title #$i", | |
"image"=>"http://www.geetarz.org/reviews/clapton/dance-of-the-bell.jpg", | |
"description"=>"Lorem ipsum dolor sit amet, consectetur adipisicing elit, | |
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class frmGuiFetch { | |
public static void main(String[] args) | |
{ | |
guiFetch f = new guiFetch(); | |
f.setVisible(true); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# conky configuration | |
# http://arbo77.com | |
############################################## | |
# Settings | |
############################################## | |
background yes | |
use_xft yes | |
xftfont DejaVu Sans:size=7 | |
xftalpha 1 | |
update_interval 1.0 |
OlderNewer