Skip to content

Instantly share code, notes, and snippets.

@bboe
bboe / validation.rb
Last active July 23, 2021 18:45
ActiveModel Validation With Whitespace
View validation.rb
#!/usr/bin/env ruby
require 'active_model'
require 'minitest/autorun'
class Simple
include ActiveModel::Model
validates :name, allow_blank: true, allow_nil: true, length: { is: 2 }
attr_accessor :name
@bboe
bboe / domains.txt
Created June 16, 2021 23:03
Test time to DNS query and connect to various domains
View domains.txt
google.com
facebook.com
youtube.com
twitter.com
instagram.com
linkedin.com
microsoft.com
apple.com
wikipedia.org
googletagmanager.com
@bboe
bboe / set_retention.py
Last active April 14, 2022 09:54
Set retention on slack conversations with deleted users to 1 day.
View set_retention.py
#!/usr/bin/env python
"""Set retention on slack conversations to 400 days.
Usage: ./set_retention.py [--perform] --token SLACK_TOKEN
The `--perform` flag is necessary to actually perform the action.
Due to the fact that `conversations.setToken` is not part of the public API
the slack legacy token concept will not work. To obtain the API token,
open up slack in the browser and observe networking traffic while performing
@bboe
bboe / bits.txt
Last active December 27, 2017 17:04
Level XM17
View bits.txt
010000 1
010010 1
001010 4
110010 0
100010 4
100010 4
110101 3
010011 1
010110 1
001000 2
@bboe
bboe / NOTES.txt
Last active February 17, 2021 00:24
BBoe's Updates to "How To Make A reddit Bot — Part One"
View NOTES.txt
Intro:
I'm Bryce (/u/bboe) Author of PRAW
/u/busterroni's Submission:
https://www.reddit.com/r/learnpython/comments/5ury27/heres_a_tutorial_i_made_on_creating_a_reddit_bot/
/u/busterroni's Part 1:
https://www.youtube.com/watch?v=krTUf7BpTc0
@bboe
bboe / 01_sequential.rb
Last active October 11, 2017 18:50
Ruby Simple TCP Echo Servers
View 01_sequential.rb
#!/usr/bin/env ruby
require './common.rb'
require 'socket'
def main
server = server_socket('0.0.0.0', 1024)
loop do
handle_client(*server.accept)
end
@bboe
bboe / github_protect_master.py
Created December 15, 2015 19:22
Enable master branch protection on all github repositories you are an owner of.
View github_protect_master.py
#!/usr/bin/env python
from __future__ import print_function
REPO_URL = 'git+git://github.com/sigmavirus24/github3.py.git'
import os
import sys
try:
from github3 import login
except ImportError:
@bboe
bboe / image_attachment_downloader.py
Last active August 29, 2015 14:23
Email image attachment download (POP3 support only for now)
View image_attachment_downloader.py
#!/usr/bin/env python
from __future__ import print_function
from functools import wraps
from getpass import getpass
from hashlib import sha512
from poplib import POP3_SSL, error_proto
import email
import os
import socket
import sys
@bboe
bboe / reddit_oauth.py
Created June 5, 2015 05:49
Create permanent reddit oauth tokens
View reddit_oauth.py
#!/usr/bin/env python
"""Script to generate permenant OAuth tokens for the desired reddit scope."""
from __future__ import print_function
import os
import praw
import sys
from pprint import pprint
@bboe
bboe / parse_email_list.js
Last active January 26, 2022 23:24
Javascript email list parser with display name
View parse_email_list.js
function display_name(text) {
/* Remove all quotes
Remove whitespace, brackets, and commas from the ends. */
return text.replace(/(^[\s,>]+)|"|([\s,<]+$)/g, '');
}
function emails(addr_list) {
/* Regex source:
https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address
*/