I hereby claim:
- I am natfan on github.
- I am natfan (https://keybase.io/natfan) on keybase.
- I have a public key ASDblDUhdxZ2xJzW1XDfCT3rvHdKEyzx6MQ8bn2D_GK66Qo
To claim this, I am signing this object:
//debouncer.js | |
/* | |
This is the typical debouncer function that receives | |
the "callback" and the time it will wait to emit the event | |
*/ | |
function debouncer (fn, delay) { | |
var timeoutID = null | |
return (() => { | |
clearTimeout(timeoutID) | |
timeoutID = setTimeout(() => fn.apply(this, arguments), delay) |
function Remove-MyItem { | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory, Position = 1)] | |
[string] | |
$Path | |
) | |
$item = Get-Item -Path $Path |
<div class="uk-section uk-section-primary uk-padding-remove-vertical"> | |
<div class="uk-container"> | |
<div uk-grid> | |
<div class="uk-width-1-6"> | |
<nav uk-navbar> | |
<div class="uk-navbar-center"> | |
<a class="uk-navbar-item uk-logo" href=""> | |
<img class="uk-margin-small-right" height="48" width="48" src="https://image.flaticon.com/icons/svg/426/426121.svg"> | |
Dashboard | |
</a> |
function Get-OAuthToken { | |
[CmdletBinding()] | |
[OutputType([string])] | |
param ( | |
[Parameter(Mandatory)] | |
[Parameter(Mandatory)][ValidateScript({[GUID]::TryParse($_, [ref][GUID]::Empty)})][String]$TenantID, | |
[Parameter(Mandatory)][PSCredential][System.Management.Automation.CredentialAttribute()]$Credential | |
) | |
try { |
let barposition = "bottom" | |
" alias ':g' to ':tabnew google' | |
command g tabnew google | |
let searchalias g = "google" | |
" rebinds ; to : to stop that damn shift key | |
map ; : |
I hereby claim:
To claim this, I am signing this object:
public void SendInGameMesssage(String message) { | |
Bukkit.broadcast(message, "errors.notify"); | |
new BukkitPoster(message, "BugReporter").runTaskAsynchronously(this); | |
} |