Skip to content

Instantly share code, notes, and snippets.

View coramuirgen's full-sized avatar

Cora Muirgen coramuirgen

View GitHub Profile
@coramuirgen
coramuirgen / args syntax.vb
Last active April 29, 2016 15:42
Args Syntax
'| file dialog's file filter data
' mask , name, index
' *.* , All , 1
' *.txt, Text, 2
' etc...
' method 1: row-based
' named columns:
@coramuirgen
coramuirgen / 0_reuse_code.js
Created May 8, 2016 15:03
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@coramuirgen
coramuirgen / called by prepareinput.vbs
Last active July 5, 2016 09:10
called by prepareinput
Public Function PrepareEmpty(inputrecords As QueryableRecords, storagemode As StorageModes) As QueryableRecords
If storagemode = StorageModes.DirectModel Then
Set inputrecords = ModelRecords.CreateEmpty
ElseIf Var.Make(storagemode).OneOf(StorageModes.VirtualRecordset, StorageModes.XMLFileStream) Then
Set inputrecords = AdoRecords.CreateEmpty
End If
Set PrepareEmpty = inputrecords
@coramuirgen
coramuirgen / Records Input Parse.vbs
Last active July 5, 2016 09:10
Records Input Parse
Public Function PrepareFromInput(inputrecords As QueryableRecords, inputhasheader As RecordsHeaderType, ParamArray paraminput() As Variant) As QueryableRecords
On Error GoTo ErrHandler
' Input data supported:
' scalar value(s)
' arrays (single/multi dimensional)
' tuples (2-index)
' assocs (value must be scalar)
' lists/collections/enumerables/iterables
' map objects like Scripting.Dictionary (key:column name)/(value: field value or column of field values)

Keybase proof

I hereby claim:

  • I am coramuirgen on github.
  • I am coramuirgen (https://keybase.io/coramuirgen) on keybase.
  • I have a public key ASALDxWyMbGTOjMFQMIFGKO0UN0uFR79FvugwRSCPI_BPQo

To claim this, I am signing this object:

@coramuirgen
coramuirgen / wasavi.md
Last active November 18, 2017 19:38
wasavi options (firefox add-ons 57+)

wasavi settings found in Options page of Add-In

exrc

" exrc for wasavi
set nolaunchbell
set noerrorbells

font family

@coramuirgen
coramuirgen / surfingkeys_test.js
Created August 30, 2017 23:18
surfingkeys_test
// Unmap undesired defaults
var unmaps = [ "sb" , "sw", "ob"
, "ow" , "cp", ";cp"
, ";ap", "spa", "spb"
, "spd", "sps", "spc"
, "spi", "sfr", "zQ"
, "zz" , "zR", "ab"
, "Q" , "q", "ag"
, "af"
@coramuirgen
coramuirgen / vimvixen_style.css
Created April 29, 2018 19:50
VimVixen css styles
.vimvixen-console-frame {
margin: 0;
padding: 2px;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
position: fixed;
z-index: 2147483647;
border: none;
@coramuirgen
coramuirgen / vimvixen_current.json
Last active July 14, 2018 00:46
VimVixen current JSON settings
{
"keymaps": {
"0": { "type": "scroll.home" },
";": { "type": "command.show" },
"o": { "type": "command.show.open", "alter": false },
"O": { "type": "command.show.open", "alter": true },
"t": { "type": "command.show.tabopen", "alter": false },
"T": { "type": "command.show.tabopen", "alter": true },
"w": { "type": "command.show.winopen", "alter": false },
"W": { "type": "command.show.winopen", "alter": true },
@coramuirgen
coramuirgen / TreeStyleTab_style_notes.md
Last active July 20, 2018 20:10
TreeStyleTab complete styling replacement css

Prerequisite Settings for TreeStyleTab

  • Complete styling replacement (Theme: No Decoration)

Colors

Currently referencing css output from Pywal

  • Colors css can be imported in userContent.css.
  • Currently using a gold accent for selected tab and shadows regardless of colorscheme, looks good on light and dark colorschemes