[-] mranderson17@infosec.pub 22 points 1 week ago

This probably won't help with EA and the like adding kernel-level anti-cheat 6 months after release....

[-] mranderson17@infosec.pub 18 points 3 months ago

Or add EA anti-cheat 6 months after release like they did for EA WRC.

[-] mranderson17@infosec.pub 20 points 3 months ago* (last edited 3 months ago)

Gatgetbridge (your link) has a breakdown of devices they support https://gadgetbridge.org/gadgets/ . You can click through the vendors to find devices which are both "highly supported" and "no vendor-pair". Meaning most/all the features work without any reliance on the vendor app.

As for the similarity you are asking about with pixel->GrapheneOS, there are very few watches that can run an alternative open source firmware or operating systems apart from the ones that are already open source, like bangle.js, pinetime, etc. Wearables are even more specialized than phones, they require specialized code designed specifically for them and would likely require pretty extreme effort to reverse-engineer.

I use a pebble 2 HR with gadgetbridge but the watch it self runs the old pebble firmware which gadgetbridge talks to. This is fine for me, but if you are looking for a more modern watch you may have to make some compromises.

[-] mranderson17@infosec.pub 19 points 7 months ago

Nextcloud AIO is not the only way to run Nextcloud in docker. For example you can use the Nextcloud docker repository and docker-compose for which there are many examples. I've been running Nextcloud this way for many years now without any un-recoverable issues, and no issues at all that weren't caused by me. Upgrading is also very easy since you simply increment the version in docker-compose.yml and restart the service.

That said the NixOS suggestion from @StrawberryPigtails@lemmy.sdf.org looks really neat and I may try that out soon my self since I've never played with NixOS before and it seems like a good excuse to do so.

[-] mranderson17@infosec.pub 41 points 7 months ago

Ok, I'm prepared to be downvoted today so here goes.

Nextcloud is an enterprise cloud suite. The one you run in docker on your rpi (or whatever) is the same one that is run at a company, albeit with more high availability and redundancy, but the same application, proxies, caching, db, etc. Nothing is stopping you from running the stable channel and testing your upgrades, or even rolling out specific stable client versions to your devices.

Said companies often have teams (more than one person) to run it, stage upgrades, automated testing, automated backups, monitoring, etc. They go to work and do just that, maybe not every day but at least a couple times a week their focus is Nextcloud and only Nextcloud.

What many people in the self hosting community do is spin up docker, without ever having touched docker before, and try to run Nextcloud, forget that it exists, and then upgrade it a year later across multiple versions without maintaining the database. Then they obsess about how fast an app loads by refreshing it a whole bunch, and then complain on internet forums that it sucks. This, like many posts, doesn't have a specific problem for us to help with, no logs or stack traces have been posted, and the subject of the complaint shows just how terrible your understanding of application security is.

So, while there is legitimate criticism of some of Nextcloud's design choices, this isn't it. And at the risk of sounding a little gatekeepy, if you post "nextcloud updates break everything" with no context you probably should spend some time gaining a better understanding of how internet facing services work and make an attempt to fix the problem (probably misconfiguration, and in this desktop client case probably a heap of un-updated local software installed alongside the client), which I'm sure people would find if they did the bare minimum of reading a few log files or any of the other things that come with being an application admin.

[-] mranderson17@infosec.pub 41 points 8 months ago* (last edited 8 months ago)

https://lemmy.ml/comment/8576827

It requires a login to use it...

[-] mranderson17@infosec.pub 31 points 9 months ago

“An attacker would need to be able to coerce a system into booting from HTTP if it's not already doing so, and either be in a position to run the HTTP server in question or MITM traffic to it,” - Matthew Garrett

Summary left out a quite important bit.

1
Periodic 500 errors (infosec.pub)

I'm receiving periodic 500 server errors when viewing posts for about the last week. It's pretty infrequent but definitely still happening.

I've also noticed that viewing some images has been problematic, sometimes requiring a few tries to get them to appear. Likely the same issue there.

Anyone else noticed this?

1

Got the TM R383 Mod wheel all mounted and everything is working. I'm doing more driving than debugging which is a sign that I think it's near done.

The OpenFFBoard has shift register support so with no modification to the wheel other than a coily cable I was able to get all the buttons working. I designed some adapters to mount to an ebay QR (highly recommend this one called "For Racing Simulator Simagic Moza 70mm Steering Wheel Quick Release+Wheel Base" on ebay) which is rock solid. I was all ready to machine the adapter flanges out of metal but I put the prototypes on to check the fit and they were so rigid there's no point in taking the time to do it. It feels easily just as solid as my real car. Kindof amazing considering the threads are even printed into the PLA, no heatserts or anything.

Feel free to let me know if you want the FreeCAD models, I suspect at least the 70mm wheel side adapter would be compatible with other TM wheels too. I use the RT FreeCAD branch so they won't work in normal FreeCAD unfortunately.

It's running at about 14Nm right now, I don't have a thermister on the motor coils so I'm trying to be a bit conservative however I'm pretty sure 14Nm peak is way way more than I need personally. The motor and supporting hardware should technically support about 22 but I don't think I'll ever push it that hard. 14Nm is scary enough.

[-] mranderson17@infosec.pub 22 points 9 months ago

Mosh hasn't had a release in quite a while (Oct 2022). While that's not that old, and there does appear to be somewhat active development, it's a little slow moving for something that might be open to the internet directly. I used to use it but ssh with tmux is mostly fine and makes me feel a little safer because of their wider use.

[-] mranderson17@infosec.pub 34 points 9 months ago* (last edited 9 months ago)

I use FreeCAD and Assembly3 for everything and have for many years now. I sometimes use realthunder's fork of FreeCAD but right now it's quite a bit behind upstream and there are some cool new features in sketcher so I use upstream for those.

Some people get confused about workflow in FreeCAD because there are so many options and every youtube video has different opinions or tries to feature a particular workbench like curves or something. My opinion.... Pretty much your workflow starting out should be to ignore everything else and use part design and sketches, it's the simplest way:

  1. enable autosave with a short interval, like 2min

  2. Switch to part design workbench

  3. create body

  4. create sketches as the base of the features of your part attached to the xy, xz, yz planes, offset them to create a "wire frame" that resembles your project

    a. Your sketches should be fully constrained

    b. Your sketches should have as little geometry in them as possible, if you need more complex stuff make more sketches

    c. Your sketches should have closed wires, you can't pad something that doesn't create a face.

  5. use pad, pocket, revolution, loft, and hole operations on those sketches to form a 3d solid

  6. if you need to create additional sketches which import geometry from the previous operations (using the external geometry tool), import SKETCH geometry from the previous ops, not edges of solids, whenever possible. Hide your solid, unhide your sketch, select that with the external geometry tool.

    a. Use sketch on face sparingly.

  7. Do fillets and chamfers last, if you need to change something, delete them and recreate them once you've made your changes.

To make multiple parts make multiple bodies with the same workflow as above.

Once you get pretty good at making static parts with constrained geometry, holes, threads (with the hole function), etc, which you can do with only the stuff above, then you can branch out into other workbenches like assemblies or curves, but all of those things build on the concepts above, so it's easy to get overwhelmed if you try to do it all right from the start. Learning how to recover from a mistake is just part of CAD in general, though I admit that it's a bit more effort to find what's wrong in FC vs commercial platforms, but we aren't here, on lemmy, in a linux community, to use commercial platforms.

AFAIK that's pretty much the same workflow as F360 uses for single-solid parts though things have different names. pad=extrude for example.

It's obviously far from perfect but in my opinion it's the best solution that runs natively on Linux and is actually open source. Also assembly3 uses solvespace as it's backend solver so if you make assemblies using that you are kindof using solvespace too.

Also, I hear/read a lot of complaining about instability but I've honestly never had a crash that wasn't on an experimental branch like RT or the edge release of upstream. However step 0 above should help if you're worried about that.

1
submitted 1 year ago* (last edited 1 year ago) by mranderson17@infosec.pub to c/diysimulators@discuss.tchncs.de

A quick test, without a wheel attached to the spindle, of the openffboard running on Linux in BeamNG.drive. It took a while to get here as I'm not very knowledgeable with motor drivers but it seems to work so far.

Next step will be to fabricate a bracket to mount it to my rig. Since this video I have mounted a wheel and done some driving. The feel is pretty good, the motor is only 6NM which in DD land is a little on the low side but it's incredibly smooth.

Hardware:

OpenFFBoard (purchased assembled) Project Link Github Link

ODrive S1

Baldor BSM90N-1150AFP (ebay auction for untested motor, was about 50USD shipped)

48v 10.5A power supply

1

I don't have a lot of space where my desk is but wanted a combo space combat and racing rig that was fully rigid except for the seat.

The chair sits in a wheel trough with some 3d printed wheel chalks that fit the wheels exactly so it doesn't really move much at all when braking.

Everything is running on Linux using a lot of SDL and input device spoofing hacks to get it all recognized correctly in games. I mostly play DirtRally2.0, BeamNG, AMS2, and Overload. Trying to get into Elite Dangerous but it's not really my type of game. Maybe it will be some day though. Also play a little RBR but not all that much.

List of gear:

T300rs with a R383 Mod wheel - tmff2 driver. I designed a "quick" release ring so it's not a pain to take the wheel off for flight.

Heusinkveld Ultimate+ pedals - protopedal or xboxdrv depending on the game

TH8A shifter - heavily modified to fit in the small space I had and with a 3d printed short throw plate that I designed. It's not ideal, but works for occasional use.

Some ebay handbrake - I use xboxdrv for this sometimes if necessary but most games can find it. I also modified it to be mounted under the plate for a bit more space on top.

Gladiator NXT EVO Omni Throttle (Left and Right hand models) - These are a pain in most games. I use a winehid hack where I adjust the registry values HKEY_LOCAL_MACHINE System CurrentControlSet Enum WINEBUS VID_231D&PID_{200,201} {Service, CompatibleIds} from xinput to winehid. This works but depends on the bus the device is currently connected to. Looking for a better SDL env var alternative but haven't got it working yet.

Acer Nitro 37.5" QHD+ 3840 x 1600 curved display

NextLevelRacing "Wheel Stand 2.0" - I made some steel parts for it on the mill to increase rigidity, 3d printed spacers for the adjustable arms to tighten them up a bit since the stock ones are a bit sloppy, and made some extra plates for mounting the sticks and other stuff out of 10mm aluminum plate.

VKB UCM-S drop mount brackets for the sticks. I modified these as well to fit under the aluminum plates. The left one is hinged so that it can be folded upwards to get in and out of the chair when the chair wheels are fixed in place.

annnd... yes I know the shifter and handbrake are reversed... I like it that way.

9

I have a keyboard with gateron blue clear top (black base, clear top) switches. It has a few switches that no longer work consistently so I'm looking for some replacements. The keyboard is backlit so I'd like to keep the clear top. Unfortunately I can't seem to find a source for this type of switch I feel comfortable with that ships to the US. There's ebay but it's so hard to tell what you're going to get. Does anyone know of a good site that ships to the US that stocks gateron clear top switches?

1upkeyboards is the only place I've seen them even listed, but they are out of stock. https://1upkeyboards.com/shop/switches/set-packs/switches-16-pack/

I have compared cherry blues, which also come in clear top, to the gaterons but I like the gateron feel better even though they seem not to last as long apparently.

[-] mranderson17@infosec.pub 20 points 1 year ago

Cura is open source and has linux builds on their github https://github.com/Ultimaker/Cura/releases. Prusaslicer and basically all it's forks also have Linux builds. I personally use FreeCAD for modelling but it's not very popular amongst people who use Fusion360.

10
submitted 1 year ago* (last edited 1 year ago) by mranderson17@infosec.pub to c/mechanicalkeyboards@lemmy.ml

About 8 years ago I lubed a Topre clone board (CM Novatouch) with "Finish Line Extreme Fluoro PFPAE" which was recommended at the time. Now years later it has pretty much all turned to dust and isn't really lubricating anything anymore. I suspect this happened maybe 5 years from when I applied it because it started feeling not so great and I put it away to use another board.

Now I've finally gotten the time to work on it and I've cleaned off all the old crusty stuff and I'm going to replace it with a combination of 205g0 for the slider points of contact and 3204 for the stabilizer bars. (EDIT: might just try the 3204 on everything or find some actual grease for the bars, not sure yet)

I'm wondering if anyone has any long term experience with either of these and if I might be able to expect a slightly longer life from them than what I had previously?

35
submitted 1 year ago* (last edited 1 year ago) by mranderson17@infosec.pub to c/infosecpub@infosec.pub

As the title says, @jerry@infosec.pub do you have any backup and how can we support you as the admin of our instance?

Burnout on spare-time projects can be very real, especially when they suddenly grow or become more difficult to manage. We all appreciate what you are doing here. So even if there's nothing we can do directly, I'd just like to say thank you.

1

I play titles like AC, ACC, DR2.0, AMS2, BeamNG.drive, etc. Up until this point my FOV adjustment has been the following procedure:

  • Use an FOV calculator to find my FOV settings for various games, My latest favorite is this one https://dinex86.github.io/FOV-Calculator/
  • Set the FOV in game (particularly annoying for things like DR2.0 but w/e)
  • Start a race or practice session with the virtual wheel and drivers hands displayed
  • Set the virtual seat position so that the IRL wheel hides the virtual wheel and the virtual hands behind what's in real life and the curvature of the wheels match approximately (works for most rally cars, road racing cars have a lot more variation in wheel size so less effective for that but I can get mostly close)
  • Hide the virtual wheel and hands
  • Begin racing

The problem I am facing is that basically all the games listed above save a seat position per vehicle. They are all a bit different, so this makes sense, however this makes it super annoying if I don't drive the same car all the time because I have to go do the whole procedure listed above, except for the FOV part, every time I want to try a new car.

Is there a better way or is this just what everyone does?

1
Automobilista2 has dirt racing now! (forum.reizastudios.com)

That's all really, just excited to have another dirt racing option. Also lots of other updates. It's pretty nice that if you had the 2020-2022 season pass you have access to the new content already.

A Pt2 of the Adrenaline Pack is already in production and will take AMS2 to even higher extremes - owners of the AMS2 2020-2022 Season Pass and of the AMS2 Premium Expansion Packs are secured both parts at no additional charge.

[-] mranderson17@infosec.pub 55 points 1 year ago

I recently switched to sway and I use xeyes to "look" for applications that are not running natively. The eyes only look at applications running in xwayland when you mouse over them since they can only track the cursor there.

144
submitted 1 year ago* (last edited 1 year ago) by mranderson17@infosec.pub to c/linux@lemmy.ml
1
submitted 1 year ago* (last edited 1 year ago) by mranderson17@infosec.pub to c/infosecpub@infosec.pub

In Firefox I am unable to upload images either as the subject of a post, or as a part of the body using the image button. I receive the following error:

SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data client.js:2:1753277
    Hp https://infosec.pub/static/7197474/js/client.js:2
    (Async: promise callback)
    Hp https://infosec.pub/static/7197474/js/client.js:2
    n https://infosec.pub/static/7197474/js/client.js:2

I found a github issue about it but it's really old, so I'm thinking it's not that relevant, even though it pretty much describes the issue exactly:

https://github.com/LemmyNet/lemmy-ui/issues/403

There are some other issues in the lemmy backend repo:

https://github.com/LemmyNet/lemmy/issues?q=is%3Aissue+unexpected+character+at+line+1+column+1+is%3Aclosed

Anyone else noticing this or is it just me?

EDIT: Probably should have checked first but this happens on other instances running 0.18.1, so I guess it doesn't matter, seems to be an upstream issue.

[-] mranderson17@infosec.pub 13 points 1 year ago

I use the unigine benchmarks sometimes. unigine-heaven and unigine-superposition (which btw is just cool to watch in my opinion). They provide linux packages here https://benchmark.unigine.com/ , check your distributions repos too though, some include these too though it's rare. They are not open source, but games usually aren't either.

The phoronix one that someone else posted also looks cool, I'll have to try that one out next time I need something like this.

1
obligatory rig pic? (i.imgur.com)
submitted 1 year ago* (last edited 1 year ago) by mranderson17@infosec.pub to c/simracing@lemmy.ml

My messy corner. And my somewhat compact rig. I've never posted before so unsure what information to include but I'll give it a go.

  • T300RS
  • R838 Mod wheel
  • ebay arduino handbrake
  • TH8A shifter
  • Heusinkveld Ultimate+ pedals
  • Next Level Racing Wheel Stand 2.0
  • Some pieces of wood
  • Acer Nitro 37.5" QHD+ 3840 x 1600 display

I'm a bit insane... so I drive all the displays with a Radeon W6800 Pro which works surprisingly well for gaming despite not being intended for it.

I use Linux exclusively and have for over 10 years now. Racing is a more recent hobby but I've been gaming much longer than that. Despite what all the youtubers say it all works mostly fine. Though I found hid-tmff2 to be the most mature of the wheelbase drivers outside of logitech which is why I haven't picked up a used DD wheel base just yet.

EDIT: Dunno why the pic won't upload, maybe a bug with Lemmy 0.18.1? Anyway I added an imgur link instead.

view more: next ›

mranderson17

joined 1 year ago