- NFL Sunday Ticket [discount]
- (only applies a certain amount of days before the start of the NFL season & needs 3rd party service to verify. note, price seems to go up every season, ticking closer to the standard fee)
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
def flat_division(a, b): | |
'''Splitting a flat group of divisible entities into all possible partitions along X and Y axis. Denoted by a_|b''' | |
min = a+b | |
max = a*b+(a+b-1) | |
return list(range(min, max+1)) | |
def stacked_division(a, b): | |
'''Splitting an overlapping group of divisible entities into all possible partitions along Z axis. Denoted by a/|b''' | |
min = a*b+a | |
max = 2*a*b |
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
## Dylan | |
- had a child (doing well) | |
- being tired stinks | |
- phoenix live view, react-y framework without JS. still a bit beta but very cool in that its server rendered views. learning more about gen_servers | |
- host NOVA elixir meetup & talking to rachael about handling | |
- dissertation has slowed to a halt with a baby | |
## Angela | |
- working on information architecture on HRC | |
- interested in product design in PD |
iOS app currently working on - converts audio recording into midi file to be imported into music editing software. hardest part is the UI translating the waveform and converted midi file in real time.
experiments with microinteractions for apps to bring in designers. game type interactions - holding cards, passing cards between devices, using peripherals to interact (shake phone to restart timer)
Sillys & Chillys - RN + expo to create a resistance/secret hilter spinoff
- working on flutter unexpectedly. skeptical but making progress on complicated things. skeptical but impressed.
- react native with seamless support.
- wishes it was more like react with jsx, etc
- wants to build a leightner box in app form
- systematized way to learn better than rote memorization
- traditionally uses a shoebox with index cards and the app will replace that
- become an expert in rust rather than having a vague idea
- understanding the syntax, rules, etc rather than always having to always look it up
- no api, so very self contained. would be nice to have something on app store
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
/* | |
Tailwind - The Utility-First CSS Framework | |
A project by Adam Wathan (@adamwathan), Jonathan Reinink (@reinink), | |
David Hemphill (@davidhemphill) and Steve Schoger (@steveschoger). | |
Welcome to the Tailwind config file. This is where you can customize | |
Tailwind specifically for your project. Don't be intimidated by the |