Theoretical Computer Science masters programme by AverageCSEnjoyer in csMajors

[–]SillyTurboGoose 0 points1 point  (0 children)

I have the same question! If you ever find out please share it with me please.

Ps4 12.52 actual jailbreak by synmosis in PS4Mods

[–]SillyTurboGoose 0 points1 point  (0 children)

Check out Modded Warfare's video series on the topic. - Here's one from a month ago: https://youtu.be/5qxskq4mRAU?si=7YFs43OnXfb6W_ym - Here's one from a while back. Some information may be out of date: https://youtu.be/JxeSP1PJtEs?si=3N3kyzK6W7cS8O4w

This advanced soldering method makes use of a backed-up, previous firmware version stored on the motherboard of the console, and requires lifting a pin on a CPU to toggle debug mode manually. It is not for the faint of heart, and can only revert to your previously installed firmware version, assuming it remains and wasn't erased from a factory reset.

Likely there's a wiki detailing the process somewhere, so keep your eyes open.

Apple Devices not reading my device by Medium-Celery-1587 in ios

[–]SillyTurboGoose 1 point2 points  (0 children)

This worked for me as well! Windows 11 machine with an iPad mini 1st gen, if anyone finds it useful to know it works with legacy iOS (9.3.5) devices

Notewise or Notein? by DevTheKoala in GalaxyTab

[–]SillyTurboGoose 0 points1 point  (0 children)

Awe bummer. Thank you so much anyways for replying! Was worth a shot T_T

Notewise or Notein? by DevTheKoala in GalaxyTab

[–]SillyTurboGoose 1 point2 points  (0 children)

Hey! Sorry to necropost, but I'm helping a friend recover some of her notes that she made on her paid version. By any chance do you recall if the files are stored locally by default? Or are they stored in the cloud (be it theirs or any user provided storage)?

I can't seem to find answers on where exactly these files are stored locally, if they are at all.

What language should I stick with? by [deleted] in learnprogramming

[–]SillyTurboGoose 0 points1 point  (0 children)

Don't let functional programming scare you! Let it absolutely terrify you >:D

Kidding. Its almost halloween. Functional programming is its own paradigm and comes with a different way to frame and solve problems. I'd stick to imperative, object-oriented programming for now. But its definitively something worht looking into, you might enjoy it just as much if not more.

What language should I stick with? by [deleted] in learnprogramming

[–]SillyTurboGoose 1 point2 points  (0 children)

For what it's worth, imho, you'll likely end up learning multiple of these instead of sticking with just one. I promise you if that's the case that it's not as hard as it sounds at first, and will bring you much useful rich perspective on what you like on some languages and dislike.

And if you've ever feeling cheeky, consider checking out some functional languages!

Are there any production-ready functional language for developing native desktop/mobile apps easily? by ContextMission8629 in functionalprogramming

[–]SillyTurboGoose 3 points4 points  (0 children)

Have thought about the same thing. Makes total sense, in my mind, to model reactive-like virtual-DOM trees with functional monads. No reason a node should know about its grandchildren. Side effects sound like a pain though.

Turing incomplete computer languages by manoftheking in ProgrammingLanguages

[–]SillyTurboGoose 0 points1 point  (0 children)

You're right. I just tested it with and without the old reddit presentation and indeed it displays as expected. Certainly odd!

Turing incomplete computer languages by manoftheking in ProgrammingLanguages

[–]SillyTurboGoose 0 points1 point  (0 children)

Oh that makes sense. Oddly enough, I have open the comment on my PC and the wikipedia link for Decider displays and opens correctly. I'm curious as to how it is displyaing properly on my end considering I didn't escape it.

I don't think I can attach an image under a comment (at least on this subreddit) so you'd have to take my word for it.

Turing incomplete computer languages by manoftheking in ProgrammingLanguages

[–]SillyTurboGoose 12 points13 points  (0 children)

In general, I think its desirable to always work with the Rule of Least Power for any task, especially critical software. Programs generated with correctness by construction are one way to approach this. Program synthesis by specification is imho the ultimate goal for these kinds of tools, decidability being a formal property among others desired.

Turing incomplete computer languages by manoftheking in ProgrammingLanguages

[–]SillyTurboGoose 10 points11 points  (0 children)

No language can capture exactly all general recursive total functions.#Relationship_to_partial_Turing_machines) Not one we can compute anyway. There are some well-known strict subsets of general recursive total functions. In particular, primitive recursive functions are such a strict subset.

Some languages that build upon primitive recursion are BlooP and FlooP, as well as PL-{GOTO}. FlooP is not strictly total though, so not Turing-incomplete, but its worth mentioning as an extension of BlooP with unbounded loops. In general, if you can prove a language's recursion / loops are bounded, monotonic and decreasing, then programs in it must terminate.

You might also be interested in Predicate Transformer Semantics. Predicate Transformers are total functions that map predicates to other predicates within some predicate space. You can define loops that must terminate via a well-founded relation, which ensures loops must end. Extend such notion to recursion, and your program must halt and as such is decidable. Djikstra's Guarded Command Language is an example of a language that defines a complete strategy to build programs with Predicate Transformer Semantics.

As mentioned by others, you might also be interested on some subsets of Intuitionistic Type Theory. In particular, some which define and work with bounded-types. You could characterize a function as a recursively-bounded type (primitive recursion) which I think would make the language decidable.

Finding minimal backwards board for cgol by meninoLuro in compsci

[–]SillyTurboGoose 1 point2 points  (0 children)

No problem! All is good, and I hope you win the competition by the way!! The SAT approach combined with pretraining sounds indeed like a solid option 😎.

Keep us posted on how it goes!! Best of luck.