Skip to content

Instantly share code, notes, and snippets.

View hamzaPixl's full-sized avatar
👨‍💻
Webaholic

pixl hamzaPixl

👨‍💻
Webaholic
View GitHub Profile
@EmilienD
EmilienD / BRANCH_NAME_MAKER.js
Last active July 25, 2019 13:10
Unsophisticated user script to create branch name out of Jira ticket page (triggered by clicking on the tomato dot in the top right corner, or ctrl+shift+B)
// ==UserScript==
// @name BRANCH_NAME_MAKER
// @include https://qover001.atlassian.net/browse/*
// @grant GM.setClipboard
// ==/UserScript==
const clickZone = document.createElement('div')
clickZone.style = `
position: absolute;
top: 15px;
@HoldOffHunger
HoldOffHunger / bradvin.social.share.urls.txt
Last active November 30, 2025 22:50
Social Share URL's (Summary)
https://www.facebook.com/sharer.php?u={url}
https://www.facebook.com/dialog/share?app_id={app_id}&display={page_type}&href={url}&redirect_uri={redirect_url}
https://reddit.com/submit?url={url}&title={title}
https://twitter.com/intent/tweet?url={url}&text={title}&via={user_id}&hashtags={hash_tags}
https://www.linkedin.com/sharing/share-offsite/?url={url}
https://api.whatsapp.com/send?phone={phone_number}&text={title}%20{url}
https://www.tumblr.com/widgets/share/tool?canonicalUrl={url}&title={title}&caption={text}&tags={hash_tags}
http://pinterest.com/pin/create/button/?url={url}
https://www.blogger.com/blog-this.g?u={url}&n={title}&t={text}
https://www.evernote.com/clip.action?url={url}&title={title}
@pksunkara
pksunkara / config
Last active November 6, 2025 15:19
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
# vi: ft=dosini
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
username = pksunkara
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
[column]