This file contains 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
// Multi-browser support polyfill for requestAnimationFrame | |
// Falls back to using a setTimeout at 60 fps | |
window.requestAnimFrame = | |
window.requestAnimationFrame || | |
window.webkitRequestAnimationFrame || | |
window.mozRequestAnimationFrame || | |
window.oRequestAnimationFrame || | |
window.msRequestAnimationFrame || | |
function (callback) { | |
window.setTimeout(callback, 1000 / 60); |
This file contains 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
server { | |
listen 80; | |
server_name volunteer.wetfish.net; | |
client_max_body_size 32M; | |
fastcgi_buffers 16 16k; | |
fastcgi_buffer_size 32k; | |
root /home/volunteer/laravel-voldb/laravel/public; | |
index index.php index.html index.htm; |
This file contains 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
var config = | |
{ | |
autoload: | |
{ | |
enabled: false, | |
// data: require('./autoload/example.js') | |
} | |
}; | |
module.exports = config; |
This file contains 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
19:01 < rachel> yay censorship :D | |
19:02 < rachel> let's all cheer that google and apple have the ability to shut down any app they want | |
19:02 < rachel> definitely don't question the power that gives them | |
19:04 < rachel> imagine if microsoft could have just uninstalled bittorrent and limewire from people's computers in 2000 | |
19:14 < rachel> there is no other way, realistically, for people to install software onto their phones | |
19:14 < rachel> no karen is going to install an apk via usb | |
19:15 < rachel> this was an intentional design decision made by apple and google when they created their phones with app stores, censorship was the purpose all along | |
19:15 < rachel> they saw the problem with general purpose computing - people could install any software they wanted, and that was a threat to the ruling class | |
19:24 < rachel> they started out claiming it was for "your protection" to "keep you safe from viruses" but they have become so entrenched into our society that they can now start to show their true purpos |
This file contains 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
Attaching to fishblog | |
fishblog | internal/modules/cjs/loader.js:883 | |
fishblog | throw err; | |
fishblog | ^ | |
fishblog | | |
fishblog | Error: Cannot find module './config' | |
fishblog | Require stack: | |
fishblog | - /app/server/main.js | |
fishblog | at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15) | |
fishblog | at Function.Module._load (internal/modules/cjs/loader.js:725:27) |
This file contains 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
let emilypi = ['hey', 'cool', 'list']; | |
function headOr(list, defaultValue) { | |
if(list[0] === undefined) { | |
return defaultValue; | |
} | |
return list[0]; | |
} |
This file contains 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
<html> | |
<body> | |
<section> | |
<article> | |
<div> | |
<p> | |
Lol this is a paragraph | |
Pretty cool huh? | |
</p> |
This file contains 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
server { | |
listen 443 ssl; | |
server_name staging.wetfishonline.com; | |
ssl_certificate /etc/letsencrypt/live/staging.wetfishonline.com/fullchain.pem; # managed by Certbot | |
ssl_certificate_key /etc/letsencrypt/live/staging.wetfishonline.com/privkey.pem; # managed by Certbot | |
ssl_trusted_certificate /etc/letsencrypt/live/staging.wetfishonline.com/chain.pem; # managed by Certbot | |
ssl_stapling on; # managed by Certbot | |
ssl_stapling_verify on; # managed by Certbot |
This file contains 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
Failed to build parsers-0.12.10. | |
Configuring library for parsers-0.12.10.. | |
Preprocessing library for parsers-0.12.10.. | |
Building library for parsers-0.12.10.. | |
[1 of 8] Compiling Text.Parser.Combinators ( src/Text/Parser/Combinators.hs, dist/build/Text/Parser/Combinators.o ) | |
[2 of 8] Compiling Text.Parser.Char ( src/Text/Parser/Char.hs, dist/build/Text/Parser/Char.o ) | |
<command line>: can't load .so/.DLL for: /home/rachel/.cabal/store/ghc-8.6.5/unordered-containers-0.2.10.0-50457b032495e76b370911744967d8e1b4ca7d2db037d25f830c43e5bb3280e7/lib/libHSunordered-containers-0.2.10.0-50457b032495e76b370911744967d8e1b4ca7d2db037d25f830c43e5bb3280e7-ghc8.6.5.so (/home/rachel/.cabal/store/ghc-8.6.5/unordered-containers-0.2.10.0-50457b032495e76b370911744967d8e1b4ca7d2db037d25f830c43e5bb3280e7/lib/libHSunordered-containers-0.2.10.0-50457b032495e76b370911744967d8e1b4ca7d2db037d25f830c43e5bb3280e7-ghc8.6.5.so: undefined symbol: base_DataziTypeableziInternal_sameTypeRep_info) |
This file contains 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
module.exports = { | |
session: { | |
secret: 'random' | |
}, | |
mysql: { | |
username: 'login', | |
password: 'secure', | |
database: 'login' | |
}, |
NewerOlder