Skip to content

Instantly share code, notes, and snippets.

View t-d-o-g's full-sized avatar

Travis Collins t-d-o-g

View GitHub Profile
@t-d-o-g
t-d-o-g / drinkers
Last active December 21, 2022 02:21
group: drinkers
DRINKER = { Did, NAME, ADDRESS, TYPE
1, 'John Smith', '123 fake st', 'Social'
2, 'Marc Antoine', '123 fake st', 'Social'
3, 'Tommy Hicks', '123 fake st', 'Social'
4, 'Paul weaver', '123 fake st', 'Social'
5, 'Courtney Shaw', '123 fake st', 'Social'
}
@t-d-o-g
t-d-o-g / orders
Last active October 16, 2022 15:34
group: orders
Customer = {
CID, Name, City, State
1, 'Bob', 'New York', 'New York'
2, 'Alice', 'Newark', 'New Jersey'
3, 'Carol', 'Jersey City', 'New Jersey'
4, 'Chuck', 'Boston', 'Massachusetts'
5, 'Craig', 'Newark', 'New Jersey'
}
@t-d-o-g
t-d-o-g / articles
Last active October 15, 2022 21:35
group: articles
Author = { authorID, name
1, 'John Smith'
2, 'Marc Antoine'
3, 'Tommy Hicks'
4, 'Paul weaver'
5, 'Courtney Shaw'
6, 'Scott Lawrence'
7, 'Nevaeh Soto'
@t-d-o-g
t-d-o-g / paintings
Last active October 15, 2022 13:21
group: paintings
Collection = {
Collection_Name, Painting_Id, Museum, City, State, Country
'Coll1', 1, 'Mus1', 'New York', 'New York', 'US'
'Coll2', 2, 'Guggenheim', 'New York', 'New York', 'US'
'Coll3', 3, 'Mus3', 'New York', 'New York', 'US'
'Coll4', 4, 'Guggenheim', 'New York', 'New York', 'US'
'Coll5', 5, 'Mus5', 'New York', 'New York', 'US'
'Coll6', 6, 'Mus6', 'New York', 'New York', 'US'
info: --> POST /wd/hub/session {"desiredCapabilities":{"platformName":"ios","app":"/Users/tcollins/Documents/Git/bi-iPhone/iPhoneBI/build/Debug-iphonesimulator/iPhoneBI.app","#app":"/Users/tcollins/Documents/TestTools/appium/sample-code/apps/UICatalog/build/Release-iphonesimulator/UICatalog.app","deviceName":"iPhone Simulator"}}
debug: Appium request initiated at /wd/hub/session
info: <-- POST /wd/hub/session 303 1.583 ms - 9
debug: Request received with params: {"desiredCapabilities":{"platformName":"ios","app":"/Users/tcollins/Documents/Git/bi-iPhone/iPhoneBI/build/Debug-iphonesimulator/iPhoneBI.app","#app":"/Users/tcollins/Documents/TestTools/appium/sample-code/apps/UICatalog/build/Release-iphonesimulator/UICatalog.app","deviceName":"iPhone Simulator"}}
debug: Appium request initiated at /wd/hub/session/4e23b43c-111b-40e0-a10b-08cfa03126ce
debug: Request received with params: {}
debug: Responding to client with success: {"status":0,"value":{"webStorageEnabled":false,"locationContextEnabled":false,"brow
@t-d-o-g
t-d-o-g / gist:7734650
Last active December 29, 2015 22:09
This is an application written in C that uses an array to store 15 number values provided by the user. Then outputs the total of all values stored, average of all values stored, the greatest value's position in the array, and the least value's position in the array.
#include <stdio.h>
#define maxelements 15
int greater (int stuff[], int max)
{
int x, big;
big = 1;