{ Berbagi, Menulis, Dan Mengajar } Ilmu… » Archive
SNS Info Order
1. Samsung LaserJet ML 2166 user @750.000, Dist @850.ooo 2. Printer Epson L210 User @1.840.000, Dist@ 1.670.000 3. Hardisk 2 TeraByte,User @1.650.000, Dist @1.490.000 4. Hardisk Sata 500Gbyte, user @ 650, dist @550 … Read entire article »
Filed under: 7. Operating System
Soal UTS Komputer Graphics
SOAL-UJIAN-UTS-_VR (1) … Read entire article »
Filed under: 7. Operating System
Autocomplete CI in APTANA
http://www.youtube.com/watch?v=MzvSA0hq3Ts&feature=player_embedded — … Read entire article »
Filed under: 7. Operating System
Journal Gratis Apik
http://www.intechopen.com/journals/volume/international_journal_of_advanced_robotic_systems/10/2013/1 … Read entire article »
Filed under: 7. Operating System
Tomy dinkes
Participants: ————- Adityo R Dimas, Tomy dinkes Messages: ——— Adityo R Dimas: Boss Adityo R Dimas: Itu program’e …kok gak podo kambek buku petunjuk’e Adityo R Dimas: Arep nampilno grphics’e Adityo R Dimas: Data’e di edit …aku kangelan Adityo R Dimas: Piye…pokoke maju ae ya… Tomy dinkes: Pak sri purwantono ngawi Tomy dinkes: 085852190408 Adityo R Dimas: Aku engko ngomong soko dinkes sidoarjo gpp ya?? Tomy dinkes: Yo pak gpp … Read entire article »
Filed under: 7. Operating System
Android Mobile App
http://www.androiddrawer.com … Read entire article »
Filed under: 7. Operating System
Bash Programming
http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-9.html … Read entire article »
Filed under: 7. Operating System
Program Send SMS dari file via KONSOL LINUX
#!/bin/bash TUJUAN=”+628123006030 +628133062648 +628155003161″ STR=”KIRIM FILE KE BOSS”; echo $STR; for nomor in $TUJUAN; do cd /home/upload-download/public_html/stars/fsms/ cat nomer5.txt | gammu-smsd-inject -c /etc/gammu-star TEXT $nomor -len 5050 done exit; —- #!/bin/bash killall -9 gammu-smsd cd /root/script/ /usr/local/bin/gammu –getussd *888# > pulsa.txt tgl=`date “+%d%m%Y”`; header=”Pulsa PT.STARS Pada Tgl”; footer=”Supported By HARI,IMAM,DIMAS “; echo $header > PulsaSaiki.txt; echo $tgl >> PulsaSaiki.txt; cat pulsa.txt >> PulsaSaiki.txt; echo $footer >> PulsaSaiki.txt; NoTujuan=”+628155003161 +628123006030 +6281330626482″; for nomor in $NoTujuan; do cat PulsaSaiki.txt | gammu-smsd-inject -c /etc/gammu-star TEXT $nomor -l done /etc/init.d/smsdaemon; exit; … Read entire article »
Filed under: 7. Operating System
multiport Long SMS Gammu
01.<?php 02. 03.// koneksi ke mysql 04.mysql_connect("dbhost", "dbuser", "dbpass"); 05.mysql_select_db("dbname"); 06. 07.// pesan asli 08.$pesan = "......."; 09. 10.// menghitung jumlah pecahan 11.$jmlSMS = ceil(strlen($pesan)/153); 12. 13.// memecah pesan asli 14.$pecah = str_split($pesan, 153); 15. 16.// proses untuk mendapatkan ID record yang akan disisipkan ke tabel OUTBOX 17.$query = "SHOW TABLE STATUS LIKE 'outbox'"; 18.$hasil = mysql_query($query); 19.$data = mysql_fetch_array($hasil); 20.$newID = $data['Auto_increment']; 21. 22.// proses penyimpanan ke tabel mysql untuk setiap pecahan 23.for ($i=1; $i<=$jmlSMS; $i++) 24.{ 25.// membuat UDH untuk setiap pecahan, sesuai urutannya 26.$udh = "050003A7".sprintf("%02s", $jmlSMS).sprintf("%02s", $i); 27. 28.// membaca text setiap pecahan 29.$msg = $pecah[$i-1]; 30. 31.if ($i == 1) 32.{ 33.// jika merupakan pecahan pertama, maka masukkan ke tabel OUTBOX 34.$query = "INSERT INTO outbox (DestinationNumber, UDH, TextDecoded, ID, MultiPart, CreatorID) 35.VALUES ('$noTelp', '$udh', '$msg', '$newID', 'true', 'Gammu')"; 36.} 37.else 38.{ 39.// jika bukan merupakan pecahan pertama, simpan ke tabel OUTBOX_MULTIPART 40.$query = "INSERT INTO outbox_multipart(UDH, TextDecoded, ID, SequencePosition) 41.VALUES ('$udh', '$msg', '$newID', '$i')"; 42.} 43. 44.// jalankan query 45.mysql_query($query); 46.} 47.?> … Read entire article »
Filed under: 7. Operating System