- 250 g nuudeleita
- 1 kesäkurpitsa
- 1 purjo
- 1 paprika
- ½ kiinankaali
- ½ dl öljyä
This file contains hidden or 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
import { EitherAsync } from "purify-ts/EitherAsync"; | |
import { identity } from "purify-ts/Function"; | |
import { | |
Codec, | |
string, | |
number, | |
date, | |
boolean, | |
nullType, | |
array, |
This file contains hidden or 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
- src/ | |
--- domain/ | |
----- user/ | |
------- components/ | |
--------- avatar/ | |
----------- index.js | |
----------- index.css | |
------- pages/ | |
--------- profile/ | |
----------- index.js |
This file contains hidden or 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
{ | |
"version": 1, | |
"notes": "", | |
"documentation": "\"This file is a QMK Configurator export. You can import this at <https://config.qmk.fm>. It can also be used directly with QMK's source code.\n\nTo setup your QMK environment check out the tutorial: <https://docs.qmk.fm/#/newbs>\n\nYou can convert this file to a keymap.c using this command: `qmk json2c {keymap}`\n\nYou can compile this keymap using this command: `qmk compile {keymap}`\"\n", | |
"keyboard": "hotdox", | |
"keymap": "hotdox_layout_ergodox_mine.json", | |
"layout": "LAYOUT_ergodox", | |
"layers": [ | |
[ | |
"KC_ESC", |
Here's a ton of information/resources that have helped me learn how to produce music :) The "Ableton" & "More Complex Sound Design" playlists are playlists I made out of videos that have helped me a LOT Enjoy!! twitter.com/ohthatcalebguy
PRODUCTION PLAYLISTS
This file contains hidden or 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 | |
# Original Source: http://blog.nonuby.com/blog/2012/07/05/copying-env-vars-from-one-heroku-app-to-another/ | |
## Usage: heroku_env_copy [options] SOURCE TARGET | |
## | |
## NOTE: This script will only output the command, you should run it yourself. | |
## | |
## Options: | |
## -h, --help Display this message. | |
## |
This file contains hidden or 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
getWeeklyReports : Cmd Msg | |
getWeeklyReports = | |
let | |
url = | |
"http://localhost:3001/engagement" | |
body = | |
Http.jsonBody <| | |
Encode.object | |
[ ( "groupNames", Encode.string "Tammerforce" ) |
This file contains hidden or 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
javascript:(function(d){var%20s=d.createElement('script');s.src='https://vr.aarre.net/nf.min.js?D='+(new%20Date()).getTime();d.head.appendChild(s)})(document) |
This file contains hidden or 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
const TelegramBot = require('node-telegram-bot-api'); | |
const express = require('express'); | |
const packageInfo = require('./package.json'); | |
const token = 'token-goes-here'; | |
const telegram = new TelegramBot(token, { polling: true }); | |
telegram.on('message', (message) => { | |
console.log(message); | |
telegram.sendMessage(message.chat.id, 'Received your message'); |
NewerOlder