Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
| # original post: https://rentry.org/sd-loopback-wave | |
| # original author: https://rentry.org/AnimAnon | |
| import os | |
| import platform | |
| import numpy as np | |
| from tqdm import trange | |
| import math | |
| import subprocess as sp | |
| import string | |
| import random |
| import PySide6.QtSvg | |
| import PySide6.QtGui | |
| import PySide6.QtCore | |
| import moviepy.video.VideoClip | |
| import moviepy.editor | |
| import numpy as np | |
| from moviepy.editor import * | |
| from vectortween.PointAnimation import PointAnimation | |
| from vectortween.SequentialAnimation import SequentialAnimation |
These are the Kickstarter Engineering and Data role definitions for both teams.
| var webviewProvider = (function() { | |
| if (/\/FBIOS/i.test(navigator.userAgent) === true) { | |
| return 'facebook'; | |
| } | |
| if (/Twitter for/i.test(navigator.userAgent) === true) { | |
| return 'twitter'; | |
| } | |
| if (/Pinterest\//.test(navigator.userAgent) === true) { | |
| return 'pinterest'; | |
| } |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| You appear to be advocating a new: | |
| [ ] cloud-hosted [ ] locally installable [ ] web-based [ ] browser-based [ ] language-agnostic | |
| [ ] language-specific IDE. Your IDE will not succeed. Here is why it will not succeed. | |
| You appear to believe that: | |
| [ ] Syntax highlighting is what makes programming difficult | |
| [ ] Garbage collection is free | |
| [ ] Computers have infinite memory | |
| [ ] Nobody really needs: |
| pwd | |
| git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh | |
| cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc | |
| chsh -s /bin/zsh | |
| exit |
| Handlebars.registerHelper('linkify', function (text) { | |
| text = text.replace(/(https?:\/\/\S+)/gi, function (s) { | |
| return '<a href="' + s + '">' + s + '</a>'; | |
| }); | |
| text = text.replace(/(^|)@(\w+)/gi, function (s) { | |
| return '<a href="http://twitter.com/' + s + '">' + s + '</a>'; | |
| }); | |
| text = text.replace(/(^|)#(\w+)/gi, function (s) { |