diff --git a/api/news.json b/api/news.json index 50b6cebd..086d373f 100644 --- a/api/news.json +++ b/api/news.json @@ -1 +1 @@ -{"status":"ok","totalResults":4583,"articles":[{"source":{"id":null,"name":"Hackaday"},"author":"Donald Papp","title":"Kaluma Puts JavaScript on the RP2040","description":"With a simple firmware update, Kaluma puts a lightweight JavaScript runtime on the Raspberry Pi Pico (which uses the RP2040 microcontroller), providing handy modules for file systems, graphics, networking, and …read more","url":"https://hackaday.com/2023/10/01/kaluma-puts-javascript-on-the-rp2040/","urlToImage":"https://hackaday.com/wp-content/uploads/2023/09/javascript-RP2040.png","publishedAt":"2023-10-01T20:00:53Z","content":"With a simple firmware update, Kaluma puts a lightweight JavaScript runtime on the Raspberry Pi Pico (which uses the RP2040 microcontroller), providing handy modules for file systems, graphics, netwo… [+869 chars]"},{"source":{"id":null,"name":"ReadWrite"},"author":"Tanesh Kumar","title":"5 Ways to Use JavaScript to Add Interactivity to Your Website","description":"Greetings from the web development industry! Making a website involves more than simply putting content online—it also gives visitors a […]\nThe post 5 Ways to Use JavaScript to Add Interactivity to Your Website appeared first on ReadWrite.","url":"https://readwrite.com/5-ways-to-use-javascript-to-add-interactivity-to-your-website/","urlToImage":"https://readwrite.com/wp-content/uploads/2023/07/JavaScript-to-Add-Interactivity.jpg","publishedAt":"2023-09-08T23:00:46Z","content":"Greetings from the web development industry! Making a website involves more than simply putting content onlineit also gives visitors a memorable experience. Now, let’s enter the fascinating ways to u… [+6101 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Max Bold","title":"heise+ | Datenaustausch zwischen PHP und JavaScript realisieren","description":"Für die Übergabe von Daten aus PHP-Programmen an JavaScript gibt es verschiedene Varianten. Wir erklären, welche es gibt und wie man sie umsetzt.","url":"https://www.heise.de/ratgeber/Datenaustausch-zwischen-PHP-und-JavaScript-realisieren-9306537.html?wt_mc=rss.red.ho.ho.atom.beitrag_plus.beitrag_plus","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/0/3/4/8/3/shutterstock_1463449130-502f827aa20c6722.jpg","publishedAt":"2023-09-21T09:00:00Z","content":"Inhaltsverzeichnis\r\nBei der Programmierung von Webanwendungen kommt es oft zur Vermischung von verschiedenen Programmiersprachen wie beispielsweise PHP, JavaScript, HTML und CSS.\r\nIn dieser Konstella… [+1207 chars]"},{"source":{"id":null,"name":"Effectivetypescript.com"},"author":null,"title":"The Saga of the Closure Compiler, and Why TypeScript Won","description":"This post looks at the Closure Compiler, Google's tool from the mid-2000s for adding types to JavaScript. It looks at how its focus on minification led to very different design choices than TypeScript, and how this and a few other factors led to TypeScript be…","url":"https://effectivetypescript.com/2023/09/27/closure-compiler/","urlToImage":"https://effectivetypescript.com/images/cover.jpg","publishedAt":"2023-09-28T07:55:38Z","content":"Here's something that makes me feel old: in just six months, Gmail will celebrate its 20th anniversary. If you weren't actively developing web sites at the time, it's hard to capture just how revolut… [+19347 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Madeleine Domogalla","title":"JavaScript: Angular at the Cutting Edge – Signals und Standalone Components","description":"Für das Webframework Angular stand im Mai 2023 ein Update an: Michael Hladky legt in seinem Vortrag auf der enterJS 23 den Fokus auf die neuen Signals.","url":"https://www.heise.de/hintergrund/JavaScript-Angular-at-the-Cutting-Edge-Signals-und-Standalone-Components-9312260.html?wt_mc=rss.red.ho.ho.atom.beitrag.beitrag","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/0/6/5/5/3/Unbenannt-7726e6e019c7ce34.jpg","publishedAt":"2023-09-22T06:31:00Z","content":"In seinem Vortrag auf der enterJS 2023 zeigt Michael Hladky Angular-Anwendungen in einem neuen Gewand, auf der Höhe der Zeit. Denn das Webframework hatte kurz vor dem Zeitpunkt des Vortrags mit dem R… [+1193 chars]"},{"source":{"id":null,"name":"Paularmstrong.dev"},"author":"","title":"We use TypeScript not based on preference, but because we want to make money","description":"A short recounting of the thing that changed my mind forever on strict type checking for JavaScript.","url":"https://paularmstrong.dev/blog/2023/09/14/we-use-type-safety-not-on-preference-but-because-we-want-to-make-money/","urlToImage":"https://paularmstrong.dev/img/og_image_small.jpg","publishedAt":"2023-09-15T21:32:57Z","content":"Before TypeScript was a viable option for most existing projects, there was flow (there still is flow, its just not widely used outside of Meta these days). And before flow, there was just plain Java… [+5052 chars]"},{"source":{"id":null,"name":"Thedailywtf.com"},"author":"Remy Porter","title":"CodeSOD: Threading in JavaScript","description":"The easiest way to write programs that support concurrency is to not. JavaScript in the browser is famously single-threaded, unless you add web-workers, which have a very specific way of interacting with your main script that avoids most of the pitfalls of co…","url":"https://thedailywtf.com/articles/threading-in-javascript","urlToImage":"https://thedailywtf.com/images/remy/Remy203-300x300.png","publishedAt":"2023-09-07T06:30:00Z","content":"The easiest way to write programs that support concurrency is to not. JavaScript in the browser is famously single-threaded, unless you add web-workers, which have a very specific way of interacting … [+1096 chars]"},{"source":{"id":null,"name":"Robinwieruch.de"},"author":"Robin Wieruch","title":"Matrix Operations with Math.js","description":"How to use matrix operations from linear algebra in JavaScript. What are inverse, transpose and identity matrices and how can they help in machine learning ...","url":"https://www.robinwieruch.de/linear-algebra-matrix-javascript/","urlToImage":"https://www.robinwieruch.de/static/4803be8dcfb640c1814b540661e6e9ea/9842e/banner.jpg","publishedAt":"2023-10-05T13:35:36Z","content":"When I recently started to dive into the topic of machine learning, I had to relearn all the things I have studied about linear algebra, stochastic and calculus at school and university. I took a lit… [+10178 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Madeleine Domogalla","title":"heise-Angebot: JavaScript: Das Programm des Advanced Angular Day steht fest","description":"Das Programm der eintägigen Online-Konferenz steht. Am 30. November können sich Interessierte in sechs Vorträgen über das JavaScript-Framework informieren.","url":"https://www.heise.de/news/JavaScript-Das-Programm-des-Advanced-Angular-Day-steht-fest-9297617.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/2/9/8/7/0/2/Screenshot_2023-09-07_124527-54fcc9008c90389c.png","publishedAt":"2023-09-09T10:00:00Z","content":"Inhaltsverzeichnis\r\nDie Veranstalter dpunkt.verlag und heise haben in Kooperation mit Angular-Experte Rainer Hahnekamp das Programm für den Advanced Angular Day 2023 fertiggestellt. Die eintägige Onl… [+2694 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Madeleine Domogalla","title":"heise-Angebot: Enterprise-JavaScript: Call for Proposals für enterJS 2024 gestartet","description":"Interessierte können ab sofort ihre Vortragsvorschläge und Workshopideen für die enterJS 2024 einreichen.","url":"https://www.heise.de/news/Enterprise-JavaScript-Call-for-Proposals-fuer-enterJS-2024-gestartet-9312425.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/0/6/6/3/9/aufmacher_enterjs24-171799454aad0dab.jpg","publishedAt":"2023-09-23T08:00:00Z","content":"Die JavaScript-Konferenz enterJS wird am 7. und 8. Mai 2024 als Präsenzveranstaltung in der Alten Lokhalle in Mainz stattfinden. Die Veranstalter dpunkt.verlag und iX haben den Call for Proposals (Cf… [+1911 chars]"},{"source":{"id":null,"name":"Deno.com"},"author":null,"title":"Deno Queues","description":"Introducing Deno Queues - zero config, scalable messaging with a guaranteed \nat-least-once delivery. This new primitive builds on the foundation set by \nDeno KV, and is available today in the Deno JavaScript runtime and Deno \nDeploy.","url":"https://deno.com/blog/queues","urlToImage":"https://deno.com/blog/queues/og-image.png","publishedAt":"2023-09-27T13:58:58Z","content":"In the ever-evolving world of cloud software, Deno aims to radically simplify.\r\nLeveraging public cloud infrastructure has traditionally demanded sifting\r\nthrough layers of boilerplate code and intri… [+7783 chars]"},{"source":{"id":null,"name":"Npmjs.com"},"author":null,"title":"React Sees a dip in NPM downloads this week","description":"React is a JavaScript library for building user interfaces.. Latest version: 18.2.0, last published: a year ago. Start using react in your project by running `npm i react`. There are 113160 other projects in the npm registry using react.","url":"https://www.npmjs.com/package/react","urlToImage":"https://static-production.npmjs.com/338e4905a2684ca96e08c7780fc68412.png","publishedAt":"2023-09-20T17:23:00Z","content":"React is a JavaScript library for creating user interfaces.\r\nThe react package contains only the functionality necessary to define React components. It is typically used together with a React rendere… [+809 chars]"},{"source":{"id":null,"name":"Theregister.com"},"author":"Liam Proven","title":"Kaluma squeezes JavaScript onto the Raspberry Pi Pico","description":"Bringing the language of multi-gigabyte web browsers to a $4 computer\nAlthough JavaScript is responsible for some bloated Electron apps, apparently you can still usefully run it in 264kB of RAM.…","url":"https://www.theregister.com/2023/10/04/kaluma_javascript_pi_pico/","urlToImage":"https://regmedia.co.uk/2021/01/20/picpico.jpg","publishedAt":"2023-10-04T10:45:07Z","content":"Although JavaScript is responsible for some bloated Electron apps, apparently you can still usefully run it in 264kB of RAM.\r\nThe Kaluma project has managed to embed a working JavaScript interpreter … [+2638 chars]"},{"source":{"id":null,"name":"MakeUseOf"},"author":"David Jaja","title":"Mastering Unary, Binary, and Ternary Operators in JavaScript","description":"You’ve probably used these operators in your programs already, but the devil is in the detail. Get to the bottom of operators and how they differ.","url":"https://www.makeuseof.com/javascript-operators-unary-binary-ternary/","urlToImage":"https://static1.makeuseofimages.com/wordpress/wp-content/uploads/2023/09/codes-on-ide-seen-through-eyeglasses.jpg","publishedAt":"2023-09-19T18:30:43Z","content":"Operators are symbols that let you perform various operations on data. You’ll be familiar with them from basic math, as characters like the + sign, but they work slightly differently in programming.\r… [+3646 chars]"},{"source":{"id":null,"name":"MakeUseOf"},"author":"Kadeisha Kean","title":"Full Stack JavaScript: Exploring MERN, MEAN, and MEVN","description":"MERN, MEAN, and MEVN are the most popular stacks for developing full-stack applications. But what’s the difference between them?","url":"https://www.makeuseof.com/mern-mean-mevn-full-stack-javascript/","urlToImage":"https://static1.makeuseofimages.com/wordpress/wp-content/uploads/2023/09/full-stack-javascript.jpg","publishedAt":"2023-09-30T15:00:33Z","content":"Since JavaScript’s inception in 1995, it primarily functioned as a client-side (front-end) programming language. In its early days, it also gained a reputation for having poor performance capabilitie… [+8801 chars]"},{"source":{"id":null,"name":"MacRumors"},"author":"Juli Clover","title":"Apple Releases Safari Technology Preview 180 With Bug Fixes and Performance Improvements","description":"Apple today released a new update for Safari Technology Preview, the experimental browser Apple first introduced in March 2016. Apple designed the ‌Safari Technology Preview‌ to test features that may be introduced into future release versions of Safari.\n\n\n\n\n…","url":"https://www.macrumors.com/2023/10/04/apple-releases-safari-technology-preview-180/","urlToImage":"https://images.macrumors.com/t/jHD1aGfXq86Ln_kfzTyWIF68vOo=/2368x/article-new/2021/02/Safari-Technology-Preview-Feature.jpg","publishedAt":"2023-10-04T21:44:42Z","content":"Apple today released a new update for Safari Technology Preview, the experimental browser Apple first introduced in March 2016. Apple designed the ‌Safari Technology Preview‌ to test features that ma… [+944 chars]"},{"source":{"id":null,"name":"Slashdot.org"},"author":"EditorDavid","title":"WebAssembly 2023 Survey Finds Enthusiasm - and Some Challenges","description":"An anonymous reader shared this report from InfoWorld:\nThe uses of WebAssembly, aka Wasm, have grown far beyond its initial target of web applications, according to The State of WebAssembly 2023 report. But some developers remain skeptical.\n\nReleased Septembe…","url":"https://developers.slashdot.org/story/23/09/10/0653235/webassembly-2023-survey-finds-enthusiasm---and-some-challenges","urlToImage":"https://a.fsdn.com/sd/topics/programming_64.png","publishedAt":"2023-09-10T15:34:00Z","content":"The uses of WebAssembly, aka Wasm, have grown far beyond its initial target of web applications, according to The State of WebAssembly 2023 report. But some developers remain skeptical.\r\nReleased Sep… [+1434 chars]"},{"source":{"id":null,"name":"Nuejs.org"},"author":null,"title":"Nue.js: Rethinking Reactivity","description":"How Nue JS works? How is it different from Svelte? Here's how","url":"https://nuejs.org/blog/rethinking-reactivity/","urlToImage":"https://nuejs.org/blog/img/meme-big.jpg","publishedAt":"2023-10-02T05:12:58Z","content":"Nue JS is a tiny (2.1kb min-brotlied) library for building user interfaces. Its an alternative to frameworks like Vue, React, and Svelte and its the central piece of the ultimate goal: Nuekit A small… [+10966 chars]"},{"source":{"id":null,"name":"Medium"},"author":"Mayank Choubey","title":"The Guide to Deno","description":"A guide to Deno","url":"https://medium.com/deno-the-complete-reference/an-ultimate-guide-to-deno-bc02535754f0","urlToImage":"https://miro.medium.com/v2/resize:fit:1200/1*sFsxeixT650yr80tZURprw.png","publishedAt":"2023-09-26T12:37:30Z","content":"JavaScript in Plain English"},{"source":{"id":"politico","name":"Politico"},"author":"https://www.facebook.com/politico","title":"US Senate’s email system melts down in face of security test and reply-all chaos","description":"News and analysis from Capitol Hill for when you only have a few minutes, from POLITICO.","url":"https://www.politico.com/minutes/congress/09-8-2023/senate-reply-all-mess/","urlToImage":"https://www.politico.com/interactives/uploads/image-service/2023/9/8/65e575bb84-1200.jpeg","publishedAt":"2023-09-29T00:45:31Z","content":"This is taking a long time to load. Please make sure your JavaScript is enabled."},{"source":{"id":null,"name":"Hackaday"},"author":"Bryan Cockfield","title":"Streaming Video From an ESP32","description":"The ESP32, while first thought to be little more than a way of adding wireless capabilities to other microcontrollers, has quickly replaced many of them with its ability to be programmed as its own…","url":"https://hackaday.com/2023/09/05/streaming-video-from-an-esp32/","urlToImage":"https://hackaday.com/wp-content/uploads/2023/09/esp32-stream-main.jpg","publishedAt":"2023-09-06T05:00:23Z","content":"The ESP32, while first thought to be little more than a way of adding wireless capabilities to other microcontrollers, has quickly replaced many of them with its ability to be programmed as its own p… [+1204 chars]"},{"source":{"id":null,"name":"Xataka.com"},"author":"Javier Pastor","title":"Python es el rey de los lenguajes de programación. Pero los viejos rockeros (Fortran, COBOL) siguen dando guerra","description":"Si estás pensando en aprender un lenguaje de programación, probablemente uno de los claros objetivos de tu lista sea Python. Es algo lógico: este lenguaje se ha convertido en el más popular en los últimos años con la ayuda de la inteligencia artificial, donde…","url":"https://www.xataka.com/aplicaciones/python-rey-lenguajes-programacion-viejos-rockeros-fortran-cobol-siguen-dando-guerra","urlToImage":"https://i.blogs.es/22ad13/caspar/840_560.jpeg","publishedAt":"2023-09-12T11:01:33Z","content":"Si estás pensando en aprender un lenguaje de programación, probablemente uno de los claros objetivos de tu lista sea Python. Es algo lógico: este lenguaje se ha convertido en el más popular en los úl… [+2997 chars]"},{"source":{"id":null,"name":"Nuejs.org"},"author":null,"title":"Show HN: Nue – A React/Vue/Vite/Astro Alternative","description":"A powerful React/Vue/Vite/Astro alternative","url":"https://nuejs.org","urlToImage":"https://nuejs.org/global/img/og.jpg","publishedAt":"2023-09-14T11:11:17Z","content":"Nue is a powerful React, Vue, Next.js, Vite, and Astro alternative. It might change the way you develop for the web forever. Hello, World!\r\nAuthor here. Ive been working on this for the past ~12 mont… [+1086 chars]"},{"source":{"id":"hacker-news","name":"Hacker News"},"author":null,"title":"Ask HN: Why isn't Phoenix/Elixir more mainstream?","description":"Comments","url":"https://news.ycombinator.com/item?id=37702845","urlToImage":null,"publishedAt":"2023-09-29T12:25:50Z","content":"In addition to what others have said...There are enough other acceptable languages+frameworks, and two of them (Python and JavaScript) are unfortunately just too visible and in the way.\r\nStudents, ju… [+1101 chars]"},{"source":{"id":"ars-technica","name":"Ars Technica"},"author":"Dan Goodin","title":"New 0-day in Chrome and Firefox will likely plague other software","description":"If your software package involves VP8 video encoding, it's likely vulnerable to attack.","url":"https://arstechnica.com/security/2023/09/new-0-day-in-chrome-and-firefox-is-likely-to-plague-other-software/","urlToImage":"https://cdn.arstechnica.net/wp-content/uploads/2023/01/exploit-760x380.jpg","publishedAt":"2023-09-28T21:23:15Z","content":"3 with \r\nA critical zero-day vulnerability Google reported on Wednesday in its Chrome browser is opening the Internet to a new chapter of Groundhog Day.\r\nLike a critical zero-day Google disclosed on … [+3644 chars]"},{"source":{"id":null,"name":"56k.guru"},"author":null,"title":"Deno vs. Bun vs. Node.js: A Feature Comparison","description":"Description","url":"https://dev.hexagon.56k.guru/posts/deno-vs-bun-vs-node/","urlToImage":"https://hexagon.56k.guru/img/og_image.webp","publishedAt":"2023-09-11T22:58:38Z","content":"by Hexagon, \r\n2023-09-11\r\n 5 minutes readdenobunnodejs\r\nChoosing a JavaScript runtime for your project? Then you've probably heard of Deno, Bun, and Node.js. They are all good, but each has its own s… [+6598 chars]"},{"source":{"id":null,"name":"Hagever.com"},"author":"Gal Schlezinger","title":"My Node.js is a bit Rusty","description":"Replacing an internal Node.js module with a native Rust module made a x25 perf boost. Let’s understand why.","url":"https://gal.hagever.com/posts/my-node-js-is-a-bit-rusty","urlToImage":"https://gal.hagever.com/api/getPostImage?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRlIjoiMjAyMy0wOS0wNFQwMDowMDowMC4wMDBaIiwic3VidGl0bGUiOiJSZXBsYWNpbmcgYW4gaW50ZXJuYWwgTm9kZS5qcyBtb2R1bGUgd2l0aCBhIG5hdGl2ZSBSdXN0IG1vZHVsZSBtYWRlIGEgeDI1IHBlcmYgYm9vc3QuIExldOKAmXMgdW5kZXJzdGFuZCB3aHkuIiwidGl0bGUiOiJNeSBOb2RlLmpzIGlzIGEgYml0IFJ1c3R5IiwiaWF0IjoxNjk0MTQ5Nzg4fQ.DuCz4WqVHu-1RFoZVXzD0O-3-q6Ua-MsiVVWrbp0_Lw","publishedAt":"2023-09-07T07:34:09Z","content":"This blog post has been residing in \"draft\" mode for quite a while now. I've finally decided to just publish it. As such, a few things might be a bit off, but... that's life, isn't it? I'm eager to h… [+14096 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Wolf Hosbach","title":"Noch sicherer: TypeScript 5.3 importiert Attribute","description":"Die neue Version 5.3 von TypeScript bietet insbesondere den Import von Attributen, die das zu erwartende Format ankündigen und die Assertions ablösen.","url":"https://www.heise.de/news/Noch-sicherer-TypeScript-5-3-importiert-Attribute-9325525.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/1/3/6/9/2/shutterstock_1575914980-8173fc817222d4fa.jpg","publishedAt":"2023-10-05T07:43:00Z","content":"Version 5.3 von TypeScript, der beliebten typensicheren JavaScript-Erweiterung, geht in puncto Sicherheit einen Schritt weiter: Sie ermöglicht den Import von Attributen, die das zu erwartende Format … [+1640 chars]"},{"source":{"id":null,"name":"Hackaday"},"author":"Jonathan Bennett","title":"This Week in Security: LastPass Shoe Drops, Keys Lost, and Train Whistles Attack","description":"There has been a rash of cryptocurrency thefts targeting some unexpected victims. Over $35 million has been drained from just over 150 individuals, and the list reads like a who’s-who …read more","url":"https://hackaday.com/2023/09/08/this-week-in-security-lastpass-shoe-drops-keys-lost-and-train-whistles-attack/","urlToImage":"https://hackaday.com/wp-content/uploads/2016/01/darkarts.jpg","publishedAt":"2023-09-08T14:00:24Z","content":"There has been a rash of cryptocurrency thefts targeting some unexpected victims. Over $35 million has been drained from just over 150 individuals, and the list reads like a who’s-who of the least li… [+6877 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Benny Code","title":"heise+ | Defensives Programmieren: Robusten Code mit TypeScript erzeugen","description":"Mit defensivem Programmieren Eingabefehler, unerwartete Rückgabewerte und Unkontrollierbares zu vermeiden, bläht den Code auf. TypeScripts Sprachmittel helfen.","url":"https://www.heise.de/ratgeber/Defensives-Programmieren-Robusten-Code-mit-TypeScript-erzeugen-9320247.html?wt_mc=rss.red.ho.ho.atom.beitrag_plus.beitrag_plus","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/1/0/8/1/9/def_prog-198b226e024c2f01.png","publishedAt":"2023-10-04T09:00:00Z","content":"Inhaltsverzeichnis\r\nDefensives Programmieren ist eine Herangehensweise in der Softwareentwicklung, die den Schwerpunkt darauf legt, Eingabefehler und unkontrollierte Rückgabewerte zu berücksichtigen.… [+3145 chars]"},{"source":{"id":null,"name":"Grantwinney.com"},"author":"Grant Winney","title":"Why are websites requesting access to motion sensors on my desktop?","description":"I was checking the status of a FedEx order when Brave warned me that \"this site has been blocked from accessing your motion sensors\". I'm struggling to understand why a website would need that access. Do I get a different experience if I drop my device? Tip m…","url":"https://grantwinney.com/websites-requesting-access-to-motion-sensors/","urlToImage":"https://images.unsplash.com/photo-1487893667092-772cdd6fe0ec?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=2000&fit=max&ixid=eyJhcHBfaWQiOjExNzczfQ","publishedAt":"2023-09-28T11:57:18Z","content":"I was checking the status of a FedEx order in Brave, when I noticed a notification in the address bar that I've never seen before. It was warning me that \"this site has been blocked from accessing yo… [+14475 chars]"},{"source":{"id":null,"name":"Macwright.com"},"author":"Tom MacWright","title":"Second-Guessing the Modern Web","description":"What if everyone's wrong?","url":"https://macwright.com/2020/05/10/spa-fatigue","urlToImage":null,"publishedAt":"2023-09-21T23:18:27Z","content":"The emerging norm for web development is to build a React single-page application, with server rendering. The two key elements of this architecture are something like:\r\n
  1. The main UI is built &… [+11428 chars]"},{"source":{"id":null,"name":"Construct.net"},"author":"Construct","title":"A new architecture for publishing web content to desktop","description":"For several years, if you wanted to publish web content made in HTML/CSS/JS as a desktop app, the answer has been to use Electron or NW.Js . For us, we've long...","url":"https://www.construct.net/en/blogs/construct-official-blog-1/new-architecture-publishing-1864","urlToImage":"https://construct-static.com/92/v1155/shareimage/1864/ogg/share.png","publishedAt":"2023-09-25T10:35:44Z","content":"For several years, if you wanted to publish web content made in HTML/CSS/JS as a desktop app, the answer has been to use Electron or NW.js. For us, we've long supported publishing games made in Const… [+13749 chars]"},{"source":{"id":null,"name":"Fast Company"},"author":"Steven Melendez","title":"LinkedIn’s AI is ready to give you expert-backed business advice","description":"A virtual coach can offer leadership insights and advice, along with links to relevant LinkedIn Learning videos\n\nLinkedIn Learning users will soon have access to an AI coach, sharing advice backed by lessons from the platform’s thousands of human expert instr…","url":"https://www.fastcompany.com/90961144/linkedins-ai-is-ready-to-give-you-expert-backed-business-advice","urlToImage":"https://images.fastcompany.net/image/upload/w_1280,f_auto,q_auto,fl_lossy/wp-cms/uploads/2023/10/p-1-90961144-linkedins-ai-is-ready-to-give-you-expert-backed-business-advice.jpg","publishedAt":"2023-10-03T10:00:00Z","content":"LinkedIn Learning users will soon have access to an AI coach, sharing advice backed by lessons from the platform’s thousands of human expert instructors. \r\nThe business education platform has traditi… [+2604 chars]"},{"source":{"id":null,"name":"Davidwalsh.name"},"author":"David Walsh","title":"Sum an Array of Numbers with JavaScript","description":"It’s rare that I’m disappointed by the JavaScript language not having a function that I need. One such case was summing an array of numbers — I was expecting Math.sum or a likewise, baked in API. Fear not — summing an array of numbers is easy using Array.prot…","url":"https://davidwalsh.name/sum-array-numbers","urlToImage":"https://davidwalsh.name/wp-content/themes/punky/images/logo.png","publishedAt":"2023-09-07T02:06:45Z","content":"It's rare that I'm disappointed by the JavaScript language not having a function that I need. One such case was summing an array of numbers -- I was expecting Math.sum or a likewise, baked in API. Fe… [+438 chars]"},{"source":{"id":null,"name":"Hotwire.dev"},"author":null,"title":"Strada - Create fully native controls, driven by your web app.","description":"Strada enables you to create high fidelity interactions in hybrid mobile apps through a component-based communication channel between the web and native app.","url":"https://strada.hotwire.dev/","urlToImage":null,"publishedAt":"2023-09-20T18:00:26Z","content":"Current version: 1.0.0-beta1 — released Sep 19, 2023\r\nStrada enables you to create fully native controls in your hybrid mobile apps, driven by the web. Build web components and native components that… [+606 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Wolf Hosbach","title":"Umfrage: WebAssembly wächst über das Web hinaus","description":"Eine Umfrage von CNCF zeigt, dass immer mehr Entwickler WebAssembly für Projekte jenseits des Browsers einsetzen. Sie schätzen Flexibilität und Portierbarkeit.","url":"https://www.heise.de/news/Umfrage-WebAssembly-waechst-ueber-das-Web-hinaus-9298069.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/2/9/8/9/3/8/Metaverse_5-5001e575e3359217.png","publishedAt":"2023-09-08T07:14:00Z","content":"Die Umfrage The State of WebAssembly 2023 der Cloud Native Computing Foundation (CNCF) belegt, dass immer mehr Entwickler und Programmiererinnen WebAssembly (Wasm) nicht nur für Web-Anwendungen, sond… [+3326 chars]"},{"source":{"id":null,"name":"Slashdot.org"},"author":"EditorDavid","title":"IEEE Specctrum Announces Top Programming Languages of 2023: Python and SQL","description":"Last week IEEE Spectrum released its 10th annual rankings of the Top Programming Languages.\nIt choose a top language for each of three categories: actively used among typical IEEE members and working software engineers, in demand by employers, or \"in the zeit…","url":"https://developers.slashdot.org/story/23/09/11/023222/ieee-specctrum-announces-top-programming-languages-of-2023-python-and-sql","urlToImage":"https://a.fsdn.com/sd/topics/programming_64.png","publishedAt":"2023-09-11T07:34:00Z","content":"Last week IEEE Spectrum released its 10th annual rankings of the Top Programming Languages.\r\nIt choose a top language for each of three categories: actively used among typical IEEE members and workin… [+2800 chars]"},{"source":{"id":null,"name":"Gigazine.net"},"author":"@GIGAZINE","title":"全ての開発者が知っておくべきUnicodeについての最低限の知識","description":"2003年には「プレーンテキストなんてものは全く存在しない」と言われ、テキストの解読には文字コードの情報が必須となっていました。しかし、2023年になるまでの20年の間に絵文字などのおかげでUnicodeの利用率は98%へと到達し、再び文字コードを気にせずにすむ時代がやってきています。そんな時代において、正しくUnicodeを使うために必要な知識をエンジニアのニキータ・プロコポフさんが解説しています。続きを読む...","url":"https://gigazine.net/news/20231005-unicode/","urlToImage":"https://i.gzn.jp/img/2023/10/05/unicode/00.png","publishedAt":"2023-10-04T21:00:00Z","content":"2003202320Unicode98Unicode\r\nThe Absolute Minimum Every Software Developer Must Know About Unicode in 2023 (Still No Excuses!) @ tonsky.mehttps://tonsky.me/blog/unicode/\r\nUnicode2000\r\nUnicodeA65س1587ツ… [+882 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Dennis Schirrmacher","title":"Sicherheitsupdate: Passwort-Lücke bedroht Nagios XI","description":"Angreifer können die Server-Monitoring-Lösung Nagios XI attackieren. Eine dagegen abgesicherte Version ist verfügbar.","url":"https://www.heise.de/news/Sicherheitsupdate-Passwort-Luecke-bedroht-Nagios-XI-9312331.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/0/6/5/9/0/shutterstock_1504494320-293af31631fe565f.jpg","publishedAt":"2023-09-21T07:42:00Z","content":"Admins, die Server mit der Open-Source-Software Nagios XI überwachen, sollten die Monitoring-Lösung zeitnah auf den aktuellen Stand bringen. Andernfalls können Angreifer an vier Sicherheitslücken ans… [+980 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Maika Möbus","title":"Virtuelle Maschine GraalVM für JDK 21 bringt Support für neueste Java-Features","description":"Pünktlich ist GraalVM für JDK 21 erschienen. Das Release ist mit der neuesten Java-LTS-Version 21 kompatibel und verändert den Umgang mit Truffle-Sprachen.","url":"https://www.heise.de/news/Virtuelle-Maschine-GraalVM-fuer-JDK-21-bringt-Support-fuer-neueste-Java-Features-9311360.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/0/6/0/6/8/shutterstock_1387420256-1f8e7f8b435a008f.jpg","publishedAt":"2023-09-20T11:56:00Z","content":"Oracle hat GraalVM für JDK 21 veröffentlicht. Die virtuelle Maschine ist nun auf die neue Sprachversion Java 21 mit Long-Term Support (LTS) ausgelegt und kann deren Features verwenden. Das betrifft u… [+3091 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Maika Möbus","title":"heise-Angebot: Advanced Angular Day: Workshops zu Accessibility und Architektur","description":"Der Ableger der enterJS rund um Angular findet am 30. November online statt. Workshops befassen sich mit Accessibility und moderner Angular-Architektur.","url":"https://www.heise.de/news/Advanced-Angular-Day-Workshops-zu-Accessibility-und-Architektur-9322975.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/1/2/2/6/0/Screenshot_2023-09-07_124527-54fcc9008c90389c.png","publishedAt":"2023-10-03T10:00:00Z","content":"Inhaltsverzeichnis\r\nAm 30. November 2023 präsentieren die Veranstalter dpunkt.verlag und iX in Kooperation mit dem Angular-Experten Rainer Hahnekamp den Advanced Angular Day. Der erstmalig stattfinde… [+2733 chars]"},{"source":{"id":null,"name":"ReadWrite"},"author":"Deanna Ritchie","title":"ServiceNow’s New Release of Low-Code Platform With Generative AI","description":"ServiceNow has launched a recent version of its low-code platform designed to enhance workflow productivity and offer new automation tools […]\nThe post ServiceNow’s New Release of Low-Code Platform With Generative AI appeared first on ReadWrite.","url":"https://readwrite.com/servicenows-new-release-of-low-code-platform-with-generative-ai/","urlToImage":"https://readwrite.com/wp-content/uploads/2023/09/ServiceNow-With-Generative-AI.jpg","publishedAt":"2023-09-26T15:00:11Z","content":"ServiceNow has launched a recent version of its low-code platform designed to enhance workflow productivity and offer new automation tools for strengthening security and governance. This update also … [+9335 chars]"},{"source":{"id":null,"name":"Speckyboy.com"},"author":"Eric Karkovack","title":"8 CSS & JavaScript Snippets for Creating Blur Effects","description":"We share some excellent examples of CSS & JavaScript blur effects. They are a surefire way of making a design element stand out.\nThe post 8 CSS & JavaScript Snippets for Creating Blur Effects appeared first on Speckyboy Design Magazine.","url":"https://speckyboy.com/css-javascript-blur-effects/","urlToImage":"https://speckyboy.com/wp-content/uploads/2023/09/css-blur-effects-thumb.jpg","publishedAt":"2023-09-18T06:04:47Z","content":"Adding blur effects is a surefire way to make a surrounding design element stand out. For example, adding a bit of haziness to a background photo will draw attention to the layered text on top.\r\nCraf… [+3875 chars]"},{"source":{"id":null,"name":"Vaxbarn.com"},"author":null,"title":"Vaxbarn","description":"VAXBARN: Camiel Vanderhoeven's computer collection","url":"https://vaxbarn.com/","urlToImage":null,"publishedAt":"2023-09-16T11:23:40Z","content":"Welcome to VAXBARN, Camiel Vanderhoeven's computer collection, located in a 200-year old farmhouse in the tiny village of Netterden, in the east of the Netherlands, on the border with Germany.\r\nThere… [+971 chars]"},{"source":{"id":null,"name":"Hackaday"},"author":"Jonathan Bennett","title":"This Week in Security: Magic Packets, GPU.zip, and Enter the Sandman","description":"Leading out the news this week is a report of “BlackTech”, an Advanced Persistent Threat (APT) group that appears to be based out of China, that has been installing malicious firmware o…","url":"https://hackaday.com/2023/09/29/this-week-in-security-magic-packets-gpu-zip-and-enter-the-sandman/","urlToImage":"https://hackaday.com/wp-content/uploads/2016/01/darkarts.jpg","publishedAt":"2023-09-29T14:00:47Z","content":"Leading out the news this week is a report of “BlackTech”, an Advanced Persistent Threat (APT) group that appears to be based out of China, that has been installing malicious firmware on routers arou… [+6639 chars]"},{"source":{"id":null,"name":"Github.com"},"author":"jedisct1","title":"Libsodium: A modern, portable, easy to use crypto library","description":"A modern, portable, easy to use crypto library. Contribute to jedisct1/libsodium development by creating an account on GitHub.","url":"https://github.com/jedisct1/libsodium","urlToImage":"https://opengraph.githubassets.com/90197b5e10f19f51124ce652fb68a965f52b22997f96ad867ae9c36100c10306/jedisct1/libsodium","publishedAt":"2023-09-15T06:01:45Z","content":"Sodium is a new, easy-to-use software library for encryption,\r\ndecryption, signatures, password hashing and more.\r\nIt is a portable, cross-compilable, installable, packageable\r\nfork of NaCl, with a c… [+1152 chars]"},{"source":{"id":null,"name":"Testanything.org"},"author":null,"title":"Test Anything Protocol (Tap)","description":"Comments","url":"https://testanything.org/","urlToImage":null,"publishedAt":"2023-10-05T19:21:42Z","content":"TAP, the Test Anything Protocol, is a simple text-based interface between testing modules in a test harness. It decouples the reporting of errors from the presentation of the reports.\r\nOne of its maj… [+873 chars]"},{"source":{"id":null,"name":"Pippinbarr.com"},"author":null,"title":"Pongs","description":"Comments","url":"https://pippinbarr.com/pongs/info/","urlToImage":null,"publishedAt":"2023-09-16T06:49:54Z","content":"Description\r\nBip! Bip! Bip! Boop! Everyone loves PONG! So everyone loves thirty six PONGS even more! Work those learning muscles with EDUTAINMENT PONG! Get serious with SERIOUS PONG! Shoot a laser gu… [+1089 chars]"},{"source":{"id":"hacker-news","name":"Hacker News"},"author":null,"title":"Ask HN: Who is hiring? (October 2023)","description":"Comments","url":"https://news.ycombinator.com/item?id=37739028","urlToImage":null,"publishedAt":"2023-10-02T15:02:08Z","content":"Facet5 | 2 Positions | Cambridge UK | Hybrid/Flexible | 3-5 days/weekFlexible work practices in a beautiful barn office west of Cambridge. Prefer some office attendance.\r\nFacet5 provide psychometric … [+1162 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Dennis Schirrmacher","title":"Jetzt patchen! Sicherheitslösungen von Fortinet als Sicherheitsrisiko","description":"Mehrere Produkte von Fortinet sind verwundbar. Sicherheitsupdates schaffen Abhilfe.","url":"https://www.heise.de/news/Jetzt-patchen-Sicherheitsloesungen-von-Fortinet-als-Sicherheitsrisiko-9306543.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/0/3/4/8/6/shutterstock_1024271563-bad03ea07113dd32.jpg","publishedAt":"2023-09-15T10:26:00Z","content":"Wenn Unternehmen Netzwerke mit Sicherheitslösungen von Fortinet schützen, sollten Admins die Appliances, Firewalls & Co. auf den aktuellen Stand bringen. Andernfalls können Attacken bevorstehen.\r… [+1292 chars]"},{"source":{"id":null,"name":"heise online"},"author":"Maika Möbus","title":"Cloud-Plattformen werden unter Python-Entwicklern beliebter","description":"Die jährliche, großangelegte Python-Umfrage zeigt einen leichten Anstieg der Cloud-Entwicklung. AWS und Google Cloud Platform haben dabei die Nase vorn.","url":"https://www.heise.de/news/Cloud-Plattformen-werden-unter-Python-Entwicklern-beliebter-9320495.html","urlToImage":"https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/3/1/0/9/5/5/python-75d7c470c4914be3.jpg","publishedAt":"2023-09-28T14:30:00Z","content":"Inhaltsverzeichnis\r\nDie Python Software Foundation und JetBrains haben die neuesten Ergebnisse ihrer jährlich durchgeführten Studie \"Python Developers Survey\" veröffentlicht. Über 23 000 Entwicklerin… [+3413 chars]"},{"source":{"id":null,"name":"Thedailywtf.com"},"author":"Remy Porter","title":"CodeSOD: Roll On Menu","description":"Mike was refactoring an old web application written in Perl. We joke about Perl being a \"write only language,\" but the original developer wanted to take that unreadable attitude to the JavaScript front-end portion of the application.\nfunction setup() {\n posit…","url":"https://thedailywtf.com/articles/roll-on-menu","urlToImage":"https://thedailywtf.com/images/remy/Remy203-300x300.png","publishedAt":"2023-09-25T06:30:00Z","content":"Mike was refactoring an old web application written in Perl. We joke about Perl being a \"write only language,\" but the original developer wanted to take that unreadable attitude to the JavaScript fro… [+1474 chars]"},{"source":{"id":null,"name":"Genbeta.com"},"author":"José Alberto Lizana","title":"Estas ofertas de teletrabajo ofrecen hasta 170.000 euros para desarrolladores web e ingenieros","description":"El teletrabajo es una modalidad laboral que sin duda tiene enamoradas a muchas personas, aunque no ocurre lo mismo con las empresas que están queriendo acabar con esta modalidad para que sus trabajadores vuelvan a sus dominios. Pero no todas las empresas está…","url":"https://www.genbeta.com/actualidad/estas-ofertas-teletrabajo-ofrecen-170-000-euros-para-desarrolladores-web-e-ingenieros","urlToImage":"https://i.blogs.es/298609/teletrabajo1/840_560.jpeg","publishedAt":"2023-10-05T13:00:52Z","content":"El teletrabajo es una modalidad laboral que sin duda tiene enamoradas a muchas personas, aunque no ocurre lo mismo con las empresas que están queriendo acabar con esta modalidad para que sus trabajad… [+3053 chars]"},{"source":{"id":"hacker-news","name":"Hacker News"},"author":null,"title":"Ask HN: Freelancer? Seeking freelancer? (October 2023)","description":"Comments","url":"https://news.ycombinator.com/item?id=37739027","urlToImage":null,"publishedAt":"2023-10-02T15:02:07Z","content":"SEEKING WORK | UX/UI & web designPortfolio: https://www.seanw.org/\r\nLive example project: https://www.checkbot.io/\r\nLocation: Edinburgh, UK and remote (Im used to time zone differences and async … [+1825 chars]"},{"source":{"id":null,"name":"Shuttle.rs"},"author":null,"title":"Learn Rust by building real-world examples","description":"Stop worrying about the infrastructure. Focus on writing code, shuttle will do the rest.","url":"https://www.shuttle.rs/launchpad","urlToImage":null,"publishedAt":"2023-09-22T12:25:46Z","content":"Lets face it - learning Rust can be a daunting task \r\nAnd while there are plenty of resources out there, they can often be overwhelming, difficult to follow, or simply not engaging enough to hold you… [+1652 chars]"},{"source":{"id":null,"name":"Fauna.com"},"author":"Bob Muglia","title":"Relational is more than SQL","description":"SQL is the standard for working with structured tables, which will continue. But it is time to break the relational model free from tables.","url":"https://fauna.com/blog/relational-is-more-than-sql","urlToImage":"https://images.ctfassets.net/po4qc9xpmpuh/4LVmVrjdN9tv7DQo4vMWev/b48c772c33cb6fc3a7eaf3ced935fc01/Relational_is_more_than_SQL.png","publishedAt":"2023-09-16T05:17:34Z","content":"Bob Muglia|Sep 15th, 2023\r\nSQL is a good friend to many people, myself included. My first deep dive into SQL was in 1987, just before I became the first technical person at Microsoft to work on SQL S… [+11444 chars]"},{"source":{"id":"business-insider","name":"Business Insider"},"author":"Lakshmi Varanasi","title":"I dropped out of my computer science course to focus on my AI startup. Even my dad agreed.","description":"Govind Gnanakumar abandoned his computer science course after his freshman year to build an AI startup he cofounded with two Georgia Tech classmates.","url":"https://www.businessinsider.com/computer-science-major-dropped-out-georgia-tech-build-ai-startup-2023-9","urlToImage":"https://i.insider.com/650f3adae2c0220019ef29c3?width=1200&format=jpeg","publishedAt":"2023-09-24T14:36:18Z","content":"Automorphic's co-founders Maaher Gandhi, Govind Gnanakumar, and Mahesh Natamai.Govind Gnanakumar\r\n