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
| import React, { Component } from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| export default class Example extends Component { | |
| render() { | |
| return ( | |
| <div className="container"> | |
| <div className="row"> | |
| <div className="col-md-8 col-md-offset-2"> | |
| <div className="panel panel-default"> |
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
| <!-- | |
| Author: Khem Puthea | |
| --> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| </head> | |
| <body> |
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
| Here is a quickly way to install PHP 7.1 on Mac | |
| Make sure you have installed brew | |
| `brew update` | |
| `brew install homebrew/php/php71` | |
| `export PATH="$(brew --prefix( homebrew/php/php71)/bin:$PATH" ` | |
| Alternatively you can add `export PATH="$(brew --prefix( homebrew/php/php71)/bin:$PATH" ` in to .bashrc or .zshrc to permenatly change the path to PHP installation |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <math.h> | |
| long decimalToBinary( long integerInDecimal); | |
| long decimalToOctal( long integerInDecimal); | |
| void decimalToHexadecimal( long integerInDecimal); | |
| int main() { | |
| long integerInDecimal; | |
| char option = 'y'; |
NewerOlder