either: or: Richard’s hardware: “if we could not replace a machine’s operating system with a free one, we replaced the machine instead.” (src: https://www.gnu.org/gnu/thegnuproject.html) Libre booted (BIOS with Linux overwritten) Thinkpad T400s running Trisquel GNU/Linux OS. (src: https://stallman.org/stallman-computing.html) LibreBooting the […]
for security reasons highly recommended: always keep Thunderbird up to date (go to … then it should start downloading the update automatically if there is any) DISABLE JAVASCRIPT! X-D get to Thunderbird’s preferences (in any language edition): if the “Edit” […]
2020-12: another reason why JavaScript SUCKS badly and websites NEED TO WORK without JS: it might “destroy” NAT security: NAT Slipstreaming allows an attacker to remotely access any TCP/UDP service bound to a victim machine, bypassing the victim’s NAT/firewall (arbitrary […]
a classic example of the exaggerated use of javascript. which is an slow and unreliable language and i really wonder how people manage to build larger applications with it. result was… “no there is no faster internet from us for […]
ich wollte mal wissen, wie steht es eigentlich um die Security auf Technologie / Programmiersprachen-Ebene? D.h. welche Programmiersprachen machen es einem schwer vs. einfach sichere Software zu schreiben? Natürlich kann man in jeder Programmiersprache angreifbare Projekte entwickeln… das ist kein […]
This article is about finding out: What low-power PC with decent performance is best suitable for solar-powered (12v would be nice) Off-Grid-computing while respecting your privacy in an FSF-kind? done! see: run a Solar-Battery powered 12V Raspberry Pi Model B […]
Click on this link to see the demo at work: https://jsfiddle.net/5vrkLyck/ <!DOCTYPE html> <html> <style> #container { width: 400px; height: 400px; position: relative; background: yellow; } #animate { width: 50px; […]
onclick on : will rotate by 90° and another click will rotate back 🙂 to see the example in action click here: https://jsfiddle.net/d5w65my2/5/ <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="shortcut icon" href="images/favicon.png"> <script> […]
installation of mean.io on debian wheezy: su // root your machine apt-get install curl // install curl, say yes curl -sL https://deb.nodesource.com/setup | sudo bash – // install Node Package Manager npm install -g grunt-cli // install grunt mkdir /var/www/mean.io […]
<a name="arrow_linktoolfactory"></a> <img src="/webEdition/images/modules/users/arrow_close.gif" alt="Hier klicken, um diese Gruppe zu schließen …" width="19" height="18" name="arrow_toolfactory" border="0" />
Check out the built-in function encodeURIComponent(str) and encodeURI(str) . In your case, this should work: var myOtherUrl = "http://example.com/index.html?url=" + encodeURIComponent(myUrl); You have three options: escape() will not encode: @*/+ will encode http:// to http%3A// encodeURI() will not encode: ~!@#$&*()=:/,;?+’ encodeURIComponent() […]
Please click on the red Admin button to get started…
CopyProtection with javascript Protecting Your CopyRight first of all… javascript is always OpenSource… there is nothing you can do about it. So people become very creative about how to verify if a script was stolen or not. Here is one […]
it is said that this is the way guys @ google do it… BUT!!!! i when i went from jqm (a lot of code) to bootstrap (a little code), i quickly went back to 1. manually include as few js as […]
this is a test: submit_form_with_ajax_without_pagerefresh.php <?php if(isset($_REQUEST["phone"])) { exit(json_encode($_REQUEST)); // answer the client; // exit — Output a message and terminate the current script } ?> <!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title></title> <style […]
Vor- und Nachteile von Responsive Design: – Designer muss sich bewusst sein dass er verschiebbare Elemente designen soll. (welche Elemente sollen nebeneinander/unterneinander sein, je nach Grösse… d.h. er muss eigentlich auch 2x Designs abliefern… ein Desktop und ein Mobile-Design) – […]
Kritisches, selbständiges Denken und auch die “Hausfrauen-Logik” sollte jedes Kind in Schule oder Familie erlernen und nie wieder ganz abschalten, egal was es kritisch zu beleuchten gibt 😉 Aktuell: “Responsive Design“ An diesem Konzept scheiden sich die Geister. Die Idee […]
sometimes… you come across a javascript error… but the firebug addon in firefox won’t let you trace it completely to the origin. after setting up chrome, open the problematic page and right-click -> inspect element. this will open the […]
…. was ist das beste an javascript? dass es IMMER OpenSource ist 😀 (d.h. es gibt kein binäres Format … kein byte-compilier… garkeinen compiler… es ist wie php eine reiner interpretersprache) vorteil: Jeder lernt von Jedem! those snippets saved my […]