This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [x] Science! Continued (xScienceContinued 6.0.3.1) | |
| +Flags (PlusFlags 1.6) | |
| Advanced Fly-By-Wire (Windows) (AdvancedFlyByWire 1.8.4.5) | |
| Advanced Jet Engine (AdvancedJetEngine v2.20.0) | |
| AJE Extended (AJEExtendedConfigs 2:v2.0.5) | |
| B9 Part Switch (B9PartSwitch v2.21.0.4) | |
| Breaking Ground (BreakingGround-DLC 1.7.1 (unmanaged)) | |
| CactEye-2 Orbital Telescope Refocused (CactEyeCommunityRefocused 1.5.4.2) | |
| Chatterer (Chatterer 0.9.99) | |
| ClickThrough Blocker (ClickThroughBlocker 1:2.1.10.22) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo penis penis | |
| unbindall | |
| //double switch | |
| alias "+switch" "lastinv" | |
| alias "-switch" "lastinv" | |
| bind "q" "+switch" | |
| //some random stuff | |
| bind "home" "getout" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.zshrc file for zsh interactive shells. | |
| # see /usr/share/doc/zsh/examples/zshrc for examples | |
| setopt autocd # change directory just by typing its name | |
| #setopt correct # auto correct mistakes | |
| setopt interactivecomments # allow comments in interactive mode | |
| setopt magicequalsubst # enable filename expansion for arguments of the form ‘anything=expression’ | |
| setopt nonomatch # hide error message if there is no match for the pattern | |
| setopt notify # report the status of background jobs immediately | |
| setopt numericglobsort # sort filenames numerically when it makes sense |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdbool.h> | |
| int _pow(int a, int exp) { | |
| int result = 1; | |
| for(int i = 0; i < exp; i++) { | |
| result *= a; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local S="" | |
| local A=25 | |
| local B=61 | |
| local C=97 | |
| local D=133 | |
| local E=135 | |
| PROMPT="%K{$A}%k%K{$A} %k%K{$A}%n%k%K{$A}%F{$A}$S%f%k%K{$B}%F{$A}$S%f%k%K{$B}%F{$B}$S%f%k%K{$B}%~%k%K{$B}%F{$B}$S%f%k%K{$C}%F{$B}$S%f%k%K{$D}%F{$C}$S%f%k%K{$E}%F{$D}$S%f%k%K{$E}%F{$E} %f%k%K{$E}%T%k%K{$E}%F{$E} %f%k%F{$E} $ %f" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # this code isnt really mine but i dont remember where i found it ¯\_(ツ)_/¯ | |
| import random | |
| import discord | |
| from discord.ext import commands | |
| intents = discord.Intents.all() | |
| intents.members = True | |
| client = commands.Bot(command_prefix='!', intents=intents) | |
| messages = [ | |
| "Stop", | |
| "Why genshin??", |