- ⭐️ (feat) for commits related to adding new features.
- 🛠 (fix) for commits related to fixing broken code.
- 🍺 (chore) for commits that are just chores.
- 📝 (doc) for commits related to adding and maintaining documentation.
- ♻️ (refa) for commits related to refactoring code and making it work better.
- 🔍 (test) for commits related to writing or fixing tests.
- 🌈 (style) for commits related to making your code or your app beautiful with style changes.
[ | |
{ | |
"title": "Project Hail Mary", | |
"author": "Andy Weir", | |
"genre": "Science Fiction", | |
"isbn": "9780593135204" | |
}, | |
{ | |
"title": "The Martian", | |
"author": "Andy Weir", |
/* | |
Copy this into the console of any web page that is interactive and doesn't | |
do hard reloads. You will hear your DOM changes as different pitches of | |
audio. | |
I have found this interesting for debugging, but also fun to hear web pages | |
render like UIs do in movies. | |
*/ | |
const audioCtx = new (window.AudioContext || window.webkitAudioContext)() |
One of the best ways to reduce complexity (read: stress) in web development is to minimize the differences between your development and production environments. After being frustrated by attempts to unify the approach to SSL on my local machine and in production, I searched for a workflow that would make the protocol invisible to me between all environments.
Most workflows make the following compromises:
-
Use HTTPS in production but HTTP locally. This is annoying because it makes the environments inconsistent, and the protocol choices leak up into the stack. For example, your web application needs to understand the underlying protocol when using the
secure
flag for cookies. If you don't get this right, your HTTP development server won't be able to read the cookies it writes, or worse, your HTTPS production server could pass sensitive cookies over an insecure connection. -
Use production SSL certificates locally. This is annoying
Mark Lauren - Fit ohne Geräte http://www.goodreads.com/book/show/12465583-fit-ohne-ger-te
Steven Low - Overcoming Gravity http://www.goodreads.com/book/show/33293328-overcoming-gravity
#!/usr/bin/perl | |
# use with: cat producion.log | perl production_log_stats.pl | |
use warnings; | |
use strict; | |
use List::Util qw(sum); | |
my $filestats_ref = (); |
I hereby claim:
- I am emrox on github.
- I am emrox (https://keybase.io/emrox) on keybase.
- I have a public key whose fingerprint is EB76 E532 647A 2F64 61D4 0A25 DB7B 9CB7 613A FDEA
To claim this, I am signing this object:
cat linklist.txt | xargs -i~ curl -o /dev/null --silent --write-out '~ %{http_code}\n' \~ > linklist.checked.txt |
<meta\s*(?:(?:\b(?:\w|-)+\b\s*)=\s*(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')\s*)*\/?> | |
- empty Meta Tags | |
- XHTML Styled Meta Tags (<meta />) and normal HTML Meta Tags (<meta>) | |
- single and double quote marks are supported | |
- Values can contain escaped quote marks (<meta name="test\"name" />) |
<xsd:pattern xmlns:xsd="http://www.w3.org/2001/XMLSchema" value="\d{3}-[A-Z]{2}"/> |