- http://stackoverflow.com/questions/804115 (
rebase
vsmerge
). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebase
vsmerge
) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
reset
vscheckout
vsrevert
) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse
) - http://stackoverflow.com/questions/292357 (
pull
vsfetch
) - http://stackoverflow.com/questions/39651 (
stash
vsbranch
) - http://stackoverflow.com/questions/8358035 (
reset
vscheckout
vsrevert
) - http://stackoverflow.com/questions/5798930 (
git reset
vsgit rm --cached
)
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 random import randrange | |
# All dem whiskeys | |
whiskeys = [ | |
'Blade & Bow', | |
'Ohishi Whisky Sherry', | |
'Glenlivet', | |
'Oban', | |
'Suntory Whiskey Toki', | |
'Powers whiskey', |
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 math | |
class Stats: | |
def __init__(self, dataset): | |
self.dataset = dataset | |
self.data_length = len(dataset) | |
self.mean = sum(dataset) / self.data_length | |
self.variance = None | |
self.SD = None |
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 numpy as np | |
""" | |
Special Notes: | |
- A model is your set weights and biases, and potentially an activation function | |
and potentially your type of network? Not sure. Need clarification | |
""" | |
# Inputs / variables from your dataset |
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 | |
kitchen =[] | |
pastry = [] | |
bakery = [] | |
elseer = [] | |
time = "morn" | |
def time_loc(loc): |
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
<div id="686570787875442569" class="wcustomhtml" style="width: 100%; overflow-y: hidden;" align="left"> | |
<script src= "https://book.mylimobiz.com/v4/Scripts/iframeResizer/iframeResizer.min.js" type="text/javascript"> | |
</script> | |
<iframe id="ores4iframe" style="overflow: hidden; height: 1291px;" tabindex="0" src="https://book.mylimobiz.com/v4/newtonsbighat?refererUrl=http://www.newtonsbighatlimousines.com/" width="100%" height="150" frameborder="0" scrolling="no"></iframe> <script type= "text/javascript" src= "https://book.mylimobiz.com/v4/widgets/widget-loader.js"> | |
</script></div> | |
</div> |
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
$(function(){ | |
var requestUrl = '/physmodo/API/GYM-OWNERS.php'; | |
$.post(requestUrl, function (data) { | |
for(var i = 0; i < data.length; i++){ | |
// DATA SELECTIONS | |
var dataTable = $('.dataTable--body'); | |
var gymOwnerID = data.["#"]; | |
var gymOnwerName = data.["#"]; |
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
<?php | |
/** | |
* The base configuration for WordPress | |
* | |
* The wp-config.php creation script uses this file during the | |
* installation. You don't have to use the web site, you can | |
* copy this file to "wp-config.php" and fill in the values. | |
* | |
* This file contains the following configurations: | |
* |
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 math | |
class MyProcessingClass: | |
def __init__(self, str_list): | |
self._str_list = str_list | |
self._float_list = [] |
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 tweepy import Stream | |
from tweepy import OAuthHandler | |
from tweepy.streaming import StreamListener | |
import time | |
ckey = 'Xwk45yibY06n7wHFHuoI2KVhi' | |
csecret = 'uWbOJZdRTmLDFKIxJKoR3huDwprOqefpwctEMIfE3gXfwruN5H' | |
atoken = '3096677539-t2d26ZLh1YbciYRub7TtGfEvrhF5MxhRTsNjuIb' | |
asecret = 'N4sSNMBw0TLG8yEwcGRAL15bSSeK1oO8SBZG63B8WiE9s' |