Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
| .idea/* | |
| *.pyc |
| d-i debian-installer/locale string en_US.UTF-8 | |
| d-i debian-installer/splash boolean false | |
| d-i console-setup/ask_detect boolean false | |
| d-i console-setup/layoutcode string us | |
| d-i console-setup/variantcode string | |
| # network | |
| d-i netcfg/get_nameservers string | |
| d-i netcfg/get_ipaddress string | |
| d-i netcfg/get_netmask string 255.255.255.0 |
| #!/usr/bin/python | |
| """ | |
| To use this to mimic the EC2 metadata service entirely, run it like: | |
| # where 'eth0' is *some* interface. if i used 'lo:0' i got 5 second or so delays on response. | |
| sudo ifconfig eth0:0 169.254.169.254 netmask 255.255.255.255 | |
| sudo ./mdserv 169.254.169.254:80 | |
| Then: | |
| wget -q http://169.254.169.254/latest/meta-data/instance-id -O -; echo | |
| curl --silent http://169.254.169.254/latest/meta-data/instance-id ; echo |
I used to think that
ssh -X [email protected]
"just bloody worked". However this might not work - ssh must play ball on both sides of the link. On the remote (ssh server, X client) sshd must sit behind some port, tell Xlib to send X11 requests to it and then forward them back to you the X server (where the ssh client is). If the remote box is locked down to prevent this, you will get:
X11 forwarding request failed on channel 0
as part of an otherwise working login. As it happens, I am the admin of the remote box in question, so I followed the ArchWiki and went to /etc/ssh/sshd_config and uncommented
| ## Prepare ################################################################### | |
| # Remove RVM | |
| rvm implode | |
| # Ensure your homebrew is working properly and up to date | |
| brew doctor | |
| brew update | |
| ## Install ################################################################### |
| #!/bin/bash | |
| # | |
| # /etc/rc.d/init.d/mms-agent | |
| # | |
| # 10Gen Mongod montiroing service | |
| # must edit the settings.py first and edit this file with the location of agent.py | |
| # | |
| # description: 10Gen monitoring service - need ot fix pid so we can shut it down | |
| # chkconfig: - 90 10 |
| [tox] | |
| envlist=py27,lint | |
| [testenv] | |
| downloadcache={homedir}/.pipcache | |
| distribute=True | |
| sitepackages=False | |
| [testenv:py27] | |
| deps=nose |
This installs a patched ruby 1.9.3-p327 with various performance improvements and a backported COW-friendly GC, all courtesy of funny-falcon.
You will also need a C Compiler. If you're on Linux, you probably already have one or know how to install one. On OS X, you should install XCode, and brew install autoconf using homebrew.
Base URL: https://www.google.com/speech-api/v1/recognize
It accepts POST requests with voice file encoded in FLAC format, and query parameters for control.
client
The client's name you're connecting from. For spoofing purposes, let's use chromium
lang
Speech language, for example, ar-QA for Qatari Arabic, or en-US for U.S. English