Skip to content

Instantly share code, notes, and snippets.

View christinataft's full-sized avatar
🌴
Traveling, Creating, Leading!

Christina Taft christinataft

🌴
Traveling, Creating, Leading!
View GitHub Profile
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Opinion Lexicon: Positive
;
; This file contains a list of POSITIVE opinion words (or sentiment words).
;
; This file and the papers can all be downloaded from
; http://www.cs.uic.edu/~liub/FBS/sentiment-analysis.html
;
; If you use this list, please cite one of the following two papers:
@christinataft
christinataft / compliments_sample.json
Created March 19, 2021 04:53 — forked from Bill-Park/compliments_sample.json
Magic Mirror compliments change
compliments: {
day_sunny: [
"Today is a sunny day",
"It's a beautiful day"
],
day_cloudy: [
"day cloudy"
],
cloudy: [
"cloudy"
@ryck
ryck / compliments.json
Last active May 6, 2025 13:41
MagicMirror compliments file
{
"anytime" : [
"Hey there sexy!",
"I hope your day is as nice as your face!",
"Have you been working out?",
"I'm lucky to be your mirror!",
"The Force is strong with you",
"If I could high five you... I would!",
"On a scale from 1 to 10, you're an 15!",
"Being awesome is hard, but you'll manage",
@ammarshah
ammarshah / all_email_provider_domains.txt
Last active May 5, 2025 01:58
A list of all email provider domains (free, paid, blacklist etc). Some of these are probably not around anymore. I've combined a dozen lists from around the web. Current "major providers" should all be in here as of the date this is created.
0-mail.com
007addict.com
020.co.uk
027168.com
0815.ru
0815.su
0clickemail.com
0sg.net
0wnd.net
0wnd.org
@thimbl
thimbl / script.sh
Created March 19, 2011 00:43
shell script to create user accounts
#!/bin/bash
ROOT_UID=0
SUCCESS=0
E_USEREXISTS=70
# Run as root, of course. (this might not be necessary, because we have to run the script somehow with root anyway)
if [ "$UID" -ne "$ROOT_UID" ]
then
echo "Must be root to run this script."
exit $E_NOTROOT