A simple dictation robot.
echo 'Přečti mi něco, prosím!' | ruby dictator.rb
cat data.txt | ruby dictator.rb
cat data.txt | SPEED=1.5 ruby dictator.rb
A simple dictation robot.
echo 'Přečti mi něco, prosím!' | ruby dictator.rb
cat data.txt | ruby dictator.rb
cat data.txt | SPEED=1.5 ruby dictator.rb
// something like: | |
<BundleLink to="/profile" onLoadStart={() => { | |
// throw a spinner up on the "old" page while we load | |
this.setState({ navigating: true }) | |
}}>Profile</BundleLink> | |
<BundleLink to="/dash" prefetch={true}>Dashboard</BundleLink> | |
/////////////////////////////////////////////////////// | |
const BUNDLED_ROUTES = { |
Drag and Drop is undoubtedly one of the most popular and user-friendly interactions in software nowadays. There are plenty awesome libraries for DnD in React realm, covering most of the use cases. We tried them all at productboard, but realized we need something special for complex interfaces we are building. We developed our own solution that satisfied three main requirements we had:
Alexa & Katie | |
All or Nothing | |
Angel of the Lord 2 | |
Another Life | |
Backstage | |
Barbie Dolphin Magic | |
Basketball or Nothing | |
Beats | |
Black Mirror | |
Captain Underpants: The First Epic Movie |
// create a bookmark and use this code as the URL, you can now toggle the css on/off | |
// thanks+credit: https://dev.to/gajus/my-favorite-css-hack-32g3 | |
javascript: (function() { | |
var styleEl = document.getElementById('css-layout-hack'); | |
if (styleEl) { | |
styleEl.remove(); | |
return; | |
} | |
styleEl = document.createElement('style'); | |
styleEl.id = 'css-layout-hack'; |
#!/bin/bash | |
# Accept CD Wifi (Czech railways) on the command line (if you hate clicking). | |
# http://cdwifi.cz | |
# | |
# Put the script to ~/bin/cdwifi and make sure that export it's on the path: PATH=$PATH:~/bin | |
# Note that if you have a custom DNS set (eg. 8.8.8.8 or 1.1.1.1) they don't resolve | |
# cdwifi.cz. If you don't want to use their DNS set via DHCP for all your traffic | |
# the workaround here is to query their DNS server at the gateway just | |
# for this request. | |
# |