Skip to content

Instantly share code, notes, and snippets.

View drazisil's full-sized avatar
💭
Always Online - Somewhere

Molly Crendraven drazisil

💭
Always Online - Somewhere
View GitHub Profile
@cecilemuller
cecilemuller / launch.json
Last active May 16, 2024 16:38
Run ts-node in VSCode Debugger
{
"version": "0.2.0",
"configurations": [
{
"name": "Example",
"type": "node",
"request": "launch",
"runtimeExecutable": "node",
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"],
@idettman
idettman / add-to-existing-namespaces.js
Last active February 26, 2024 00:57
JavaScript: JSDoc Advanced Tips
/* https://leahayes.wordpress.com/2011/08/28/documenting-javascript-with-jsdoc3/
Namespaces can still be documented when a more abstract mechanism is used. @lends allows members to be added to an existing namespace:
*/
/**
* Root namespace
* @namespace root
*/
$namespace('root', /** @lends root **/ {
/**
@marcin-chwedczuk
marcin-chwedczuk / Main.java
Created November 18, 2017 14:36
Display values of MS-DOS Portable Executable header
// Needs Guava to compile:
//
// compile group: 'com.google.guava', name: 'guava', version: '23.4-jre'
//
import com.google.common.io.LittleEndianDataInputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
@xameeramir
xameeramir / default nginx configuration file
Last active May 23, 2024 17:10
The default nginx configuration file inside /etc/nginx/sites-available/default
# Author: Zameer Ansari
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
sudo apt install -y autoconf automake build-essential python-dev libtool libssl-dev pkg-config
cd /tmp
git clone https://github.com/facebook/watchman.git -b v4.9.0 --depth 1
cd watchman/
./autogen.sh
./configure --enable-lenient
make
sudo make install
ar_win_xp_pro_with_sp2_vl.iso Languages: Arabic SHA1: c36f4ff0a3e77ee058d82730509a1109fd6f59ae
ar_windows_xp_home_with_service_pack_3_x86_cd_x14-92405.iso Languages: Arabic SHA1: 5016d44562767022ef4a2444cf30b9bd0560ea26
ar_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74065.iso Languages: Arabic SHA1: 664e85af15aab89ae172fcdae9f3566a572bdab8
ar_windows_xp_professional_with_service_pack_3_x86_cd_x14-80396.iso Languages: Arabic SHA1: 22ae37b8f860d8ff7b30a82878e15931e41d1725
ar_windows_xp_service_pack_3_x86_cd_x14-61410.iso Languages: Arabic SHA1: bf0ddf4e47705010956b8d399ee09fe7346fe34d
ar_winxp_home_iso.img Languages: Arabic SHA1: 64ea20503ddab43d898b7a972802afb2be1566a1
ar_winxp_home_with_sp2.iso Languages: Arabic SHA1: 0facfa81ad2de3f93e8c309cc9d900514bbc8110
ar_winxp_pro_iso.img Languages: Arabic SHA1: a2cb395abfcd8d47dedca458e46e8aec02995ccb
ar_winxp_pro_vl_iso.img Languages: Arabic SHA1: 5f4254812eaf0590d5217e1b3aa99cced4947a35
ar_winxp_pro_with_sp2.iso Languages: Arabic SHA1: e123fb77a85408dc
codecov:
token: uuid # Your private repository token
url: "http" # for Codecov Enterprise customers
slug: "owner/repo" # for Codecov Enterprise customers
branch: master # override the default branch
bot: username # set user whom will be the consumer of oauth requests
ci: # Custom CI domains if Codecov does not identify them automatically
- ci.domain.com
- !provider # ignore these providers when checking if CI passed
# ex. You may test on Travis, Circle, and AppVeyor, but only need
@danicat
danicat / PKZIP APPNOTE 6.3.4.
Created May 26, 2016 17:46 — forked from ross-spencer/PKZIP APPNOTE 6.3.4.
Unmodified copy of PKZIP Speciffication, source date: 1 November 2015: https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT
File: APPNOTE.TXT - .ZIP File Format Specification
Version: 6.3.4
Status: Final - replaces version 6.3.3
Revised: October 1, 2014
Copyright (c) 1989 - 2014 PKWARE Inc., All Rights Reserved.
1.0 Introduction
---------------
1.1 Purpose
@jasongilman
jasongilman / atom_clojure_setup.md
Last active May 11, 2024 02:25
This describes how I setup Atom for Clojure Development.

Atom Clojure Setup

This describes how I setup Atom for an ideal Clojure development workflow. This fixes indentation on newlines, handles parentheses, etc. The keybinding settings for enter (in keymap.cson) are important to get proper newlines with indentation at the right level. There are other helpers in init.coffee and keymap.cson that are useful for cutting, copying, pasting, deleting, and indenting Lisp expressions.

Install Atom

Download Atom

The Atom documentation is excellent. It's highly worth reading the flight manual.

@williewillus
williewillus / primer.md
Last active December 20, 2020 08:13
1.8.9 to 1.9 quick primer