Markdown és un llenguatge de marcat lleuger per donar format simple a textos.
- Estàndard (més o menys)
- Simple
| import os | |
| import json | |
| from http.server import BaseHTTPRequestHandler, HTTPServer | |
| from urllib import parse | |
| from requests import post | |
| port = os.environ['PROXY_PORT'] | |
| url = os.environ['FORWARD_URL'] | |
| token = os.environ['TOKEN'] |
| tap "homebrew/bundle" | |
| # BASIC SOFTWARE --> | |
| brew "mas" | |
| # mas "Slack", id: 803453959 | |
| mas "The Unarchiver", id: 425424353 | |
| mas "Spark", id: 1176895641 | |
| mas "Dropover", id: 1355679052 | |
| mas "Bitwarden", id: 1352778147 | |
| cask "rectangle" |
| import winston from 'winston'; | |
| import morgan from 'morgan'; | |
| import json from 'morgan-json'; | |
| /* WINSTON */ | |
| const filterLevel = level => winston.format(info => info.level === level ? info : undefined)(); | |
| const logger = winston.createLogger({ | |
| levels: { error: 0, warn: 1, info: 2, debug: 3, http: 4 }, | |
| transports: [ |
Compile a Processing sketch into a library that can be used with an import. This is helpful to reduce the amount of Processing tabs in a project, specially for that bunch of classes that won't be changed and belong to a same conceptual group.
Translate Processing's .pde files to .java files, getting rid of all the Processing core functions by java equivalents (ex. sin() to Math.sin()) and/or import Processing classes (ex. PVector).
Add package name at the beginning of every java class file.
Open Terminal and go to sketch's directory. Type the following command
javac -cp [processing_path]:[extra_libraries] -source 1.6 -target 1.6 -d . *.java| export default (chars = 'ABCDEFGHJKMNPQRSTUVWXYZ0123456789') => { | |
| const checksum = input => { | |
| const { sum } = input.split('').reverse().reduce((acc, char) => { | |
| const addend = acc.factor * chars.indexOf(char); | |
| acc.factor = acc.factor === 2 ? 1 : 2; | |
| acc.sum += Math.floor(addend / chars.length) + (addend % chars.length); | |
| return acc; | |
| }, { sum: 0, factor: 2 }); | |
| const remainder = sum % chars.length; | |
| return chars[(chars.length - remainder) % chars.length]; |
| /** | |
| * import StaggerDirective from '@/utils/directive.stagger'; | |
| * Vue.directive('stagger', StaggerDirective); | |
| * | |
| * Optional directive value selects elements through CSS selectors v-stagger="'.stagger-item'" | |
| * Optional argument defines generic stagger interval v-stagger:250 (default: 100ms) | |
| * Optional data-stagger for single item delay | |
| */ | |
| export default { |
| <?php | |
| /* Validation schema example */ | |
| $schema = [ | |
| 'id' => ['field' => 'id'], | |
| 'name' => [ | |
| 'field' => 'name', | |
| 'required' => true, | |
| 'validation' => ['type' => 'string'] | |
| ], |