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 + […]
JavaScript screwed up …. AGAIN! (another example for “why is it NOT cool for executable script languages to be allowed to embedd into PDF or any other file format”) used to steal BILLIONS of NF… ucking Ts: https://research.checkpoint.com/2022/how-hackers-make-nfts-disappear/ really should […]
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 […]
“The Duri malware, for example, uses the Javascript blob technique. The attacks are triggered by visiting a website with the malicious code.” (this could be a well known, sincere, but hacked website) “By downloading, the malware can install itself on […]
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 […]
BeyondCorp Google’s new Approach to Security – we need to know EVERYTHING about the user – in order to trust the user – The Age of Surveillance Capitalism first of… the good about JavaScript is (always say something positive […]
SecurityLab, [02.11.20 11:52] The 50-year-old businessman (Hunter Biden?) in April 2019 brought his device to the IT store Mac Shop in Delaware for repair, but never returned to pick it up. The device was soon seized by the FBI. According […]
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 […]
Pwn2Own 2020: opening a pdf can be enough to compromise system! https://youtu.be/u1udr7j9MQA?t=359 90% of companies DO NOT NEED JavaScript or macros to run in PDF but still it is there… and Adobe knows about it: “JavaScripts in PDFs as a […]
https://dwaves.de/2023/08/07/looking-for-a-new-soc-or-sbc-new-version-of-starfive-visionfive-2-risc-v-sob-soc-battle-rages-on-raspberry-pi-4-vs-odroid-n2l/ Update: 2023: there seems to be a new version “StarFive VisionFive 2 JH7110 64bit SoC” with 4GB RAM for 84,49 Bucks or 114,49 Bucks for the 8GB RAM version CPU performance is between Raspberry Pi3 and Pi34 also remarkable: price-wise it […]
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 […]
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 […]
SWR 22:50 Wir hacken Deutschland Film von Marcel Kolvenbach45 Min. oder hoffentlich noch lange verfügbar: https://www.youtube.com/watch?v=TdwuAEBrKzw Konstruktive Vorschläge: Biodiversity: Wenn ALLE Systeme GLEICH aufgebaut sind und mit dem GLEICHEN Betriebsystem laufen haben diese (ähnlich wie geklonte Tiere) auch die GLEICHEN […]
2018-04: RISC-V CPUs not affected by spectre & meltdown “No announced RISC-V silicon is susceptible, and the popular open-source RISC-V Rocket processor is unaffected as it does not perform memory accesses speculatively.” (2018-01-05 src) “If you’re selling an IoT sensor […]
Instead of displaying advertisement (google ad-words did not pay off for me) – the browser of visitors could mine crypto currencies for blogger to sponsor her/his site. It does not even matter if they are bots or humans. http://www.monerowebminer.com/ Botnets […]
https://haxiomic.github.io/GPU-Fluid-Experiments/html5/ src: https://github.com/haxiomic/GPU-Fluid-Experiments author: https://members.loria.fr/BLevy/
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/
i really like wordpress… this blog is using it. what i don’t like if things become tooo “automatic”. including fonts and scripts from external sources (google) that can be changed/updated/modified anytime… they could smuggle surveillance code into a billion wordpress […]
Looks pretty cool 🙂 But not playable on mobile 🙂 ? Argh :-p http://pacman.shaunew.com/play/
it’s loading all the super-efficient library.min.js Versions but you need to debug a JavaScript file? open wp-config.php in your favourite editor an add: (right after define(‘WP_DEBUG’, true);) [cc lang=”php” escaped=”true” width=”600″] /** * For developers: WordPress debugging mode. * * […]
forget about jquery, this actually works: [cc lang=”js” escaped=”true” width=”600″] /* calculate distance of dom element from top of screen element (jquery.position().top fails) */ function cumulativeOffset(element) { var top = 0, left = 0; do { top += element.offsetTop || […]
the keyword is SVG – Scalable Vector Grafix – supported even from ie9 and later http://d3js.org/ check out these massively cool examples: click on a pie slice and zoom in http://bl.ocks.org/mbostock/5944371 display the current time as a BAR CHART 😀 […]
“node never sleeps… you can not halt execute… you can idle” async execution of things = callbacks
“Die endgültige Lösung fand Ryan Dahl dann schließlich im Januar 2009 mit Java- Script. Hier wurde ihm klar, dass diese Scriptsprache sämtliche seiner Anforderungen erfüllen könnte.” 1. non-blocking i/o (ruby too slow) 2. JavaScript war bereits seit Jahren im Web […]
does it make sense to port desktop games to the browser? … if we really get bandwidths like heck… then maybe… otherwise it will stay the buy downloadable-setup, install… update, update process. Here are two examples, both are using WebGL, […]
javascript jquery html form element – also submit checkboxes that have the “off” state solution: http://jsfiddle.net/az7s5/ [cc lang=”js” escaped=”true” width=”500″] // serialize form, also send values for checkboxes that are “off” $(form).children().each(function() { add = “”; //access to form element via […]
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