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
| deb http://mirror.0x.sg/ubuntu/ xenial main restricted universe | |
| deb-src http://mirror.0x.sg/ubuntu/ xenial main universe | |
| ###### Ubuntu Update Repos | |
| deb http://mirror.0x.sg/ubuntu/ xenial-security main restricted universe | |
| deb http://mirror.0x.sg/ubuntu/ xenial-updates main restricted universe |
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
| aan | |
| abdul | |
| abdullah | |
| abidin | |
| abie | |
| achmad | |
| adam | |
| ade | |
| adhi | |
| adhitya |
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
| teupahselatan | |
| simeuluetimur | |
| teupahbarat | |
| teupahtengah | |
| simeuluetengah | |
| telukdalam | |
| simeuluecut | |
| salang | |
| simeuluebarat | |
| alafan |
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
| Memuat data ke dalam Apache pig dari sistem file (HDFS / Lokal) menggunakan operator LOAD. | |
| a = LOAD 'test_set_tweets.txt' AS (id:chararray, ts:chararray, tweet:chararray); | |
| Fungsi FLATTEN(TOKENIZE ini digunakan untuk split string dan LOWER mengubah semua karakter dalam string menjadi huruf kecil. | |
| b = foreach a generate tweet, FLATTEN(TOKENIZE(LOWER(tweet))) as tokens; | |
| Fungsi yang digunakan memfilter string yang diawali dengan hashtag | |
| c = filter b by tokens MATCHES '#\\s*(\\w+)'; | |
| Operator GROUP digunakan untuk mengelompokkan data dalam satu atau beberapa string. |
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
| For waking up from suspension, I create the following script /etc/pm/sleep.d/brightness: | |
| ```shell | |
| #!/bin/sh | |
| case "$1" in | |
| resume|thaw) | |
| echo 170 > /sys/class/backlight/intel_backlight/brightness | |
| ;; | |
| esac | |
| ``` |
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
| rm -rf system/app/AntHalService | |
| rm -rf system/app/Apollo | |
| rm -rf system/app/BasicDreams | |
| rm -rf system/app/BookmarkProvider | |
| rm -rf system/app/Browser | |
| rm -rf system/app/CellBroadcastReceiver | |
| rm -rf system/app/CMFileManager | |
| rm -rf system/app/CMHome | |
| rm -rf system/app/CMWallpapers | |
| rm -rf system/app/DashClock |
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
| import socket | |
| import select | |
| import sys | |
| import string | |
| key = 'abcdefghijklmnopqrstuvwxyz' | |
| def encrypt(n, plaintext): | |
| """Encrypt the string and return the ciphertext""" | |
| result = '' |
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
| Through the Rod Smith’s guidance and a few dirty tricks, I was successfully able to convert my GPT partition – without data loss or deleting any partitions – and then boot Windows 7 in legacy/MBR mode. In order to do this you’ll need your Windows installation media at hand as well as a copy of the Fedora 16 Live media. If you don’t have a copy of Fedora 16 Live handy, you can download the Live media ISO (64-bit) from a local mirror here | |
| Keep in mind that at this point I only had 3 partitions and a bunch of unpartitioned space on the disk, so conversion was a rather straightforward process (all GPT partitions mapped directly to primary partitions). Although it is theoretically possible to convert GPT partitions with >4 partitions by defining which ones are to be logical partitions after conversion, I have not tested this. | |
| Boot your Fedora 16 Live media and wait for your session to start. If you’re having troubles booting, press Tab at the boot loader screen and try booting with the nomodeset parameter ad |
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 employees.emp_no, first_name, last_name, count(dept_no) jml_dpt | |
| from employees join dept_emp on employees.emp_no = dept_emp.emp_no | |
| group by employees.emp_no, first_name, last_name | |
| having count(dept_no) = 2; |
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
| BEGIN | |
| DECLARE | |
| email_count INT; | |
| SELECT COUNT(*) | |
| INTO email_count | |
| FROM employees | |
| WHERE LCASE() | |
| IF email_count > 0 | |
| THEN | |
| SET NEW.email = CONCAT_WS(NEW.lastName, LEFT(NEW.firstName, 1), email_count, '@classicmodelcars.com'); |