I hereby claim:
- I am inotives on github.
- I am inotives (https://keybase.io/inotives) on keybase.
- I have a public key ASD3JUYEyalb8lMQ4ooQGdxhCe0_MIIbGPZFi1a6S0JG-Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| local function checkLimit(totalBlocks) | |
| if(totalBlocks > turtle.getFuelLevel()) then return true | |
| else return false | |
| end | |
| local function placeBlock() | |
| if(turtle.getItemCount() == 0) then | |
| if(turtle.getSelectedSlot() == 16) | |
| print(">>END:INV-EMPTY") | |
| end |
| { | |
| "name": "react-redux-boilerplate", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "index.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "keywords": [], | |
| "author": "", |
| module.exports = { | |
| entry: [ | |
| './src/index.js' | |
| ], | |
| output: { | |
| path: __dirname, | |
| publicPath: '/', | |
| filename: 'bundle.js' | |
| }, | |
| module: { |
| # Logs | |
| *.log | |
| # Runtime data | |
| pids | |
| *.pid | |
| *.seed | |
| # Coverage directory used by tools like istanbul | |
| coverage |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <title>Sample</title> | |
| <!-- Styles Css --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/paper/bootstrap.min.css"> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | |
| <link rel="stylesheet" href="css/style.css"> | |
| var express = require('express'); | |
| var app = express(); | |
| var port = 1314; | |
| app.use(express.static('public')); | |
| app.listen(port, function() { | |
| console.log('Server started and listening to::'+port); | |
| }); |