@pnutzh4x0r@lemmy.world avatar

pnutzh4x0r

@pnutzh4x0r@lemmy.world

This profile is from a federated server and may be incomplete. Browse more on the original instance.

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

Not a bad idea… would be pretty cool and phtn.app is much more accessible than photon.xylight.dev.

I guess a related question is what is your vision for how users would typically use Photon. Do you want to host a single/main application that many users end up using or would you rather have instances (or individuals) deploy their own applications (ie. nu.lemdro.id)? or possibly both?

If the former, then phtn.app makes sense. Otherwise, just photon.xylight.dev is fine since it would sort of encourage others to deploy their own.

Another thought: if you follow through on making Photon into a PWA, then phtn.app would probably fit into that branding, more so than photon.xylight.dev.

The Eupnea Project - Booting a full linux system on your Chromebook using Depthboot (eupnea-linux.github.io)

Depthboot is a builder script that creates a bootable USB drive/SD-card that can be booted on any x86_64 Chromebook. It supports common Linux distributions(Pop!_OS, Ubuntu, Arch and Fedora) and a variety of the most popular desktop environments. Due to licensing restraints, Depthboot cannot be distributed as an iso. Instead, it...

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

My friend has deployed Phorge for himself and appears to be happy with it.

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

Not sure about studio quality, but for video conferencing and doing some Twitch streams, I’ve being using a Blue Yeti Nano USB microphone for a few years (since COVID) with no issues on Linux.

.bin/check_installed.sh:fc:3: no such event: 1 when trying to run a set of commands from script that work fine when ran in the terminal directly

Hello everyone. I wrote this command in the terminal directly and got the desired and expected output - that being the last 50 occurrences of me installing or removing a package with pacman or yay: history | grep -e ‘pacman -Ss’ -e ‘pacman -Rs’ -e ‘yay -Ss’ -e ‘yay -Rs’ | tail -n 50 > ~/history_installed...

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

I think the issue is that history is a shell built-in and not an actual program (ie. external command) and it typically only works in an interactive shell session.

A workaround could be to access the $HISTFILE directly:


<span style="color:#323232;">{cat $HISTFILE | grep ...
</span>

Of course, you can use also just do:


<span style="color:#323232;">{grep -e ... $HISTFILE | ...}
</span>

if you are opposed to the cat at the beginning.

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

An alternative to making a shell script is to make an alias or a function instead. That way, it runs in your current shell session and you can access the history command.

Additionally, you could always dump the output of the history command outside the shell script and then run the shell script on that file after you have dumped it.

A Texas A&M professor was suspended for allegedly criticizing lieutenant governor

A Texas A&M University professor was suspended, investigated and ultimately cleared of any wrongdoing for allegedly criticizing Texas Lt. Gov. Dan Patrick during a lecture about the opioid crisis. The probe has free speech advocates concerned about political influence over academia in Texas.

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

With all the recent fixes and features, Photon is now my default lemmy client :]

Thanks to @Xylight for starting this project and being so responsive on GitHub (I’m @pbui).

Curious about COSMIC - News and screenshot #2 (lemmy.world)

I’m not a System76 developer, but I’m excited about the new Rust based COSMIC desktop environment and like to share progress as I see it. Even though it’s still pre-alpha software I think it’s usable as a casual desktop that does some browsing, editing and communication type tasks. A little knowledge of controlling the...

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

COSMIC is looking great! Do you have any comments about the state of the widgets and how those are working?

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

Nothing specific in mind, just wanted to get a general sense of how the work is progressing. Thanks for sharing your experience!

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

It’s unfortunate, but the reality is that many of the proprietary services are… free, convenient, and where the people are.

Most projects do not have a lot of funding, so it makes sense to use low cost platforms with the least amount of friction. I think most developers are aware of the risks and trade-offs, but make a pragmatic decision to use these proprietary services b/c the benefits for them outweigh the costs.

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

Pop is not using Wayland yet … the current GNOME based DE still uses Xorg. COSMIC, however, will use Wayland.

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

Yes, I’ve run into this issue recently. The /boot/efi folder is actually its own partition, so removing packages from / will not give your more space for the efi partition. On my recentish Pop install, the /boot/efi partition is about 512MB which is just about enough space for two kernels but… not much else (they may have increased this to 1GB for new installs).

The workaround I did was to simply delete one of the kernels in /boot/efi/EFI/Pop_OS-… (the is some string of letters). In this folder you should have the following:

<pre style="background-color:#ffffff;">
<span style="color:#323232;">$ ls -l /boot/efi/EFI/Pop_OS-f2c685b9-a9c2-48f0-907b-ebe199e94a55
</span><span style="color:#323232;">total 289256
</span><span style="color:#323232;">-rwx------ 1 root root       167 Jul 12 15:24 cmdline
</span><span style="color:#323232;">-rwx------ 1 root root 134046998 Jul 12 15:24 initrd.img
</span><span style="color:#323232;">-rwx------ 1 root root 134449391 Jul 12 15:24 initrd.img-previous
</span><span style="color:#323232;">-rwx------ 1 root root  13844192 Jul 12 15:24 vmlinuz.efi
</span><span style="color:#323232;">-rwx------ 1 root root  13846496 Jul 12 15:24 vmlinuz-previous.efi
</span>

As you can see, Pop stores the current kernel (vmlinuz) and ramdisk (initrd) along with the corresponding previous versions in case you need/want to revert back to the previous kernel. To free up some space, you can simply delete either the initrd.img-previous or vmlinuz-previous.efi file if you are not using the previous kernel. That should allow you to then download the firmware and update it.

After the firmware update, if you want to restore the previous (backup) kernel, you can copy it from /boot back to the efi folder above. Otherwise, the next kernel update will replace it for you anyways.

I hope this helps, good luck.

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

Ok, good to know that it isn’t just me.

pnutzh4x0r,
@pnutzh4x0r@lemmy.world avatar

According to @soller, they are still evaluating different CPUs… it’s just that Intel provides information publically and so they can release it under the GPLv3 right now:

fosstodon.org/@soller/110701645325067411

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • kavyap
  • DreamBathrooms
  • thenastyranch
  • ngwrru68w68
  • modclub
  • magazineikmin
  • Youngstown
  • osvaldo12
  • rosin
  • slotface
  • khanakhh
  • mdbf
  • GTA5RPClips
  • provamag3
  • tacticalgear
  • InstantRegret
  • cubers
  • tester
  • ethstaker
  • everett
  • Durango
  • cisconetworking
  • normalnudes
  • anitta
  • Leos
  • megavids
  • lostlight
  • All magazines