| 😄 | 😆 | 😊 | 😃 |
😩 | 😔 | 😞 | 😖 | 😨 | 😰 | 😣 | 😢 | 😭 | 😂 | 😲 | 😱 |
| 😫 | 😠 | 😡 | 😤 | 😪 | 😋 | 😷
😎 | 😵 | 👿 | 😈 | 😐 | 😶 | 😇 | 👽 | 💛 | 💙 | 💜 | ❤️ | 💚 | 💔 | 💓 | 💗 | 💕 | 💞 | 💘 | ✨
| $dirs = Get-ChildItem -Path .\* | ?{ $_.PSIsContainer } | |
| $currentDir = Get-Location | |
| # dir env:ProgramFiles`(x86`) | |
| # dir "env:ProgramFiles(x86)" | |
| # ${Env:ProgramFiles(x86)} | |
| # [Environment]::GetEnvironmentVariable("ProgramFiles(x86)") | |
| # & ${Env:WinDir}\notepad.exe | |
| # Invoke-Item ${Env:WinDir}\notepad.exe |
| @echo off | |
| set /a modulo = "%BUILD_NUMBER% %% 2" | |
| if %modulo% == 0 ( | |
| echo Even build number. | |
| exit /b 0 | |
| ) else ( | |
| echo Odd build number. | |
| exit /b 1 | |
| ) |
| 😄 | 😆 | 😊 | 😃 |
😩 | 😔 | 😞 | 😖 | 😨 | 😰 | 😣 | 😢 | 😭 | 😂 | 😲 | 😱 |
| 😫 | 😠 | 😡 | 😤 | 😪 | 😋 | 😷
😎 | 😵 | 👿 | 😈 | 😐 | 😶 | 😇 | 👽 | 💛 | 💙 | 💜 | ❤️ | 💚 | 💔 | 💓 | 💗 | 💕 | 💞 | 💘 | ✨
| #!/usr/bin/env python | |
| # BB-8 Python driver by Alistair Buxton <a.j.buxton@gmail.com> | |
| from bluepy import btle | |
| import time | |
| class BB8(btle.DefaultDelegate): | |
| def __init__(self, deviceAddress): |
| --- | |
| layout: default | |
| --- | |
| <div class="blog-index"> | |
| {% assign post = site.posts.first %} | |
| {% assign content = post.content %} | |
| {% include post_detail.html %} | |
| </div> |
| ### Last tested February 7 2014 on a Galaxy S3 (d2att) running Cyanogenmod 11 nightly, with Google Authenticator 2.49. | |
| ### Device with Google Authenticator must have root. | |
| ### Computer requires Android Developer Tools and SQLite 3. | |
| ### Connect your device in USB debugging mode. | |
| $ cd /tmp | |
| $ adb root | |
| $ adb pull /data/data/com.google.android.apps.authenticator2/databases/databases |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # https://wiki.archlinux.org/index.php/ASUS_Zenbook_UX303 | |
| messageUsage="Set screen brightness on Asus UX303LNB with Fedora. | |
| Usage: "$(basename "$0")" (100-825)" | |
| echo "$messageUsage" | |
| if [ "$(id -u)" != "0" ]; then | |
| echo "Sorry, you are not root." |
| #!/usr/bin/env bash | |
| # http://stackoverflow.com/a/31623988 | |
| ~/Android/Sdk/platform-tools/adb shell getprop | grep "model\|version.sdk\|manufacturer\|hardware\|platform\|revision\|serialno\|product.name\|brand" |
| @font-face { | |
| font-family: 'Raleway'; | |
| font-style: normal; | |
| font-weight: 100; | |
| src: url(https://github.com/theleagueof/raleway/raw/master/webfonts/raleway_thin-webfont.ttf) format('truetype'); | |
| } | |
| @font-face { | |
| font-family: 'Raleway'; | |
| font-style: normal; | |
| font-weight: 300; |