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
17526 shaares · 14141 private links
Filters
Links per page
20 50 100
17 results tagged softwaredevelopment

The API client that lives in your terminal - Posting

postman api hurl bruno opensource apidev softwaredevelopment
December 5, 2025 at 6:46:16 PM GMT+1*
https://posting.sh/

prek

pre-commit is a framework to run hooks written in many languages, and it manages the language toolchain and dependencies for running the hooks.

prek is a reimagined version of pre-commit, built in Rust. It is designed to be a faster, dependency-free and drop-in alternative for it, while also providing some additional long-requested features.

git softwaredevelopment softwareengineering rust python
September 6, 2025 at 7:47:37 PM GMT+2*
https://prek.j178.dev/

Releasing a 3D game with Godot Engine 🤖

godot GodotEnging gamedev 3d softwaredevelopment
August 31, 2025 at 9:41:08 PM GMT+2*
https://pantopie.studio/releasing-a-3d-game-with-godot-engine/

Vibe-coding your profession into irrelevance – OSnews

ai softwaredevelopment industry
August 3, 2025 at 9:46:21 PM GMT+2*
https://www.osnews.com/story/142956/vibe-coding-yourself-into-irrelevance/

Introduction - Mergiraf

git softwaredevelopment scm
May 1, 2025 at 12:43:09 PM GMT+2*
https://mergiraf.org/

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 10:58:18 PM GMT+1*
https://blog.gitbutler.com/how-git-core-devs-configure-git/

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 4:27:18 PM GMT+2*
https://gchq.github.io/CyberChef/

git-truck/git-truck: Git repository visualizations, contribution statistics and more. Run npx -y git-truck to use Git Truck today!

Git-Truck is a tool that provides you with a truckload of visualizations for your git repository, and helps you find out if your project has a good truck factor.

git softwaredevelopment analytics visualisation visualization
August 5, 2024 at 12:08:20 PM GMT+2*
https://github.com/git-truck/git-truck

⛔ Squash commits considered harmful ⛔ - DEV Community

git softwaredevelopment softwareengineering programming
June 29, 2024 at 7:06:01 PM GMT+2*
https://dev.to/wesen/squash-commits-considered-harmful-ob1

Optimizing SQLite for servers

sqlite sql webdev softwareengineering softwaredevelopment databases
April 2, 2024 at 9:58:56 AM GMT+2*
https://kerkour.com/sqlite-for-servers

The work is never just “the work” | Dave Stewart

Remember every project will have most of these invisible “work” types

work projectmanagement softwaredevelopment
March 13, 2024 at 11:39:53 AM GMT+1*
https://davestewart.co.uk/blog/the-work-is-never-just-the-work/

40 years of programming

programming softwaredevelopment life career advice philosophy management
March 12, 2024 at 8:40:54 PM GMT+1*
https://liw.fi/40/

Infallible five-tier system for measuring the maturity of your Continuous Delivery pipeline @ Things Of Interest

CD softwareengineering softwaredevelopment
December 22, 2023 at 7:00:36 PM GMT+1
https://qntm.org/cd

kurtbuilds/modenv: A CLI to easily manage .env files and keep them consistent. It is simple, fast, error resistant, and composable.

A CLI to easily manage .env files and keep them consistent. It is simple, fast, error resistant, and composable.

dev softwaredevelopment cli rust tools
November 23, 2023 at 5:39:51 PM GMT+1*
https://github.com/kurtbuilds/modenv

15 rules for communicating at GitHub | Ben Balter

TL;DR: Asynchronous communication through high-fidelity mediums like issues and chat eliminate the endemic “you had to be there” aspect of most corporate workflows, and reduces the need for a dedicated management class to capture, collect, and shuttle information back and forth between business units.

business development work communication management github softwaredevelopment
August 19, 2023 at 7:48:13 PM GMT+2*
https://ben.balter.com/2014/11/06/rules-of-communicating-at-github/

Ted M. Young: "I stopped trying to define Uni…" - SFBA.social

I stopped trying to define Unit Tests (I would define it as Feathers defined it) and now exclusively use the terms:

I/O-Based tests: has I/O in the test (accesses clock, database, etc.)

I/O-Free tests: no I/O access in the test (no current date/time, no random numbers, no file access, no network access, etc.)

I'll slip up and use "Unit" when I really mean I/O-Free (and "Integration" when I mean "I/O-Based"), but for the most part I've switched.

There's so much baggage and debate around "what's a unit?", when that isn't always the most important question. I've found it much easier to explain that when doing #TDD, we want to use I/O-Free tests as they'll be sufficiently fast to get feedback in less than a couple of seconds.

tdd testing softwaredevelopment toot
June 17, 2023 at 8:51:36 PM GMT+2*
https://sfba.social/@jitterted/110102829047487465

nedbat/scriv: Changelog management tool

Scriv is a command-line tool for helping developers maintain useful changelogs. It manages a directory of changelog fragments. It aggregates them into entries in a CHANGELOG file.

opensource python changelog library git github softwareengineering webdev softwaredevelopment
January 16, 2023 at 10:05:40 PM GMT+1
https://github.com/nedbat/scriv
Filters
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