Claude Mythos & Cybersecurity

https://red.anthropic.com/2026/mythos-preview

During our testing, we found that Mythos Preview is capable of identifying and then exploiting zero-day vulnerabilities in every major operating system and every major web browser when directed by a user to do so. The vulnerabilities it finds are often subtle or difficult to detect. Many of them are ten or twenty years old, with the oldest we have found so far being a now-patched 27-year-old bug in OpenBSD—an operating system known primarily for its security.

and Project Glasswing.

DaVinci Resolve releases Photo Editor

https://www.blackmagicdesign.com/products/davinciresolve/photo
https://news.ycombinator.com/item?id=47760529 image
overview:
https://www.youtube.com/watch?v=HuKgfytA0lg
https://www.youtube.com/watch?v=gy0nFc-6k58

Quick try, old Blender render (png was imported, not sure how to handle exr), adding additional dof with internaly calculated depth map + some rgb split type of effect in color page, before:
image
after:
image
The trouble of using this gui/logic is way over my head, and I’am not complete noobie in Resolve.

Offtopic Quote from HN:

What is your Linux photo editing software of choice?
https://github.com/andreavolpato/spektrafilm
https://www.darktable.org

Real World to Minecraft

https://github.com/louis-e/arnis/

p.s. Even if you know the place, it is almost impossible to guess where one is.

To Cineform ffmpeg

Progressive

ffmpeg -i input.mov -c:v cfhd -pix_fmt yuv422p10le -quality medium output.mov

Interlaced?

ffmpeg -i input_interlaced.mov -flags +ildct -top 1 -c:v cfhd -pix_fmt yuv422p10le -quality medium output_interlaced.mov

Acording to deepseek quality levels are (confirmed by looking at ffmpeg-8.1/libavcodec/cfhdenc.c)

Quality Setting   Numeric Value   Typical Use Case
film3+            0               Highest quality. Archival, VFX, color grading
film3             1               
film2+            2               
film2             3               
film1.5           4               
film1+            5               
film1             6               Visually lossless for most content
high+             7               
high              8               4K/UHD mastering
medium+           9               
medium            10              HD mastering
low+              11              
low               12              Smallest files. Proxies, dailies

Journey to the Moon

https://www.nasa.gov/artemis-ii-multimedia = root
https://www.nasa.gov/gallery/journey-to-the-moon
https://www.nasa.gov/gallery/lunar-flyby
https://www.youtube.com/watch?v=WnG9y0JIyIw Multicam launch
https://www.youtube.com/shorts/6WGro4XXM5k Reentry timelapse

HP 250 G6 Notebook PC (i3 cpu, 4 gigs of ram)

Pop!_OS installed, Wi-Fi is trouble; this seems to solve it:

https://www.reddit.com/r/pop_os/comments/13m6pmo/wifi_not_working_on_pop_os_2204_on_custom_pc
https://wiki.debian.org/NetworkManager/iwd

1-Install iwd:
sudo apt install iwd

2-configure NetworkManager:
open this: /etc/NetworkManager/NetworkManager.conf
add this to it:
[device]
wifi.backend=iwd

3-Stop NetworkManager and disable wpa_supplicant:
sudo systemctl stop NetworkManager
sudo systemctl disable --now wpa_supplicant
sudo systemctl restart NetworkManager

4- Restart the pc. 

neofetch

             /////////////                user@pop-os
         /////////////////////            -----------
      ///////*767////////////////         OS: Pop!_OS 24.04 LTS x86_64
    //////7676767676*//////////////       Host: HP 250 G6 Notebook PC
   /////76767//7676767//////////////      Kernel: 6.18.7-76061807-generic
  /////767676///*76767///////////////     Uptime: 27 mins
 ///////767676///76767.///7676*///////    Packages: 1804 (dpkg)
/////////767676//76767///767676////////   Shell: bash 5.2.21
//////////76767676767////76767/////////   Resolution: 1920x1080
///////////76767676//////7676//////////   DE: COSMIC
////////////,7676,///////767///////////   Theme: adw-gtk3-dark [GTK3]
/////////////*7676///////76////////////   Icons: Cosmic [GTK3]
///////////////7676////////////////////   Terminal: cosmic-term
 ///////////////7676///767////////////    CPU: Intel i3-6006U (4) @ 2.000GHz
  //////////////////////'////////////     GPU: Intel Skylake GT2 [HD Graphics 520]
   //////.7676767676767676767,//////      Memory: 2391MiB / 3829MiB
    /////767676767676767676767/////
      ///////////////////////////
         /////////////////////
             /////////////

Runs quite slow (the GUI that is), but can decode HD H.265 video without a sweat.

image

Send files or text to local Ollama model for fixing typos

Example:

cat myfile.txt | ollama run gemma4 "Fix all typos and grammatical errors in this text and return the corrected version." --think=false

There is also much slower, but I guess much smarter:

--hidethinking

Tipos script can take typed text or files as input.

Examples:

tipos "what th hec is thi?
=== Checking text: "what th hec is thi?" ===
What the heck is this?

tipos "on plus one is three, two pls two in five.
=== Checking text: "on plus one is three, two pls two in five." ===
One plus one is two, two plus two is four.