We will use Git Bash: https://gitforwindows.org
Official git documentation https://git-scm.com/download/linux
We will use Git Bash: https://gitforwindows.org
Official git documentation https://git-scm.com/download/linux
| let p = [] | |
| p[0] = 52037 | |
| p[6] = 52081 | |
| p[5] = 52063 | |
| p[1] = 52077 | |
| p[9] = 52077 | |
| p[10] = 52080 | |
| p[4] = 52046 | |
| p[3] = 52066 | |
| p[8] = 52085 |
| # Writeup of anything codered that is not in the README | |
| #Week 1 |
| # Commandline recap | |
| #go to folder | |
| cd <foldername> | |
| ## go to parent folder | |
| cd .. | |
| # list files inside current directory | |
| ls |
| # Hello World | |
| # Where am I | |
| pwd | |
| # Change Directory | |
| cd <dir-name> | |
| # Go one level up | |
| cd .. |
| # This file | |
| j.mp/pink-docker | |
| __________________________________________________________________ | |
| # Mac Install | |
| # To install brew run one liner from https://brew.sh | |
| brew cask install docker | |
| # Windows install | |
| # https://docs.docker.com/toolbox/overview/#whats-in-the-box |
| from flask import request, Response | |
| from kik.messages import messages_from_json, TextMessage, SuggestedResponseKeyboard, TextResponse | |
| from app import application, kik | |
| """ | |
| Detta ar ett enkelt exempel pa hur man kan fa Kik-boten att fraga en enkel fraga. | |
| For Telegram sa kan du titta har: | |
| https://core.telegram.org/bots#keyboards | |
| This is a simple example of how to make the Kik bot ask a simple question. |
| #!/usr/bin/env bash | |
| # Use this one-liner to produce a JSON literal from the Git log: | |
| git log \ | |
| --pretty=format:'{%n "commit": "%H",%n "author": "%an <%ae>",%n "date": "%ad",%n "message": "%f"%n},' \ | |
| $@ | \ | |
| perl -pe 'BEGIN{print "["}; END{print "]\n"}' | \ | |
| perl -pe 's/},]/}]/' |