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
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
# Runtime data | |
pids | |
*.pid | |
*.seed |
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
let persons = { | |
"George Kiknadze" : { | |
"name" : "George", | |
"lasntame" : "Kiknadze" | |
}, | |
"Luka Kiknadze" : { | |
"name" : "Luka", | |
"lastname" : "Kiknadze" | |
} | |
}; |
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
<form> | |
<input list='countries'> <!-- input list name and datalist id should be same --> | |
<datalist id='countries'> | |
<option value="Germany"></option> | |
<option value="Austria"></option> | |
<option value="London"></option> | |
<option value="Belgium"></option> | |
<option value="Brazil"></option> | |
</datalist> | |
</form> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
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
import React from 'react'; | |
const ReactDOM = require('react-dom'); | |
import {Router, Route, History, Navigation} from 'react-router'; | |
import helpers from './helpers'; | |
// For changing navbar link and remove hashes | |
import createBrowserHistory from 'history/lib/createBrowserHistory'; | |
// App |
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
const express = require('express'); | |
const morgan = require('morgan'); | |
const bodyParser = require('body-parser'); | |
// Define port for the server | |
const PORT = 3000; | |
const app = express(); | |
// Require routes | |
const routes = require('./routes/routes'); |
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
sudo chown -R $USER:$GROUP ~/.npm | |
sudo chown -R $USER:$GROUP ~/.config |
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
#!/bin/sh | |
for i in {1..254} ;do (ping -c 1 192.168.1.$i | grep "bytes from" &) ;done |
OlderNewer