Skip to content

Instantly share code, notes, and snippets.

View juliomenendez's full-sized avatar

Julio Carlos Menendez juliomenendez

View GitHub Profile
write-host "checking..."
# check for apache
$apache = scoop which httpd
if($lastexitcode -ne 0) { 'Apache isn''t installed. run ''scoop install apache'''; return }
# check for php
$php = scoop which php
if($lastexitcode -ne 0) { 'PHP isn''t installed. run ''scoop install php'''; return }
<?php
define('APP_ROOT', realpath(dirname(__FILE__)) . '/');
require APP_ROOT . 'vendor/autoload.php';
use Mr\Api\Service;
$serv = new Service('xxxxxx', 'xxxxxxxxxxxx');
@juliomenendez
juliomenendez / gist:9198877
Created February 24, 2014 22:43
keybase.md
### Keybase proof
I hereby claim:
* I am juliomenendez on github.
* I am juliomenendez (https://keybase.io/juliomenendez) on keybase.
* I have a public key whose fingerprint is 10EA 758B E61E 4A69 034F 79E7 CA6F 0544 C1AA F2A4
To claim this, I am signing this object:
#!/bin/bash
GEOGRAPHY=0
POSTGIS_SQL=postgis.sql
POSTGIS_SQL_PATH=/usr/local/Cellar/postgis/2.0.1/share/postgis
# For Ubuntu 8.x and 9.x releases.
if [ -d "/usr/share/postgresql-8.3-postgis" ]
then
POSTGIS_SQL_PATH=/usr/share/postgresql-8.3-postgis
@juliomenendez
juliomenendez / AnimatedRegion
Created February 8, 2013 23:26
Backbone.Marionette.Region extended to animate changing its content.
var AnimatedRegion = Backbone.Marionette.Region.extend({
show: function(view) {
var that = this;
this.ensureEl();
this.close();
view.on('close', function() {
that.$el.addClass('transparent'); });
$.when(view.render()).then(function() {
that.open(view);
;; Mumamo is making emacs >23.3 freak out:
(when (and (> emacs-major-version 23)
(> emacs-minor-version 3))
(eval-after-load "bytecomp"
'(add-to-list 'byte-compile-not-obsolete-vars
'font-lock-beginning-of-syntax-function))
)
@juliomenendez
juliomenendez / gist:3054939
Created July 5, 2012 17:07
Install matplotlib in Mac OS X
pip install -e git+https://github.com/matplotlib/matplotlib.git#egg=matplotlib
@juliomenendez
juliomenendez / gist:2637618
Created May 8, 2012 17:25
Example of JSON API for moonalice search
{
"meta": {
"query": "search terms from the user"
},
"objects": [
{
"nid": unique_id_for_this_item,
"type": 1, // 1 means this result is a show
"title": "Item title to show in the result view",
"mr_id": id of the item in mobilerider system,
@juliomenendez
juliomenendez / gist:1975554
Created March 5, 2012 00:02
Remove a path from git including its history
git filter-branch --index-filter 'git rm -r --cached --ignore-unmatch path/to/remove' --prune-empty -- --all
@juliomenendez
juliomenendez / gist:1608297
Created January 13, 2012 19:36
Emacs lisp code to get a Growl notification when a compilation is done.
(defun growl (title message)
(start-process "growl" " growl" "growlnotify" title "-a" "Emacs")
(process-send-string " growl" message)
(process-send-string " growl" "\n")
(process-send-eof " growl"))
(defun growl-compilation-result(buffer msg)
(if (string-match "^finished" msg)
(progn
(growl "Emacs compilation" "Compilation Successful :-)"))