RANDOM POSTs
-
DiffRhythm – Blazingly Fast and Embarrassingly SimpleEnd-to-End Full-Length Song audio Generation with Latent Diffusion
https://aslp-lab.github.io/DiffRhythm.github.io
https://huggingface.co/ASLP-lab/DiffRhythm-base
https://huggingface.co/spaces/ASLP-lab/DiffRhythm
-
Aze Alter – What If Humans and AI Unite? | AGE OF BEYOND
Read more: Aze Alter – What If Humans and AI Unite? | AGE OF BEYONDhttps://www.patreon.com/AzeAlter
Voices & Sound Effects: https://elevenlabs.io/
Video Created mainly with Luma: https://lumalabs.ai/
LUMA LABS
KLING
RUNWAY
ELEVEN LABS
MINIMAX
MIDJOURNEY
Music By Scott Buckley -
CASSINI MISSION
Read more: CASSINI MISSIONSomewhere, something incredible is waiting to be known.
The footage in this little film was captured by the hardworking men and women at NASA with the Cassini Imaging Science System. If you’re interested in learning more about Cassini and the on-going Cassini Solstice Mission, check it out at NASA’s website:
saturn.jpl.nasa.gov/science/index.cfm
-
Windows Robocopy – efficiently copying files and directories
The Windows “Robust File Copy” utility for efficiently copying files and directories, with built-in retry, logging, and mirroring capabilities.
https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy
https://www.pdq.com/blog/hitchhikers-guide-to-robocopy/
https://activedirectorypro.com/robocopy-examples/
The Windows “Robust File Copy” utility for efficiently copying files and directories, with built-in retry, logging, and mirroring capabilities.
By default, Robocopy skips copying existing files if the specific metadata of the files match.
/mir : Mirror the source directory tree to the destination (equivalent to /e + /purge):
/e : copies all subdirectories, including empty ones
/purge : deletes files/folders at the destination that no longer exist at the source
/sj : Copy NTFS junction points (“soft-links”) themselves rather than what they point to. This preserves the junction at the destination.
/sl : Copy symbolic links as links (don’t follow them and copy the target file/directory).
/mt:24 :Run the copy operation using 24 concurrent threads (range 1–128; default is 8), for higher throughput on multi-core systems. This switch cannot be combined with /ipg or /efsraw.
/J : unbuffered I/O (good for large files)
/R:<N> : to limit retries (default is 1 000 000)
/W:<S> : to set the wait time in seconds (default is 30)
/NJS : No Job Summary.
/NC : No Class – don’t log file classes.
/NFL : (No File List) Suppresses the per-file lines (e.g. “New File …”, “Copied …”). Benefit: Cuts down console I/O, often shaving 10–20 % off total runtime on large trees.
/NDL : (No Directory List) Suppresses the per-directory header lines. Benefit: Further reduces console chatter.
/NP : (No Progress) Suppresses the percentage-complete on each file. Drawback: You lose the “XX %” indicator
/NJH : (No Job Header) and /NJS (No Job Summary) Only affect the very first and very last block; negligible on runtime and you probably want at least the summary.
/NS (No Size) and /NC (No Class) Remove size and class columns from each line. If you’re suppressing file/directory lists anyway, these don’t help much.
/XD : ignore given types
/ETA : Show Estimated Time of Arrival of copied files.Note:
Robocopy’s support for NTFS reparse-points (symbolic links and junctions) is a bit quirky:- /SL only affects symbolic links (it tells RoboCopy to replicate the link itself rather than follow it).
- /SJ only affects junction points (ditto for directory-junction reparse points).
- If you use both /SL and /SJ, RoboCopy can still attempt to enumerate a link as a real folder—leading to that “ERROR 267: The directory name is invalid.”
Because of this, this errors can be ignored:
2025/05/15 12:09:11 ERROR 267 (0x0000010B) Copying Directory C:\redux-remember\ The directory name is invalid.Bat file example:
@echo off setlocal :: Define the source and destination directories set "src=%cd%" set "dst=C:\TEMP" echo Copying %src% to %dst% :: Use robocopy to copy the contents robocopy "%src%" "%dst%" /MIR /SJ /SL /MT:24 /J /R:0 /W:2 /NFL /NDL /ETA /NP /NC /XD "__pycache__" ".pnpm" pause endlocal
COLLECTIONS
| Featured AI
| Design And Composition
| Explore posts
POPULAR SEARCHES
unreal | pipeline | virtual production | free | learn | photoshop | 360 | macro | google | nvidia | resolution | open source | hdri | real-time | photography basics | nuke
FEATURED POSTS
Social Links
DISCLAIMER – Links and images on this website may be protected by the respective owners’ copyright. All data submitted by users through this site shall be treated as freely available to share.
