This file contains hidden or 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> | |
| <html> | |
| <head> | |
| <title>Example</title> | |
| <style> | |
| html, body { | |
| height: 100%; | |
| width: 100%; | |
| overflow: hidden; | |
| } |
This file contains hidden or 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> | |
| <html> | |
| <head> | |
| <title>Example</title> | |
| <style> | |
| html, body { | |
| height: 100%; | |
| width: 100%; | |
| overflow: hidden; | |
| } |
This file contains hidden or 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
| CREATE TABLE IF NOT EXISTS `buku` ( | |
| `id` int auto_increment, | |
| `kode` int(10) NOT NULL, | |
| `nama` varchar(30) NOT NULL, | |
| `waktu` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', | |
| `bts` varchar(35) NOT NULL, | |
| `daerah` varchar(50) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
This file contains hidden or 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
| var | |
| Jenis_Kelamin : String; | |
| Tinggi : integer; | |
| Usia : integer; | |
| Begin | |
| if Jenis_Kelamin = 'pria' then | |
| if tinggi >= 170 and usia >= 18 then | |
| Write("diterima"); | |
| Else |
This file contains hidden or 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
| Ext.IframeWindow = Ext.extend(Ext.Window, { | |
| onRender: function() { | |
| this.bodyCfg = { | |
| tag: 'iframe', | |
| src: this.src, | |
| cls: this.bodyCls, | |
| style: { border: '0px none' } | |
| }; | |
| Ext.IframeWindow.superclass.onRender.apply(this, arguments); | |
| } |
This file contains hidden or 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> | |
| <html> | |
| <head> | |
| <title>Example</title> | |
| <style> | |
| html, body { | |
| height: 100%; | |
| width: 100%; | |
| } | |
| body { |
This file contains hidden or 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
| http://www.flaminglunchbox.net/curvy |
This file contains hidden or 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
| Ext.override(Ext.form.TextField, { | |
| getValue: function(){ | |
| var val = this.getRawValue(); | |
| if (this.name == 'txtBiayaLain' | |
| || this.name == 'txtTotalPajak' | |
| || this.name == 'txtTotalSetelahPajak' | |
| || this.name == 'txtUangMuka' | |
| || this.name == 'txtSaldoTerhutang') { | |
| val = String(val).replace(',', '').split('.'); | |
| val = val[0]; |
This file contains hidden or 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
| select | |
| KIRAAN.KODE AS KODEAKUN | |
| , KIRAAN.NOSUBKLASIFIKASI | |
| , KIRAAN.NAMA AS NAMAAKUN | |
| , KIRAAN.ALIASNAMA | |
| , KIRAAN.CHECKING | |
| , KLAS.NOKLASIFIKASI | |
| from | |
| KIRAAN | |
| , SUBKLAS |
This file contains hidden or 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
| $(document).ready(function() { | |
| function get(p) { | |
| return "https://www.googleapis.com/blogger/v3/blogs/2055792886157683837/" + p +"?key=AIzaSyAYl8yYviScKY6dsHA3qjK3jyKV9_83HP8"; | |
| } | |
| $.ajax({ | |
| url:get("posts/6467499583973436184"), | |
| dataType: "jsonp", | |
| success: function(data, textStatus, jqXHR) { | |
| console.log(data); | |
| } |