Skip to content

Instantly share code, notes, and snippets.

View sillygwailo's full-sized avatar

Richard Eriksson sillygwailo

View GitHub Profile
@philippschmitt
philippschmitt / countPhotosForGeoLocation
Last active May 13, 2020 22:02
Count all photos that are available on Flickr and Panoramio for a specific geo fence
/*
This script counts all photos that are available on Flickr and Panoramio for a specific geo fence and returns a JSON object with the data.
For convenience it's embedded in a little node.js server so that you can upload it to your server and use it as an API.
Here's an example url with all query attributes prefilled. Please use your own Flickr API key!
The location is the Berlin TV Tower (http://en.wikipedia.org/wiki/Fernsehturm_Berlin)
Example URL: http://piccounter-philippschmitt.rhcloud.com/?lat=52.520732&lon=13.409537&latRes=0.00015&lonRes=0.0003&flickrKey=60d03369d3e92b4578c8f2df2de5af66
@Jaesin
Jaesin / drush-it-up.sh
Last active December 31, 2015 00:44
Install drushes
#!/bin/bash
# See: https://packagist.org/packages/drush/drush
# Drush 7 (Global)
composer global require "drush/drush:7.*"
# Drush 6 (Local)
mkdir -p /usr/local/share/drush/6.x
cd /usr/local/share/drush/6.x
composer require "drush/drush:6.*"
@justpw
justpw / link-lib.md
Last active August 29, 2015 14:07
A proposal / spec for an open database and API for links between related webpages
@conatus
conatus / ello.md
Last active April 13, 2023 19:32
Ello API

Ello API

This is a basic exploration of the Ello API. Completely unofficial, your mileage my vary, don't smash their servers as they are likely very busy.

Methods return HTML for their representation where appropriate which is a nice little pattern. Everything returns application/json.

Like this:

{
 "id": ,
@salcode
salcode / instructions-CVE-2014-6271.txt
Created September 24, 2014 20:25
Updating Bash to Address CVE-2014-6271 with yum
# SSH into server
# change to root account using `su` (if you're not already logged in as root)
# Test for vulnerability
env x='() { :;}; echo vulnerable' bash -c "echo this is a test"
# If you see this output, you're not vulnerable and logout now
# bash: warning: x: ignoring function definition attempt
# bash: error importing function definition for `x'
# this is a test
@mullnerz
mullnerz / archive-website.md
Last active January 2, 2025 15:56
Archiving a website with wget

The command I use to archive a single website

wget -mpck --html-extension --user-agent="" -e robots=off --wait 1 -P . www.foo.com

Explanation of the parameters used

  • -m (Mirror) Turns on mirror-friendly settings like infinite recursion depth, timestamps, etc.
Candidates for next platforms after PCs, phones, and tablets:
Virtual reality
Internet of things
Wearable computers
Cryptocurrencies / blockchain
Self-driving cars
Drones
Brain-computer interfaces
3d printing
Augmented reality
@tessus
tessus / teksavvy_usage.py
Created July 31, 2014 05:40
retrieve TekSavvy data usage via API key
#!/opt/local/bin/python
import httplib, json
APIKEY = "YOUR_API_KEY_HERE"
headers = {"TekSavvy-APIKey": APIKEY}
conn = httplib.HTTPSConnection("api.teksavvy.com")
conn.request('GET', '/web/Usage/UsageSummaryRecords?$filter=IsCurrent%20eq%20true', '', headers)
response = conn.getresponse()
<?php
/**
* Lists bundles that have a field of type image or file for D7.29 regression
* https://www.drupal.org/node/2305017
*
* Download this script on your server/localhost and run
* drush php-script 2305017_file_lost.php
*/
anonymous
anonymous / grab_fulltext_mefi_favorites.py
Created July 9, 2014 22:00
Takes a Mefi Favorites Export file and outputs an HTML file containing the full content of all comments.
#!/usr/bin/env python
import bs4
import sys
import urllib2
import codecs
def grab_comment(url, comment_id):
print "[+] Retrieving comment #{} from {!r}...".format(comment_id, url)
thread = urllib2.urlopen(url)