Skip to content

Instantly share code, notes, and snippets.

View arindam89's full-sized avatar

Arindam Paul arindam89

  • Chief Architect at Safe Security
  • Bengaluru, India
  • 23:54 (UTC +05:30)
  • X @geek_paul
View GitHub Profile
# this file contains keys needed for decryption of file system data (WUD/WUX)
# 1 key per line, any text after a '#' character is considered a comment
# the emulator will automatically pick the right key
541b9889519b27d363cd21604b97c67a # example key (can be deleted)
d7b00402659ba2abd2cb0db27fa2b656 # Common
805e6285cd487de0faffaa65a6985e17 # Espresso Ancast
b5d8ab06ed7f6cfc529f2ce1b4ea32fd # Starbuck Ancast
9a164ee15ac7ceb64d3cc130094095f6 # 007 Legends [EUR, NUS]
@ceejbot
ceejbot / esm_in_node_proposal.md
Last active June 20, 2024 10:45
npm's proposal for supporting ES modules in node

ESM modules in node: npm edition

The proposal you’re about to read is not just a proposal. We have a working implementation of almost everything we discussed here. We encourage you to checkout and build our branch: our fork, with the relevant branch selected. Building and using the implementation will give you a better understanding of what using it as a developer is like.

Our implementation ended up differing from the proposal on some minor points. As our last action item before making a PR, we’re writing documentation on what we did. While I loathe pointing to tests in lieu of documentation, they will be helpful until we complete writing docs: the unit tests.

This repo also contains a bundled version of npm that has a new command, asset. You can read the documentation for and goals of that comma

@tcw165
tcw165 / ConcurrencyModelOfJavaScript.js
Last active August 30, 2015 13:54
Experiment for testing the "Concurrency Model and Event Loop" of JavaScript.
/**
* This is an experiment for testing the "Concurrency Model and Event Loop" of
* JavaScript.
*
* It's designed that an asynchronous function with a given callback is called;
* And subsequently a synchronous function which is designated to take far more
* time than the asynchronous one will take is called.
*
* Question: what is the response order of async-fun/sync-fun/callback?
*
@staltz
staltz / introrx.md
Last active July 15, 2024 15:43
The introduction to Reactive Programming you've been missing
@mhartington
mhartington / CustomTheme
Last active December 8, 2018 20:35
If you want to make a custom theme for ionic, and are using scss, this is a base to get you started
//Custom Theme test
// Colors
// -------------------------------
$custom: #057b6c !default;
// Buttons
// -------------------------------
$button-custom-bg: $custom !default;
@arindam89
arindam89 / httpd-vhosts.conf
Created March 31, 2013 12:04
Virtual Host for Apache
<VirtualHost *:80>
DocumentRoot "/Users/arpaul/Sites/school/public"
ServerName school.dev
<Directory "/Users/arpaul/Sites/school/public">
Options FollowSymLinks Indexes MultiViews
AllowOverride All
</Directory>
</VirtualHost>
@olivierlacan
olivierlacan / gist:4062929
Last active February 10, 2024 10:57 — forked from Gregg/gist:968534
Code School Screencasting Framework

Screencasting Framework

The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.

Why you should care about screencasting?

You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.

  1. Communicating more effectively - At Envy Labs we produce screencasts for our clients all the time. Whether it's demoing a new feature or for a presentation for an invester, they're often much more effective and pleasent than a phone call or screen sharing.
#!/bin/bash
# ~/.bashrc
#
#
# shosei
# Shell Init
[[ $PATH = *local/bin* ]] || PATH=$PATH:/usr/local/bin
[[ $- = *i* ]] || return