I hereby claim:
- I am stylemistake on github.
- I am stylemistake (https://keybase.io/stylemistake) on keybase.
- I have a public key whose fingerprint is 6261 74AE 9437 FBBB D3E6 1638 0E84 EEE6 7EAE C195
To claim this, I am signing this object:
const logger = { | |
error: (...args) => console.error('plugin-npmrc:', ...args), | |
warn: (...args) => console.warn('plugin-npmrc:', ...args), | |
info: (...args) => console.info('plugin-npmrc:', ...args), | |
}; | |
// A plugin to transparently load auth tokens from .npmrc files. | |
const plugin = { | |
name: 'plugin-npmrc', | |
/** @type {(require: NodeRequire) => unknown} */ |
enum LoadableStates { | |
Initial = 'initial', | |
Loading = 'loading', | |
Error = 'error', | |
Value = 'value', | |
} | |
type LoadableInitial = Loadable & { | |
readonly state: LoadableStates.Initial; | |
}; |
class_name Trail | |
extends Node3D | |
@export var emitting := false | |
@export_range(0.1, 100, 0.1, 'or_greater') var distance := 1.0 | |
@export_range(0.1, 10, 0.1, 'or_greater') var lifetime := 1.0 | |
@export_range(0.01, 10, 0.01, 'or_greater') var width_scale := 1.0 | |
@export var width_curve: Curve | |
@export_range(0.01, 1, 0.01) var color_alpha := 1.0 | |
@export var color_gradient: Gradient |
'use strict'; | |
var fs = require('fs'); | |
// -------------------------------------------------------- | |
// Get LSB data from buffer | |
// -------------------------------------------------------- | |
function bufToLSB(buf, bufBits, bufLE, offset, length, lsbLE) { |
#!/bin/bash | |
export DISPLAY=:0 | |
export GPU_MAX_ALLOC_PERCENT=100 | |
export GPU_USE_SYNC_OBJECTS=1 | |
temp=`aticonfig --odgt 2>/dev/null | tail -1 | awk '{print $5}'` | |
echo ${temp%?} |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
## -------------------------------------------------------- | |
## Textmoji v0.1 | |
## Style Mistake <stylemistake@gmail.com> | |
## -------------------------------------------------------- | |
declare -A charmap | |
eof=`echo -en '\x04'` |
// chat.cfg | |
// -------------------------------------------------------- | |
// Smileys | |
// -------------------------------------------------------- | |
// smiley_happy | |
alias smiley_happy "say :)" | |
// smiley_sad |
// wait.cfg | |
alias wait2 "wait;wait;" | |
alias wait5 "wait;wait;wait;wait;wait;" | |
alias wait10 "wait5;wait5;" | |
alias wait25 "wait5;wait5;wait5;wait5;wait5;" | |
alias wait50 "wait25;wait25;" | |
alias wait75 "wait25;wait25;wait25;" | |
alias wait100 "wait25;wait25;wait25;wait25;" | |
alias wait125 "wait25;wait25;wait25;wait25;wait25;" |
// weapons.cfg | |
// Advanced weapon bindings | |
// -------------------------------------------------------- | |
// Internals | |
// -------------------------------------------------------- | |
alias weap1 "use rl" // Fallback weapon | |
alias weap2 "wait" // Queued weapon |