Skip to content

Instantly share code, notes, and snippets.

{
"$schema": "https://aka.ms/terminal-profiles-schema",
"globals": {
"initialRows": 30,
"initialCols": 120,
"alwaysShowTabs": true,
"showTerminalTitleInTitlebar": true,
"experimental_showTabsInTitlebar": true,
"requestedTheme": "dark",
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}"
@nerdpad
nerdpad / actionlist.vim
Created October 22, 2018 16:23 — forked from zchee/actionlist.vim
IdeaVim actionlist
--- Actions ---
$Copy <M-C>
$Cut <M-X> <S-Del>
$Delete <Del> <BS> <M-BS>
$LRU
$Paste <M-V>
$Redo <M-S-Z> <A-S-BS>
$SearchWeb <A-S-G>
$SelectAll <M-A>
$Undo <M-Z>
@nerdpad
nerdpad / .editorconfig
Created July 13, 2018 22:54
Visual Studio editorconfig
# EditorConfig is awesome:http://EditorConfig.org
# top-most EditorConfig file
root = true
# Don't use tabs for indentation.
[*]
indent_style = space
# (Please don't specify an indent_size here; that has too many unintended consequences.)
@nerdpad
nerdpad / firebase_pre-request_script.js
Created December 7, 2017 21:23 — forked from moneal/firebase_pre-request_script.js
Postman pre-request script to create a Firebase authentication JWT header.
/**
* This script expects the global variables 'refresh_token' and 'firebase_api_key' to be set. 'firebase_api_key' can be found
* in the Firebase console under project settings then 'Web API Key'.
* 'refresh_token' as to be gathered from watching the network requests to https://securetoken.googleapis.com/v1/token from
* your Firebase app, look for the formdata values
*
* If all the data is found it makes a request to get a new token and sets a 'auth_jwt' environment variable and updates the
* global 'refresh_token'.
*
* Requests that need authentication should have a header with a key of 'Authentication' and value of '{{auth_jwt}}'
@nerdpad
nerdpad / Debug.md
Created February 24, 2016 19:24
Atom Beautify Ieeus "space_after_anon_function"
@nerdpad
nerdpad / DB.sql
Created May 12, 2015 15:58
This is a sample to recreate the issue posted on stackoverflow: http://goo.gl/U83sfn
USE master
GO
-- Enable FileStream at the Instance Level
EXEC sp_configure filestream_access_level, 2
RECONFIGURE
GO
-- Provide a FileStream Filegroup
-- Create Client DB Database
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.util.AttributeSet;
import android.view.View;
import android.view.animation.AccelerateDecelerateInterpolator;
import android.view.animation.Interpolator;