Skip to content

Instantly share code, notes, and snippets.

View aygul's full-sized avatar

Aygul Zagidullina aygul

View GitHub Profile
@duellsy
duellsy / import.py
Last active October 2, 2019 12:58 — forked from kbl/import.py
Import tasks and notes from wunderlist dump to todoist (and mark completed tasks as completed)
# -*- coding: utf8 -*-
import json
import urllib2
import urllib
import sys
import os
from argparse import ArgumentParser
from collections import defaultdict
@printminion
printminion / parseGPlusCommunityProfiles.js
Last active April 4, 2016 15:19
autoload Google+ community profiles
/**
* @desc autoload Google+ community profiles
* run it in the console after injecting jquery: https://gist.github.com/4141199
* @author Misha M.-Kupriyanov https://plus.google.com/104512463398531242371/
* @require jQuery
* @link https://gist.github.com/printminion/9156903
*/
var lastCount = getProfilesCount();
var currentCount = 0;
var bLoading = false;
@cirocosta
cirocosta / beta-testing.md
Last active January 3, 2016 15:09
A list of apps that are open for beta testing.
@igrigorik
igrigorik / gist:3148848
Created July 20, 2012 05:24
Convert any YouTube video into an audio file you can listen to on the go...
# Convert any YouTube video into an audio file you can listen to on the go, using:
# http://rg3.github.com/youtube-dl/
{ ~ } > brew install ffmpeg
{ ~ } > wget https://raw.github.com/rg3/youtube-dl/2012.02.27/youtube-dl
{ ~ } > chmod u+x youtube-dl
# Pick which video format you want to download.. (use any YT video link)
{ ~ } > ./youtube-dl -s -F http://www.youtube.com/watch?v=vT1KmTQ-1Os
@printminion
printminion / googleplus_to_spreadsheet.js
Last active September 8, 2022 00:35
App Script for fetching Google+ Profile data into the Google Docs spreadsheet
/**
* @desc This is an App Script for fetching Google+ Profile data (e.g. name and profile image) to
* the Google Docs spreadsheet
* @author Misha M.-Kupriyanov https://plus.google.com/104512463398531242371/
* @link https://gist.github.com/1919613
*
* 1) Get your Google+ API KEY and paste it instead of %YOUR_API_KEY%
* https://developers.google.com/+/api/oauth#apikey
* https://code.google.com/apis/console#access
* 2) Create and name your spreadsheet "profiles"
@romannurik
romannurik / DashboardLayout.java
Created March 23, 2011 05:06
A custom Android layout class that arranges children in a grid-like manner, optimizing for even horizontal and vertical whitespace.
/*
* ATTENTION:
*
* This layout is now maintained in the `iosched' code.google.com project:
*
* http://code.google.com/p/iosched/source/browse/android/src/com/google/android/apps/iosched/ui/widget/DashboardLayout.java
*
*/
/*