Fabians Bookmarks
  • Fabians Bookmarks
  • Tag cloud
  • Daily
  • RSS Feed
  • Login
Delete   Set public   Set private   Add tags   Delete tags
  Add tag   Cancel
  Delete tag   Cancel
17527 shaares · 14141 private links
Filters
1 / 34
Links per page
20 50 100
665 results tagged webdev

An Illustrated Guide to OAuth - by Aditya Bhargava

oauth webdev security
December 5, 2025 at 18:53:07 GMT+1*
https://www.ducktyped.org/p/an-illustrated-guide-to-oauth

spa5k/uids-postgres: PostgreSQL Extension to generate various type of Universally Unique IDS

postgresql databases webdev
July 10, 2025 at 20:17:15 GMT+2*
https://github.com/spa5k/uids-postgres

fx – a terminal JSON viewer & processor

Terminal JSON viewer & processor

json webdev sysop
June 30, 2025 at 14:54:02 GMT+2*
https://fx.wtf/

christiannaths/redacted-font: Keep your wireframes free of distracting Lorem Ipsum.

Redacted: A Font for Web and Desktop
Keep your wireframes free of distracting Lorem Ipsum.

font typography webdesign webdev design
June 29, 2025 at 16:14:58 GMT+2*
https://github.com/christiannaths/redacted-font

Animating zooming using CSS: transform order is important… sometimes - JakeArchibald.com

css webdev
June 17, 2025 at 13:49:25 GMT+2*
https://jakearchibald.com/2025/animating-zooming/

OAuth2 - OWASP Cheat Sheet Series

oauth security webdev webstandards
June 11, 2025 at 13:05:04 GMT+2*
https://cheatsheetseries.owasp.org/cheatsheets/OAuth2_Cheat_Sheet.html#pkce-proof-key-for-code-exchange-mechanism

Pagefind | Pagefind — Static low-bandwidth search at scale

Pagefind is a fully static search library that aims to perform well on large sites, while using as little of your users’ bandwidth as possible, and without hosting any infrastructure.

Pagefind runs after Hugo, Eleventy, Jekyll, Next, Astro, SvelteKit, or any other website framework. The installation process is always the same: Pagefind only requires a folder containing the built static files of your website, so in most cases no configuration is needed to get started.

search ssg hugo webdev
June 10, 2025 at 01:40:46 GMT+2*
https://pagefind.app/

Minimal CSS-only blurry image placeholders

css html webdesign webdev
April 3, 2025 at 16:53:26 GMT+2*
https://leanrada.com/notes/css-only-lqip/

How Core Git Developers Configure Git

tldr


[column]
        ui = auto
[branch]
        sort = -committerdate
[tag]
        sort = version:refname
[init]
        defaultBranch = main
[diff]
        algorithm = histogram
        colorMoved = plain
        mnemonicPrefix = true
        renames = true
[push]
        default = simple
        autoSetupRemote = true
        followTags = true
[fetch]
        prune = true
        pruneTags = true
        all = true

# why the hell not?

[help]
        autocorrect = prompt
[commit]
        verbose = true
[rerere]
        enabled = true
        autoupdate = true
[core]
        excludesfile = ~/.gitignore
[rebase]
        autoSquash = true
        autoStash = true
        updateRefs = true

# a matter of taste (uncomment if you dare)

[core]
        # fsmonitor = true
        # untrackedCache = true
[merge]
        # (just 'diff3' if git version < 2.3)
        # conflictstyle = zdiff3 
[pull]
        # rebase = true
git softwaredevelopment webdev scm
March 15, 2025 at 22:58:18 GMT+1*
https://blog.gitbutler.com/how-git-core-devs-configure-git/

Robyn - A Fast, Innovator Friendly, and Community Driven Python Web Framework.

A Fast, Innovator Friendly, and Community Driven Python Web Framework

Robyn merges Python's async capabilities with a Rust runtime for reliable, scalable web solutions. Experience quick project scaffolding, enjoyable usage, and robust plugin support.

python rust webdev framework
March 2, 2025 at 16:55:14 GMT+1*
https://robyn.tech/

Building a robust frontend using progressive enhancement - Service Manual - GOV.UK

For users to experience a quality service it must be built in a robust way.

Progressive enhancement is a way of building websites and applications based on the idea that you should make your page work with HTML first.

Only after this can you add anything else like Cascading Style Sheets (CSS) and JavaScript.

All government services must follow progressive enhancement, even if part of the service or a parent service needs JavaScript.

webdev webdesign accessibility usability html css javascript
September 29, 2024 at 15:31:04 GMT+2*
https://www.gov.uk/service-manual/technology/using-progressive-enhancement

APIFlask

APIFlask is a lightweight Python web API framework based on Flask and marshmallow-code projects. It's easy to use, highly customizable, ORM/ODM-agnostic, and 100% compatible with the Flask ecosystem.

python flask webdev webframework api apidev
September 4, 2024 at 23:36:48 GMT+2*
https://apiflask.com/

htpy - HTML in Python

htpy is a library that makes writing HTML in plain Python fun and efficient, without a template language.

python html webdev django jinja2 templating
August 25, 2024 at 21:11:30 GMT+2*
https://htpy.dev/

Alpine AJAX

Alpine AJAX is an Alpine.js plugin that enables your HTML elements to request remote content from your server. Use it to build straight-forward, robust, interactive websites.

htmx javascript webdev html
August 12, 2024 at 12:39:29 GMT+2*
https://alpine-ajax.js.org/

CyberChef

CyberChef is a simple, intuitive web app for carrying out all manner of "cyber" operations within a web browser. These operations include simple encoding like XOR and Base64, more complex encryption like AES, DES and Blowfish, creating binary and hexdumps, compression and decompression of data, calculating hashes and checksums, IPv6 and X.509 parsing, changing character encodings, and much more.

The tool is designed to enable both technical and non-technical analysts to manipulate data in complex ways without having to deal with complex tools or algorithms. It was conceived, designed, built and incrementally improved by an analyst in their 10% innovation time over several years.

webdev programming tools softwaredevelopment softwareengineering
August 11, 2024 at 16:27:18 GMT+2*
https://gchq.github.io/CyberChef/

How to Get or Create in PostgreSQL | Haki Benita

"Get or create" is a very common operation for syncing data in the database, but implementing it correctly may be trickier than you may expect. If you ever had to implement it in a real system with real-life load, you may have overlooked potential race conditions, concurrency issues and even bloat!

postgresql webdev programming databases
August 7, 2024 at 12:40:23 GMT+2*
https://hakibenita.com/postgresql-get-or-create

OKLCH in CSS: why we moved from RGB and HSL—Martian Chronicles, Evil Martians’ team blog

The new CSS Color 4 specification has added the new oklch() notation for declaring colors. In this post, we explain why this is important for design systems and color palettes.

webdev webdesign colors css html
August 5, 2024 at 12:54:25 GMT+2*
https://evilmartians.com/chronicles/oklch-in-css-why-quit-rgb-hsl

oklch() - CSS: Cascading Style Sheets | MDN

The oklch() functional notation expresses a given color in the Oklab color space. oklch() is the cylindrical form of oklab(), using the same L axis, but with polar Chroma (C) and Hue (h) coordinates.

webdev webdesign colors css html
August 5, 2024 at 12:54:04 GMT+2*
https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/oklch#see_also

Gotchas with SQLite in Production

sqlite webdev databases
July 18, 2024 at 23:17:13 GMT+2*
https://blog.pecar.me/sqlite-prod

Epoch timestamps vs RFC 3339 strings

ISO8601 datetime timestamp softwareengineering RFC3339 webdev timezones
July 11, 2024 at 11:09:26 GMT+2*
https://ente.io/blog/tech/epoch-vs-rfc3339/
Filters
1 / 34
Links per page
20 50 100
By @fabian@floss.social · Powered by Shaarli
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community