Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Download the following ZIPs: | |
ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
Download the correct GApps for your Android version: | |
Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161892865 - gapps-L-4-21-15.zip) | |
Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) | |
Google Apps for Android 4.4.4 (https://www.androidfilehost.com/?fid=23501681358544845 - gapps-kk-20140606-signed.zip) | |
Google Apps for Android 4.3 (https://www.androidfilehost.com/?fid=23060877490000124 - gapps-jb-20130813-signed.zip) | |
Google Apps for Android 4.2 (https://www.androidfilehost.com/?fid=23060877490000128 - gapps-jb-20130812-signed.zip) |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
<?php | |
/** | |
* Scrape the number of app reviews from iTunes. | |
* | |
* Set the iOS app id, and it creates a {$app_id}-reviews.csv file. Automatically scrapes all pages. | |
* | |
* @author Sebastian Mandrean <[email protected]> | |
* Modified and extended from Kent Byhas_e's gist at https://gist.github.com/kentbye/3740357 | |
* Original gist by Sean Murphy at https://gist.github.com/1878352 | |
*/ |
Excel for Mac can't handle UTF-8 encoded CSV files. Official statement by Microsoft:
Excel for Mac does not currently support UTF-8. If this is a feature you’d like to see in future versions of Office for Mac, be sure to send your feedback by clicking “Help” > “Send Feedback” [...]
Convert the UTF-8 file to UTF-16 Little Endian by running this one-liner in Terminal:
( printf "\xff\xfe" ; iconv -f utf-8 -t utf-16le INPUT_UTF8_FILE.csv ) > OUTPUT_UTF16_FILE.csv
# ... | |
write_files: | |
- path: /opt/bin/install-kube-system | |
permissions: 0700 | |
owner: root:root | |
content: | | |
#!/bin/bash -e | |
# ... | |
# Custom replication controllers |
I hereby claim:
To claim this, I am signing this object:
v*[0-9].*[0-9].*[0-9]*(-rc*(.*[0-9])) |
/* | |
Source for ida_patcher | |
Copyright (c) 2006 Chris Eagle cseagle at gmail.com | |
This program is free software; you can redistribute it and/or modify it | |
under the terms of the GNU General Public License as published by the Free | |
Software Foundation; either version 2 of the License, or (at your option) | |
any later version. | |
This program is distributed in the hope that it will be useful, but WITHOUT |
package main | |
import ( | |
"fmt" | |
"github.com/huin/goupnp" | |
"github.com/huin/goupnp/soap" | |
) | |
func main() { | |
devices, err := goupnp.DiscoverDevices("urn:Belkin:device:controllee") |
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |