Deckweiss

joined 1 year ago
[–] Deckweiss@lemmy.world 1 points 12 hours ago (2 children)

downside that made me move from debian:

dist upgrades broke all the time, because I had software installed from PPAs.

[–] Deckweiss@lemmy.world -4 points 12 hours ago* (last edited 12 hours ago) (1 children)

My IDE can do that for me. And it was able to do that pre AI boom. Yes, the code ends up more verbose, but I just collapse it.

So from a modern dev UX perspective, this shouldn't be a major difference.

[–] Deckweiss@lemmy.world 3 points 1 day ago* (last edited 1 day ago) (5 children)

GrapheneOS sometimes sacrifices privacy for security.

I had way more privacy related features and controls on a rooted LineageOS phone (which was obviously much less secure)

[–] Deckweiss@lemmy.world 4 points 1 day ago* (last edited 1 day ago) (1 children)

There is probably no out of the box solution, but if you want to give it a go and hack it together, this combination might work (or it might not, I don't think anybody tried yet)

https://github.com/linuxserver/docker-webtop

&

https://gitlab.com/android_translation_layer

[–] Deckweiss@lemmy.world 10 points 2 days ago (10 children)

Huh?

I've been running radicle for a while to sync my desktop and mobile calenders without any hiccups ever.

[–] Deckweiss@lemmy.world 1 points 4 days ago (1 children)

Not op but I've looked at the examples for 15minutes out of curiosity and I still have no idea what the fuck they mean by that.

[–] Deckweiss@lemmy.world 4 points 6 days ago

the window rules one really fucks me up.

It stopped working at the beginning of the year for me and nobody gave a shit about the bug reports.

Now I have to keep juggling windows and their sizes every day like a caveman.

[–] Deckweiss@lemmy.world 11 points 6 days ago* (last edited 6 days ago) (1 children)

Income from Steam is what ultimately made gaming on Linux viable. And to do that, they made significant open source contributions.

So I'll keep giving them money of course.

[–] Deckweiss@lemmy.world 4 points 1 week ago* (last edited 1 week ago)

Depends on the career path. Some need only the very basics - for example in frontend development, you'll mostly use % and basic +/-.


tbh. Most of the useful programming related knowledge you'll learn at yoyr first job, not at uni.

The curriculum sometimes will force you to learn something unrelated to your career and it has multiple purposes:

People learn the fastest in the topic where they already know a lot. And the slowest where they know very little.

Learning stuff outaide of your comfort zone literally works out your brain. You learn to learn. And your thinking becomes more flexible.

You should not become somebody who is only good at one narrow singular task and a complete idiot at anything else.

You never know if it becomes useful later in life. So I suggest still trying to do your best at any topic. And studying more for the exams where you are not as proficient.


As to which career path to go for:

Don't be afraid to change midway, but make sure that you enjoy it. If you enjoy compsci, keep at it. (Or if you have student loan, put some more thought into the cost of switching).

[–] Deckweiss@lemmy.world 1 points 1 week ago* (last edited 1 week ago) (1 children)

Thats great!

But I think we need to look at it from the perspective of somebody migrating from GitHub. If OP is used to the GitHub GUI and uses it extensively in their workflow, they will probably be very frustrated while trying to do the same on sr.ht .

[–] Deckweiss@lemmy.world 7 points 1 week ago* (last edited 1 week ago)

Whats your website stack?

How do you host it?

Share the link to your site or an example log so that we can check out what kind of data needs storing.

There are several ways to store some data either on the users end or on the backend, with different pros and cons. But which one you should pick is highly dependent on the stack and the details of your needs.

 

Repost from: https://libreddit.nl/r/linux_gaming/comments/1d8qi81/phoronix_birthday_20_years_of_great_linux_content/

He really seemed downbeat in his announcements regarding the birthday. He really puts a lot of work into the site but having a niche audience of tech literate users is probably the worst place to be with ad sales tanking as they do. If anybody is using adblockers, it's us and people are cheap.

I really hope the guy has a nice birthday and gets lots of love and donations. The phoronix content is always great and I've been a long time reader. (I've donated the same amount as OP - see my screenshot)

113
submitted 6 months ago* (last edited 6 months ago) by Deckweiss@lemmy.world to c/linux@lemmy.ml
 

I was reading the reddit thread on Claude AI crawlers effectively DDOSing Linux Mint forums https://libreddit.lunar.icu/r/linux/comments/1ceco4f/claude_ai_name_and_shame/

and I wanted to block all ai crawlers from my selfhosted stuff.

I don't trust crawlers to respect the Robots.txt but you can get one here: https://darkvisitors.com/

Since I use Caddy as a Server, I generated a directive that blocks them based on their useragent. The content of the regex basically comes from darkvisitors.

Sidenote - there is a module for blocking crawlers as well, but it seemed overkill for me https://github.com/Xumeiquer/nobots

For anybody who is interested, here is the block_ai_crawlers.conf I wrote.

(blockAiCrawlers) {
  @blockAiCrawlers {
    header_regexp User-Agent "(?i)(Bytespider|CCBot|Diffbot|FacebookBot|Google-Extended|GPTBot|omgili|anthropic-ai|Claude-Web|ClaudeBot|cohere-ai)"
  }
  handle @blockAiCrawlers {
    abort
  }
}

# Usage:
# 1. Place this file next to your Caddyfile
# 2. Edit your Caddyfile as in the example below
#
# ```
# import block_ai_crawlers.conf
#
# www.mywebsite.com {
#   import blockAiCrawlers
#   reverse_proxy * localhost:3000
# }
# ```
138
submitted 9 months ago* (last edited 9 months ago) by Deckweiss@lemmy.world to c/piracy@lemmy.dbzer0.com
 

I have bought a font with a really shitty license agreement and I have a couple of questions.

  1. How can I best share the font with the community? (I am afraid of metadata in the font files, which may be tied to my payment account etc. - I had to register and log in to download the ttf files)

  2. How can I remove the DSIG and other metadata from the ttf file while keeping it usable?

  3. Are they able to detect it if I use the font in a commercial product online by crawling my website and if yes, how could I prevent an automatic detection attempt?

To my (and possibly your) surprise, I didn't find any free downloads of the font online. Their license is tied to a personal account, you have to log into once a year to keep the license. As far as I understand they theoretically could use the DSIG to let the ttf files "expire", at least when used in software that verifies the signature. But I may be wrong, please let me know.

Thanks in advance and cheers-I mean ARR

15
submitted 10 months ago* (last edited 10 months ago) by Deckweiss@lemmy.world to c/datahoarder@lemmy.ml
 

Sorry for not doing much research beforehand and asking a newbee question. I am looking for some entrypoint info to the question:

How would one go about datahoarding lemmy?

It seems to be a grade above what I've been doing so far (downloading video/audio from streaming platforms and backing up web articles and blogposts as pdfs) due to the distributed nature and the activitypub protocol.


Relevant stuff that I've found so far but havent studied extensively:

  1. This does not seem to store most of the data https://github.com/tgxn/lemmy-explorer
view more: next ›