Skip to content

Instantly share code, notes, and snippets.

View debloper's full-sized avatar

Soumya Deb debloper

View GitHub Profile
@debloper
debloper / ingress.js
Created July 14, 2014 11:05
Distraction Free Ingress Intel
// Here are the elements we don't need to see
// Feel free to remove the ones you _do_ need
var elements = [
"header",
"comm",
"geotools",
"game_stats",
"player_stats",
"bottom_right_stack",
"portal_filter_header",
@debloper
debloper / README.md
Last active November 7, 2024 13:05
Flashing Firefox OS on Flame Reference Devices

Flashing Flame Devices with Firefox OS

If you have a Flame reference device and wanna try out alternate versions of Firefox OS apart from the stock one, but not willing to build from source, then follow this mini-manual.

Get the build

You can download the packages from the Nightly Build directories of Mozilla FTP. You specifically need the following two files:

  • b2g-XX.0a1.en-US.android-arm.tar.gz (XX is the version number)
  • gaia.zip
@debloper
debloper / repel.js
Last active August 29, 2015 14:07
Lean mouseover-on-page element animator scripts
// Set the element to select; the only moving part here
// Like literally...
var elem = document.querySelector("elem")
, html = document.querySelector("html");
// Apply positioning, just in case it wasn't already
elem.style.position = "absolute";
// Take the viewport height/width into consideration
// @TODO: should be updated on window resize
@debloper
debloper / timing.md
Created March 15, 2015 04:21
Hacking Gaia at FOSSAsia2015

Total Time 1:30hrs

Break ups:

  • [5min] Introduction of Gaia
    • Schematic Architecture of FxOS
    • Pick the top layer - i.e. Gaia
    • Discuss it's attributes (built with Web Technologies)
    • Briefly discuss the general overview
    • Demonstration of Mulet, WebIDE (& Flame)
  • [10min] App security/permission model
@debloper
debloper / schema.svg
Created March 25, 2015 10:52
Uniqueness of Singularity
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@debloper
debloper / reset.sh
Created May 2, 2015 12:59
Reset forgotten MySQL root password
service mysql stop
mysqld_safe --skip-grant-tables
mysql --user=root mysql
@debloper
debloper / benderSays.rs
Created May 17, 2015 08:22
A simple switch-case/match with string output reference implementation on Rust
use std::os;
fn main() {
let argv = &os::args();
match argv[1] {
~"biteMe" => println("\n\tBite my _Rusty_ metal ass!\n"),
~"killYa" => println("\n\tKILL ALL HUMANS!\n"),
~"letsGo" => println("\n\tLet's GO ALREADYYY...\n"),
_ => println("\n\tOh. Your. God.\n")
}
}
@debloper
debloper / readme.md
Last active August 9, 2018 21:21
URL scheme customization for a Ghost blog

Quick steps to change URL scheme in a self-deployed Ghose blog:

  • Open DB in CLI: # sqlite3 content/data/ghost.db
  • Set the UX properties (optional): sqlite> .headers ON & sqlite> .mode column
  • Check the settings table (look for key "permalinks"): sqlite> SELECT * FROM settings;
  • Change the URL scheme: sqlite> update settings set value = '/:id/' where key = 'permalinks';
  • Quit database (sqlite> .quit) & restart ghost server

N.B: year, month, day, slug, id etc are valid keywords for configuring the URL (let me know if I've missed any).
Statutory Warning: if you're using different database, the steps are similar, but the commands will differ to achieve the same purpose. Also, I'm not to be blamed if you broke your thing while trying this out.

@debloper
debloper / docker-compose.yml
Last active October 4, 2017 13:29
Fabric8 Planner Stack
version: '3'
services:
planner:
build: .
container_name: fabric8-planner-runtime
image: fabric8-planner-runtime
# command: npm run test:unit
environment:
FABRIC8_WIT_API_URL: http://localhost:8080/api/
@debloper
debloper / homepage.md
Last active April 21, 2018 14:15
Get Started with Fabric8 Planner
  • Head over to Fabric8 Planner Repo on GitHub
  • Fork the repo, then clone the repo locally and switch to gh-pages branch
  • Use any static file-server (for e.g. python SimpleHTTPServer or npm http-server) to serve the content
  • Open the URL in your favorite modern browser (usually http://localhost:8080 or http://localhost:3000)
  • You should see the landing page like http://fabric8-ui.github.io/fabric8-planner/

  • If everything is good till now, then you're ready to make changes to the source
  • Maintain good commitiquettes to add new changes, and push them to your fork