{ Berbagi, Menulis, Dan Mengajar } Ilmu… » Archive
Ini SK Inpassing Asisten Ahli, SK penyesuaian Yayasan dsb
PetikanAAYayasan2 petikanSKyayasan1 SKPenyesuaianJabfungYayasan2 SKPenyesuaianJabFungYayasan1 SKInpassingDosen2 … Read entire article »
Filed under: 7. Operating System
Lampiran SK INPASSING ASISTEN AHLI
inpkpp13082019 … Read entire article »
Filed under: 7. Operating System
CATATAN TAMBAHAN B.Jatim Host to host
PekTek Dokumentasi PDL Bank Jatim(1) (1) KODEREK Dokumentasi H2H Bank Jatim – Billing – lite (NEw) … Read entire article »
Filed under: 7. Operating System
Fungsi Reboot dan Shutdown pada Python
def reboot(self): import subprocess subprocess.call([“sudo”,”reboot”,”-p”]) def shutdown(self): import subprocess subprocess.call([“sudo”,”halt”,”-p”]) … Read entire article »
Filed under: 7. Operating System
Cara Menghilangkan Cursor Mouse di Raspberry
1. Install Unclutter Log in to your Raspberry Pi via SSH – or open terminal directly on the Pi. Then install Unclutter, like this: sudo apt-get install unclutter 2. Edit LXDE Autostart Script Next we need to edit the LXDE Autostart script – for us this means running: nano ~/.config/lxsession/LXDE-pi/autostart 3. Turn the Cursor Off Finally you need to add this line to the autostart script: @unclutter -idle 0 Press ctrl+X and then hit Y to save your changes. 4. Reboot Finally, reboot your Pi using: sudo reboot … Read entire article »
Filed under: Raspberry
Check SSID Wifi di Consol
INI CARA CHECK SSID root@raspberrypi:/home/pi/Desktop# iwlist wlan0 scan | grep SSID ESSID:”Iki wifine tonggo” ESSID:”WLAN_IKC” ESSID:”” ESSID:”ZTE_2.4G_hCjNNh” … Read entire article »
Filed under: 7. Operating System
Python Memaksimumkan View Aplikasi
class Ui_mainWindow(object): def setupUi(self, mainWindow): mainWindow.setObjectName("mainWindow") mainWindow.resize(771, 546) mainWindow.showFullScreen() … Read entire article »
Filed under: 7. Operating System
Wiring Pi .. Read Sensor Raspberry
import wiringpi as wpi from time import sleep PIR_SENSOR = 1 LED_MODULE = 21 wpi.wiringPiSetup() wpi.pinMode(PIR_SENSOR, wpi.INPUT) wpi.pinMode(LED_MODULE, wpi.OUTPUT) try: while True: if wpi.digitalRead(PIR_SENSOR) == wpi.HIGH: print(“Moving Object Detected”) sleep(0.5) wpi.digitalWrite(LED_MODULE, wpi.HIGH) else: print(“No Object Detected”) sleep(0.5) wpi.digitalWrite(LED_MODULE, wpi.LOW) except KeyboardInterrupt: wpi.pinMode(LED_MODULE, wpi.OUTPUT) wpi.digitalWrite(LED_MODULE, wpi.LOW) print(“exit”) … Read entire article »
Filed under: Raspberry
Cara Setting Database MariaDB Pengganti MYSQL
1. mysql -u root -p 2. CREATE USER 'farras'@'localhost' IDENTIFIED BY 'RA56i7'; 3. GRANT ALL PRIVILEGES ON db_nya.* TO 'farras'@'localhost'; ------ QUERY UNTUK MEMBUAT USER SETINGKAT ROOT GRANT ALL PRIVILEGES ON *.* TO 'farras'@'localhost' WITH GRANT OPTION; … Read entire article »
Filed under: 7. Operating System