Skip to content

Instantly share code, notes, and snippets.

View GauravK-ck12's full-sized avatar

Gaurav Kotarwar CK-12 GauravK-ck12

View GitHub Profile
@mohammedyunus009
mohammedyunus009 / pdf2htmlEX.sh
Last active August 23, 2023 07:42 — forked from rajeevkannav/pdf2htmlEX.sh
Install CMake, pkg-config,GNU Getopt,GCC,poppler,fontforge,pdf2htmlEX in Ubuntu 16.05
#!/bin/bash
# Ubuntu Developer Script For pdf2htmlEx
# Created by Rajeev Kannav Sharma
# http://rajeevkannav.github.io/
#
#
# Downloads and configures the following:
#
# CMake, pkg-config
# GNU Getopt
@stephenheard
stephenheard / history_example_with_jquery.js
Last active December 12, 2019 17:29
Quick History.js Example (with jQuery)
// have jQuery and history.js already loaded
//
// this works with hyperlinks and back/forward buttons
// and anywhere you use History.pushState
$(function() {
// run after page is loaded
ajaxifyLinks();
@jhurliman
jhurliman / base64.js
Created September 29, 2011 06:39 — forked from Marak/base64.js
An extremely simple implementation of base64 encoding / decoding using node.js Buffers (plus url-safe versions)
/*
* base64.js: An extremely simple implementation of base64 encoding / decoding using node.js Buffers
*
* (C) 2010, Nodejitsu Inc.
* (C) 2011, Cull TV, Inc.
*
*/
var base64 = exports;