defaults write com.apple.frameworks.diskimages skip-verify true
defaults write com.apple.finder CreateDesktop false; killall Finder
touch ~/.hushlogin
apt-transport-https
First, if you are on Ubuntu Cosmic, you need to manually compile json-c
because the version provided is 0.12.1
, but sway requires at least version 0.13
. It is pretty straight forward, so take a look here.
Then, we need to install common dependencies between wlroots
and sway-1.0
.
sudo apt install gcc pkgconf meson ninja-build libwayland-dev libinput-dev libcap-dev
Secondly, we need to install wlroots
dependencies.
(Inspired by https://medium.com/@icanhazedit/clean-up-unused-github-rpositories-c2549294ee45#.3hwv4nxv5)
Open in a new tab all to-be-deleted github repositores (Use the mouse’s middle click or Ctrl + Click) https://github.com/username?tab=repositories
Use one tab https://chrome.google.com/webstore/detail/onetab/chphlpgkkbolifaimnlloiipkdnihall to shorten them to a list.
Save that list to some path
The list should be in the form of “ur_username\repo_name” per line. Use regex search (Sublime text could help). Search for ' |.*' and replace by empty.
sorta'ish notes: | |
# talk notes | |
- Fanflow | |
- Preact, Typescript, Fusebox (vs. Webpack), GraphQL, PostCSS, immutable deployments, Docker, Responsive Web Design | |
- package.json (TOC) | |
- dependencies | |
- scripts | |
- services used (graph.cool, now.sh, snyk, github, auth0, sentry.io, browserstack) |
// copy and paste into https://matthiasak.github.io/arbiter-frame/ | |
document.head.innerHTML += `<style> body { background: #efefef; } </style>` | |
document.body.innerHTML = ` | |
<p>First name: <input data-bind="value: first" /></p> | |
<p>Last name: <input data-bind='value: last, valueUpdate: "afterkeydown"' /></p> | |
<h2>Hello, <span data-bind="text: full"> </span>!</h2> | |
<hr/> |
function worker() { | |
setInterval(function() { | |
postMessage({foo: "bar"}); | |
}, 1000); | |
} | |
var code = worker.toString(); | |
code = code.substring(code.indexOf("{")+1, code.lastIndexOf("}")); | |
var blob = new Blob([code], {type: "application/javascript"}); |
module.exports = { | |
config: { | |
openDevToolsKey: 'CommandOrControl+I', | |
// default font size in pixels for all tabs | |
fontSize: 12, | |
// font family with optional fallbacks | |
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', |
########## | |
# Win10 Initial Setup Script | |
# Author: Disassembler <[email protected]> | |
# Version: 1.7, 2016-08-15 | |
# dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
# THIS IS A PERSONALIZED VERSION | |
# This script leaves more MS defaults on, including MS security features. | |
# Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1 |
let items = [ | |
{category: "Sporting Goods", price: "$49.99", stocked: true, name: "Football"}, | |
{category: "Sporting Goods", price: "$9.99", stocked: true, name: "Baseball"}, | |
{category: "Sporting Goods", price: "$29.99", stocked: false, name: "Basketball"}, | |
{category: "Electronics", price: "$99.99", stocked: true, name: "iPod Touch"}, | |
{category: "Electronics", price: "$399.99", stocked: false, name: "iPhone 5"}, | |
{category: "Electronics", price: "$199.99", stocked: true, name: "Nexus 7"} | |
] | |
const app = () => { |