For more info see http://code.google.com/p/easycap-somagic-linux/wiki/GettingStarted
This file contains 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
# rtl_fm demodulation guide | |
# based on excerpts from: http://kmkeen.com/rtl-demod-guide/index.html | |
# requires rtl-sdr (rtl_fm bundled), sox for audio, multimon for pager decoding | |
# broadcast FM radio | |
rtl_fm -W -f 89.1M | play -r 32k -t raw -e signed-integer -b 16 -c 1 -V1 - | |
# police scanner | |
rtl_fm -N -E -f 154.42M -f 154.75M -f 154.82M -f 154.89M -s 12k -o 4 -g 49.2 -l 70 | play -r 12k ... |
This file contains 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
ssh user@example.com "ffmpeg -i $URL -c copy -f nut pipe:1" | ffplay -i pipe:0 |
This file contains 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
<html> | |
<head> | |
<script> | |
function ParseOS(userAgent) { | |
var userAgent = navigator.userAgent.toLowerCase(); | |
var os = "Windows"; | |
//Corresponding arrays of user-agent strings and operating systems | |
match = ["windows nt 10","windows nt 6.3","windows nt 6.2","windows nt 6.1","windows nt 6.0","windows nt 5.2","windows nt 5.1","windows xp","windows nt 5.0","windows me","win98","win95","win16","macintosh","mac os x","mac_powerpc","android","linux","ubuntu","iphone","ipod","ipad","blackberry","webos"]; | |
result = ["Windows 10","Windows 8.1","Windows 8","Windows 7","Windows Vista","Windows Server 2003/XP x64","Windows XP","Windows XP","Windows 2000","Windows ME","Windows 98","Windows 95","Windows 3.11","Mac OS X","Mac OS X","Mac OS 9","Android","Linux","Ubuntu","iPhone","iPod","iPad","BlackBerry","Mobile"]; |
This file contains 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
''' | |
YouTube History Scraping Script by Yuval Adam | |
Requires Selenium and PhantomJS | |
A major FUCK YOU to Youtube/Google for not having a proper API for this | |
<^>(-_-)<^> | |
''' | |
from selenium import webdriver |
This is a quick tutorial on how to start using Spacemacs coming from Sublime Text.
After installing Spacemacs, boot it up:
$ emacs
Open up a file by hitting SPACE f f, you can then locate and open a file by path with tab completion and ending with ENTER
This file contains 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 PRIVATE KEY----- | |
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC10dxEGINZbF0nIoMtM8705Nqm6ZWdb72DqTdFJ+UzQIRIUS59lQkYLvdQp71767vz0dVlPTikHmiv | |
dYHRc7Fo6JsmSUsGR3th+fU6d1Wt6cwpMTUXj/qODmubDK/ioVDW7wz9OFlSsCBvylOYp9v2+u/VXwACnBXNxCDezjx4RKcqMFT31WTxqU9OM9J86ChMOW4bFA41aLAJ | |
ozB+02xis7OV175XdQ5vkVXM9ys6ZoRF/K6NXeHiwcZFtMKyphXAxqU7uGY2a16bC3TEG5/km6Jru3Wxy4nKlDyUjWISwH4llWjdSi99r2c1fSCXlMCrW0CHoznn+22l | |
YCKtYe8JAgMBAAECggEAGOPDJvFCHd43PFG9qlTyylR/2CSWzigLRfhGsClfd24oDaxLVHav+YcIZRqpVkr1flGlyEeittjQ1OAdptoTGbzp7EpRQmlLqyRoHRpT+MxO | |
Hf91+KVFk+fGdEG+3CPgKKQt34Y0uByTPCpy2i10b7F3Xnq0Sicq1vG33DhYT9A/DRIjYr8Y0AVovq0VDjWqA1FW5OO9p7vky6e+PDMjSHucQ+uaLzVZSc7vWOh0tH5M | |
0GVk17YpBiB/iTpw4zBUIcaneQX3eaIfSCDHK0SCD6IRF7kl+uORzvWqiWlGzpdG2B96uyP4hd3WoPcZntM79PKm4dAotdgmalbueFJfpwKBgQDUy0EyA9Fq0aPF4LID | |
HqDPduIm4hEAZf6sQLd8Fe6ywM4p9KOEVx7YPaFxQHFSgIiWXswildPJl8Cg5cM2EyMU1tdn5xaR4VIDk8e2JEDfhPtaWskpJp2rU2wHvAXOeAES7UFMrkhKVqqVOdbo | |
IhlLdcYp5KxiJ3mwINSSO94ShwKBgQDavJvF+c8AINfCaMocUX0knXz+xCwdP430GoPQCHa1rUj5bZ3qn3XMwSWa57J4x |
This file contains 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
# Arch Linux installation procedure on a Lenovo ThinkPad X200s | |
# BIOS boot (no UEFI), SSD + LVM + LUKS + TRIM + discards | |
# Randomize (or zero) drive contents | |
dd if=/dev/urandom of=/dev/sda | |
# Create GPT and partitions | |
# Use gdisk to ensure proper partition alignment | |
gdisk /dev/sda | |
# 100MB boot partition on /dev/sda1 type 8300 |
We can make this file beautiful and searchable if this error is corrected: It looks like row 7 should actually have 10 columns, instead of 6 in line 6.
This file contains 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
ID,Handle,Name,Description,Date Created,Location,Followers,Friends,Favourites,Statuses | |
1077155927084748800,tamershimon,Tamar shimon,"בכל דבר יש יופי😍, אבל לא כל אחד יכול לראות זאת 🤗",2018-12-24 10:56:00,Israel,33,168,57,76 | |
1077156685918158853,anatvladimir2,Anat vladimir,"הפסימי מתלונן על הרוח, האופטימי מצפה שהיא תשתנה, החכם מכוון את המפרש בהתאם 😎👌",2018-12-24 10:59:01,Israel,13,102,8,68 | |
1077157300140429313,livnatavner3,livnat Avner,חינוך הוא הנשק החזק ביותר שניתן להשתמש בו כדי לשנות את העולם😂 נכון,2018-12-24 11:01:27,ישראל,15,64,42,74 | |
1077196238867623937,sarahmoti2,Sarah Moti,"חיה כאילו זה יומך האחרון, למד כאילו תחיה לנצח😉🙇",2018-12-24 13:36:11,Israel,64,68,17,78 | |
1077196845888225280,gilacohen4,Gila Cohen,You know you’re in love when you can’t fall asleep because reality is finally better than your dreams.❤❤👏,2018-12-24 13:38:36,,12,98,16,71 | |
1077199688019988486,emiliegalil,Emilie Galil,"If I had a flower for every time I thought of you, I could walk in my garden forever 🌲⚘🌷🌸💐🌼🌻🌺🌹",2018-12-24 13:49:53,Israe |
This file contains 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
בית חלקיה 1.0025575447570332 | |
שעלבים 1.0738831615120275 | |
קצר א-סר 1.1118530884808013 | |
טלמון 1.1443433029908974 | |
נחושה 1.1313320825515947 | |
מחולה 1.0532994923857868 | |
באר יעקב 1.1096649127665468 | |
אבן שמואל 1.2901023890784984 | |
סלעית 1.4191176470588236 | |
יקיר 1.0930962343096233 |
NewerOlder