Skip to content

Instantly share code, notes, and snippets.

View GVRV's full-sized avatar
🎯
Focusing

Gaurav Dadhania GVRV

🎯
Focusing
View GitHub Profile
@GVRV
GVRV / bret_victor-reading_list.md
Created August 9, 2019 17:48 — forked from nickloewen/bret_victor-reading_list.md
Bret Victor’s Reading List

This is a plain-text version of Bret Victor’s reading list. It was requested by hf on Hacker News.


Highly recommended things!

This is my five-star list. These are my favorite things in all the world.

A few of these works have had an extraordinary effect on my life or way of thinking. They get a sixth star. ★

FWIW: I didn't produce the content present here. I've just copy-pasted it from somewhere over the Internet, but I cannot remember exactly the original source. I was also not able to find the author's name, so I cannot give him/her the proper credit.


Effective Engineer - Notes

What's an Effective Engineer?

@GVRV
GVRV / readme.md
Last active December 2, 2015 19:29

Atom

Build Status Build status Dependency Status Join the Atom Community on Slack

Atom is a hackable text editor for the 21st century, built on Electron, and based on everything we love about our favorite editors. We designed it to be deeply customizable, but still approachable using the default configuration...

Visit atom.io to learn more or visit the Atom forum.

@GVRV
GVRV / HT spec.md
Last active August 29, 2015 14:04 — forked from tjstebbing/HT spec

Hudson Taylor

Hudson Taylor (HT) is a library for building software systems with a Service Oriented Architecture. It comprises of server library for providing services with well documented and defined APIs, and a client library for calling services. All service APIs have Schemas that both document expectations as well as validate and pre-process incoming data.

HT can be used within a single process to logically partition services from the beginning. This means that your project has clean internal interfaces and

// put this as the filter and enable 'regex'
^((?!extensions::).)*$
@GVRV
GVRV / keybase.md
Created March 17, 2014 04:11
Proving myself for Keybase

Keybase proof

I hereby claim:

  • I am GVRV on github.
  • I am GVRV (https://keybase.io/GVRV) on keybase.
  • I have a public key whose fingerprint is A087 B5C2 F58F 6A29 52E7 C3A6 A471 B41B BE0C B32E

To claim this, I am signing this object:

Meteor.startup(function () {
Deps.autorun(function () {
var selected = Session.get("selected");
if (selected) {
var hiive = Hiives.findOne(selected);
if (hiive) {
Meteor.subscribe("messages", hiive._id);
Meteor.subscribe("activeUsers", hiive._id);
}
✘  ~/www/Hiive/sckor-in  ± master  ./deploy nko
○ deploying
○ hook pre-deploy
○ fetching updates
Fetching origin
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
error: Could not fetch origin
fetch failed
@GVRV
GVRV / joyent.txt
Created November 9, 2013 01:35
Joyent not able to reach Ubuntu keyserver
root@sckor-in:/usr/local/src/node/node-v0.10.18# ping keyserver.ubuntu.com
PING keyserver.ubuntu.com (91.189.89.49) 56(84) bytes of data.
From leszi.canonical.com (91.189.93.244) icmp_seq=11 Destination Host Unreachable
^C
--- keyserver.ubuntu.com ping statistics ---
15 packets transmitted, 0 received, +1 errors, 100% packet loss, time 14014ms
pipe 2
@GVRV
GVRV / api.py
Created August 13, 2013 08:49
tastypie example
# For address model
class AddressResource(ModelResource):
street_name = fields.CharField()
suburb = fields.CharField()
# For organization model
class OrganizationResource(ModelResource):
address = fields.ToOneField(AddressResource, 'address')
# Now when you get /api/v1/organization