Skip to content

Instantly share code, notes, and snippets.

View danielgynn's full-sized avatar

Daniel Gynn danielgynn

View GitHub Profile
@danielgynn
danielgynn / gulpfile.js
Last active August 16, 2022 09:06
Example gulpfile from the 'Automating your build tasks easily with Gulp.js' article.
var gulp = require('gulp'); // Require gulp
// Sass dependencies
var sass = require('gulp-sass'); // Compile Sass into CSS
var minifyCSS = require('gulp-minify-css'); // Minify the CSS
// Minification dependencies
var minifyHTML = require('gulp-minify-html'); // Minify HTML
var concat = require('gulp-concat'); // Join all JS files together to save space
var stripDebug = require('gulp-strip-debug'); // Remove debugging stuffs
<% include partials/head %>
<body>
<div class="col-sm-8 col-sm-offset-2">
<div class="jumbotron text-center">
<h1><span class="fa fa-sign-in"></span> Login</h1>
<% if (message != null) { %>
<div class="alert-danger"><%= message %></div>
<% } %>
<% include partials/head %>
<body>
<div class="col-sm-8 col-sm-offset-2">
<div class="jumbotron text-center">
<h1><span class="fa fa-sign-in"></span> Signup</h1>
<% if (message != null) { %>
<div class="alert-danger"><%= message %></div>
<% } %>
<% include partials/head %>
<body>
<div class="col-sm-8 col-sm-offset-2">
<div class="text-center">
<h1 class=" fa fa-user"> Profile</h1><br>
<span><strong>user id</strong>: <%= user._id ? user._id : '' %></span><br>
<span class="fa fa-sign-out"><a href="/"> Sign out</a></span>
<hr>
<div class="jumbotron">
<% include partials/head %>
<body>
<div class="col-sm-10 col-sm-offset-1">
<div class="text-center">
<h1><%= error.status %>: <%= message %></h1>
<pre><%= error.stack %></pre>
<a href="/" class="btn btn-default"><span class="fa fa-home"></span> Home</a>
</div>
</div>
@danielgynn
danielgynn / euroSweepstakes.js
Last active June 8, 2021 08:32
Euro 2020 Sweepstakes Generator
const countries = [
'๐Ÿ‡ฆ๐Ÿ‡น Austria', '๐Ÿ‡ง๐Ÿ‡ช Belgium', '๐Ÿ‡ญ๐Ÿ‡ท Croatia', '๐Ÿ‡จ๐Ÿ‡ฟ Czech Republic', '๐Ÿ‡ฉ๐Ÿ‡ฐ Denmark',
'๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ England', '๐Ÿ‡ซ๐Ÿ‡ฎ Finland', '๐Ÿ‡ซ๐Ÿ‡ท France', '๐Ÿ‡ฉ๐Ÿ‡ช Germany', '๐Ÿ‡ญ๐Ÿ‡บ Hungary',
'๐Ÿ‡ฎ๐Ÿ‡น Italy', '๐Ÿ‡ณ๐Ÿ‡ฑ Netherlands', '๐Ÿ‡ฒ๐Ÿ‡ฐ North Macedonia', '๐Ÿ‡ต๐Ÿ‡ฑ Poland',
'๐Ÿ‡ต๐Ÿ‡น Portugal', '๐Ÿ‡ท๐Ÿ‡บ Russia', '๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ Scotland', '๐Ÿ‡ธ๐Ÿ‡ฐ Slovakia', '๐Ÿ‡ช๐Ÿ‡ธ Spain',
'๐Ÿ‡ธ๐Ÿ‡ช Sweden', '๐Ÿ‡จ๐Ÿ‡ญ Switzerland', '๐Ÿ‡น๐Ÿ‡ท Turkey', '๐Ÿ‡บ๐Ÿ‡ฆ Ukraine', '๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ Wales'
];
const runSweepstake = () => {
const contenders = process.argv.slice(2);