GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as things like automatic generation of tables of contents.
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
| # adopted from https://confluence.atlassian.com/display/BITBUCKET/Set+up+SSH+for+Git#SetupSSHforGit-installpublickey, which was adopted from a GitHub script | |
| if [ -r ~/.profile ]; then . ~/.profile; fi | |
| case "$-" in *i*) if [ -r ~/.bashrc ]; then . ~/.bashrc; fi;; esac | |
| echo | |
| echo "Yo" | |
| echo | |
| SSH_ENV="$HOME/.ssh/environment" |
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
| $ svn ls -R | egrep -v -e "\/$" | xargs svn blame | awk '{print $2}' | sort | uniq -c | sort -r | |
| $ echo "Now let's bisect the above one liner" | |
| $ svn ls -R # will list all files in svn repo recursively | |
| $ svn ls -R | egrep -v -e "\/$" # get files & directories one line at a time | |
| $ svn ls -R | egrep -v -e "\/$" | xargs svn blame # do a svn blame on each file (print file content with rev & author info) | |
| $ svn ls -R | egrep -v -e "\/$" | xargs svn blame | awk '{print $2}' # get second column which contains svn user name | |
| $ svn ls -R | egrep -v -e "\/$" | xargs svn blame | awk '{print $2}' | sort # sort out put (will be based on svn username) | |
| $ svn ls -R | egrep -v -e "\/$" | xargs svn blame | awk '{print $2}' | sort | uniq -c # get uniq lines with counts (no of lines contributed by user) | |
| $ svn ls -R | egrep -v -e "\/$" | xargs svn blame | awk '{print $2}' | sort | uniq -c | sort -r # sort in reverse order (so user who contributed most comes first) |
- Power
- Technique
- Coordination
Preparation:
- Get an empty USB disk
- Create 2 partitions:
- ARCH - filesystem FAT
- FAT - filesystem FAT
- Downlaod Arch linux from: www.archlinux.org/download and put on your USB ARCH partition
- Make sure you have an Ubuntu install somewhere (VMware would work)
Fix the iso to be usable for UEFI:
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
| From bcdcd43667348fe64154e4067199a6745b73d0b3 Mon Sep 17 00:00:00 2001 | |
| From: Brian Ravnsgaard Riis <[email protected]> | |
| Date: Fri, 17 May 2013 00:38:23 +0200 | |
| Subject: [PATCH] Fixed some sscanf bugs in the SQLite backend. | |
| --- | |
| vendor/soci/backends/sqlite3/common.h | 8 ++++++++ | |
| vendor/soci/backends/sqlite3/standard-use-type.cpp | 8 ++++++++ | |
| vendor/soci/backends/sqlite3/vector-use-type.cpp | 8 ++++++++ | |
| 3 files changed, 24 insertions(+) |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000List of lectures with watching stop-times (hr:min):
- Meeting C++ 2018: More Modern CMake by Deniz Bahadir
A Hitchhiker's Guide to Cloud Native API Gatewaysby Mario-Leander ReimerThe Linux Foundation: API Gateway Pattern & Kong in a Microservices Worldby Marco PalladinoOpen Source API Managementby predic8 (German)- CppCon 2020: The Hidden Secrets of Move Semantics by Nicolai Josuttis
- Making Iterators, Views and Containers Easier to Write with Boost.STLInterfaces by Zach Laine
- Ansible and HashiCorp: Better Together by Dylan Silva, Sean Carolan
Using Terraform with Azureby John
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
| git diff --no-prefix --ignore-space-at-eol | sed -e "s/^diff --git [^[:space:]]*/Index:/" -e "s/^index.*/===================================================================/" > changes.patch |