- Barbell Bench Press - 4 x 4-6 (leave 1-2 reps in the tank)
- Hi-to-Low Crossovers - 3 x 10-12
- DB Shoulder Press - 4 x 8-10
- 1 1/2 Side Lateral Raises - 3 x 12-15
- Lying Tricep Extensions - 3 x 10-12 ⟶ DB Waiter's Curls - 3 x 10-12
- Rotator Cuff External Rotation - 3 x 15-20
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Custom List Items</title> | |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet"> | |
<style> | |
body { | |
font-family: 'Inter', sans-serif; | |
line-height: 1.6; |
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
package main | |
import "core:fmt" | |
Test :: struct { | |
test: int | |
} | |
EnumTest :: enum { | |
Int, |
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
#!/usr/bin/env bash | |
COLOR_OFF="\e[0m"; | |
DIM="\e[2m"; | |
function compile { | |
# Customize the elm make command as needed | |
elm make src/elm/Main.elm src/elm/Stories/**/*.elm && rm elm.js | |
} | |
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
log : String -> Json.Decode.Decoder a -> Json.Decode.Decoder a | |
log message = | |
Json.Decode.map (Debug.log message) | |
debug : String -> Json.Decode.Decoder a -> Json.Decode.Decoder a | |
debug message decoder = | |
Json.Decode.value | |
|> Json.Decode.andThen (debugHelper message decoder) |
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
module Main exposing (suite) | |
import Array exposing (Array) | |
import Benchmark as B exposing (..) | |
import Benchmark.Runner exposing (..) | |
import Dict | |
import Json.Encode as E | |
object = |
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
unwrap : Maybe a -> a | |
unwrap maybeA = | |
case maybeA of | |
Just a -> | |
a | |
Nothing -> | |
unwrap maybeA |
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
let fs = require("fs"); | |
let [, , time] = process.argv; | |
if (!time) throw new Error("Define a countdown in minutes"); | |
let minutes = Number(time); | |
if (!minutes || minutes <= 0) | |
throw new Error(`${time} parsed as ${minutes} which is not a valid time");`); |
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
[submodule "vendor/webgl-playground"] | |
path = vendor/webgl-playground | |
url = https://github.com/justgook/webgl-playground.git |
Venture capitalits (VCs) fund companies with the expectation of having very high return on investment. These companies that borrow a lot of money have then the expectation of hyper aggressive growth in order to monetize a huge market later and give enormous returns on investment to such VCs.
Often, for those reasons, they make the product free and hire very aggressively, in order to maximize user acquisition and quickly building a product.
After such growth, they find themselves having to find alternative business models instead of just charging people, because if you charge users for something that was free before they will leave.
NewerOlder