- art from a content you have not been to before
- A very large cluster of plants
- furniture you wouldn't want in your house
- your group posed like a painting or sculpture
- a smaller version of something big
- a bigger version of something small
- something with holes
- an installation designed to look good on a small screen
- people on a first date
- food
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
Instant brownie mix is the weak. | |
This recipe makes the best brownies ever. | |
* 80g unsifted flour | |
* ¼ tsp baking soda | |
* ¼ tsp salt | |
* 70g butter | |
* 140g sugar | |
* 2 tbsp water |
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
HUC12 | Name | ToHUC | |
---|---|---|---|
180902081301 | Pisgah Crater | 180902081304 | |
180300121501 | Media Agua Creek | 180300121502 | |
180101010302 | Eightmile Creek | 180101010304 | |
180701020802 | Pole Creek-Santa Clara River | 180701020902 | |
180902060903 | Eller Slough | 180902061903 | |
180901020705 | North Fork Bishop Creek-Owens River | 180901020710 | |
180600090105 | Lower San Antonio Creek | 180600090203 | |
180400091103 | Peppermint Creek-Woods Creek | 180400091205 | |
180201610402 | Natomas Main Drainage Canal-Sacramento River | 180201630701 |
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
function download_pdf(a_tag){ | |
var link = document.createElement('a'); | |
link.href = $(a_tag).data('url'); | |
link.download = "Trust "+$(a_tag).text() | |
link.dispatchEvent(new MouseEvent('click')); | |
} | |
$('.documents').eq(0).find('[data-url]').map(function(){ download_pdf(this) }) |
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
Tuna Pasta Salad With Dill | |
https://www.thespruceeats.com/tuna-pasta-salad-with-dill-3058889 | |
APPLE DIJON KALE SALAD | |
https://www.budgetbytes.com/apple-dijon-kale-salad/ | |
CURRIED TOFU SALAD | |
https://www.budgetbytes.com/curried-tofu-salad/ | |
KALE & SALMON CAESAR SALAD |
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
grep WEBSITE.GET.OBJECT real_log | grep -v localhost | grep -v css | grep -v images | grep -v \.js |grep -v \.png | cut -c 86- | grep slack |
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
//https://stackoverflow.com/questions/6195335/linear-regression-in-javascript | |
function linearRegression(y,x){ | |
var lr = {}; | |
var n = y.length; | |
var sum_x = 0; | |
var sum_y = 0; | |
var sum_xy = 0; | |
var sum_xx = 0; | |
var sum_yy = 0; |
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
function formatedDate(offset = 7) { | |
da = new Date(); | |
da.setDate(da.getDate() - offset); | |
y = da.getFullYear(); | |
m = da.toLocaleString("default", { month: "long" }); | |
d = da.getDate(); | |
ord = ""; | |
switch (da.getDate()) { | |
case 1: |
OlderNewer