This Gist is there to help you creating a Sankey Diagram from your Google Spreadsheets.
- Open a spreadsheet
- Click "Tools" -> "Scripts"
| // ==UserScript== | |
| // @name YouTube Shorts autoscroll | |
| // @version v0.0.2 | |
| // @grant none | |
| // @author Subhrajit Prusty, liponex | |
| // @description Just auto scroll through youtube shorts | |
| // @match https://www.youtube.com/* | |
| // ==/UserScript== | |
| (function () { |
| // ==UserScript== | |
| // @name Youtube Shorts autoscroll | |
| // @version v0.0.1 | |
| // @grant none | |
| // @author Subhrajit Prusty | |
| // @description Just auto scroll through youtube shorts | |
| // @include https://www.youtube.com/shorts/* | |
| // ==/UserScript== | |
| (function () { |
| import discord | |
| from discord.ext.commands import has_permissions, MissingPermissions | |
| from discord.ext import commands | |
| intents = discord.Intents.default() | |
| intents.members = True | |
| bot = commands.Bot(command_prefix='!', intents=intents) | |
| @bot.command() | |
| @has_permissions(kick_members=True) |
| ; F4 to start, F5 to pause in between | |
| ; runs 100 times, ie 100 engrams | |
| ; clear postmaster, or turn on farming mode on DIM | |
| ; Adjust coordinates according to your resolution - this is for 1920x1080p | |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. |
| #!/usr/bin/env python3 | |
| import gi | |
| import threading | |
| gi.require_version('Gst', '1.0') | |
| gi.require_version('GstBase', '1.0') | |
| gi.require_version('Gtk', '3.0') | |
| from gi.repository import GObject, Gst | |
| # Initialize threads | |
| GObject.threads_init() |
| #/bin/bash | |
| #-- Script to automate https://help.github.com/articles/why-is-git-always-asking-for-my-password | |
| # Forked from the original to do the opposite: Switch ssh repo urls to https | |
| # Original here: https://gist.github.com/m14t/3056747 | |
| # Thanks to @m14t | |
| #origin or upstream | |
| REMOTE=${1-origin} | |
| REPO_URL=`git remote -v | grep -m1 "^$REMOTE" | sed -Ene's#.*(git@github.com:[^[:space:]]*).*#\1#p'` |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
| #!/usr/bin/env bash | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |