Skip to content

Instantly share code, notes, and snippets.

View sabarasaba's full-sized avatar

Ignacio Rivas sabarasaba

View GitHub Profile
@sabarasaba
sabarasaba / gist:3080590
Created July 10, 2012 02:19
Remove directory from remote repository after adding them to .gitignore
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master
@sabarasaba
sabarasaba / gist:1387550
Created November 23, 2011 00:36
Setting a timeout for the file_get_contents function
<?php
// Create the stream context
$context = stream_context_create(array(
'http' => array(
'timeout' => 3 // Timeout in seconds
)
));
// Fetch the URL's contents

Paying for stuff in the netherlands

Most places dont accept visa or masterdard. They will just tell you "no creditcard accepted" even if you have a mastercard debit card. The defacto payment method for most places is just maestro (yes, welcome to 1987). So places like the supermarket close to home only accepts cash or maestro. If you dont have one ask before hand if they accept "credit card" :) Most pin machines will also have this sign if they dont accept.

Everyday shops

Kyoto

Info

  • Airbnb address: Nakagyō-ku, Kyōto-shi, Kyōto-fu 604-8856
  • Host name: Eikosha
  • Host phone number: +81-70-5666-7001 +81-90-2238-8769

Things to do/see

@sabarasaba
sabarasaba / index.js
Created August 31, 2017 10:30
reminders testing
const request = require('request-promise')
request({
uri: 'https://api.reminders.company/v1/reminders',
method: 'POST',
json: true,
headers: {
token: 'f68ade7424a096e54f2ceb69118832f9'
},
body: {

Keybase proof

I hereby claim:

  • I am sabarasaba on github.
  • I am sabarasaba (https://keybase.io/sabarasaba) on keybase.
  • I have a public key ASCYP5urbN8JpNdfZI6OIlWGmtZQNxNudiPpgR4g1TimQAo

To claim this, I am signing this object:

@sabarasaba
sabarasaba / howto.md
Last active December 25, 2015 12:28
Debugging webapps in Android default browser

Install the weinre module from npm:

$ sudo npm -g install weinre

In your index.html add the following line before closing the head section:

<script src="http://your-local-ip:8081/target/target-script-min.js#anonymous"></script>
@sabarasaba
sabarasaba / index.js
Created July 16, 2013 15:21
currying
var o = '{ "user": "tu vieja", "posts": [ { "title": "title 1", "contents": "..." }, { "title": "title 2", "contents": "..." } ] }';
var fetchShit = function() {
var def = $.Deferred();
setTimeout(function() {
def.resolve(o);
}, 2000);
return def.promise();
@sabarasaba
sabarasaba / gist:3975451
Created October 29, 2012 18:19
Get the current State of the user.
tu biega
@sabarasaba
sabarasaba / gist:1362220
Created November 13, 2011 15:23
Get first url video that matches with the given text
<?php
function getYoutubeLink($title)
{
@$videoName = ereg_replace('[[:space:]]+', ' ', trim($videoName));
$videoName = urlencode($videoName);
// generate feed URL
$feedURL = "http://gdata.youtube.com/feeds/api/videos?vq={$videoName}";