@56_@lemmy.ml avatar

56_

@56_@lemmy.ml

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

A RULE SPY'S IN THE BASE?! (lemmy.blahaj.zone)

I searched up “Lemmy” on the PlayStore and noticed that Reddit appears right before the last lemmy client in that search X3 do u guys know if there r any other lemmy clients worth trying? I randomly felt like trying all I could find and for now I’ll stay on Jerboa and the Web UI but I use Voyager too now, mainly for DMs...

56_,
@56_@lemmy.ml avatar

I’m not sure I agree on the trust thing. I prefer to trust a single source of curated apps, rather than many individual developers. I like to imagine that f-droid would remove a malicious update before it gets to my phone.

56_,
@56_@lemmy.ml avatar

mailbox.org doesn’t seem to enable end to end encryption by default. They are privacy focussed (no advertising), and use open source software.

56_,
@56_@lemmy.ml avatar

(I found it at 19:15, though I’m not sure why I went looking)

56_,
@56_@lemmy.ml avatar

It should be held back. Although I dislike the company, I believe safari’s market share and use of an alternative browser engine is important in keeping google from closing the web.

56_,
@56_@lemmy.ml avatar

The term “master” is often used with the term “slave” in computing: en.wikipedia.org/wiki/Master-slave_(technology)
So it wouldn’t be odd to assume that git’s use of the term “master” also refers to slavery.

Grainy photo of my cat sleeping sitting up (lemmy.ml)

Roto-Borola usually likes to hang out with me when I’m working at my desk. Earlier today my wife snapped this photo of him chilling by me. Every so often he sits like this, but I think this is the first time we’ve seen him nap in this position. I laughed a little and it woke him up, he looked at me and did a loud meow and...

56_,
@56_@lemmy.ml avatar

Blurry pictures of cats was one of my favourite subreddits on reddit. I’m glad to see it already exists on Lemmy: !blurrypicturesofcats

56_,
@56_@lemmy.ml avatar

Similar to other people:
laptop-56
phone-56
server-56 (or the actual domain name…)
…palmtop-56 (I’m not sure if that’s actually possible)

I like the look of all-lowercase hyphenated words. And “56” is a conveniently short identifier I use for myself.

56_,
@56_@lemmy.ml avatar

A comment on a post about a different instance suggested clearing browser cache/cookies. It’s not something I’ve run into though.

56_,
@56_@lemmy.ml avatar

mailbox.org provides bog standard email, from a trustworthy company - no advertising, etc… No fancy security features outside of the usual though. I use the 1€ per month option.

56_,
@56_@lemmy.ml avatar

Hmm. I had it pop up for the first time in ages today, but updating filters and clearing cookies did the trick.

56_,
@56_@lemmy.ml avatar

I just saw this for the first time today, 11 days after seeing this post. A person I was with suggested it grew mostly on beech wood.

56_, (edited )
@56_@lemmy.ml avatar

I went with local shipwrecks for my cats (Mim and Ida).

56_,
@56_@lemmy.ml avatar

I just chop the cheese into small bits. One less thing to wash, and pretty much just as fast.

56_,
@56_@lemmy.ml avatar

I usually chop other stuff as well as the cheese. I started doing this when I didn’t have a grater, and discovered it wasn’t as slow/awkward as I had assumed. The result isn’t the same as grating, but it does the job most of the time.

56_,
@56_@lemmy.ml avatar

I think it’s just normal Lua code.

Here’s a quick json converter (based on stackoverflow.com/a/55575074), assuming you have lua installed:


<span style="font-weight:bold;color:#a71d5d;">local function </span><span style="font-weight:bold;color:#795da3;">to_json</span><span style="color:#323232;">(obj)
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">local</span><span style="color:#323232;"> result </span><span style="font-weight:bold;color:#a71d5d;">=</span><span style="color:#323232;"> {}
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">for</span><span style="color:#323232;"> key, value </span><span style="font-weight:bold;color:#a71d5d;">in </span><span style="color:#62a35c;">pairs</span><span style="color:#323232;">(obj) </span><span style="font-weight:bold;color:#a71d5d;">do
</span><span style="color:#323232;">        </span><span style="font-weight:bold;color:#a71d5d;">if </span><span style="color:#62a35c;">type</span><span style="color:#323232;">(value) </span><span style="font-weight:bold;color:#a71d5d;">== </span><span style="color:#183691;">"string" </span><span style="font-weight:bold;color:#a71d5d;">then
</span><span style="color:#323232;">            value </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#62a35c;">string.format</span><span style="color:#323232;">(</span><span style="color:#183691;">"</span><span style="color:#0086b3;">"</span><span style="color:#183691;">%s</span><span style="color:#0086b3;">"</span><span style="color:#183691;">"</span><span style="color:#323232;">, value)
</span><span style="color:#323232;">        </span><span style="font-weight:bold;color:#a71d5d;">elseif </span><span style="color:#62a35c;">type</span><span style="color:#323232;">(value) </span><span style="font-weight:bold;color:#a71d5d;">== </span><span style="color:#183691;">"table" </span><span style="font-weight:bold;color:#a71d5d;">then
</span><span style="color:#323232;">            value </span><span style="font-weight:bold;color:#a71d5d;">=</span><span style="color:#323232;"> to_json(value)
</span><span style="color:#323232;">        </span><span style="font-weight:bold;color:#a71d5d;">end
</span><span style="color:#323232;">        </span><span style="color:#62a35c;">table.insert</span><span style="color:#323232;">(result, </span><span style="color:#62a35c;">string.format</span><span style="color:#323232;">(</span><span style="color:#183691;">"</span><span style="color:#0086b3;">"</span><span style="color:#183691;">%s</span><span style="color:#0086b3;">"</span><span style="color:#183691;">:%s"</span><span style="color:#323232;">, key, value))
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">end
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">return </span><span style="color:#183691;">"{" </span><span style="font-weight:bold;color:#a71d5d;">.. </span><span style="color:#62a35c;">table.concat</span><span style="color:#323232;">(result, </span><span style="color:#183691;">","</span><span style="color:#323232;">) </span><span style="font-weight:bold;color:#a71d5d;">.. </span><span style="color:#183691;">"}"
</span><span style="font-weight:bold;color:#a71d5d;">end
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">function </span><span style="font-weight:bold;color:#795da3;">item</span><span style="color:#323232;">(obj)
</span><span style="color:#323232;">    </span><span style="color:#62a35c;">print</span><span style="color:#323232;">(to_json(obj))
</span><span style="font-weight:bold;color:#a71d5d;">end
</span><span style="color:#323232;">
</span><span style="color:#62a35c;">dofile</span><span style="color:#323232;">(arg[</span><span style="color:#0086b3;">1</span><span style="color:#323232;">])
</span>

It just defines the item function to print json, and executes the data file.

arg[1], the first command line argument, is the path to the data file:


<span style="color:#323232;">$  lua to_json.lua path/to/datafile.list
</span>

and pipe the output to something.json or whatever else you want to do.

56_,
@56_@lemmy.ml avatar

This doesn’t make sense. The earth moves at very different speeds depending on what you compare it to. The only thing that makes sense is for the teleportation to be relative to the teleporter. Maybe it would still require taking into account rotation, instead of linear momentum. idk, still seems complicated.

56_,
@56_@lemmy.ml avatar

Are the forum and documentation links the wrong way round?

56_,
@56_@lemmy.ml avatar

Most TV operating systems are already non-android linux based. They mostly just run webapps.

56_,
@56_@lemmy.ml avatar

Nextcloud/Owncloud has federation support, though I’ve never tried it. You can also join existing servers, like you can with other fediverse things (though most of them aren’t free): nextcloud.com/providers/

56_,
@56_@lemmy.ml avatar

I think the second part of the comment is what’s important:

If you are in a more comfortable environment you will be better at working

Maybe that is windows for you. I have barely ever used windows, so the concept of searching for installers online and running them just seems clunky and time consuming to me. It’s just not what I’m used to.

However if you are willing to learn multiple systems, you might find that one is better than the others.

56_,
@56_@lemmy.ml avatar

I assumed “spelt” was wrong, but an internet search tells me both are correct.

56_,
@56_@lemmy.ml avatar

I usually get 5-10 Mbps download during peak times, which is enough for 720p YT and decent video calls. I really don’t understand why people always need faster and faster internet. Although I just checked, and I’m getting 60 down just now, which is way more than I have ever seen.

56_,
@56_@lemmy.ml avatar

yeah, my IP changed once in 5 years or so.

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