$ ssh [email protected]
$ sudo vi /etc/dnsmasq.d/dnsmasq.static.conf
Put there some hostnames <-> ip mappings:
address=/some.domain/192.168.0.123
address=/some.other.domain/167.112.237.24
$ ssh [email protected]
$ sudo vi /etc/dnsmasq.d/dnsmasq.static.conf
Put there some hostnames <-> ip mappings:
address=/some.domain/192.168.0.123
address=/some.other.domain/167.112.237.24
$ brew install qpdf | |
$ qpdf --decrypt input.pdf output.pdf |
I hereby claim:
To claim this, I am signing this object:
This seems to do the trick:
$ sudo kextunload -b com.apple.driver.AppleUSBTCKeyboard
var forwardGeoCoder = function(address, callback) { | |
xhr = Titanium.Network.createHTTPClient(); | |
var url = 'http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=' + address; | |
xhr.open('GET', url); | |
xhr.onload = function() { | |
var json = JSON.parse(this.responseText); | |
if (json.results.length > 0) { | |
var latitude = json.results[0].geometry.location.lat; | |
var longitude = json.results[0].geometry.location.lng; | |
callback(latitude, longitude); |
$ cd /System/Library/QuickLook | |
$ sudo wget http://trinity.neooffice.org/downloads/neopeek.qlgenerator.tgz | tar xzvf |
<?php | |
// INTERNET EN MOINS DE HUIT SECONDES | |
class decoder | |
{ | |
protected | |
$code = array(), | |
$codeCombinations = array(), | |
$operations = array(), | |
$operationCombinations = array(); |
Pipeviewer is a terminal-based tool for monitoring the process of data through a pipeline.
pv dump.sql | /path/to/mysql -uLOGIN -p DATABASE