webdev
-
When you leave debugging on in production. #webdev #programming #memes
-
Why I 🧡 the web. #Foursquare #opensource its places database. @simon gives a little preview if you're a #developer: https://simonwillison.net/2024/Nov/20/foursquare-open-source-places/ Actual announcement here: https://location.foursquare.com/resources/blog/products/foursquare-open-source-places-a-new-foundational-dataset-for-the-geospatial-community/ Could lead to maybe some fun #webdev ideas.
-
For #developers: MailCatcher runs a super simple #SMTP server – run this and set your favourite app to deliver to smtp://127.0.0.1:1025 instead of your default SMTP server, then check out in browser http://127.0.0.1:1080 to see the mail that's arrived so far. https://mailcatcher.me/ #webdev
-
Nice look'n. https://tips.io – A #Tailwind playground with #AI, page management, and theming #wesbitebuilder #webdev #CSS
-
Boss: "We don't need to spend time on #documentation. It's obvious how to use our software." 🤔 #webdev #memes
-
Nice. Scooter is an interactive find-and-replace #terminal UI app. Search with either a fixed string or a regular expression, enter a replacement, and interactively toggle which instances you want to replace. Regex supported. #webdev https://github.com/thomasschafer/scooter
-
I love reading "how to" #webdev articles like this. How #Shopify created that animated Black Friday Cyber Monday (BFCM) 2023 globe (with fireworks). https://shopify.engineering/how-we-built-shopifys-bfcm-2023-globe
-
Center the bottom row when using grid auto-fit in #CSS (video) https://www.youtube.com/watch?v=HvhSEsFEsAg #webdev
-
"How I ship projects at big tech companies" #programming #webdev https://www.seangoedecke.com/how-to-ship/
-
List of mathematical symbols with their #JavaScript equivalent. #webdev https://math4devs.com/
-
#JavaScript dos and dont's. Tips and best practices. #webdev https://muan.co/posts/javascript "Start with only #HTML, then progressively enhance it, so it can still work without JavaScript. A table can be pure HTML; a sortable table needs only a dash of JavaScript."
-
New #CSS that can actually be used in 2024 https://thomasorus.com/new-css-that-can-actually-be-used-in-2024.html #webdev via @thomasorus Nice rant: "The amount of stuff our influencers hype on their websites and newsletters needs to slow down. I know they sincerely like CSS, that their professional life depends on staying up to date and looking relevant in CSS, but damn."
-
Why I 🧡 the web. "micro-survivors" is a tiny survivors-like game that fits under 14 kB of minified #JavaScript code. #webdev https://github.com/SkaceKamen/micro-survivors/tree/main Play: https://skacekamen.github.io/micro-survivors/
-
Notepad++ is 21 years old! 😮 https://learnhub.top/celebrating-21-years-of-notepad-the-legendary-journey-of-our-favorite-text-editor/ #texteditor #notepad #webdev
-
Daylight Savings Ends this Sunday. Most people: "That's another hour of sleep!" Developers(*): "I finally get that additional hour to test my code." Hey #programmers – get that extra hour of #sleep. You earned it. * = Most below the age of 30. #webdev
-
#Developer Friend: "I imagine my code from last week as a boring old 2-door car. What's your old code look like?" Me: 🤔 #webdev #memes #programming
-
"Successful Web Development Is Boring Web Development" https://meiert.com/en/blog/boring-web-development/ "We celebrate… new HTML/CSS and JavaScript frameworks… when instead we should celebrate using vanilla HTML/CSS and #JavaScript, and maximizing use of existing frameworks." #webdev #frontend
-
Text fragments : precise linking to specific text within a web page without the need to add an anchor. https://alfy.blog/2024/10/19/linking-directly-to-web-page-content.html Example: https://developer.mozilla.org/en-US/docs/Web/URI/Fragment/Text_fragments#:~:text=without%20relying%20on%20the%20presence%20of%20IDs #HTML #webdev
-
When you are a #developer but are using the "free but very old that all still technically work" #programming tools. #webdev #memes
-
#HTML Form Validation is heavily underused https://expressionstatement.com/html-form-validation-is-heavily-underused – Using specific type attribute values, such as "email", "number", or "url"– Using other input attributes that create constraints, such as "pattern" or "maxlength"– Using the setCustomValidity DOM method of the input #webdev #frontend
-
My IDE on Monday showing me the errors in the #code I wrote on Friday before I rushed off into the weekend. #webdev #memes #programming
-
"Write #code that is easy to delete, not easy to extend." #programming #webdev https://programmingisterrible.com/post/139222674273/write-code-that-is-easy-to-delete-not-easy-to
-
Anvil is a graphical, multi-pane tiling #editor that integrates closely with the #shell. "It supports syntax highlighting, multiple cursors and selections, remote file editing…" #webdev #cli #go http://anvil-editor.net/
-
Simple #HTTP Authentication: A Beginner’s Guide #webdev https://zuplo.com/blog/2024/07/31/simple-api-authentication
-
The State of Frontend 2024: Results from a survey completed by over 6,000 #developers. #frontend #webdev #css https://tsh.io/state-of-frontend/
-
Because I really wanted to see if (hand quotes) "#AI" was good or bad for my personal #coding development. I kept track of estimated time saved for the past 3 weeks. Week 1: 30 minWeek 2: 1 hrWeek 3: 1-2 hrs Not apples-to-apples each week because of different tasks (last week was a heavy coding…
-
"Unlocking the Power of #JSON Patch" #webdev #programming https://zuplo.com/blog/2024/10/10/unlocking-the-power-of-json-patch "JSON Patch is a standardized format for describing how to modify a JSON document. It was created to address the need for a simple, efficient, and standardized way to apply partial updates to resources, especially over HTTP. "
-
#CSS Masonry & CSS Grid https://css-tricks.com/css-masonry-css-grid/ Two competing proposals to solve masonry in CSS. #webdev
-
As a #developer sometimes you'll see #code comments like this. Often, you'll be the one writing it. #webdev #memes #programming
-
#coding #programming #webdev "It's not enough for a program to work, it has to work for the right reasons. #Code working for the wrong reasons is code that's going to break when you least expect it." https://buttondown.com/hillelwayne/archive/be-suspicious-of-success/ "And since "correct for right reasons" is a much narrower target than "correct for any possible reason", we…