I also now sneak apps on user’s phones that the user never installed or authorized to just to gather as much private data about the user as possible… hope user shurely does not mind right? users are pretty upset here […]
why have one package management system if the user can have 3x 4x 5x? https://en.wikipedia.org/wiki/APT_(software) https://salsa.debian.org/apt-team/apt.git to keep it simple imho it would be better to use only one “one to rule em all” (maybe python pip as exception) https://www.reddit.com/r/Ubuntu/comments/a364ii/proscons_of_snap_vs_apt/ […]
let’s put it like this: no (ui or ux other) designer was involved in the process of html4 and html5 this explains it was so hard (for a long time) to create layouts that scale well (across devices, div + […]
which pretty much reads like: it probably has to do with: https://wiki.mozilla.org/ServerJS/Introduction (used in firefox and/or thunderbird?) (checkout this search for more javascript rants X-D) one day either JavaScript or Autocomplete will cause the 3rd world war: now imagine Biden […]
create a new shared folder on the nas call it “data” enable NFSv4, disable NFSv3 specify list of IPs that are allowed to access the NFSv4 share: don’t forget to hit “Apply” the idea is “anyway” to NAS<-directly-LAN-1000MBit->PC connect the […]
most users probably don’t care X-D twitter was updated and now, even viewing hashtags is impossible without JavaScript turned on (there used to be a functional version without javascript). JavaScript has developed from “it’s so great, the first true cross-platform […]
https://youtu.be/Ag1AKIl_2GM the 4 free software freedom rules: freedom 0: The freedom to run the program as you wish, for any purpose. (computers start counting with 0, that’s why it is freedom 0) freedom 1: The freedom to study how […]
MOZILLA ONE URGES YOU! MAKE JAVASCRIPT DISABLED IN THUNDERBIRD THE DEFAULT! Description Using the new logical assignment operators in a JavaScript switch statement could have caused a type confusion, leading to a memory corruption and a potentially exploitable crash. This […]
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/ [cc lang=”js” escaped=”true” width=”600″] Show Hide [/cc]
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/ [cc lang=”js” escaped=”true” width=”600″] [/cc] Links: Further readings: https://www.smashingmagazine.com/2014/09/animating-without-jquery/
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 […]
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() will not encode: ~!*()’ sources: http://stackoverflow.com/questions/332872/how-to-encode-a-url-in-javascript
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 [cc lang=”js” escaped=”true” width=”546″ line_numbers=”off”] Name Return Email Return Phone [/cc] inspired by: http://stackoverflow.com/questions/16661380/submitting-a-form-via-ajax
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 […]