S5T4Jv1CFsfVKb8NbSBcLt7etn1Ve5wVb2
S6NHSNrZsXpk5J3frmnVvQhe4APiVCSD5M
S5T4Jv1CFsfVKb8NbSBcLt7etn1Ve5wVb2
S6NHSNrZsXpk5J3frmnVvQhe4APiVCSD5M
CentOS, Ubuntu, Slackware, etc. Whatever Linux-based OS it is, you can create a bootable USB for it by using a Mac.
Download it, copy it, whatever it takes to prepare that Linux-based OS .iso file
#!/bin/bash | |
for filename in *.json; do | |
cat "$filename" | jq -r '(map(keys) | add | unique) as $cols | map(. as $row | $cols | map($row[.])) as $rows | $cols, $rows[] | @csv' > "$filename.csv" | |
done |
const app = require("express")(); | |
app.get("/users/:id", (req, res) => { | |
// return user json by id | |
} |
require 'socket' | |
require 'openssl' | |
require 'puma/server' | |
require 'ds9' | |
class Server < DS9::Server | |
def initialize socket, app | |
@app = app | |
@read_streams = {} | |
@write_streams = {} |
<!-- Make all small squares to inside container, 3 in row, 10px padding everywhere --> | |
<div class="container"> | |
<div class="image"></div> | |
<div class="image"></div> | |
<div class="image"></div> | |
<div class="image"></div> | |
<div class="image"></div> | |
<div class="image"></div> | |
<div class="image"></div> |
#!/bin/bash | |
# Usage: slackpost <message> | |
# Enter the name of your slack host here - the thing that appears in your URL: | |
# https://slackhost.slack.com/ | |
webhook=PUT_YOUR_HOST_HERE | |
shift |