Here’s how to make your own laptop stand out of cardboard.
- One piece of cardboard, approximately 53cm wide x 14cm high (cut up an old parcel box or something).
- Scissors
| <?php | |
| class A implements ArrayAccess, Iterator, Countable | |
| { | |
| public function __construct($arr) { | |
| $this->arr = is_array($arr) ? $arr : func_get_args(); | |
| } | |
| public function __toString() { | |
| return print_r($this->arr, true); | |
| } |
| urlencode() { | |
| # urlencode <string> | |
| old_lc_collate=$LC_COLLATE | |
| LC_COLLATE=C | |
| local length="${#1}" | |
| for (( i = 0; i < length; i++ )); do | |
| local c="${1:$i:1}" | |
| case $c in |
| @font-face { | |
| font-family: 'ABeeZee'; | |
| font-style: normal; | |
| font-weight: 400; | |
| src: local('ABeeZee'), local('ABeeZee-Regular'), url(http://themes.googleusercontent.com/static/fonts/abeezee/v1/JYPhMn-3Xw-JGuyB-fEdNA.ttf) format('truetype'); | |
| } | |
| @font-face { | |
| font-family: 'Abel'; | |
| font-style: normal; | |
| font-weight: 400; |
Saya support Internet Positif untuk memblokir porn, situs judi, dan hal-hal ilegal lainnya. Tapi pemerintah dan ISP sangat konyol karena tidak mengizinkan akses ke Vimeo, Reddit, Imgur, Netflix--yang mana bukanlah situs dengan konten utama ilegal.
Tambahkan list di bawah ke /etc/hosts.
| DKIM is DomainKeys Identified Mail and is used in mail servers, such as Postfix or Sendmail to sign e-mails and thus authenticating the sender so that a forgery can be detected. It also reduces the possibility of an e-mail being flagged as spam, but it's not a definite prevention. | |
| A much simpler method is using SPF (Sender Policy Framework) which, in a nutshell, verifies the sender IP address. | |
| According to the internet, using both should result to ????, PROFIT !!!. | |
| SPF does not need a specific configuration. Whitelisted servers are listed in a DNS record, TXT or SPF, and an example record is: | |
| example.com. IN TXT "v=spf1 a mx ~all" |
| Add-Type -TypeDefinition @" | |
| using System; | |
| using System.Runtime.InteropServices; | |
| namespace Utilities { | |
| public static class Display { | |
| private const uint WM_USER = 0x0400; | |
| private const uint WM_MSO = WM_USER + 0x0900; | |
| private const uint WM_MSO_WPARAM_OMFRAMEENABLESHADOW = 0x0075; |
| function file_exists(playlist) | |
| local f=io.open(playlist, "r") | |
| if f~=nil then io.close(f) return true else return false end | |
| end | |
| function entry_complete(playlist) | |
| local f=io.open(playlist, "r") | |
| chars = f:read("*all") | |
| last_char = string.sub(chars, -1) | |
| if last_char == ";" then io.close(f) return true else return false end |
| ; Courtesy of http://superuser.com/a/403191 | |
| ^#c:: | |
| WinGetTitle, windowName, A | |
| CenterWindow(windowTitleVariable) { | |
| WinGetPos,,, Width, Height, %windowTitleVariable% | |
| WinMove, %windowTitleVariable%,, (A_ScreenWidth - Width) / 2, (A_ScreenHeight - Height) / 2 | |
| } |