(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.
| create trigger trades_readonly_trigger before insert or update or delete or truncate on trades for each statement execute procedure readonly_trigger_function(); |
| - Tune /etc/ssh/sshd_config | |
| UseDNS no # Disable DNS lookups | |
| GSSAPIAuthentication no # Disable negotation of slow GSSAPI | |
| don't forget to restart it, use a script provider to set it , or create it with veewee or snapshot it | |
| - Tune Vagrantfile | |
| vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] |
| library(shiny) | |
| library(mclust) | |
| shinyServer(function(input, output, session) { | |
| # Create a spot where we can store additional | |
| # reactive values for this session | |
| val <- reactiveValues(x=NULL, y=NULL) | |
| var ProgressBar = require('progress'); | |
| function Multibar(stream) { | |
| this.stream = stream || process.stderr; | |
| this.cursor = 0; | |
| this.bars = []; | |
| this.terminates = 0; | |
| } | |
| Multibar.prototype = { |
(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.
Python syntax here : 2.7 - online REPL
Javascript ES6 via Babel transpilation - online REPL
import math| { | |
| "presets": [ | |
| "typescript", | |
| "react", | |
| [ | |
| "env", | |
| { | |
| "targets": { | |
| "uglify": true | |
| } |
Python utility to bulk delete GitHub Actions runs for a given workflow, either current or legacy/since removed. The GitHub web UI currently allows removal of individual workflow runs - but this becomes tedious quickly when performed in bulk.
Create a Personal access token allowing the workflow scope: