This is
- ALL ABOUT HTML5
- ALL ABOUT CSS3, SASS
- ALL ABOUT BOOTSTRAP
- RESPONSIVE
- jQuery
- VSC
- GIT & GITHUB
//1. function (let PROP in OBJECT) { do something} | |
// if OBJECT is a STR => ex: let str = 'abc' | |
// str is consider as Object str = {0: 'a', 1: 'b', 2:'c'} | |
//Reverse a String | |
function reverseString(str) { | |
let rStr =''; | |
for (let i in str) { | |
rStr += str[str.length-1-i] | |
} |
function Dog() { | |
this.name = "Rupert"; | |
this.color = "brown"; | |
this.numLegs = 4; | |
} | |
// Add your code below this line | |
let hound = new Dog(); |
// tabs is an array of titles of each site open within the window | |
var Window = function(tabs) { | |
this.tabs = tabs; // we keep a record of the array inside the object | |
}; | |
// When you join two windows into one window | |
Window.prototype.join = function (otherWindow) { | |
this.tabs = this.tabs.concat(otherWindow.tabs); | |
return this; | |
}; |
This is
This is Javascript hint from FFC program
My coding dairy
Source: 1.Freecodecamp https://learn.freecodecamp.org/front-end-libraries/react 2.Scrimba https://scrimba.com/g/glearnreact 3.
Hospify Core is a backend service. It provides REST API for Hospify
postgresql
(prefer v10)golang
, set up path (Unix only, google for Windows)# .bash_profile
export GOPATH="/your/go/path" # /Users/<username>/Documents/go
# | |
# Install the MYSQL driver | |
# gem install mysql2 | |
# | |
# Ensure the MySQL gem is defined in your Gemfile | |
# gem 'mysql2' | |
# | |
# And be sure to use new-style password hashing: | |
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html | |
development: |