Skip to content

Instantly share code, notes, and snippets.

View yatharth's full-sized avatar

Yatharth Agarwal yatharth

View GitHub Profile
@yatharth
yatharth / keybase.md
Created April 24, 2015 18:15
Public key proof

Keybase proof

I hereby claim:

  • I am YatharthROCK on github.
  • I am mndhck (https://keybase.io/mndhck) on keybase.
  • I have a public key whose fingerprint is 5105 B914 D4DA 8EF3 5D2A 79E8 0C7F 0180 C090 9DC9

To claim this, I am signing this object:

@yatharth
yatharth / aptitude.out
Last active August 29, 2015 14:10
Aptitude solution #2 while installing quickstart dependencies for LibSoy on fresh install of Ubuntu 14.04.1
Downgrade the following packages:
1) fontconfig-config [2.11.0-0ubuntu4.1 (now) -> 2.11.0-0ubuntu4 (trusty)]
2) libfontconfig1 [2.11.0-0ubuntu4.1 (now) -> 2.11.0-0ubuntu4 (trusty)]
3) libfreetype6 [2.5.2-1ubuntu2.2 (now) -> 2.5.2-1ubuntu2 (trusty)]
4) libgl1-mesa-glx [10.1.3-0ubuntu0.1 (now) -> 10.1.0-4ubuntu5 (trusty)]
5) libglapi-mesa [10.1.3-0ubuntu0.1 (now) -> 10.1.0-4ubuntu5 (trusty)]
6) libgles2-mesa [10.1.3-0ubuntu0.1 (now) -> 10.1.0-4ubuntu5 (trusty)]
7) libegl1-mesa-drivers [??? (now) -> 10.1.0-4ubuntu5 (trusty)]
@yatharth
yatharth / lcd.py
Last active August 29, 2015 14:05
No context here…
#!/usr/bin/env python3
# horizontal and vetical constants representing directives (class for figits seemed excessive)
BLANK, BAR__ = 'BLANK', 'BAR__'
LEFT_, RIGHT, BOTH_ = 'LEFT_', 'RIGHT', 'BOTH_'
# list of directives for digits 0-9 (horizionatal, vertical, horizontal, vertical, horizontal)
DIGITS = (
(BAR__, BOTH_, BLANK, BOTH_, BAR__),
(BLANK, RIGHT, BLANK, RIGHT, BLANK),
@yatharth
yatharth / code.gs
Created May 28, 2014 10:40
Google Sheets App Script for Multiple-column range-wide auto-sort
function onEdit(event) {
var sheet = SpreadsheetApp.getActiveSheet();
var editedCell = sheet.getActiveCell();
var rangeValue = "A2:D";
var columns = [3, 2, 1];
var ascendings = [true, false, true];
if (editedCell.getColumn() in columns) {
var range = sheet.getRange(rangeValue);