I do not understand why this is was so difficult to figure out.
You'll need Underscore.js to play along at home.
Start with an array like
var sizes = [4, 1, 10, 8];I do not understand why this is was so difficult to figure out.
You'll need Underscore.js to play along at home.
Start with an array like
var sizes = [4, 1, 10, 8];| # Copyright © 2020 Sébastien Piquemal sebpiq@protonmail.com | |
| # This work is free. You can redistribute it and/or modify it under the | |
| # terms of the Do What The Fuck You Want To Public License, Version 2, | |
| # as published by Sam Hocevar. See the license text below for more details. | |
| # | |
| # -------------------------------------------------------------------- | |
| # | |
| # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| # Version 2, December 2004 | |
| # |
| <?php | |
| /** | |
| * Plugin Name: Email Confirmation | |
| * Description: Send an email to the user with confirmation code and store form data in database until user confirms. | |
| * Author: Cedric Ruiz | |
| */ | |
| class EmailConfirmation | |
| { | |
| const PREFIX = 'email-confirmation-'; |
| /*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
| /* ========================================================================== | |
| HTML5 display definitions | |
| ========================================================================== */ | |
| /** | |
| * Correct `block` display not defined in IE 8/9. | |
| */ |
| /subsystem=undertow/server=default-server/http-listener=default:write-attribute(name=max-post-size, value=20971520) |
| #!/bin/sh | |
| if pwd | grep /mnt/c > /dev/null; then | |
| exec git.exe "$@" | |
| else | |
| exec /usr/bin/git "$@" | |
| fi |
| /** | |
| * Copyright (c) 2022 Zentered OÛ, patrick@zentered.co | |
| * This code is licensed under the terms of the MIT license | |
| * | |
| * This code demonstrates how to create a Google Cloud Function to receive | |
| * a file sent via `multipart/form-data`. The file is then streamed directly | |
| * to Google Cloud Storage, without using a temporary file. | |
| * | |
| * The function returns any `fields` sent as FormData | |
| * |