Skip to content

Instantly share code, notes, and snippets.

View Jadens-arc's full-sized avatar

Jaden Arceneaux Jadens-arc

View GitHub Profile
@Jadens-arc
Jadens-arc / init.vim
Last active September 4, 2022 16:54
NeoVim Configuration
set nocompatible " disable compatibility to old-time vi
set showmatch " show matching
set ignorecase " case insensitive
set mouse=v " middle-click paste with
set hlsearch " highlight search
set incsearch " incremental search
set tabstop=2 " number of columns occupied by a tab
set softtabstop=2 " see multiple spaces as tabstops so <BS> does the right thing
set expandtab " converts tabs to white space
set shiftwidth=2 " width for autoindents
@Jadens-arc
Jadens-arc / Script.txt
Created January 3, 2020 04:21
The Bee Movie Script
According to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible. Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little. Barry! Breakfast is ready! Ooming! Hang on a second. Hello? - Barry? - Adam? - Oan you believe this is happening? - I can't. I'll pick you up. Looking sharp. Use the stairs. Your father paid good money for those. Sorry. I'm excited. Here's the graduate. We're very proud of you, son. A perfect report card, all B's. Very proud. Ma! I got a thing going here. - You got lint on your fuzz. - Ow! That's me! - Wave to us! We'll be in row 118,000. - Bye! Barry, I told you, stop flying in the house! - Hey, Adam. - Hey, Barry. - Is that fuzz gel? - A little. Special day, graduation. Never thought I'd make it. Three days grade school, three days high school. Those were awkw
@Jadens-arc
Jadens-arc / EmailClient.py
Created December 12, 2019 17:57
Gmail Wrapper for python
import smtplib
class EmailClient:
def __init__(self, user_address, user_password):
self.user_address = user_address
self.user_password = user_password
self.s = smtplib.SMTP('smtp.gmail.com', 587)
self.s.starttls()
@Jadens-arc
Jadens-arc / Inventory.json
Last active October 27, 2019 00:41
A simple json inventory system
{
}
@Jadens-arc
Jadens-arc / dice.py
Last active September 28, 2019 01:52
A dice simulator in python
import random, os
'''
run using python3 dice.py in terminal
made by Jaden Arceneaux
'''
dice = []
total = 0
def addDie():
global total
@Jadens-arc
Jadens-arc / runMyCode.py
Created August 7, 2019 20:02
This is a simple code running machine that will let you run your code in the terminal and even create shortcuts if there is a file that you constantly run. Do with it as you wish and feel free to suggest changes
import os
# welcome to my simple code running machine feel free to change code or add your own shortcuts!
supportedLang = ['cd to change working directory', 'quit to quit', 'Python', 'Python3', 'Java']
Dir = ""
def userSelect():
global Dir
userIn = input("what is the programming language you would like to use? \nSay help to see avalible languages\n")