Skip to content

Instantly share code, notes, and snippets.

@vurral
vurral / CREDITS.txt
Created August 28, 2021 11:34
1Password 8.2.2-6.BETA
# Pulled from 1password-8.2.2-6.BETA.x64/resources/app.asar.unpacked/CREDITS.html
Libraries we use
We rely on open source software every day to develop 1Password. It's fair to say that 1Password wouldn't exist without the open source community, so we want to give back and help teams be more productive and secure.
Are you working on an open source project that needs a password manager? How about a secure place to keep and share secrets — social media logins, code signing certificates, ssh keys, etc? We've got your back: get 1Password Teams free on us.
addr2line
adler
adler32
@vurral
vurral / bh_core.sublime-settings
Created June 16, 2019 13:25 — forked from Narretz/bh_core.sublime-settings
Sublime Text BracketHighlighter settings for Vue Component
{
// Rule definitions for finding and matching brackets.
// Brackets are found by using regex and can use scope
// qualifiers exclude certain matches.
// Once all matches are found, the closest pair surrounding
// the cursor are selected.
"brackets": [
// Basic brackets
{
"name": "curly",
@vurral
vurral / nginx-uberspace.md
Created October 11, 2016 09:27 — forked from lluchs/nginx-uberspace.md
nginx auf dem Uberspace

nginx auf dem Uberspace

Installation

Lade die neueste "mainline"-Version (hier 1.7.9) von http://nginx.org/en/download.html herunter und entpacke sie:

$ wget http://nginx.org/download/nginx-1.7.9.tar.gz 
$ tar xf nginx-1.7.9.tar.gz
@vurral
vurral / keybase.md
Created February 6, 2016 15:23
Keybase proof

Keybase proof

I hereby claim:

  • I am kramsee on github.
  • I am kramsee (https://keybase.io/kramsee) on keybase.
  • I have a public key ASC2IP5o78nzKLN8ZBU3PSPBcnSpLHEIl_gpAt-o3slMkQo

To claim this, I am signing this object:

@vurral
vurral / iframe-error.js
Last active December 15, 2015 15:02
PhantomJS #13551
// Run `python -m SimpleHTTPServer` and `phantomjs --debug=true iframe-error.js` in same folder
// Tested with PhantomJS 2.0.1-regression-12506 from https://github.com/skakri/phantomjs/releases/tag/2.0.1-regression-12506
// on OSX 10.11.2
var page = require('webpage').create();
page.open("http://localhost:8000/phantomjs.html", function () {
page.evaluate(function () { document.getElementById("open-iframe").click(); });
// We have to wait for the content of the iframe to load
@mixin linear-gradient($angle, $color1, $offset1, $color2 ,$offset2:100, $color3:null, $offset3:100, $color4:null, $offset4:100, $color5:null, $offset5:100){
$angle_webkit:'left top, left bottom';
$angle_svg:'%20x2%3d%220%25%22%20y2%3d%22100%25%22';
$color-stop1_css:'#'#{$color1}' '#{$offset1}'%';
$color-stop2_css:',#'#{$color2}' '#{$offset2}'%';
$color-stop3_css:'';
$color-stop4_css:'';
$color-stop5_css:'';
$color-stop1_svg:'%3cstop%20style%3d%22stop%2dcolor%3a%23'#{$color1}'%22%20offset%3d%22'#{$offset1}'%25%22%2f%3e';
$color-stop2_svg:'%3cstop%20style%3d%22stop%2dcolor%3a%23'#{$color2}'%22%20offset%3d%22'#{$offset2}'%25%22%2f%3e';

Trello CSS Guide

“I perfectly understand our CSS. I never have any issues with cascading rules. I never have to use !important or inline styles. Even though somebody else wrote this bit of CSS, I know exactly how it works and how to extend it. Fixes are easy! I have a hard time breaking our CSS. I know exactly where to put new CSS. We use all of our CSS and it’s pretty small overall. When I delete a template, I know the exact corresponding CSS file and I can delete it all at once. Nothing gets left behind.”

You often hear updog saying stuff like this. Who’s updog? Not much, who is up with you?

This is where any fun you might have been having ends. Now it’s time to get serious and talk about rules.

Writing CSS is hard. Even if you know all the intricacies of position and float and overflow and z-index, it’s easy to end up with spaghetti code where you need inline styles, !important rules, unused cruft, and general confusion. This guide provides some architecture for writing CSS so it stays clean and ma

New computer setup


Format the drive

  1. Restart with cmd-R or cmd-D
  2. Erase drive / 3x if second-hand
  3. Reinstall MacOS
@vurral
vurral / dabblet.css
Created April 20, 2015 16:01
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;