Trending

#Toml

Latest posts tagged with #Toml on Bluesky

Latest Top
Trending

Posts tagged #Toml

Preview
Rust 1.94.0 Released with Array Windows and Cargo Improvements Rust 1.94.0 introduces array_windows for slices, Cargo config inclusion, TOML 1.1 support in Cargo, and stabilized APIs in const contexts.

Rust 1.94.0 Released with Array Windows and Cargo Improvements

techlife.blog/posts/rust-1...

#RustLang #Rust #Programming #SoftwareDevelopment #SystemsProgramming #OpenSource #Cargo #ArrayWindows #TOML #ConstEval #RustRelease

1 0 0 0
Preview
a military helicopter is flying over a mountain range ALT: a military helicopter is flying over a mountain range

Everyone calls it Chair Force until they need CASEVAC and Dustoff can't launch because it's an active TIC... but Pedro will come get you. #TOML

1 0 0 0

https://toml.io/en/v1.1.0#inline-table

#TOML has officially become the best configuration format. I want it to be supported in cargo ASAP so that we can get rid of the super long lines for dependencies.

#rust

0 1 1 0

Ok so AI understands human language natively

So here I am writing #TOML 😳

#BuildInPublic

4 1 1 0
Duper's mascot, a mole with glasses and a flailing cape, fighting a dinosaur kaiju over a half-destroyed city.

Duper's mascot, a mole with glasses and a flailing cape, fighting a dinosaur kaiju over a half-destroyed city.

Duper's new superpowers!

It's been over a month since Duper's public announcement, and now, it's more super than ever! I've taken all the feedback from the initial post and worked on it.

#rust #rustlang #dotnet #node #javascript #wasm #python #json #yaml #toml

2 0 1 0
Preview
fx – a terminal JSON viewer & processor A terminal viewer & processor for JSON, YAML, & TOML (TUI and CLI)

Interesting new #CLI / #TUI program for manipulating #JSON, #YAML, and #TOML with support for JS syntax. Gonna have to give this a go!

https://fx.wtf/

via

https://andre.arko.net/2025/06/13/fx.wtf/

via

@b0rk 's #TIL blog: https://jvns.ca/til/fx--a-jq-replacement/

0 0 0 0
Preview
GitHub - markusand/utoml: Simple TOML parser and serializer for micropython Simple TOML parser and serializer for micropython. Contribute to markusand/utoml development by creating an account on GitHub.

Ara també amb serializer #micropython #toml

1 0 0 0
[tool.django]

# Paths are relative to the TOML file (unless they are absolute)
BASE_DIR = { "$path" = "." }
STATIC_ROOT = { "$path" = "staticfiles" }

# This sets the key based on the environment variable
SECRET_KEY = { "$env" = "SECRET_KEY" }

# This sets the key based on the environment variable, but has a fallback
ADMIN_URL_PATH = { "$env" = "ADMIN_URL_PATH", "$default"="admin" }

# Booleans, arrays, tables (dictionaries), integers, strings, floats, dates are all supported in TOML
DEBUG = true
ALLOWED_HOSTS = [
  "127.0.0.1",
]

# This is an implicit dictionary and equivalent to `COLTRANE = { TITLE = "Example blog" }`
[tool.django.COLTRANE]
TITLE = "Example blog"

# Any name can be used under `apps` for organizational purposes
[tool.django.apps.tailwind-cli]
TAILWIND_CLI_USE_DAISY_UI = true
TAILWIND_CLI_SRC_CSS = ".django_tailwind_cli/source.css"

# These settings are included when the `ENVIRONMENT` environment variable is "development"
[tool.django.envs.development]
ALLOWED_HOSTS = { "$insert" = "example.localhost" }

# These settings are included when the `ENVIRONMENT` environment variable is "production"
[tool.django.envs.production]
DEBUG = false
ALLOWED_HOSTS = { "$insert" = "example.com" }

[tool.django] # Paths are relative to the TOML file (unless they are absolute) BASE_DIR = { "$path" = "." } STATIC_ROOT = { "$path" = "staticfiles" } # This sets the key based on the environment variable SECRET_KEY = { "$env" = "SECRET_KEY" } # This sets the key based on the environment variable, but has a fallback ADMIN_URL_PATH = { "$env" = "ADMIN_URL_PATH", "$default"="admin" } # Booleans, arrays, tables (dictionaries), integers, strings, floats, dates are all supported in TOML DEBUG = true ALLOWED_HOSTS = [ "127.0.0.1", ] # This is an implicit dictionary and equivalent to `COLTRANE = { TITLE = "Example blog" }` [tool.django.COLTRANE] TITLE = "Example blog" # Any name can be used under `apps` for organizational purposes [tool.django.apps.tailwind-cli] TAILWIND_CLI_USE_DAISY_UI = true TAILWIND_CLI_SRC_CSS = ".django_tailwind_cli/source.css" # These settings are included when the `ENVIRONMENT` environment variable is "development" [tool.django.envs.development] ALLOWED_HOSTS = { "$insert" = "example.localhost" } # These settings are included when the `ENVIRONMENT` environment variable is "production" [tool.django.envs.production] DEBUG = false ALLOWED_HOSTS = { "$insert" = "example.com" }

Published 0.3.0 and 0.3.1 of `dj-toml-settings` ⚙️

- Handle `datetime`, `int`, `float`, `list`, `dict`, `datetime`, and `Callable` as variables.
- Handle appending to a variable for `Path`.
- Add `$none` special operator.

🛠️ github.com/adamghill/dj...
📦 pypi.org/project/dj-t...

#Django #TOML

2 0 0 0
Video

📦 Code.Movie 0.0.34 adds support for #TOML and tweaks animation heuristics for #Rust

code.movie/blog/toml-su...

2 1 0 0
[tool.django]
BASE_DIR = { path = "." }
SECRET_KEY = { env = "SECRET_KEY" }
ADMIN_URL_PATH = { env = "ADMIN_URL_PATH", default="admin" }
DEBUG = true
ALLOWED_HOSTS = [
  "127.0.0.1",
]

# Implicit dictionaries are supported
# This is equivalent to `COLTRANE = { TITLE = "Example blog" }`
[tool.django.COLTRANE]
TITLE = "Example blog"

# Any app name can be used for organizational purposes
[tool.django.apps.tailwind-cli]
TAILWIND_CLI_USE_DAISY_UI = true
TAILWIND_CLI_SRC_CSS = ".django_tailwind_cli/source.css"

# These settings are included when `ENVIRONMENT` environment variable is "development"
[tool.django.envs.development]
DEBUG = false
ALLOWED_HOSTS = [
  "example.localhost",
]

# These settings are included when `ENVIRONMENT` environment variable is "production"
[tool.django.envs.production]
DEBUG = false
ALLOWED_HOSTS = { insert = "example.com" }

[tool.django] BASE_DIR = { path = "." } SECRET_KEY = { env = "SECRET_KEY" } ADMIN_URL_PATH = { env = "ADMIN_URL_PATH", default="admin" } DEBUG = true ALLOWED_HOSTS = [ "127.0.0.1", ] # Implicit dictionaries are supported # This is equivalent to `COLTRANE = { TITLE = "Example blog" }` [tool.django.COLTRANE] TITLE = "Example blog" # Any app name can be used for organizational purposes [tool.django.apps.tailwind-cli] TAILWIND_CLI_USE_DAISY_UI = true TAILWIND_CLI_SRC_CSS = ".django_tailwind_cli/source.css" # These settings are included when `ENVIRONMENT` environment variable is "development" [tool.django.envs.development] DEBUG = false ALLOWED_HOSTS = [ "example.localhost", ] # These settings are included when `ENVIRONMENT` environment variable is "production" [tool.django.envs.production] DEBUG = false ALLOWED_HOSTS = { insert = "example.com" }

Just published 0.2.0 of dj-toml-settings! ⚙️

It provides the ability to load #Django settings from a #TOML file.

Changelog:
- Updated readme with (hopefully) clearer examples
- Better support for path variables

🛠️ github.com/adamghill/dj...
📦 pypi.org/project/dj-t...

0 0 0 0
Preview
rtoml: The Fastest Python TOML Library, Powered by Rust rtoml: The fastest Python TOML library, powered by Rust. 100% accurate parsing, blazing speed & flexible None handling. Perfect for config files!

rtoml: A Rust-powered TOML parser that crushes all Python implementations in speed! 🚀
#TOML #Python
open.substack.com/pub/pythonli...

2 0 0 0
Overview of virtual machine listing with virshle

Overview of virtual machine listing with virshle

Thinking of #libvirt and #xml gives me itches 😨

That's why I've been baking a simpler virtual machine manager with:

- #Vm declaration in #Toml,
- And easy #network configuration,

Thanks to #rust and #nixos, things are getting increasingly smoother... 😇

0 0 2 0
Preview
Sublime Text Code Editor Update 4200 Add Sidebar Flexibility Discover the latest update for Sublime Text 4200, featuring enhanced sidebar flexibility.

Sublime Text Code Editor Update 4200 Add Sidebar Flexibility Discover the latest update for Subli...

www.linuxtoday.com/blog/sublime-text-code-e...

#Blog #code #editor #Sublime #sublime #text #4 #text #editor #TOML

Result Details

0 0 0 0
Sublime Text Code Editor Update 4200 Add Sidebar Flexibility Discover the latest update for Sublime Text 4200, featuring enhanced sidebar flexibility. The post Sublime Text Code Editor Update 4200 Add Sidebar Flexibility appeared first on Linux Today.
0 0 0 0

#ini #conf #toml #hocon #properties #xml #json
What is the best human-readable configuration file format?

0 0 0 0

You do not like #xml.

You are being hostage and feel empathy for your jailer.

- It is more machine than human readable. 😵

- It is a pain to convert to and from #json, #yaml, #toml because of loose structure rules.😨

- It is unfortunately everywhere it shouldn't be.

#programming #sysadmin

0 1 0 0
Original post on mastodon.social

I have tried them all.
And I finally stick with #sozu + #letsencrypt!

It's a webserver/proxy with:

- hot reload 🔥
- builtin metrics 🕵
- minimal #toml configuration👶

You should give it a shot.
It is fairly quick to configure and get running.🏃

#webdev #nginx #caddy […]

0 1 1 0
Post image

#JSONCrack: Visualize Complex Data with Interactive Graphs 📊

• 🔍 #JSONCrack transforms #JSON, #YAML, #CSV, #XML & #TOML into navigable interactive graphs with dark/light modes

🧵 👇

4 0 1 0
Preview
GitHub - markusand/myp-toml: Simple TOML parser for micropython Simple TOML parser for micropython. Contribute to markusand/myp-toml development by creating an account on GitHub.

Acabo de publicar un mòdul per parsejar #toml amb #micropython

2 0 0 0
Preview
GitHub - indoorvivants/toml-scala: TOML parser with codec derivation for the Scala platform TOML parser with codec derivation for the Scala platform - indoorvivants/toml-scala

If you are into TOML, support for Scala 3 derivation was recently added to this library. I personally will stick with HOCON. By the way, does anyone use SConfig instead of the original Java implementation from TypeSafe? #scala #toml #hocon https://github.com/indoorvivants/toml-scala

0 0 0 0

TOML >>>

There. I said it.

#yaml #toml #config #webdev

1 0 0 0
Screenshot of a .TOML configuration file with various sections and subsections.

Screenshot of a .TOML configuration file with various sections and subsections.

Picking a format for config files is always a PITA.

After looking at a bunch of formats, I kind of feel like TOML works the best for me.

TOML makes sense to me because it natively supports all kinds of input types + comments

#javascript #buildinpublic #TOML #webdevelopment

2 0 1 0
Preview
GitHub - AeriaVelocity/toml2make: A tool to convert TOML files to Makefiles, for C/C++ projects. A tool to convert TOML files to Makefiles, for C/C++ projects. - AeriaVelocity/toml2make

You ever sit in class, bored, and just thing "Man, I really like C, but I wish there was more TOML in it!"
Introducing TOML To Makefile!
github.com/AeriaVelocit...
#programming #c #c++ #rust #toml #developer

1 0 0 0
Post image

When building out Taskless' pack system (small, reusable Lua modules), I wanted a format that was human readable **first** to make it easier to audit and learn. It came down to #YAML and #TOML. So I put the same config, side by side, in both formats.

No, we didn't even attempt HCL 💀

2 0 1 0
Preview
GitHub - square-foot/HTMX-FrontEnd: Some frontend examples for productive, rapid use of HTMX Some frontend examples for productive, rapid use of HTMX - square-foot/HTMX-FrontEnd

This HTMX-TOML editor is quite useful for Pocketbase servers. It is agnostic to the database structure one may use at the server. In fact, it is agnostic to Pocketbase too frankly github.com/square-foot/...
#htmx #TOML #JSON #lowcode #agile #frontend #rapidcoding

0 0 0 0