Skip to content

Instantly share code, notes, and snippets.

@OAlm
OAlm / cloudSettings
Created January 25, 2017 21:23
Visual Studio Code Sync Settings GIST
{"lastUpload":"2017-01-25T21:23:09.482Z"}
  1. Jääkaappi sovellus (jatkoa vanhalle projektille). Käyttäjä lisää sovellukseen jääkaappinsa sisällön, jonka pohjalta sovellus ehdottaa reseptejä. Käyttäjä voi lisätä myös omia reseptejään.
  2. Käyttäjällä on jauhelihaa, sipulia ja tomaattimurskaa ja miettii mitä saisi niistä aikaiseksi. Käyttäjä haluaa selata reseptejä.
  3. Mahdollisesti jotain resepti rajapintaa, josta saisi reseptejä sovellukseen. Autentikointi rajapinta käyttäjän rekisteröitymistä varten.
  4. Täytyy miettiä ja tutkia lisää. Kokeilemalleni threejs kirjastolle en ainakaan äkkiseltään keksi järkevää käyttöä.
  5. Palvelimelle varastoidaan käyttäjien syöttämät reseptit ja kuvat, sekä käyttäjien nimimerkit ja salasanat.
  ID    NAME                  RECIPE
 1 jauhelihakastike ruskista jauheliha..

Web-API / REST -rajapintoja (14.4.2016)

Autentikointi

Sequence of 31 functions by Propp

From: https://en.wikipedia.org/wiki/Vladimir_Propp

  1. ABSENTATION (LEAVE HOME): A member of the hero's community or family leaves the security of the home environment. This may be the hero themselves, or it may be some other relation that the hero must later rescue. This division of the cohesive family injects initial tension into the storyline. This may serve as the Hero's introduction, typically portraying them as an ordinary person.
  2. INTERDICTION (WARNING FOR HERO): A forbidding edict or command is passed upon the hero ('don't go there', 'don't do this'). The hero is warned against some action.
  3. VIOLATION of INTERDICTION (HERO AGAINST THE WARNING). The prior rule is violated. Whether performed by the Hero by accident or temper, a third party or a foe, this generally leads to negative consequences. The villain enters the story via this event, although not necessarily confronting the hero. They may be a lurking and manipulative presence, or might act aga

Articles related to robot journalism

\score {
<<
{ \key c \major
e'2. e'8. e'16 e'4 e'2 d'4 e'2. e'16 e'8. fis'16 gis'8. b'2.
a2. gis8. gis16 gis16 gis8. gis2. b8. b16 b2.
d'2 cis'4 cis'4 cis'4 b4 b2 b4. b2 b8
a2. gis8. gis16 gis16 gis8. gis2. b8. b16 b2.
d'2 cis'4 cis'4 cis'4 b4 b2 b4. b2 b8
e'2. e'8. e'16 e'4 e'2 d'4 e'2. e'16 e'8. fis'16 gis'8. b'2.
}
@OAlm
OAlm / lassemaija.md
Last active September 29, 2015 18:26 — forked from anonymous/lassemaija.md

Lasse-Maijan etsivätoimisto, kirjat

  1. Timanttien arvoitus
  2. Hotellin arvoitus
  3. Sirkuksen arvoitus
  4. Kahvilan arvoitus
  5. Muumion arvoitus
  6. Elokuvateatterin arvoitus
  7. Junan arvoitus
  8. Sanomalehden arvoitus
@OAlm
OAlm / deap_tutorial_itcc.py
Created September 29, 2015 09:32 — forked from assamite/deap_tutorial_itcc.py
DEAP example
'''DEAP example. We try to evolve a list of digits to match a target list of
digits, that represents a date.
'''
import random
from deap import algorithms
from deap import base
from deap import creator
from deap import tools
# Date, a target which we want to evolve.