This file contains 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
import csv | |
import argparse | |
from datetime import datetime | |
import os | |
from rich import print | |
key_website = 'Website' | |
key_order_date = 'Order Date' | |
key_total_cost = 'Total Owed' | |
key_name = 'Product Name' |
This file contains 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
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
export PS1="--------\n\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ " |
This file contains 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
#!/usr/bin/python | |
import urllib2 | |
import json | |
import locale | |
locale.setlocale(locale.LC_ALL, 'en_US') | |
RED = "#ff0000" | |
GREEN = "#00af00" |
This file contains 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
FROM alpine:3.3 | |
MAINTAINER NGINX Docker Maintainers "[email protected]" | |
ENV NGINX_VERSION 1.10.0 | |
ENV GPG_KEYS B0F4253373F8F6F510D42178520A9993A1C052F8 | |
ENV CONFIG "\ | |
--prefix=/etc/nginx \ | |
--sbin-path=/usr/sbin/nginx \ |
This file contains 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
// | |
// StatusBarNotificationManager.h | |
// | |
// Created by Rahul Jiresal on 2015-09-23. | |
// | |
#import <Foundation/Foundation.h> | |
#import <UIKit/UIKit.h> | |
@interface StatusBarNotificationManager : NSObject |
This file contains 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
#!/bin/bash | |
[ -d bkp ] || mkdir bkp | |
# change the file extension to whatever you want, mkv, avi, etc. | |
for f in *.mkv; | |
do | |
echo "========================== Processing $f =========================="; | |
HandBrakeCLI -i "$f" -o "${f%}.mp4" --preset="Normal" | |
mv "$f" bkp |
This file contains 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
/* | |
Openshift uses haproxy (haproxy.org) as a front proxy to route request to instances of the app. | |
This proxy does the job of unwrapping https and sets the 'x-forwarded-proto' header. | |
Because of this, the Node.JS app never sees the actual protocol of the request, unless it checks the presence of this header. | |
I modified the code written by goloroden (https://github.com/goloroden/node-force-domain) to check this header instead of ports. | |
This gist does exactly what his code does, except checks for actual protocol instead of relying on the port for the protocol. | |
*/ | |
var rewrite = function (route, options) { | |
options = _.defaults({ |
This file contains 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
# get the geocoder gem by doing 'gem install geocoder' or adding 'gem geocoder' to your Gemfile | |
require 'geocoder' | |
# configure geocoder service -- I'm using bing because it gives more API calls per day | |
Geocoder.configure( | |
# geocoding service (see below for supported options): | |
:lookup => :bing, | |
# IP address geocoding service (see below for supported options): | |
:ip_lookup => :maxmind, | |
# to use an API key: |
This file contains 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
require 'date' | |
require 'aws/s3' | |
class Settings | |
attr_accessor :username, :password, :database, :mysql_location, :access_key, :secret_key, :bucket_name | |
end | |
user_settings = Settings.new | |
user_settings.username = DATABASE_USERNAME | |
user_settings.password = DATABASE_PASSWORD |