A Pen by Joel Kesler on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Imperative vs Declarative Programming Tests #jsbench #jsperf - https://www.youtube.com/watch?v=E7Fbf7R3x6I</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |
I hereby claim:
- I am joelkesler on github.
- I am joelkesler (https://keybase.io/joelkesler) on keybase.
- I have a public key whose fingerprint is A941 1ED2 C373 2539 7BA9 BB4B 61C1 F0FA 222A C0BE
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asd() { | |
cat <<"EOT" | |
_ _ _ | |
| | | | (_) | |
_ __ ___ __ _ ___| |__ ___ ___ | | __ __ _ _ _ __ | |
| '_ ` _ \ / _` |/ __| '_ \ / _ \ / _ \| |/ / / _` | | '__| | |
| | | | | | (_| | (__| |_) | (_) | (_) | < | (_| | | | | |
|_| |_| |_|\__,_|\___|_.__/ \___/ \___/|_|\_\ \__,_|_|_| | |
EOT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# +----------------------------------------------------------------------+ | |
# | | | |
# | Set up Mac OS X to store temporary files in RAM rather than on disk.| | |
# | | | |
# | By Philipp Klaus <http://blog.philippklaus.de> | | |
# | | | |
# | Originally by Ricardo Gameiro <http://blogs.nullvision.com/?p=357> | | |
# | Changes by Daniel Jenkins | |