Skip to content

Instantly share code, notes, and snippets.

View debloper's full-sized avatar

Soumya Deb debloper

View GitHub Profile
@debloper
debloper / README.md
Last active December 13, 2015 18:19
GNUnify 2013

GitHub: it's good for you!

A hands on development session on GitHub to help you jump start with collaborative open-source developments. Good if you already know Git; if not, then it'll help you learn.

Session covers GitHub basics, issues, wikis, pull-requests and github-pages for free static web-hosting for the project-websites.

More details: https://gist.github.com/debloper/4954530

Gearing up:

@debloper
debloper / es-csv-river.md
Last active December 19, 2015 00:59
Resolving CSV River 1.0.1 to work with ElasticSearch 0.90.1

The Challenge:

Implement a river for indexing CSV files, in the running ElasticSearch 0.90.1 instance.

Low Hanging Fruit:

As listed in ES' plugins page, ES-CSV-River seemed to be able to do the job easily.

Blockers:

  • To Site, or Not To Site: it wasn't possible to install CSV-River the usual way ($ bin/plugin -install xxBedy/elasticsearch-river-csv). ES plugin-system was detecting it to be a site-plugin, but for having the Java files in it, it was confused & aborted plugin-installations.
  • Call 911 (Maven, that is): Got JAR files built from the source with Maven & installed it - that seemed to work!
  • Processing, I see: Now that I create the river, with sample JSON fit to work with the sample CSV I generated - it seems to start indexing the file, but breaking just after. It adds the .processing to the file's extension & fails, reporting traceback for Exception in opencsv.
@debloper
debloper / app.js
Last active October 21, 2022 21:48
A simple WHOIS & Reverse Lookup server written in Node.js. Run `npm install express`, then `node <file>.js` to get the server(s) up
var net = require("net")
, dns = require("dns")
, exp = require("express")
, app = exp();
app.configure(function() {
app.use(exp.logger());
app.use(app.router);
});
@debloper
debloper / mailbomb.js
Last active December 21, 2015 00:29
Brace Yourself Sawrubh, emails are coming!
var count = 21+13+8+5+3+2+1+1+0
, bumps = [
"Keep Calm & Code On...",
"May The Source Be With You!",
"Want to change the world? Good! First, go get the source code.",
"Klaatu barada nikto.",
"Less Yak, More Hack!",
"Fuck It, Ship It.",
"Keyboard not found. Press < F1 > to resume.",
"<tits>( . ) ( . )</tits>",
@debloper
debloper / bandwidth.js
Last active November 5, 2023 19:15
Determine client's connection speed with JavaScript
// Let's initialize the primitives
var startTime, endTime, fileSize;
// Set up the AJAX to perform
var xhr = new XMLHttpRequest();
// Rig the call-back... THE important part
xhr.onreadystatechange = function () {
// we only need to know when the request has completed
@debloper
debloper / userChrome.css
Last active December 28, 2015 22:39
Sexy Tabs. Take that, Curvy Tabs! #firefoxAustralis :P
/* set default namespace to XUL */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
.tabbrowser-tab[selected] { margin-top: -1px !important; }
.tab-background-middle {
border-left: none !important;
border-right: none !important;
margin: 0 -0.5px !important;
}
@debloper
debloper / notes.md
Created November 26, 2013 01:11
WordPress Multisite on OpenShift Express

To start from scratch

  • Create a quickstart WordPress 3.x app with PHP & MySQL cartridge
  • Setup WordPress by visiting app-url/wp-admin/install.php
  • Clone the app locally for making further changes

OPTIONAL: version update

  • Update source with new WP version

Multisite configuration

  • Add define('WP_ALLOW_MULTISITE', true); to wp-config.php
@debloper
debloper / mediawiki.md
Last active August 29, 2015 13:56
Script examples for regular server deployments

Short URLs in MediaWiki

Settings for mediawiki running on Apache server, with clean URLs like domain.tld/Article_Name, when the installation directory is %{DOCUMENT_ROOT}/w/

The Contents of the .htaccess file:

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
@debloper
debloper / keybase.md
Created May 21, 2014 08:25
GitHub proof for Keybase

Keybase proof

I hereby claim:

  • I am debloper on github.
  • I am debs (https://keybase.io/debs) on keybase.
  • I have a public key whose fingerprint is B0CA 7DEA 40F3 120C 14A8 8484 9552 3A9B 0090 2AED

To claim this, I am signing this object:

@debloper
debloper / 9GAG.js
Last active November 15, 2021 07:35
Unlock NSFW without logging in
// Remap $ to jQuery object
var $ = jQuery;
// The real fun begins... first catch all the post-anchors & loop on them
$(document).on("scroll", function () {
// Let's declare some reusable globals for the next iterations
var urlBase = "http://img-9gag-lol.9cache.com/photo/";
$(".badge-evt.badge-nsfw-entry-cover").each(function () {
// Remove the NSFW class, to avoid redundant processing