Getting started: http://www.sqlteaching.com/
Related tutorial: http://cd64.de/mysql-cli
SQL joins infografic: http://cd64.de/sql-joins
| #include <stdio.h> | |
| #include <ctype.h> | |
| // forward declarations | |
| int can_print_it(char ch); | |
| void print_letters(char arg[]); | |
| void print_arguments(int argc, char *argv[]) | |
| { | |
| int i = 0; |
| type User struct { | |
| Id int64 | |
| Name string | |
| Email string | |
| Username string | |
| TablesIds []uint8 | |
| HashedPassword []byte | |
| Created int64 | |
| Updated int64 | |
| } |
| <script type="text/javascript" src="/public/js/jquery-1.10.2.min.js"></script> | |
| <script type="text/javascript" src="/public/lib/angular/angular.js"></script> | |
| <script type="text/javascript" src="/public/lib/angular/angular-route.js"></script> | |
| <script type="text/javascript" src="/public/lib/angular/angular-resource.min.js"></script> | |
| <script type="text/javascript" src="/public/lib/angular/angular-cookies.min.js"></script> | |
| <script type="text/javascript" src="/public/js/app.js"></script> | |
| <script type="text/javascript" src="/public/js/services.js"></script> | |
| <script type="text/javascript" src="/public/js/controllers.js"></script> | |
| <script type="text/javascript" src="/public/js/controllers/signup.js"></script> | |
| <script type="text/javascript" src="/public/js/controllers/login.js"></script> |
| directivesModule.directive('test', function(){ | |
| return { | |
| // restrict: 'AEC', | |
| templateUrl: '/public/partials/test.html', | |
| scope:{ | |
| write: function(){ | |
| console.log("working") | |
| } | |
| }, | |
| controller: function($scope){ |
Getting started: http://www.sqlteaching.com/
Related tutorial: http://cd64.de/mysql-cli
SQL joins infografic: http://cd64.de/sql-joins
| #!/usr/bin/env ruby | |
| # Author : Emad Elsaid (https://github.com/blazeeboy) | |
| # **Usage** : | |
| # | |
| # * `ruby readability.rb <accesstoken>` | |
| # this will get a long term access token from the short term one | |
| # you can create a facebook app and get access token from here | |
| # * `ruby readability.rb` | |
| # will start the script | |
| require 'open-uri' |
| let $GOPATH = 'home/marwan/go' | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'fatih/vim-go' | |
| call plug#end() |
| var React = require('react'); | |
| var Editor = require('draft-js').Editor; | |
| var EditorState = require('draft-js').EditorState; | |
| var MyEditor = React.createClass({ | |
| getInitialState: function() { | |
| return {editorState: EditorState.createEmpty()}; | |
| }, | |
| onChange: function(editorState) { |
| // User Code | |
| type User struct { | |
| Id int | |
| Name string | |
| } | |
| // implement auth interface | |
| func (u User) Authenticate(r *http.Request) (interface{}, error) { | |
| // auth | |
| return u, nil | |
| } |
| CONTENT | |
| Expressions, Statements and Controlstructures | |
| Equlaity | |
| Assigments | |
| The ||= idiom | |
| Other assignments | |
| Flip-flops | |
| Iterators | |
| Blocks | |
| Control-flow keywords |