programming.dev

9,060 readers
295 users here now

Welcome Programmers!

programming.dev is a collection of programming communities and other topics relevant to software engineers, hackers, roboticists, hardware and software enthusiasts, and more.

The site is primarily english with some communities in other languages. We are connected to many other sites using the activitypub protocol that you can view posts from in the "all" tab while the "local" tab shows posts on our site.


๐Ÿ”— Site with links to all relevant programming.dev sites

๐ŸŸฉ Not a fan of the default UI? We have alternate frontends we host that you can view the same content from

โ„น๏ธ We have a wiki site that communities can host documents on


โš–๏ธ All users are expected to follow our Code of Conduct and the other various documents on our legal site

โค๏ธ The site is run by a team of volunteers. If youre interested in donating to help fund things such as server costs you can do so here

๐Ÿ’ฌ We have a microblog site aimed towards programmers available at https://bytes.programming.dev

๐Ÿ› ๏ธ We have a forgejo instance for hosting git repositories relating to our site and the fediverse. If you have a project that relates and follows our Code of Conduct feel free to host it there and if you have ideas for things to improve our sites feel free to create issues in the relevant repositories. To go along with the instance we also have a site for sharing small code snippets that might be too small for their own repository.

๐ŸŒฒ We have a discord server and a matrix space for chatting with other members of the community. These are bridged to each other (so you can interact with people using matrix from discord and vice versa.

Fediseer


founded 1 year ago
ADMINS
c/nushell: Nushell

What is Nushell?

Nushell is a powerful shell and scripting language with strong typing, querying, and piping functionalities.

From the official documentation; Introduction:

The goal of this project is to take the Unix philosophy of shells, where pipes connect simple commands together, and bring it to the modern style of development. Thus, rather than being either a shell, or a programming language, Nushell connects both by bringing a rich programming language and a full-featured shell together into one package.

Nu takes cues from a lot of familiar territory: traditional shells like bash, object based shells like PowerShell, gradually typed languages like TypeScript, functional programming, systems programming, and more. But rather than trying to be a jack of all trades, Nu focuses its energy on doing a few things well:

  • Being a flexible cross-platform shell with a modern feel
  • Solving problems as a modern programming language that works with the structure of your data
  • Giving clear error messages and clean IDE support

Examples

Shell Examplesโ€ฆ

nu> ls | where size > 1kb
โ•ญโ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ # โ”‚       name        โ”‚ type โ”‚  size   โ”‚  modified  โ”‚
โ”œโ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 0 โ”‚ Gemfile           โ”‚ file โ”‚ 1.1 KiB โ”‚ 3 days ago โ”‚
โ”‚ 1 โ”‚ Gemfile.lock      โ”‚ file โ”‚ 6.9 KiB โ”‚ 3 days ago โ”‚
โ”‚ 2 โ”‚ LICENSE           โ”‚ file โ”‚ 1.1 KiB โ”‚ 3 days ago โ”‚
โ”‚ 3 โ”‚ SUMMARY.md        โ”‚ file โ”‚ 3.7 KiB โ”‚ 3 days ago โ”‚
โ•ฐโ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
nu> help commands | where name == each | first | get params.name
โ•ญโ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ 0 โ”‚ closure          โ”‚
โ”‚ 1 โ”‚ --help(-h)       โ”‚
โ”‚ 2 โ”‚ --keep-empty(-k) โ”‚
โ•ฐโ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
nu> http get https://programming.dev/api/v3/site | get all_languages | length
184

nu> http get https://programming.dev/api/v3/site | get taglines.content
โ•ญโ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ 0 โ”‚ Some communities may be broken while we work on fixes โ”‚
โ•ฐโ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
## Web-Links * [Website](https://www.nushell.sh/) * [GitHub](https://github.com/nushell/nushell) (Rust, MIT)
41 subscribers, a community founded 5 days ago
c/bestof: Bestof

A community for showcasing high quality comments made around programming.dev!

  • Ideally share comments using a link generated by https://lemmyverse.link/ so its instance agnostic
  • If you cant do the above share it as a programming.dev link
  • This community is only for highlighting comments made, not posts
  • Only share comments on programming.dev or on communities with similar topics to what the instance is about
  • Follow programming.dev's code of conduct

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

46 subscribers, a community founded 7 months ago
c/teach_programming: Teach Programming

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

288 subscribers, a community founded 1 year ago
c/latex: LaTeX

Welcome to a community discussing everything TeX & LaTeX!

Getting started

Useful resources

Tools

Topic specific resources

Rules

  • Rule 1: Follow Lemmy rules
  • Rule 2: Be excellent to each other, no hostility towards users for any reason
386 subscribers, a community founded 1 year ago
c/opensource: Opensource

A community for discussion about open source software! Ask questions, share knowledge, share news, or post interesting stuff related to it!

CreditsIcon base by Lorc under CC BY 3.0 with modifications to add a gradient

โ €


1,401 subscribers, a community founded 1 year ago
c/just_a_test: Just a test
1 subscribers, a community founded 2 weeks ago
c/a11y: Accessibility

[email protected] is a community for discussing digital accessibility, sharing techniques and best practices, and talking about accessibility experiences; both good and bad.

Lemmy

Guidelines

  • Please keep submissions on topic and try to share high quality content.
  • Follow all instance-wide rules, which can be found on the sidebar here: programming.dev
  • Don't be a jerk. Just because something you post doesn't explicitly break a rule does not entitle you to post whatever you want, and mods will remove any posts or comments we consider to have been made in bad faith.
  • Don't editorialize titles. When sharing something, try to keep the title of whatever article you are sharing, unless it is clearly a clickbait title, and you wish to substitute a simple matter-of-fact title. Please do remove website and author names from the title.

What is Digital Accessibility?

Digital accessibility is the practice of removing barriers that prevent interaction with, or access to, digital systems by people with disabilities. This involves designing and developing websites, mobile applications, software, hardware, and other digital platforms in a way that they can be used by individuals with a range of abilities, including those with visual, auditory, physical, speech, cognitive, and neurological disabilities.

Digital accessibility not only benefits those with disabilities but also enhances the overall user experience, making digital content more usable and understandable for all. In many jurisdictions, it's a legal requirement under disability discrimination laws.

How does one improve digital accessibility in their products?

Key components of digital accessibility include accessible website design, multimedia with features like captions or transcripts, properly formatted digital documents, and accessible software and apps. It also extends to hardware design.

Other Accessibility Related communities:

Useful Resources

207 subscribers, a community founded 1 year ago
c/lem: Lem
47 subscribers, a community founded 9 months ago
c/programming_horror: Programming Horror

Welcome to Programming Horror!

This is a place to share strange or terrible code you come across.

For more general memes about programming there's also Programmer Humor.

Looking for mods. If youre interested in moderating the community feel free to dm @[email protected]

Rules

  • Keep content in english
  • No advertisements (this includes both code in advertisements and advertisement in posts)
  • No generated code (a person has to have made it)

Credits

  • Icon base made by Lorc under CC BY 3.0 with modifications to add a gradient
1,891 subscribers, a community founded 1 year ago
c/memoristik: {m}emoristik

About the Memoristik Project,

The goal is to create a multi-layered and open-source infrastructure using technologies such as Merkle Tree, Blockchain, ActivityPub, IPFS etc., with the following objectives:

  • Ensuring users have ownership and control over all types of data they generate, and ensuring the security and continuity of this data.
  • Enabling the serialization of data on a decentralized infrastructure, allowing them to communicate with each other, and providing easy, fast, and secure access to all data.
  • The ability to identify the source, validity period, and accuracy of the data.

Repository and Documentation

https://gitlab.com/memoristik https://memoristik.gitlab.io

Rules

Please follow programming.dev rules and be nice to each other

46 subscribers, a community founded 11 months ago
c/perl: Perl
184 subscribers, a community founded 1 year ago
c/waypoint: Waypoint

A community for discussion and news relating to HashiCorp Waypoint. https://www.waypointproject.io/

42 subscribers, a community founded 9 months ago
c/nix: Nix / NixOS
1,776 subscribers, a community founded 1 year ago
c/systemdesign: System Design

๐Ÿ˜ตโ€๐Ÿ’ซ Ever feel lost in the 150+ AWS services? Learn system design, and never feel lost again!

๐Ÿก [email protected] is the place to be for all System Design related discussion, resources, and questions!

๐Ÿ“œ New to System Design? Check out Donne Martin's System Design Primer! https://github.com/donnemartin/system-design-primer


๐Ÿชฑ๐Ÿ•ณ๏ธ

Follow the wormhole through a path of communities

[email protected]

(Hopefully one day this list will be longer!)

50 subscribers, a community founded 8 months ago
c/neovim: Neovim
2,178 subscribers, a community founded 1 year ago
c/android_dev: Android Development

Welcome to the programming.dev Android development community!

The Android robot is reproduced or modified from work created and shared by Google and used according to terms described in the Creative Commons 3.0 Attribution License

541 subscribers, a community founded 1 year ago
c/alpinejs: Alpine.js

A community for discussing anything related to Alpine.js and its ecosystem.

53 subscribers, a community founded 7 months ago
c/safe_crackers: Safe Crackers

A community for the upcoming lemmy & pangora event

Create a password and attempt to guess ones for other instances while collecting and sharing clues with your instance

51 subscribers, a community founded 1 year ago
c/vcs: Version Control Systems

A community for discussion and news about version control systems and software forges

Related Communities

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

54 subscribers, a community founded 7 months ago
c/codingcafe: Coding Cafe

A community for all programmers

63 subscribers, a community founded 2 months ago
c/gpu: GPU

GPU - 3D graphics programming, neural networks, WebGL, WebGPU, WebNN, shaders, generative textures and models, OpenGL, DirectX, Metal, Vulkan, Computer Generated Holography

50 subscribers, a community founded 5 months ago
c/elixir: Elixir
517 subscribers, a community founded 1 year ago
c/tauri: Tauri

A community for discussion of news, development and projects related to Tauri.

Ask questions, share interesting projects, seek help debugging your code and discuss all things related to the Rust based application toolkit.

Tauri logo by Alve Larsson, Daniel Thompson-Yvetot and Guillaume Chau under CC BY NC ND.

68 subscribers, a community founded 1 year ago
c/ubuntu: Ubuntu

A community for news and discussion about the Ubuntu Linux distribution https://ubuntu.com/

74 subscribers, a community founded 7 months ago
c/adopt_a_community: Adopt A Community

Request ownership of a community here! Communities are up to be requested if they are currently being handled by the admins, or if the mods have been inactive for more than two weeks (ill message them and see if I get a response in 1 week after I get the request as well)

63 subscribers, a community founded 1 year ago
view more: next โ€บ