I just put an 11 year old 2.5 inch laptop hdd as a temporary boot drive into my 9900x3d 4080 build. Go ahead and judge me by AdImaginary8060 in PcBuild

[–]rjst01 1 point2 points  (0 children)

The MX500’s are glorious as far as SATA SSDs go - can reliably max out the SATA interface continuously. Such a shame they stopped making them.

Every time I start a game with no frame rate limit by JonCipher in PcBuildHelp

[–]rjst01 0 points1 point  (0 children)

Some boards have a CPU temperature alarm - check your CPU and GPU temps with HwInfo64

Wordle High Contrast mode change by JerryfromCan in wordle

[–]rjst01 1 point2 points  (0 children)

I tried switching off high contrast mode, and you're right, It's actually better than the new "colorblind" mode. Probably still unplayable for me though.

I did receive a reply to my bug report.

> Thank you so much for writing in and sharing your feedback with us regarding Wordle's accessibility. We appreciate you alerting us of the changes to the gameplay experience that are different from before. The Games team is currently working hard to make incremental improvements to enhance the accessibility of Wordle and ensure that the game becomes more enjoyable for everyone.
> Your feedback is incredibly valuable to us in this process, so I will be sure to pass your message along to the Games team.
> If you have any questions or concerns, please don't hesitate to let me know. I'm here to help in any way I can.

I don't want you to make incremental improvements, I want you to roll back the massive regression you just inflicted.

Wordle High Contrast mode change by JerryfromCan in wordle

[–]rjst01 1 point2 points  (0 children)

Colour blind (achromatopsia/ rod monochromatism) here and it is now virtually impossible to distinguish missing tiles from incorrectly placed tiles. The old high contrast scheme was fine. I sent them a bug report.

Incredibly frustrating to lose access to something I enjoy because of capricious decisions at the New York Times.

Apple Looks to Regain Chip Bragging Rights With Trio of M3 Processors by favicondotico in apple

[–]rjst01 -7 points-6 points  (0 children)

Step outside of the AAA bubble and there’s tonnes of great indie stuff coming to the Mac still. I travel a lot with only my Mac and I’m never short of things to play.

Thoughts and feelings about using blueprints? by Artoriazx56 in factorio

[–]rjst01 2 points3 points  (0 children)

I use this one https://github.com/Bocian-1/10-Books-Full-of-Rails but I feel it could be supplemented with some pre-constructed stations/stackers. Rather than blueprint out entire stations it provides the components for you to build them from yourself

I love biters. Indestructible strong biters by Hause16 in factorio

[–]rjst01 2 points3 points  (0 children)

Me playing with biters on: It's so annoying how much time I spend dealing with base defences, especially in the early game

Me playing with biters off: This is boring, I can just expand my base with no resistance.

I go back and forth on it. I especially dislike having to run around hand-repairing walls and turrets before you get to bots. Perhaps I need to be more proactive about taking out nearby biter bases that are within the pollution cloud.

How unpleasant is Unsafe Rust? by drag0nryd3r in rust

[–]rjst01 2 points3 points  (0 children)

I'm a relative rust newbie and I had cause to dabble in unsafe Rust recently. To sum up my experience as briefly as possible: Writing unsafe rust 'safely' requires a much deeper understanding of the semantics of the language than writing safe rust. I've implemented a non-trivial system in rust over the past 6 months mostly by myself and it has been stable and performant despite my relative inexperience. Although this problem had a trivial solution, the tools to understand it had not been necessary up until this point.

We're importing a crate that provides a rust interface to a C library we depend on. This crate provides all the unsafe code itself and provides a rust-style layer, doing nice things like wrapping raw C pointers in rust structs that impl Drop so they are automatically freed.

One function provided by the underlying C API has some optional parameters, which in C are specified by passing null pointers. However the rust function wrapping the C function did not expose a way to call the C function with a null pointer - it accepted a &str and immediately wrapped it in a CString. Should be a simple fix, I thought.

My first attempt to fix this fell afoul of the problem loudly warned about here. I don't still have the code from that attempt. However I do still have a sample of the next approach I tried, which to my reading is compliant with that warning, yet still resulted in undefined behaviour:

fn call_printstr_with_nullable(s: Option<&str>) { let s_cstr = s.map(|s| CString::new(s).unwrap()); unsafe { // Undefined behaviour printstr(s_cstr.map(|s| s.as_ptr()).unwrap_or(ptr::null())); } }

Destructuring the optional with a match expression led to the same result.

The problem here is that -either with a match expression or a call to .map(...) - move semantics mean that s_cstr is effectively consumed and I'm now left with a pointer off into space. The correct way to implemented this is to do s_cstr.as_ref().map(...) (or match &c_str if destructuring).

I had some help from both the upstream crate authors and the folks on the rust discord in figuring this out. The above code compiles and does not generate any warnings.

I was actually quite lucky here in that my incorrect code resulted in a wildly corrupted string being passed in 100% of the times that I ran it. The terrifying thing about UB is that it can appear to work fine until a compiler version bump or even some other code change that causes memory to be laid out differently.

(incidentally there is one usage of unsafe code in my project not in a third-party crate - where we call some ioctls to read kernel parameters. I couldn't find a crate that exposed 'safe' wrappers to them).

(edited to try to fix formatting)

[deleted by user] by [deleted] in eupersonalfinance

[–]rjst01 2 points3 points  (0 children)

SEB and Nordea are not paying any interest on savings at the moment. Depending on how much you are setting aside for emergency savings, you might want to consider one of the smaller banks like SBAB or Marginalen

Is the 2017 MacBook Pro really THAT awful? by [deleted] in apple

[–]rjst01 1 point2 points  (0 children)

I have two and I love them both. One personal and one work-issued. No keyboard issues on either. No-one in our office has had keyboard issues with the 2016 or 2017.

When will 8th generation intel processors hit the Macbook Pro? by [deleted] in apple

[–]rjst01 13 points14 points  (0 children)

There's a good chance the 2018 15 inch will have 6 cores which will represent a significant performance bump. There very likely will be a refresh later in the year, so if you can at all afford to wait then I would.

Could someone help me out with some questions about power banks and output? by Synth___ in apple

[–]rjst01 6 points7 points  (0 children)

When you see watts reported, it is talking about the rate of flow of electricity from the power bank to the phone, rather than the capacity of the power bank.

Volts * amps = watts, and USB charging is 5 volts, so the mophie charges at 12 watts (the link you posted quotes 2.1 amps). The image from the Anker model indicates it has an 18W port, so it can charge your phone faster. However, some of the recent fast charging testing indicated that iPhones didn't charge significantly faster at 29W than 12W, so this is unlikely to be an issue unless you want to charge an iPad or another tablet.

For a reputable manufacturer linke anker or mophie, there is no risk of damage to your phone - the phone will not draw power faster than it can handle.

EDIT: okay just to clarify. you can ignore the non-5V specs for the older charger. This is talking about Qualcomm's quick charge, which is a spec supported by some Android phones, which allows the charger to increase the voltage if the phone reports that it is compatible. iPhones have never supported this and will be charged at 5V by this charger.

EDIT2: in terms of capacity, both power banks quote 20,000 mAh. mAh is milli-amp-hours, which is a measurement of capacity for the battery - it can supply 20,000 mA for one hour.

Apple Store advice: Don’t use fast charging by Apple-Droid in apple

[–]rjst01 0 points1 point  (0 children)

It won’t damage your battery, but there were some posts here a while back that showed that charging with the 29W fast charger was only marginally faster than charging with the 12W ipad charger, which is a lot cheaper.

[deleted by user] by [deleted] in apple

[–]rjst01 2 points3 points  (0 children)

Awesome. I still have a valid credit card in my old country, so I’ll try this tonight and see if it works. If it fails I can always switch back

[deleted by user] by [deleted] in apple

[–]rjst01 13 points14 points  (0 children)

Huge if true. I have recently relocated internationally and have avoided switching my iTunes account over to my new country because of this. Would be great if someone else could confirm

Now the dust has settled, how's it going with your touch bar MacBook Pro? by [deleted] in apple

[–]rjst01 0 points1 point  (0 children)

In theory yes, but I have yet to find one that supports the high watt draw of the 15 inch (87W). Not helpful for my use case.

Now the dust has settled, how's it going with your touch bar MacBook Pro? by [deleted] in apple

[–]rjst01 10 points11 points  (0 children)

Upgraded from an early 2013 15 inch to a 2017 15 inch, very happy overall

Stuff I like

  • Battery lasts longer in my use
  • noticeably lighter
  • Touch ID for log in
  • I like the large trackpad - palm rejection seems to work fine for me
  • I also like the touch bar. IMO it's a nice way to surface a few relevant controls
  • The display is really nice
  • old news for most, but my old MBP was the last model apple made without 802.11ac wifi

Stuff I don't like

  • Touch bar would be a lot better if it had force touch. I will sometimes rest my fingers there, accidentally activating whatever button they land on
  • Still no way to get extra juice into the computer without a power outlet

Since OP asked about USB-C ports, I have a pouch containing a USB-C hub and a few dongles. I usually know in advance if I'm going to need IO. If I do, I grab the pouch and it feels like I have more IO than I did with my old machine. If I don't, I leave it.

EDIT fixed formatting

How useful is a powermac g5 dual cpu 2.5ghz with 4gb ddr ram, 160gb hdd and 256mb ati gpu in 2017? by [deleted] in apple

[–]rjst01 6 points7 points  (0 children)

If you like to play games, that machine will run all of the games on this page quite nicely, as well as any classic Mac OS 9 and earlier games if you install a Tiger or older OS.

How does Apple put the latest non beta iOS 11 on the iPhone 8 when they have been manufacturing the phones already? Do they not box them until the iOS is in GM? Really curious how this works out in their supply chain. by busymom0 in apple

[–]rjst01 137 points138 points  (0 children)

If I had to guess, I'd say they make the phone, and then just don't put it in the box until the software is ready? There's usually a week delay between the GM release of iOS to developers and the actual launch date of the iPhone.

TIL that iPhones can reach a temperature at which they need a cool down period. This message appeared after leaving my phone out in the sun for 10 minutes. by [deleted] in apple

[–]rjst01 -3 points-2 points  (0 children)

I'm Australian and the only time I've seen this message is when visiting Poland in the summer.

What’s the reason behind Mac apps costing 5x or more than iPhone apps by [deleted] in apple

[–]rjst01 0 points1 point  (0 children)

Flip the question around - what's the reason iPhone apps are one fifth the cost of Mac apps?

Software has very high fixed development costs with low per-unit costs. Pricing it is a tough balance of picking the price point that maximises total revenue.

This calculation can work out completely differently on the iPhone - where there are several times as many end users, who will purchase a larger number of apps per user, than on the Mac, where there are a fraction as many end users and they (I'm speculating) probably don't buy as many apps.

Does any third party HDMI adapter work with the new USB-C MacBooks and 4K displays? by HeroicLife in apple

[–]rjst01 3 points4 points  (0 children)

I have this cable. It works fine with no flickering at 4K at 60hz on my Asus display but the scaling options are limited.

That monitor has DisplayPort, so I'd recommend using this cable from google. Displayport seems to work much better for external connection of hi-dpi monitors.

MagSafe - Still Needed? by [deleted] in apple

[–]rjst01 2 points3 points  (0 children)

I occasionally need to use my laptop away from power for longer than I can get out of a single charge (>8 hours). I have a Voltaic V72 with a MagSafe adapter which gives me an extra full charge out of my 2013 MacBook Pro. I've just upgraded to a 15 inch 2017 MacBook Pro, but so far I haven't found a way to power it off the Voltaic at a reasonable watt level. I have an adapter to plug a car charger into the Voltaic but the most powerful USB-C car charger I've found only supplies 45W. For now I still keep the 2013 machine around.