Skip to content

Instantly share code, notes, and snippets.

@Lyss770
Lyss770 / Automod_Banned Words
Last active April 27, 2024 20:33
Dyno™ | Master Blacklist for the Discord Bot Dyno. Use at your own discretion, make sure there are no extra spaces between words, When copying multiple words a comma must be located between each one as shown below. Originally created by Takeoverkyle
cunt,pussy,anus,nigg,nigger,n!gg,n1gg,n igger,n i gger,hitler,adolf,adolf hitler,nazi,chode,rape,r@pe,niglet,dyke,dike,fagg,faggot,faggit,kike,nigaboo,nigaboo,niga-boo,pedofile,stalin,beastiality,jospeh stalin,maozedong,rapist,osama binladen,binladen,saddam hussein,heinrich himmler,adolf eichmann,eichmann,kim il sung,kim jung un,ayatollah ruhollah khomeini,hirohito,idi amin,vlad dracula,islamic state,isis,jhadi,slut,whore,buttplug,butt plug,vladimir putin,putin,fidel castro,raúl castro,2girls,2guys,1guy,1girl,dick cheese,dickcheese,twat,nudes,clit,adam saleh,dzhokhar tsarnaev,molest,flesh light,fleshlight,retard,kys,cummies,everyone,here,bomber,hentai,shesaidshewas18,shewas18,hesaidhewas18,hewas18,crippling depression,depression,giftsofsteam,giftofsteam,steamdigitalgift,kill yourself,kill urself,mein fuhrer,akbar,swastika,gooch,brock turner,dylan roof,steamcube,steam-cube,dick pick,pick dick,dick pic,dickpic,std,hiv,coont,octopussy,slave,genghis khan,هههههههههه,ᅠᅠᅠ,assgod,im kill myself,imkillmyself,fuck butt
@chatchavan
chatchavan / README.md
Last active April 27, 2024 20:33
Setup Wifi on Raspberry Pi

Setup Wireless LAN for Raspberry Pi

The following guide describes how to setup Raspberry Pi to connect to Wifi. It was tested on the following environment:

  • Raspberry Pi Model B
  • Edimax EW-7811Un USB Wifi dongle
  • OS: Raspbian Jessie

Here are the overview of the steps:

@ruvnet
ruvnet / lion_x_rUv.py
Created April 12, 2024 21:28
LionAGI x rUv v0,01
import os
import asyncio
import subprocess
import importlib
import sys
from dotenv import load_dotenv
from lionagi import Session
from e2b_code_interpreter import CodeInterpreter
from llama_index.core import (
VectorStoreIndex,
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active April 27, 2024 20:30
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

Note

This no longer works if you're alone in vc! Somebody else has to join you!

How to use this script:

  1. Accept the quest under User Settings -> Gift Inventory
@andreasvirkus
andreasvirkus / Editor.vue
Last active April 27, 2024 20:27
Tiptap emoji plugin for Klausapp
<template>
<div ref="editor" class="notranslate">
<div v-show="showSuggestions" ref="suggestions">
<template v-if="(filteredSuggestions || []).length">
<div
v-for="(item, index) in filteredSuggestions.slice(0, 10)"
:key="index"
:class="[$style.suggestion, navigatedSuggestionIndex === index && $style.selected]"
@click="selectSuggestion(item)"
>
@SKempin
SKempin / Git Subtree basics.md
Last active April 27, 2024 20:22
Git Subtree basics

Git Subtree Basics

If you hate git submodule, then you may want to give git subtree a try.

Background

When you want to use a subtree, you add the subtree to an existing repository where the subtree is a reference to another repository url and branch/tag. This add command adds all the code and files into the main repository locally; it's not just a reference to a remote repo.

When you stage and commit files for the main repo, it will add all of the remote files in the same operation. The subtree checkout will pull all the files in one pass, so there is no need to try and connect to another repo to get the portion of subtree files, because they were already included in the main repo.

Adding a subtree

Let's say you already have a git repository with at least one commit. You can add another repository into this respository like this:

@heaversm
heaversm / podquest-scraper-final.js
Created December 20, 2023 01:02
Puppeteer Scraper for Podquest
//import puppeteer
import puppeteer from 'puppeteer';
async function muiSelectOption(page, buttonSelector, optionValue) {
let liComponent;
let selectorSubstr = buttonSelector.substring(1); // Remove the leading '#' or '.'
if (optionValue) {
liComponent = `li[data-value="${optionValue}"]`;
} else {
liComponent = 'li:first-child';
@yowu
yowu / HttpProxy.go
Last active April 27, 2024 20:17
A simple HTTP proxy by Golang
package main
import (
"flag"
"io"
"log"
"net"
"net/http"
"strings"
)
@berkorbay
berkorbay / github_desktop_ubuntu.md
Last active April 27, 2024 20:19
To install Github Desktop for Ubuntu

IMPORTANT

See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)

For the sake of "maintaining the tradition" here is the updated version.

@memphys
memphys / shortcuts.md
Created March 28, 2012 12:22
Bash Shortcuts For Maximum Productivity

source: http://www.skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/

Command Editing Shortcuts

  • Ctrl + a – go to the start of the command line
  • Ctrl + e – go to the end of the command line
  • Ctrl + k – delete from cursor to the end of the command line
  • Ctrl + u – delete from cursor to the start of the command line
  • Ctrl + w – delete from cursor to start of word (i.e. delete backwards one word)
  • Ctrl + y – paste word or text that was cut using one of the deletion shortcuts (such as the one above) after the cursor