#volumes

Joseph Lim :mastodon:joseph11lim
2025-06-09

Slaying the zombie
🧐"Many up to 100 hours per week, more than double the 45-hour limit stipulated under the , largely due to high under 's 30-baht .. 455 doctors left the sector each year on average. With abt 24,000 doctors under the ministry, one doctor in the serves approximately 2,000 people -- double the 's recommended ratio"

bangkokpost.com/thailand/gener

2025-06-07

#TheMetalDogArticleList
#MetalInjection
MYKE TERRY Confirms VOLUMES Have Finished Their Fifth Record
New Volumes material should be coming soon... MYKE TERRY Confirms VOLUMES Have Finished Their Fifth Record appeared first on Metal Injection.

metalinjection.net/news/myke-t

#MykeTerry #VOLUMES #MetalInjection #KATATONIA #GAAHLSWYRD #VILDHJARTA #RiversOfNihil #MIDNIGHT #WITCHCRAFT #TheCallousDaoboys

China Business Forumcnbusinessforum@mstdn.business
2025-05-26

#China’s national #railways are #powering ahead in 2025, with #freight #volumes climbing steadily as the country strengthens its #logistics #backbone. From January to April, #railway moved a staggering 1.3 billion tonnes of #goods, #marking a 3.6% increase compared to the same period last year, according to the latest #Chinese #data.
cnbusinessforum.com/chinas-rai

China Business Forumcnbusinessforum@mstdn.business
2025-05-24

#China’s national #railways are #powering ahead in 2025, with #freight #volumes climbing steadily as the country strengthens its #logistics #backbone. From January to April, #railway moved a staggering 1.3 billion tonnes of #goods, #marking a 3.6% increase compared to the same period last year, according to the latest #Chinese #data.
cnbusinessforum.com/chinas-rai

China Business Forumcnbusinessforum@mstdn.business
2025-05-22

#China’s national #railways are #powering ahead in 2025, with #freight #volumes climbing steadily as the country strengthens its #logistics #backbone. From January to April, #railway moved a staggering 1.3 billion tonnes of #goods, #marking a 3.6% increase compared to the same period last year, according to the latest #Chinese #data.
cnbusinessforum.com/chinas-rai

China Business Forumcnbusinessforum@mstdn.business
2025-05-20

#China’s national #railways are #powering ahead in 2025, with #freight #volumes climbing steadily as the country strengthens its #logistics #backbone. From January to April, #railway moved a staggering 1.3 billion tonnes of #goods, #marking a 3.6% increase compared to the same period last year, according to the latest #Chinese #data.
cnbusinessforum.com/chinas-rai

China Business Forumcnbusinessforum@mstdn.business
2025-05-19

#China’s national #railways are #powering ahead in 2025, with #freight #volumes climbing steadily as the country strengthens its #logistics #backbone. From January to April, #railway moved a staggering 1.3 billion tonnes of #goods, #marking a 3.6% increase compared to the same period last year, according to the latest #Chinese #data.
cnbusinessforum.com/chinas-rai

The Lamb's WaifuKuudereKun@c.im
2025-03-03

One difficult aspect of researching Manga is that it seems the English Language Internet is far more interested in documenting the Publication dates of the Volumes then the original Chapters.

This would be like if a DC Wiki only had release dates for Trade Paperbacks and not the actual Issues.

Like when I needed the release dates for specific Codename Sailor V and Sailor Moon chapters for a post i made last year. They weren't on Wikipedia or either Sailor Moon FanWiki or MAL, I had to google to eventually find a more random website that I feel lucky existed at all.

#Manga #Research #Documentation #ComicBooks #Volumes #Chapters #TradePaperbacks #IMagizenes #Archive #CodenameSailorV #Wiki #Fandom #FanWiki

UB Chemnitzubchemnitz
2025-01-09

🇬🇧 The members of @tuchemnitz can once again look forward to an award from the DFG. For the funding period 2025-2027, the DFG is providing 439,000 euros for publications. The is not only limited to articles but can also be used for scientific and .
The aim is to support as many open access publication channels as possible, regardless of subject or publication form.

2024-12-07

Use the appropriate solutions.

#Volumes are automatically allocated and managed on chosen storage providers.

#Configs allow you to distribute read-only configurations in complex environments, possibly with specialized tools.

#Secrets are like configs, but with extra security. It can also be integrated to secrets managers.

[2/4]

2024-12-06

I deleted 10GB of video (a few big files) from iPhoto library yesterday and today deleted about 20GB of photos. My used volume space on the boot drive where the library lives did not reduce at all in either instance.

Yes, I also deleted them from the Recently Deleted folder in Photos app -- so they are _gone_. Also, I do have save photos fully locally (am not set to save space by pulling some of the data from iCloud).

I rebooted, still the same after.

What is going on here?

I want to free up data. I see there is 120GB "purgeable" on the volume.

What apfs fuckery is this?

#Apple #apfs #Mac #macos #photos #volumes #storage #filesystem #sequoia #MacStudio #help

2024-12-02

Google está ensinando o Gemini a lidar com grandes volumes de código de uma vez só

https://googlediscovery.com/2024/12/01/google-esta-ensinando-o-gemini-a-lidar-com-grandes-volumes-de-codigo-de-uma-vez-so/

2024-06-03

@DrJackBrown

Trump's Mouth is lying 24/7 all of the , but his speaks .

2024-01-21

Reading Time: 2 minutes

This morning I made PhotoPrism self-booting. I am not certain that this is the write term so I will specify what I mean. PhotoPrism, when run via docker boots, when we tell it to boot, like any other app on our laptop. This morning, after a little time spent with AI I found the solution.

I used ChatGPT for this help but this is to give you an idea of how to enable docker containers to boot automatically rather than manually. It’s by a little trial and error that I suceeded in what I wanted to do.

Boiled down Chat GPT gave this overview

To start a service: sudo systemctl start servicename.service
To stop a service: sudo systemctl stop servicename.service
To restart a service: sudo systemctl restart servicename.service
To enable a service to start on boot: sudo systemctl enable servicename.service
To disable a service from starting on boot: sudo systemctl disable servicename service

In concrete terms you need to “sudo nano /etc/systemd/system/photoprism.service” and add

[Unit]Description=PhotoPrism Docker Compose Service
Requires=docker.service
After=docker.service

[Service]Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/local/bin/docker-compose -f /path/to/your/docker-compose.yml up -d
ExecStop=/usr/local/bin/docker-compose -f /path/to/your/docker-compose.yml down

[Install]WantedBy=default.target

In my case it was /usr/bin rather than local bin. That’s a little thing to look out for. To double check use “which docker-compose” and you will see what to use for the execstart address.

If you are using an external volume double check that the mount point is static. I rebooted twice and got three mount points as well as an “original picture folder empty” message due to the photo drive being mounted in the wrong place. To fix this I used.

sudo blkid

to locate the uuid of the hard drive before personalising this line:

UUID= /path/to/mountpoint ext4 defaults 0 2
I left the defaults behaviouts. The 0 is for fsck to check the file system and 2 is the backup priority number.

This is added via:

sudo nano /etc/fstab

Once you have ensured that the drive mount point will remain the same, boot after boot you can run the next lines.

Reload Systemd

sudo systemctl daemon-reload

Enable PhotoPrism to launch at boot

sudo systemctl enable photoprism.service

To start the service

sudo systemctl start photoprism.service

And finally you can run

sudo systemctl status photoprism.service
to check service status.

And Finally

When I set up a server for photoprism or other services I want it to boot automatically as soon as the computer is booted. I don’t want to have to start services manually. With this workflow I was able to setup PhotoPrism to boot automatically, as well as to make sure that the photo drive would mount to the right place each time I booted the system.

https://www.main-vision.com/richard/blog/photoprism-self-boot/

#booting #learning #photoprism #systemd #volumes #walkThru

A Raspberry Pi 4, top, and Pi 5, bottom.

Working on an effect where a powdery substance, such as flour or sugar, depletes from a container. The left side uses a volume, and the right side uses geometry nodes.

This effect still needs some work, but it's getting there. Definitely leaning towards the geometry nodes option, because it affords so much more control over the look of the material's surface.

#blender #blender3d #b3d #geometrynodes #volumes #cycles #loop

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst