# install package
> install.packages()
# load the package into the current session
> library(splines)
This file contains 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
-- === DDL | |
CREATE TABLE categories ( | |
id INT PRIMARY KEY AUTO_INCREMENT, | |
name CHAR(50) NOT NULL | |
); | |
CREATE TABLE items ( | |
id INT PRIMARY KEY AUTO_INCREMENT, | |
name CHAR(50) NOT NULL, | |
created_at TIMESTAMP, |
This file contains 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
/* | |
* ======================================= | |
* C++ cheat sheet | |
* ======================================= | |
* 01- string | |
* 02- vector | |
* 03- pair | |
* 04- set | |
* 05- map | |
* |
- Laravel: http://laravel.com/
- Laravel Zero: http://laravel-zero.com/ (command-line applications)
- October CMS gist: https://gist.github.com/hofmannsven/e71b90092fde4dc5cff9
- Custom Laravel: https://customlaravel.com/
- Laravel cheatsheet: http://cheats.jesse-obrien.ca/
- Laravel 5 cheatsheet: https://aufree.github.io/laravel5-cheatsheet/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
This file contains 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
#include <bits/stdc++.h> | |
bool X[1001]; | |
using namespace std; | |
int main() | |
{ | |
memset(X,true,sizeof(X)); | |
X[0] = false; |
This file contains 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
/* | |
* =================================================== | |
* contents | |
* =================================================== | |
* 00- Free draw | |
* 01- rubber | |
* 02- draw Line | |
* 03- draw Rectangele | |
* 04- draw Circle | |
* 05- draw Ellipse |