- 6 Posts
- 25 Comments
This2ShallPass@lemmy.worldto
Technology@lemmy.world•Rivian Tore Apart A Xiaomi EV And Discovered What America Can’t Match | CarscoopsEnglish
654·11 months agoWhy did they need to tear it apart to discover the advantage was government funding? It this just a click bait headline?
This2ShallPass@lemmy.worldto
Technology@lemmy.world•Mozilla to Require Data-Collection Disclosure in All New Firefox ExtensionsEnglish
28·11 months agoIt is possible that any developer could just say “none” even if the extension does collect data? If it has to be manually disclosed, this won’t stop malicious actors. Only trustworthy extension developers would disclose this.
This2ShallPass@lemmy.worldto
linuxmemes@lemmy.world•Somehow *this* is what's going to convince me to distro hop.
8·11 months agoYou can customize the logo. Raspberry Pi OS displays as Debian by default but you can force it to be the Raspberry Pi logo.
This2ShallPass@lemmy.worldto
Selfhosted@lemmy.world•Selfhosting Sunday! What's up?English
4·1 year agoJust discovered TinyAuth and it is fantastic. I am replacing Authentik with it because it has what I want but is much faster, smaller, and simpler. Also, the license is FOSS.
This2ShallPass@lemmy.worldto
linuxmemes@lemmy.world•Discovering GNOME extensions may have been a mistake.
13·1 year agoI wish Xpenguins still worked. Who doesn’t want penguins walking all over the desktop?
This2ShallPass@lemmy.worldto
Selfhosted@lemmy.world•Pi-hole client filtering without DHCP?English
2·1 year agoYou don’t need DHCP, you can just use DNS and then set up different blocking groups based on the device.
The problem with this solution is that is it opt in. You would need to change all the wifi settings on each device separately to point to Pi-Hole as the DNS. This is something that could easily be disabled as a 12 year old would probably be able to figure out how to change the settings on their mobile devices or computer with a Google search.
This2ShallPass@lemmy.worldto
Linux@programming.dev•Why Microsoft open sourced PowerShell and ported it to Linux
1·1 year agoTIL. Looks like I will be installing Nushell. This is neat. Especially how everything returns the final value.
I don’t know of any comprehensive source but there are a few basic things you that I do.
- Ensure sudo is on the system so that root account is not used.
- Get a secure browser that with add ons to protect against malicious sites (https everywhere, JavaScript blockers, etc…)
- Download software from trusted repositories and verify with GPG keys or hashes. Be wary on installing anything using a shell script with super user access.
- Use keys instead of passwords for ssh if you are going to use ssh.
- Password tools like Vaultwarden and KeePass can help secure passwords.
- You can encrypt your hard drive with LUKS before you install Linux with many distros.
- Flatpak (Docker as well) can allow you to run applications with limited access to your system much like phone apps on Android. This can be more secure but comes with larger app sizes and limits what you can do with the app sometimes (e.g. browsers not being able to upload files because they don’t have full filesystem access)
- If you want a firewall on your workstation (not needed much anymore with hardware firewalls from routers), UFW makes it easy
- If you want to check for viruses use ClamAV (ClamTK for a GUI app).
This2ShallPass@lemmy.worldto
Selfhosted@lemmy.world•What are the minimum or recommended requirements for a personal home server?English
12·1 year agoA raspberry pi 4 or 5 and some fast USB 3 hard drives.
This2ShallPass@lemmy.worldto
Selfhosted@lemmy.world•What webapps do you selfhost that aren't media/game servers?English
2·1 year agoPyLoad isn’t a container I run 24/7 because the use cases are a bit limited. Basically, if I have a large list of files that I want to pass to my NAS (perhaps a list from something like DownThemAll) that won’t complete in a short sitting, I will pass that list to PyLoad so it can just run the background.
I once downloaded about 2,000 or so office files and tools like this have let me do that automatically.
This2ShallPass@lemmy.worldto
Selfhosted@lemmy.world•What webapps do you selfhost that aren't media/game servers?English
1·1 year agoExactly, since KasmVNC can run GUI programs in the browser and the Linux server.io base image is just Debian, it was trivial to just run it with Emacs instead. I much prefer Emacs over VS Code because of Org Mode. While VS Code works well in a browser. It isn’t what I wanted.
Here is where I have posted my Emacs Dockerfile. It might be a little out of date. Emacs Docker
EDIT: The Dockerfile also installs the fonts I like for Emacs along with git and hunspell.
EDIT: You could also probably achieve something similar with a Docker container run ning Apache Guacamole.
This2ShallPass@lemmy.worldto
Selfhosted@lemmy.world•What webapps do you selfhost that aren't media/game servers?English
3·1 year agoYou can use the Linuxserver.io VSCodium Image and replace VSCodium with Emacs in the Dockerfile.
This2ShallPass@lemmy.worldto
Selfhosted@lemmy.world•What webapps do you selfhost that aren't media/game servers?English
9·1 year ago- Calibreweb
- FreshRSS
- Grampsweb
- Emacs
- Gitea
- Stirling-PDF
- Vaultwarden
- Pihole
- Pyload
- Glances
- Syncthing
- Homepage
- Karakeep
This2ShallPass@lemmy.worldto
Selfhosted@lemmy.world•Finance / Investment self-hosted apps?English
7·1 year agoFirefly III is an option, but I found it difficult to set up and the importer tool works well for Europe but not the US.
You could also just create your own Docker container which has Skrooge, GnuCash, or KMyMoney in it. I have done this with Skrooge since it imports data well and is simpler than GnuCash.
With the Linuxserver.io KasmVNC base image and install any GUI application to run it from a browser.
This2ShallPass@lemmy.worldOPto
Emacs@lemmy.world•Emacs Weekly Tips, Tricks, or QuestionsEnglish
2·1 year agoI think in many ways it feels like a more traditional spreadsheet, but I could see where it could also be a bit more difficult for some than Org tables.
All the cells and numbers are similar to that such as other spreadsheet programs like Excel (A1, B1… etc). Formulas are entered below at the bottom of the buffer using Emacs lisp. These will be hidden unless you widen the buffer. This could be a challenge for some compared to the syntax for Org tables. Although, if you are comfortable juggling all the parentheses in Excel formulas, Lisp should be similar in many ways.
Here is a good Outline.
This2ShallPass@lemmy.worldOPto
Emacs@lemmy.world•Emacs Weekly Tips, Tricks, or QuestionsEnglish
2·1 year agoFor those who don’t know. Emacs has a built in spreadsheet called Simple Emacs Spreadsheets or SES.
Alternatively, tables in Org mode can also be set up to act like spreadsheets as well and they come with robust options for calculations, plotting with Gnuplot, or importing the data into source code blocks.


Perhaps you have vim-tiny installed by default on your distro rather than just vim?