Skip to content

Instantly share code, notes, and snippets.

Text
Elizabeth Borgman requests $6.00 - . To pay, go to Venmo and complete the request. Don't have the Venmo app? Download it at venmo.com
I just wanted to say I appreciate you! Thank you so much for willingly getting your butt kicked yesterday for my birthday. And now that you're experienced, lemme know when you're ready for your next sesh
Hisaac! Glad we could hang and catchup yesterday. Happy day 2 of sabbatical and have fun on all ur trips! See u for the next codeword battle sometime in the future
Hey Julia, https://www.youtube.com/watch?v=DZPP0UTlags These were the videos I was talking about https://www.youtube.com/watch?v=iSpxknPnXtg subscribe please :)
Thanks for enrolling in the Dripp loyalty program! View for program details: https://squareup.com/loyalty/profile/DGHSDFA6CR
BIG Industry Show 2019 at the Miami Beach Convention Center - August 22-23. Pre-Registration is Now Open. Buyer Registration is Free. http://bit.ly/2HnccYI
sure, those all sound good! i vote tapas if we come across that
We can't make this file beautiful and searchable because it's too large.
App,Category,Rating,Reviews,Size,Installs,Type,Price,Content Rating,Genres,Last Updated,Current Ver,Android Ver
Photo Editor & Candy Camera & Grid & ScrapBook,ART_AND_DESIGN,4.1,159,19M,"10,000+",Free,0,Everyone,Art & Design,"January 7, 2018",1.0.0,4.0.3 and up
Coloring book moana,ART_AND_DESIGN,3.9,967,14M,"500,000+",Free,0,Everyone,Art & Design;Pretend Play,"January 15, 2018",2.0.0,4.0.3 and up
"U Launcher Lite – FREE Live Cool Themes, Hide Apps",ART_AND_DESIGN,4.7,87510,8.7M,"5,000,000+",Free,0,Everyone,Art & Design,"August 1, 2018",1.2.4,4.0.3 and up
Sketch - Draw & Paint,ART_AND_DESIGN,4.5,215644,25M,"50,000,000+",Free,0,Teen,Art & Design,"June 8, 2018",Varies with device,4.2 and up
Pixel Draw - Number Art Coloring Book,ART_AND_DESIGN,4.3,967,2.8M,"100,000+",Free,0,Everyone,Art & Design;Creativity,"June 20, 2018",1.1,4.4 and up
Paper flowers instructions,ART_AND_DESIGN,4.4,167,5.6M,"50,000+",Free,0,Everyone,Art & Design,"March 26, 2017",1.0,2.3 and up
Smoke Effect Photo Maker - Smoke Editor,ART_AND_DESIG
# Name Type 1 Type 2 Total HP Attack Defense Sp. Atk Sp. Def Speed Stage Legendary
1 Bulbasaur Grass Poison 318 45 49 49 65 65 45 1 FALSE
2 Ivysaur Grass Poison 405 60 62 63 80 80 60 2 FALSE
3 Venusaur Grass Poison 525 80 82 83 100 100 80 3 FALSE
4 Charmander Fire 309 39 52 43 60 50 65 1 FALSE
5 Charmeleon Fire 405 58 64 58 80 65 80 2 FALSE
6 Charizard Fire Flying 534 78 84 78 109 85 100 3 FALSE
7 Squirtle Water 314 44 48 65 50 64 43 1 FALSE
8 Wartortle Water 405 59 63 80 65 80 58 2 FALSE
9 Blastoise Water 530 79 83 100 85 105 78 3 FALSE
@isyiwang
isyiwang / DI
Created April 30, 2015 06:34
DI tutorial
class BluesApplication {
private View mainView;
private List<Game> games;
@Inject private Settings settings;
public void onCreate() {
Dagger.addModule(new AppModule(this));
Dagger.addModule(new BluesModule());
Dagger.inject(this);
typedef struct {
node * left;
node * right;
int value;
} node;
// Recursively
node * FindValueInNode(int value, node * root) {
// Base case
if (root->value == value) return root;
@isyiwang
isyiwang / gist:1643333
Created January 19, 2012 22:30
Given a linked list, print the objects in reverse order
void PrintReverseList(elem * head) {
/* Deletes an element in the linked list. Returns true if successful, false if the element doesn't exist */
bool DeleteElem(elem ** head, elem * del) {
elem * curr = *head;
// Check for the edge case where the elem is the head
if (curr == del) {
head = &curr->next;
delete curr;
return true;
}