Skip to content

Instantly share code, notes, and snippets.

View inotives's full-sized avatar
💭
I may be slow to respond.

Toni inotives

💭
I may be slow to respond.
View GitHub Profile

Keybase proof

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:

@inotives
inotives / gist:d3abc48c316885bf8c9105bc3918b370
Created March 6, 2017 04:25
Minecraft-lua-placeblockcheck
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: {
@inotives
inotives / .gitignore
Last active April 16, 2016 05:13
my standard gitignore files
# Logs
*.log
# Runtime data
pids
*.pid
*.seed
# Coverage directory used by tools like istanbul
coverage
@inotives
inotives / index.html
Last active March 24, 2016 02:54
standard template for html 5 with bootstrap
<!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">
@inotives
inotives / server.js
Last active March 17, 2017 13:14
express static server template
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);
});