Skip to content

Instantly share code, notes, and snippets.

View tallguyjenks's full-sized avatar
🌱
Growing useful code

Bryan Jenks tallguyjenks

🌱
Growing useful code
View GitHub Profile
@tallguyjenks
tallguyjenks / vault_stats.R
Created December 9, 2020 17:13
Stats and sentiment analysis on an obsidian vault
#!/usr/bin/env Rscript
# Install/Attach necessary packages to session
pkgs <- c('tidyverse','tidytext','tokenizers','DiagrammeR','glue')
xfun::pkg_attach2(pkgs)
#===============================================================#
#################### Environmental Variables ####################
vault_path <- '/Users/bryanjenks/Documents/Knowledge'
#===============================================================#
@tallguyjenks
tallguyjenks / RoamGruv.css
Created December 10, 2020 06:21
Gruvbox Dark Theme for Roam Research
/** Main Body */
.roam-body-main > div {
background-color: #282828;
color: #ebdbb2;
}
/** Top & Sidebars */
.roam-sidebar-content, .log-button, .bp3-icon, .rm-db-title, .roam-right-sidebar-content {
background-color: #1d2021 !important;
color: #ebdbb2 !important;
}
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;700&family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
--background: #282828;
--light-background: #3c3836;
--lighter-background: #504945;
--dark-background: #3c3836;
--darker-background: #1d2021;
--foreground: #ebdbb2;
--current-line: #504954;
@tallguyjenks
tallguyjenks / rates.py
Last active September 25, 2021 00:45
YouTube Sponsorship Calculator
#!/usr/bin/env python3.9
#
# Created by Bryan Jenks https://github.com/tallguyjenks on 2021-08-08
#
# You will need these libraries and can acquire them through the following commands
#
# pip install --upgrade google-api-python-client google-auth-oauthlib google-auth-httplib2 requests scrapetube
#
# YouTube API Python Quickstart guide:
# https://developers.google.com/youtube/v3/quickstart/python
@tallguyjenks
tallguyjenks / music_bot_example.py
Created November 4, 2021 05:07 — forked from Jonas1510/music_bot_example.py
A simple music bot written using discord.py rewrite and youtube_dl.
# -*- coding: utf-8 -*-
"""
Copyright (c) 2019 Valentin B.
A simple music bot written in discord.py using youtube-dl.
Though it's a simple example, music bots are complex and require much time and knowledge until they work perfectly.
Use this as an example or a base for your own bot and extend it as you want. If there are any bugs, please let me know.