What is an integration test exactly? https://softwareengineering.stackexchange.com/questions/48237/what-is-an-integration-test-exactly/48265#48265?s=9df333007c284b6d820f07a045d79919
Get all keys with their values
| // The Kolakoski Sequence | |
| // https://youtu.be/co5sOgZ3XcM | |
| #include <stdio.h> | |
| #define MAX 99 | |
| int main() | |
| { | |
| unsigned int seq[MAX]; |
| #include <stdio.h> | |
| typedef float (*pt2Func)(float, float); | |
| float Plus (float a, float b) { return a+b; } | |
| float Minus (float a, float b) { return a-b; } | |
| float Multiply (float a, float b) { return a*b; } | |
| float Divide (float a, float b) { return a/b; } | |
| pt2Func GetPtr2 (const char opCode) |
| pacman --noconfirm -S \ | |
| base{,-devel} \ | |
| vim \ | |
| tree \ | |
| git \ | |
| mlocate \ | |
| openssh \ | |
| xorg{,-xinit} \ | |
| firefox \ | |
| rfkill |
What is an integration test exactly? https://softwareengineering.stackexchange.com/questions/48237/what-is-an-integration-test-exactly/48265#48265?s=9df333007c284b6d820f07a045d79919
Get all keys with their values
| # Linux | |
| ssh-keygen -t rsa -b 4096 -C "$USER@$(uname -n).$(cut -f 1 -d ' ' /etc/issue | head -n 1 | sed -e 's/\(.*\)/\L\1/')" -N '' -f /home/$USER/.ssh/id_rsa | |
| # Mac OS | |
| ssh-keygen -t rsa -b 4096 -C "$USER@$(uname -n).$(sw_vers | head -1 | cut -c 14-19)" -N '' -f /Users/$USER/.ssh/id_rsa |
| #!/bin/bash | |
| for m in {0..9}; do | |
| for i in {0..9}; do | |
| for C in {30..37} {90..97}; do | |
| echo -en "\033[${i};${m};${C}m" | |
| printf "e[%2d;%2d;%3d" ${i} ${m} ${C} | |
| echo -en "\033(B\033[m " | |
| done | |
| echo |
| .PHONY: all clean | |
| all: | |
| gcc -W -Wall -ansi -pedantic -std=c99 -lm -o spellstone spellstone.c cJSON.c -I/usr/include/ | |
| clean: | |
| rm -vf spellstone |
| // gcc -W -Wall -ansi -pedantic -std=c99 -lm -o yfc year_calendar.c | |
| #include <math.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <tgmath.h> | |
| #include <getopt.h> | |
| float max(float, float); |
| #include <iostream> | |
| #include <cstdlib> | |
| #include <cmath> | |
| using namespace std; | |
| static const int WINDOW = 120000; | |
| float sdnn_function (float*, int); | |
| float rmssd_function (float*, int); |
| This post examines the features of [R Markdown](http://www.rstudio.org/docs/authoring/using_markdown) | |
| using [knitr](http://yihui.name/knitr/) in Rstudio 0.96. | |
| This combination of tools provides an exciting improvement in usability for | |
| [reproducible analysis](http://stats.stackexchange.com/a/15006/183). | |
| Specifically, this post | |
| (1) discusses getting started with R Markdown and `knitr` in Rstudio 0.96; | |
| (2) provides a basic example of producing console output and plots using R Markdown; | |
| (3) highlights several code chunk options such as caching and controlling how input and output is displayed; | |
| (4) demonstrates use of standard Markdown notation as well as the extended features of formulas and tables; and | |
| (5) discusses the implications of R Markdown. |