Skip to content

Instantly share code, notes, and snippets.

@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active March 10, 2025 11:48
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@ouchadam
ouchadam / upload.sh
Last active February 20, 2023 15:02
Upload APK to appcenter app=my-cool-app owner=owner-in-appcenter file=path/to/file token=1234-api-token destination_name=group-to-apply
#!/bin/bash
set -e
CONFIG=$@
for line in $CONFIG; do
eval "$line"
done
AUTH="X-API-Token: $token"
CONTENT_TYPE=application/vnd.android.package-archive
@cihanmehmet
cihanmehmet / subdomain_wordlist.md
Last active February 17, 2025 14:18
Subdomain Wordlist
/*
* jscript.js
*/
'use strict';
/*
* Workflow
*/
function get(name) { return Watch.getVariable(name); }
@rahuldass
rahuldass / ClearAllTextboxes.md
Created May 13, 2015 10:07
Clear all Textboxes in C#

###Clear all Textboxes

Clear all Textboxes in C#

Button Click

private void clearButton_Click(object sender, EventArgs e)
        {
            ClearAllText(this);
 }