07/23/2016Bio: Morninglast night's sleep: ~8 hours
last night fell asleep: ~7 AM
wakeup = 3 PM
bw = 148
morning resting heart rate = didn't measure
soreness = none
aches = none
injuries = none
standing desk (when on computer): none
feel = good
water = alot
Food3:30 PM
- green tea
- 2 x wheat bread with peanut butter
- beet + tart cherry juice
- almond joy
Food7 PM
- 2% milk + 2 tspn coffee + honey
Session: Evening8:30 PM
- jumps:
- warmup
- ~25 L-SLRVJ jumps: max ~10'8 maybe 10'9
- LR-DLRVJ: max ~10'6
-
right leg tightened up during warmup jumps.. squatting wrecking my quads.. good signgot in some decent jumps, pics above
MR half tuck jumps:
- 1 x 20, 1 x 20, 1 x 30
- really good, decent bounce
half squat:
- 45 lb. x 15
- 135 lb. x 10
-
135 lb. x 30- happy with that set.. wanted to do some more sets but it was raining hard, and lightning.. not smart to be in a power rack while it's lightning.
Food11 PM
- big stir fry: grilled chicken, 1 potatoe, 2 carrots, 1 broccoli, serrano pepper, red chili pepper, kalamata olives, one big turmeric, olive oil, cherries/goat cheese at the end
- 1/2 cup whole wheat couscous
was sooo good.. pics above
Food6 AM
- greek yogurt
legs feel pretty wrecked.. got in some great coding today.. really going good right now, very happy about it. working on getting "organizations" added back into the app (index, new, update, delete, view) etc.. once i do that, then i need to do the same thing for forums, boards, threads, and thread posts.. then i also need likes/stars, and pm's. that'll probably take a week or more.. once that's done, i'll be almost back to where I was when i left off on the other app.
so things are starting to move a little quicker.. stuff is taking shape.
i'm going to include less features than i had before, just to get this thing closer to the "first useable version".. since i've had to re-write iti n haskell, i've lost alot of time.. so those features can come back later.
I really love this Loading technique I created for the new app:
03:15 < let> o man i just came up with such a sexy Loading solution for the app.. loving it
03:18 < let> it's all based on this simple data type
03:18 < let> data Loader a
03:18 < let> = Loaded a
03:18 < let> | Loading
03:18 < let> | CantLoad
03:19 < let> so i make things like.. Loader (Maybe Users) ..... anything I wrap in Loader I can pattern match on to either, render HTML or display the Loading spinner
03:19 < let> or an error message if it cant be loaded
03:19 < let> lul
03:19 < let> sexy as fuck
03:26 < let> so when i initialize a component, everything is "Loaded empty", then, when I mount a component, I set everything to Loading, then, as I pull in resources from the store, via ajax etc.. I set things to "Loaded .."
03:26 < let> it's srsly sexy as fuck
03:29 < let>
https://github.com/adarqui/ln-ui/blob/master/src/LN/UI/App/Loading.hs#L2203:29 < polybot> ln-ui/Loading.hs at master · adarqui/ln-ui · GitHub : ln-ui - web ui for LN
03:31 < let>
https://github.com/adarqui/ln-ui/blob/master/src/LN/UI/App/Organizations.hs#L166 pc folks!