Skip to content

Instantly share code, notes, and snippets.

@dhyey35
dhyey35 / GSoC'19 with Mozilla report.md
Created August 25, 2019 06:44
GSoC 2019 Mozilla - Inline Variable Preview Final Report
@dhyey35
dhyey35 / chat-frontend.js
Created March 27, 2019 08:52 — forked from martinsik/chat-frontend.js
Node.js chat frontend and server
$(function () {
"use strict";
// for better performance - to avoid searching in DOM
var content = $('#content');
var input = $('#input');
var status = $('#status');
// my color assigned by the server
var myColor = false;
@dhyey35
dhyey35 / quoraTruncate.user.js
Last active June 4, 2016 10:07
Truncate answers after reading them on quora
// ==UserScript==
// @name Quora Truncate Answer
// @namespace http://dhyeythakore.net/
// @version 0.1
// @description Truncate button to shorten ans after clicking on more
// @author Dhyey Thakore
// @match https://www.quora.com/
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js
// ==/UserScript==