Modern.IE has removed links for downloading Windows XP. This is the direct link:
https://az412801.vo.msecnd.net/vhd/VMBuild_20141027/VMware/IE8/Windows/IE8.XP.For.Windows.VMware.zip
function transfer | |
if test (count $argv) -eq 0 | |
echo "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md" | |
return 1 | |
end | |
## get temporarily filename, output is written to this file show progress can be showed | |
set tmpfile ( mktemp -t transferXXX ) | |
## upload stdin or file |
Alloy.Globals.wasInForeGround = true; | |
if(OS_ANDROID) { | |
var androidServiceIntent = Ti.Android.createServiceIntent({ url: "foreground.service.js" }); | |
androidServiceIntent.putExtra('interval', 3000); | |
Ti.Android.startService(androidServiceIntent); | |
} | |
Ti.App.addEventListener('resumed', function(e) { | |
Ti.API.log("RESUMED YEAH!"); |
docker-compose up -d | |
docker attach myapp_web_1 |
--- | |
- name: Sync uploads between environments | |
hosts: web | |
remote_user: "{{ web_user }}" | |
vars: | |
project: "{{ wordpress_sites[site] }}" | |
project_root: "{{ www_root }}/{{ site }}" | |
tasks: |
<?php | |
$db = new PDO( | |
"pgsql:dbname=postgres host=localhost port=5432", 'postgres', 'postgres', [ | |
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, | |
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, | |
] | |
); | |
$db->exec('LISTEN hoge'); |
Modern.IE has removed links for downloading Windows XP. This is the direct link:
https://az412801.vo.msecnd.net/vhd/VMBuild_20141027/VMware/IE8/Windows/IE8.XP.For.Windows.VMware.zip
To set up a new server with a Gogs instance, similar to GitHub: | |
1. Create a clean VM with Debian (on e.g. Digital Ocean) and point a (sub)domain to it | |
2. Log in and change the SSH daemon to listen on port 2222 | |
- edit /etc/ssh/sshd_config, "Port 22" -> "Port 2222", systemctl restart ssh | |
- log out; log in with "ssh -p 2222 root@..." | |
3. Install Docker | |
- https://docs.docker.com/engine/installation/linux/debian/ | |
4. Create data directories | |
- mkdir /home/gogs |
Principles of Adult Behavior
<?php | |
namespace App\Tests\Browser; | |
use App\Tests\HasDuskBrowser; | |
class ExampleTest extends \PHPUnit_Framework_TestCase | |
{ | |
use HasDuskBrowser; | |
This guide contains instructions on manually setting up Openwhisk and CouchDB on a fresh Ubuntu 16.04 server.
The guide is based on the OpenWhisk Ansible README, which at the time of writing is missing some key steps and gotchas - hence this new guide.
sudo apt-get update