• Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
Les liens de StyMaar
toggle menu
Add link
Search
10200 links
507 results tagged dev x
  • #Get Addon File Download URL - Curseforge App API

    Thu 19 May 2022 11:37:37 PM CEST - permalink - https://gaz492.github.io/CurseforgeAPI/#/get~api~v2~addon~addonid~file~fileid~download-url
    dev ressource WoW
  • #Outdated go to https://docs.curseforge.com/#getting-started · Apiary

    Thu 19 May 2022 11:37:23 PM CEST - permalink - https://curseforgeapi.docs.apiary.io/#/reference/0/get-addon-description?mc=reference%2F0%2Fcurseforge-addon-search%2Fcurseforge-addon-search%2F200
    dev ressource WoW
  • #Note: Joe Armstrong on OOP

    You wanted a banana but what you got was a gorilla holding the banana and the entire jungle.

    Sun 08 May 2022 09:01:47 AM CEST - permalink - https://stymaar.fr/links/?oWZTYw
    citation dev fun
  • #Use Microsoft Live Share to collaborate with Visual Studio Code

    Une extension de partage d'editeur dans VsCode, et ça marche vraiment pas mal:

    • les extensions sont supportées (Rust analyzer marche si il est installé chez les 2 personnes, et peut-être même juste chez l'emmeteur je sais pas)
    • le réseau est partagé, du moins l'accès à localhost, ce qui est super pratique pour tester des trucs !
    Wed 30 Mar 2022 11:00:09 PM CEST - permalink - https://code.visualstudio.com/learn/collaboration/live-share
    ** dev outil réinstallation
  • #Did we learn nothing from Y2K? Why are some coders still stuck on two digit numbers? – Naked Security

    Ce que j'ai du mal à comprendre, c'est pourquoi ne pas en profiter pour faire un tout nouveau User-Agent et ainsi virer toute la merde qui se trouve dedans, sachant que Firefox avait fait ça il y a quelques années il me semble, de virer les trucs inutiles de leur User-Agent et que ça n'avait pas spécialement posé de problème du je me souviens bien.

    Quand je parle de “merde” regardez à quoi ressemble le user agent de Microsoft Edge:
    Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4867.0 Safari/537.36 Edg/100.0.1169.1 …

    Firefox a un User-Agent qui a quand même vachement plus de sens : Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0 , il n'y a pas de noms de navigateur randoms mis dedans pour décorer.

    Mon 07 Mar 2022 02:26:36 PM CET - permalink - https://nakedsecurity.sophos.com/2022/02/25/did-we-learn-nothing-from-y2k-why-are-some-coders-still-stuck-on-two-digit-numbers/
    dev débilité internet
  • #Lapce −Lightning-fast and Powerful Code Editor

    Inspiré, et s'appuyant sur ce qui avait été developpé pour Xi.

    Mon 07 Mar 2022 12:13:15 AM CET - permalink - https://lapce.dev/
    dev outil Rust
  • #There should be a big warning on the top: Monorepo is a way to morph dependency ... | Hacker News

    Monorepo is a way to morph dependency management problem into source control problem within your organization.

    Tellement.

    Wed 23 Feb 2022 11:34:02 AM CET - permalink - https://news.ycombinator.com/item?id=30439148
    citation dev git point_de_vue
  • #is it safe to use __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED ? · Issue #3896 · reactjs/reactjs.org

    Non mais comment ça peut ne pas être une parodie ça ?

    Tue 22 Feb 2022 03:16:14 PM CET - permalink - https://github.com/reactjs/reactjs.org/issues/3896
    dev débilité
  • #Rich Harris - Rethinking reactivity - YouTube

    YouTube thumbnail
    Wed 09 Feb 2022 05:31:54 PM CET - permalink - https://www.youtube.com/watch?v=AdNJ3fydeao
    dev JavaScript react vidéo
  • #Blog: Automated technical interviews are a disaster for your hiring process

    Yesterday, I failed a technical interview. It happens, and that's OK[0]. But this one left me with a pretty bad taste in the mouth: I didn't feel I was rejected because I hadn't met the company's standards, or because I made a mistake, but mostly because I was tested for something completely irrelevant for a developer job.

    The technical interview wasn't a conventional one, it was one of the new fancy “automated interviews”, where you log into a website and then you're being given instructions and a tight time limit. When the limit expire, your code is checked against an automated test suite and you're being given a grade.

    For the HR's perspective, it sounds awesome: you have a very cheap way to screen dozens of candidates without human interactions. No more false positive, every candidate passing the test must be “technically proficient” and all you have to do next is assess their social skill.

    Unfortunately, these kinds of tests are very bad at measuring technical proficiency of a developer. To understand why, you need to understand what a developer's job is about.

    A developer's job isn't to write code: the role of a developer is to turn someone's needs (1) into a product (2). We do so by writing code(3) as part of a development team (4).

    • (1): a big part of a developer's job is to ask questions, to clarify the needs. You want me to write a program that converts a camelCased string to kebab-case? OK, what do you mean by “camelCase”? Does this string: PascalCase counts as “camelCase” in your mind? And how about acronyms? And numbers? And emojis? Are your input always gonna be well-formatted because they have been validated, or do I need to handle the situation when I'm being given a string which isn't “camelCase” in the first place? What do you want the program to do if an error occurs? Send an event to your telemetry system? Print a stack trace? A user-friendly error message? If so, should the message be internationalized? As you can see, there's no such thing as “a program that does X”, it's all about clarifying the stakeholders needs. And there's nothing worse than a developer who starts coding as soon as they think they understand the specification, without asking any questions to be sure that their understanding is aligned with the needs.

    • (2): a product is more than a piece of code, and sometimes your users' business depends on your product working as intended. How you make sure your code is working, how you monitor when something goes wrong and how you deal with failures in production, are what makes the difference between reliable and bad software.

    • (4): a developer almost never works alone: reading someone's else code, writing code that is easy to understand and maintain by your coworkers, and using a version control are fundamental skills for any developer.

    • As you can see, “writing code (3)” is only a small part of our job. And it's the becoming less and less important over the years. Compared to 40 years ago, developers will probably need 80 to 90% less code than before to complete the same feature, thanks to the profusion of high quality open source libraries. And it's likely to shrink even further, with the advance of AI[1][2]. And sometimes there are tough coding tasks, which need careful design, tradeoffs, sometimes trial & errors and fights with a debugger. That's when you need developers that are good coders. But even for those tasks, measuring whether you can solve trivial problems during a timed test is a poor proxy for how well your developer is going to face difficult challenges.

    [0] : to be honest, it's the fifth time in eleven years, and I've always been pissed off after failing a technical interview, but I'm usually mad at myself for being bad.
    [1] : https://github.blog/2021-06-29-introducing-github-copilot-ai-pair-programmer/
    [2] : https://deepmind.com/blog/article/Competitive-programming-with-AlphaCode

    Fri 04 Feb 2022 05:08:03 PM CET - permalink - https://stymaar.fr/links/?wUs74g
    dev management recrutement écriture
  • #The Complicated Futility of WordPress

    The best thing about banging your head against a blogging platform for 10 years is when you stop.

    Utiliser wordpress a toujours été une mauvaise idée, mais certains sont un peu plus lents de la comprenette.

    Wed 02 Feb 2022 12:09:22 PM CET - permalink - https://coderjerk.com/the-complicated-futility-of-wordpress/
    dev débilité web
  • #How to avoid layout shifts caused by web fonts – Simon Hearne

    Sun 30 Jan 2022 10:50:39 AM CET - permalink - https://simonhearne.com/2021/layout-shifts-webfonts/
    CSS design dev web
  • #The baseline for web development in 2022 - LINE ENGINEERING

    Je me note ça là, parce qu'il y a un paquet d'infos intéressantes, là dedans sur l'état des lieux du dev web aujourd'hui.

    Par contre ça:

    Build for modern browsers: Drop IE support and set your build target to ES 2017 or even 2018. Just doing that might get you bundle size improvements of up to 20%.

    Juste, non. c'est encourager l'obsolescence programmée des fabricants de matériel, c'est mort.

    On s'en fout d'un bundle size de 20%. Y'a 50 façon d'améliorer la taille de son application web qui n'impliquent pas de la rendre inutilisable sur les navigateurs un peu récent. Et ES6 (aussi ES2015, disponible depuis 2015 donc) est largement suffisant pour faire tout ce qu'on veut sans galérer avec l'ancien monde JavaScript.

    Thu 27 Jan 2022 11:21:25 PM CET - permalink - https://engineering.linecorp.com/en/blog/the-baseline-for-web-development-in-2022/
    dev ressoure web
  • #United States Digital Service

    Les États-Unis ont maintenant un véritable département informatique, plutôt que de tout sous-traiter !

    C'est eux notamment qui ont sorti le site covidtest.gov qui permet de se faire tester chez soi aux États-Unis.

    Thu 20 Jan 2022 08:31:06 AM CET - permalink - https://www.usds.gov/
    dev informatique politique services_publics USA
  • #Ubuntu: Install SQL Server on Linux - SQL Server | Microsoft Docs

    Putain y'a pas un logiciel microsoft qui s'installe pareil sous Linux !

    Au passage ça c'est faux

    wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add microsoft.asc

    Il faut faire :

    wget -qO microsoft.asc https://packages.microsoft.com/keys/microsoft.asc 
    sudo apt-key add microsoft.asc
    rm microsoft.asc

    ou juste

    wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add
    Mon 17 Jan 2022 01:50:13 PM CET - permalink - https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-ubuntu?view=sql-server-ver15
    dev Microsoft Outil
  • #Slow IndexedDB · RxDB - Documentation

    Bon y'a pas que du bon dans cet article (y'a même surtout du mauvais) mais il y a quand même quelques chiffres intéressants, Et aussi le concept d'utiliser IndexDB plutôt comme un système de fichier que comme une base de donnée, en essayant de grouper au maximum les opérations pour améliorer les performances.

    Tue 23 Nov 2021 01:45:05 PM CET - permalink - https://rxdb.info/slow-indexeddb.html
    database dev web
  • #You can't capture the nuance of my form fields

    There are hundreds of little nuances that users learn to use their computers efficiently. The exact features a user relies on will vary between operating systems, browsers, hardware, natural languages, physical ability, and personal preferences and experience. There are dozens of tiny workflows that people depend on every day that have never even occurred to you.

    Making a custom form control with JavaScript is going to make life worse for a lot of people. Just don’t do it. The browser’s built-in controls are quite sufficient.

    Thu 26 Aug 2021 10:14:50 AM CEST - permalink - https://drewdevault.com/2021/06/27/You-cant-capture-the-nuance.html
    accessibilité dev UI web
  • #canistilluse.com - Jim Nielsen’s Blog

    Chrome vient donc de décider unilatéralement de casser des millions de sites web …

    Thu 26 Aug 2021 10:07:57 AM CEST - permalink - https://blog.jim-nielsen.com/2021/canistilluse.com/
    dev débilité Google internet web
  • #Introducing Astro: Ship Less JavaScript

    Wed 09 Jun 2021 07:58:00 PM CEST - permalink - https://astro.build/blog/introducing-astro
    dev JavaScript outil à_tester
  • #GitHub - pedronauck/docz: ✍ It has never been so easy to document your things!

    Wed 09 Jun 2021 07:57:03 PM CEST - permalink - https://github.com/pedronauck/docz
    Dev JavaScript outil à_tester
◄Older page 1 / 26 Links per page: 20 50 100
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation