jquery: ajax example
2015-03-22
this is a simple code example to remember how it works, to show how the structure looks like.
$.ajax({
url: 'Controller.php',
type: 'post',
data: oFormData,
contentType: false,
processData: false,
dataType: 'json',
statusCode: {
404: function() {
console.log("404 page not found");
}
},
success: function(oResponse, status, xhr){
console.log('success oResponse', oResponse […]
Linux: Etcher USB Flasher
2014-07-21
Mit dem Tool Etcher
kann man sehr einfach ISO Files auf USB Sticks schreiben.
Installation
Debian und Ubuntu based Package Repository (GNU/Linux x86/x64)
Add Etcher debian repository:
echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list
Trust Bintray.com's GPG key:
sudo apt-key adv --keyserver keyserver.u […]