type: PIN
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
type: PIN
Consumer key: IQKbtAYlXLripLGPWd0HUA
| html, body, div, span, applet, object, iframe, table, caption, | |
| tbody, tfoot, thead, tr, th, td, del, dfn, em, font, img, ins, | |
| kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, | |
| acronym, address, big, cite, code, dl, dt, dd, ol, ul, li, | |
| fieldset, form, label, legend { | |
| vertical-align: baseline; | |
| font-family: inherit; | |
| font-weight: inherit; | |
| font-style: inherit; |
| // Responsive breakpoints | |
| $mobile: 767px; | |
| $tablet: 1024px; | |
| $medium-desktop: 1366px; | |
| @mixin media($breakpoint) { | |
| @media only screen and (max-width: $breakpoint) { | |
| @content; | |
| } | |
| } |
| # This file is just a list of hosts to prevent adobe activation. | |
| # For more protection, like blocking Adware, Malware, FakeNews, | |
| # Gambling, Porn or Social, go to https://github.com/StevenBlack/hosts | |
| # | |
| # To easily manage multiple host databases, use Hostman. | |
| # http://www.abelhadigital.com/hostsman/ | |
| # Or just copy that file to | |
| # "C:\Windows\System32\drivers\etc" | |
| # ================================= |
| #!/bin/bash | |
| # Author : [email protected] | |
| # Copyright (c) Sean Maddison | |
| # Notes: | |
| # | |
| # - My first attempt at writing a bash script! | |
| # Notes | |
| # ----- |
| function setup() { | |
| createCanvas(800, 800); | |
| angleMode(DEGREES); | |
| } | |
| function draw() { | |
| background((95 / 100) * 255); | |
| push(); | |
| translate(width / 2, height / 2); | |
| let ratio = 0.01; |
| <?php | |
| /** | |
| * @param $tag | |
| * | |
| * @return string | |
| */ | |
| function close_tag($tag) | |
| { | |
| return "</" . $tag . ">"; |
| { | |
| "origin": [ | |
| "#object# #damage# #scapegoat# #relationship# #enemy#, #motivation# #artifact# #where# #source#." | |
| ], | |
| "object": [ | |
| "Las vacunas", | |
| "Los hospitales", | |
| "Los medicamentos", | |
| "Las antenas de los móviles", | |
| "Los conservantes" |
| .png sequence to mp4 | |
| ffmpeg -r 30 -i Frame_%05d.png -pix_fmt yuv420p out.mp4 | |
| -intra flag useful for seekable mp4, but higher file size | |
| concatenate mp4s | |
| https://stackoverflow.com/questions/7333232/how-to-concatenate-two-mp4-files-using-ffmpeg | |
| :: Create File List | |
| echo file file1.mp4 > mylist.txt | |
| echo file file2.mp4 >> mylist.txt |