Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
# If Homebrew is not installed uncomment the next line | |
# /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Install Wine and WineTricks | |
brew install wine && brew install winetricks | |
# Download CircuitMaker | |
curl https://s3.amazonaws.com/altium-install/CircuitMaker/CircuitMakerSetup.exe -o ~/Downloads/CircuitMakerSetup.exe |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title></title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> | |
<h2>Hello from outside the Shadow DOM!</h2> | |
var net = require('net'); | |
var Web3 = require('./src/index.js'); var web3 = new Web3(new Web3.providers.IpcProvider('/Users/frozeman/Library/Ethereum/geth.ipc', net)); | |
var shh = web3.shh; | |
var identities = []; | |
var subscription = null; | |
Promise.all([ | |
shh.newSymKey().then((id) => {identities.push(id);}), | |
shh.newKeyPair().then((id) => {identities.push(id);}) |
/* | |
- $ geth --shh | |
- install node.js and npm | |
- $ mkdir testFolder | |
- $ npm install oboe | |
- $ node | |
- copy the code below | |
- exceute: send('eth_blockNumber', []); | |
*/ |
#include <Wire.h> | |
#include <Servo.h> | |
#define SerialPort Serial | |
#include <SparkFunMPU9250-DMP.h> | |
MPU9250_DMP imu; | |
double roll , pitch, yaw; | |
long int pre_ts=0; | |
void setup() | |
{ |
#!/bin/sh | |
docker images --format '{{.Size}}\t{{.Repository}}\t{{.Tag}}\t{{.ID}}' | sed 's/ //' | sort -h -r | column -t |
version: "3" | |
services: | |
snipeit: | |
env_file: ./snipe-it.env | |
image: snipe/snipe-it | |
depends_on: | |
- mysql | |
ports: | |
- "80:80" | |
volumes: |
Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
// | |
// DockInfo.swift | |
// | |
// Created by Wessley Roche on 28/11/2016. | |
// | |
import Foundation | |
enum WBDockPosition: Int { | |
case bottom = 0 |
map $http_upgrade $connection_upgrade { | |
default upgrade; | |
'' ''; | |
} | |
server { | |
listen 80; | |
server_name teamcity.local; | |
rewrite ^ https://$host$request_uri? permanent; |