Skip to content

Instantly share code, notes, and snippets.

View RoyalSix's full-sized avatar

Sterling (Jay) Scott RoyalSix

  • Los Angeles, CA
View GitHub Profile
@RoyalSix
RoyalSix / renam.sh
Created December 10, 2021 18:04
Rename Files
find ./src/pages -name 'index.js' -exec bash -c 'mv $0 ${0/index/index.page}' {} \;
{"lastUpload":"2021-05-13T20:02:39.427Z","extensionVersion":"v3.4.3"}
@RoyalSix
RoyalSix / main.py
Created July 3, 2019 19:24
Tensorflow Image Classification Example
# -*- coding: utf-8 -*-
"""Image Classification.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/gist/RoyalSix/c2841745a60a20742251d750c7267fbf/image-classification.ipynb
"""
from __future__ import absolute_import, division, print_function, unicode_literals
https://open.spotify.com/user/luke2398756321/playlist/6DhZhzYV5Ec2Bdz2hhNGJo?si=6CpSyFzqTM-Im1_zfu2Dcg
@RoyalSix
RoyalSix / bank_list.txt
Created March 1, 2019 08:58
List Of Banks
Bank of America
Wells Fargo Bank
Citi Bank
JP Morgan Chase Bank
Bank of the West
U.S Bank
CIT Bank
MUFG Union Bank
Comerica Bank
Rabobank
@RoyalSix
RoyalSix / TPS.wsdl
Created January 12, 2019 09:38
Bankcard Transaction WSDL
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://schemas.ipcommerce.com/CWS/v2.0/TransactionProcessing" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" name="TPS" targetNamespace="http://schemas.ipcommerce.com/CWS/v2.0/TransactionProcessing">
<wsp:Policy wsu:Id="
@RoyalSix
RoyalSix / gist:842c75bd3ec0367700baa73940143c1f
Created December 10, 2018 04:40
Save Git Commit Messages With Date
git log --date=format:'%b %d %I:%M%p' --since='last month' --pretty=format:'%ad, %s' > .log.csv
import consts from '../actions/ActionTypes';
const initialState = {
bibles: {},
translationHelps: {},
lexicons: {}
};
const resourcesReducer = (state = initialState, action) => {
switch (action.type) {
import React from 'react';
import PropTypes from 'prop-types';
// components
import {Glyphicon} from 'react-bootstrap';
import {SelectField, MenuItem} from 'material-ui';
import BooksOfTheBible from '../../../common/BooksOfTheBible';
const BookDropdownMenu = ({
bookId,
updateBookId,
@RoyalSix
RoyalSix / main.md
Last active August 27, 2018 16:47
Asset Management

File Structure

src
    assets
       -- index.js
       -- package.json
       -- logo.png
       ...
    index.js