Tootfinder

Opt-in global Mastodon full text search. Join the index!

No exact results. Similar results found.
@dennisfaucher@infosec.exchange
2024-03-04 14:41:09

❯❯ limactl start
? Creating an instance "default" Proceed with the current configuration
INFO[0013] Starting the instance "default" with VM driver "qemu"
INFO[0014] QEMU binary "/opt/homebrew/bin/qemu-system-aarch64" seems properly signed with the "com.apple.security.hypervisor" entitlement
INFO[0014] Attempting to download the image arch=aarch64 digest="sha256:1072e90dd339fd7ba1e82b6c1c3b03183287ca4a6da52c04eaeb0e5653a59bc7" location="cloud-images.ubuntu.com/releas"
Downloading the image (ubuntu-23.10-server-cloudimg-arm64.img)
682.69 MiB / 682.69 MiB [-----------------------------------] 100.00% 5.80 MiB/s
INFO[0132] Downloaded the image from "cloud-images.ubuntu.com/releas"
INFO[0133] Attempting to download the nerdctl archive arch=aarch64 digest="sha256:4bf3e05c7203a1b86c84a506d022f7f4d2727143c8031cd5e4b78ef03f0fdcda" location="github.com/containerd/nerdctl/"
Downloading the nerdctl archive (nerdctl-full-1.7.3-linux-arm64.tar.gz)
208.61 MiB / 208.61 MiB [-----------------------------------] 100.00% 5.36 MiB/s
INFO[0173] Downloaded the nerdctl archive from "github.com/containerd/nerdctl/"
INFO[0176] [hostagent] hostagent socket created at /Users/faucherd/.lima/default/ha.sock
INFO[0177] [hostagent] Using system firmware ("/opt/homebrew/share/qemu/edk2-aarch64-code.fd")
INFO[0177] [hostagent] Starting QEMU (hint: to watch the boot progress, see "/Users/faucherd/.lima/default/serial*.log")
INFO[0177] SSH Local Port: 60022
INFO[0177] [hostagent] Waiting for the essential requirement 1 of 4: "ssh"
INFO[0194] [hostagent] Waiting for the essential requirement 1 of 4: "ssh"
INFO[0194] [hostagent] The essential requirement 1 of 4 is satisfied
INFO[0194] [hostagent] Waiting for the essential requirement 2 of 4: "user session is ready for ssh"
INFO[0194] [hostagent] The essential requirement 2 of 4 is satisfied
INFO[0194] [hostagent] Waiting for the essential requirement 3 of 4: "sshfs binary to be installed"
INFO[0216] [hostagent] The essential requirement 3 of 4 is satisfied
INFO[0216] [hostagent] Waiting for the essential requirement 4 of 4: "/etc/fuse.conf (/etc/fuse3.conf) to contain \"user_allow_other\""
INFO[0219] [hostagent] The essential requirement 4 of 4 is satisfied
INFO[0219] [hostagent] Mounting "/Users/faucherd" on "/Users/faucherd"
INFO[0219] [hostagent] Mounting "/tmp/lima" on "/tmp/lima"
INFO[0219] [hostagent] Waiting for the optional requirement 1 of 2: "systemd must be available"
INFO[0219] [hostagent] Forwarding "/run/lima-guestagent.sock" (guest) to "/Users/faucherd/.lima/default/ga.sock" (host)
INFO[0219] [hostagent] The optional requirement 1 of 2 is satisfied
INFO[0219] [hostagent] Waiting for the optional requirement 2 of 2: "containerd binaries to be installed"
INFO[0219] [hostagent] Guest agent is running
INFO[0219] [hostagent] Not forwarding TCP 127.0.0.53:53
INFO[0219] [hostagent] Not forwarding TCP 127.0.0.54:53
INFO[0219] [hostagent] Not forwarding TCP [::]:22
INFO[0222] [hostagent] The optional requirement 2 of 2 is satisfied
INFO[0222] [hostagent] Waiting for the guest agent to be running
INFO[0222] [hostagent] Waiting for the final requirement 1 of 1: "boot scripts must have finished"
INFO[0235] [hostagent] The final requirement 1 of 1 is satisfied
INFO[0235] READY. Run `lima` to open the shell.
❯❯ lima
faucherd@lima-default:~$ pwd
/home/faucherd.linux
faucherd@lima-default:~$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=23.10
DISTRIB_CODENAME=mantic
DISTRIB_DESCRIPTION="Ubuntu 23.10"

@Techmeme@techhub.social
2024-04-06 00:10:51

Snapchat turns off Solar System, which lets users see their position in their friends' orbits, by default, after a report said it was adding to teens' anxiety (Sarah Perez/TechCrunch)
techcrunch.com/2024/04/05/snap

@privacity@social.linux.pizza
2024-05-05 12:35:15

Hacktivisti filo-russi in cerca di sistemi OT. Le password di default nel mirino
poliverso.org/display/0477a01e
Hacktivisti filo-russi in cerca di sistemi OT. Le password di default nel mirino Sullo sfondo del terzo…

@burger_jaap@mastodon.social
2024-03-05 13:03:53

🇬🇧Demand flexibility modelling by 🐙Centre for Net Zero shows:
"EV flexibility can absorb over 15TWh of otherwise wasted wind and solar by 2035; similar levels of fossil fuel generation are prevented."
One of the key takeaways: make smart charging the default now

EV flexibility brings significant benefits in succesfully integrating renewables. In particular, during the early stages of rollout; a critical mass (e.g. around a quarter) of flexible EVs could achieve outsized benefits. As part of supporting EV adoption and charging infrastructure, policy should seek to encourage flexible charging as the default.
@aral@mastodon.ar.al
2024-03-03 13:48:51

You can now create HTML and CSS fragments in Kitten.
This introduces two new file extensions (.fragment.html and .fragment.css) and you can import these fragments into your pages and into other components and fragments as if they were JavaScript modules*.
HTML fragments also support slots.
Example:

Screenshot of terminal window on left, web browser on right.

Terminal window has hx (Helix Editor) 
running, showing 23 lines of code, with the first two highlighted:

import Styles from './Styles.fragment.css'
import Markup from './Markup.fragment.html'

export default async () => kitten.html`
  <page css>
  <h1>HTML and CSS fragments</h1>

  <${Markup}>
    <div>I’m content from index.page.js for the default slot.</div>
    <content for='other'>
      <div>I’m content from index.page.js for …
Screenshot of terminal window showing hx (Helix Editor) with two panes.

Left pane, selected, shows source of Markup.fragment.html:

<div class='box'>
  <p>I’m some HTML from Markup.fragment.html.</p>

  ${SLOT}

  <p>I’m some other HTML Markup.fragment.html.</p>

  ${SLOT.other}
  
  <p>I’m yet more HTML Markup.fragment.html.</p>
</div>

Right pane shows source of Styles.fragment.css:

/* I’m some CSS */
:root {
  --accent-colour: red;
  --border-width: 2px;
}

div {
  border: var(--border-wid…
@privacity@social.linux.pizza
2024-05-03 15:52:14

This Week in Security: Default Passwords, Lock Slapping, and Mastodown
poliverso.org/display/0477a01e
This Week in Security: Default Passwords, Lock Slapping, and Mastodown The UK has the answer to all our IoT probl…

@Techmeme@techhub.social
2024-03-05 03:01:09

X's audio and video calls, which are enabled by default, are peer-to-peer, revealing users' IP addresses to each other, unless they enable a privacy setting (TechCrunch)
techcrunch.com/2024/03/04/elon

@aral@mastodon.ar.al
2024-04-30 14:23:17

Just wrote a note about a little gotcha with default values for destructured properties of parameter objects in JavaScript that has gotten me a few times:
codeberg.org/aral/gists/src/br

@Techmeme@techhub.social
2024-03-05 03:01:09

X's audio and video calls, which are enabled by default, are peer-to-peer, revealing users' IP addresses to each other, unless they enable a privacy setting (TechCrunch)
techcrunch.com/2024/03/04/elon