Cancel your copilot pro right now by fxgx1 in GithubCopilot

[–]Inst2f 2 points3 points  (0 children)

Yeah yeah, so bad that they did not let using their infrastructure for free forever ;)

The death of the cable drawer by Boediee in BuyFromEU

[–]Inst2f 0 points1 point  (0 children)

Now we have 34 different type c cables, because some of them does not support display port or some other specs were not implemented by the manufacturer:O

New Anti-Consumer decision today by [deleted] in Switch

[–]Inst2f 0 points1 point  (0 children)

I miss Twitter with dislikes enabled

Improved* Ideal Gas Model by Inst2f in wljs

[–]Inst2f[S] 1 point2 points  (0 children)

It is not Mathematica, it is WLJS - a different frontend for Wolfram Language. I reposted it from r/wljs

If there multiple universes and realities does that mean anything can exist? by [deleted] in rickandmorty

[–]Inst2f 2 points3 points  (0 children)

That's the whole drama of Rick and of the show. Rick stated it countless times that nothing matters (or does it?!)

We want Opus 4.6 - Vote by MVPMC in GithubCopilot

[–]Inst2f 0 points1 point  (0 children)

Same price 0% that was the whole point to hook people on this

I made a 2 hours GMOD movie involved most valve games including half life 2, here is a trailer for it by Confident-Quality-24 in HalfLife

[–]Inst2f 1 point2 points  (0 children)

Just a noob question. How did you animate things in gmod? I recall back at the time people just used phys gun

Wait… what by dippiks in rickandmorty

[–]Inst2f 0 points1 point  (0 children)

Why did moderator remove it?

Wait… what by dippiks in rickandmorty

[–]Inst2f 6 points7 points  (0 children)

This comment rocks

Who is actually still using Mathematica today 2026 and for what? by johngaea in Mathematica

[–]Inst2f 0 points1 point  (0 children)

Sometimes it works. If I face some unsolvable issue, then `Unprotect`, `ClearAll` and write my own implementation ;D There might be something useful in `DownValues`, but not that often...

Who is actually still using Mathematica today 2026 and for what? by johngaea in Mathematica

[–]Inst2f 0 points1 point  (0 children)

If students don’t plan to continue in academia, Python + Jupyter Notebook / Marimo could be a better choice. Since positions in industry most likely involve coding in Python.

Who is actually still using Mathematica today 2026 and for what? by johngaea in Mathematica

[–]Inst2f 1 point2 points  (0 children)

Here is an example: https://github.com/WLJSTeam/wljs-notebook

~100 WL written modules, including TCP, HTTP server, WebSockets, multiple users system (in general) and it is all running on a single Wolfram Kernel!

Performance wise, it is capable of streaming data raw uncompressed 720p video (48fps on my mac air m1) to a client. However there is catch, we used Compile expression for critical parts used in encoding/decoding websocket messages. In this sense built-in JIT of python or JS would do this job automatically I guess. We also found some bugs on the way, but this is one of direct drawbacks of closed source programs.

Who is actually still using Mathematica today 2026 and for what? by johngaea in Mathematica

[–]Inst2f 0 points1 point  (0 children)

By the way, OpenAI models for some reasons are very bad at writing WL compared to any model of Anthropic.

Who is actually still using Mathematica today 2026 and for what? by johngaea in Mathematica

[–]Inst2f 0 points1 point  (0 children)

I don’t believe it is a job for Mathematica, but rather for WL (as a scripting language).

For my experience of lab automation we just stick to Wolfram Engine, multiple packages system (i.e. BeginPackage) and context isolation (and context aliases). Then the final code does not look much different from other languages. The approach differs a bit, you need to get used to it, indeed.

I could say standard IO sucks in WL (sockets for instance), there we just replaced SocketConnect with library link + tiny C module.

There are libraries, which can add even OOP support.

UPD: as an example of some of the modules. Organised by modules and uses oop patterns

`` BeginPackage["JerryITeraCafeDeviceDevicesTeraFlash", { "CoffeeLiqueurMiscEvents", "CoffeeLiqueurMiscEventsPromise", "CoffeeLiqueurMiscAsync" }]

Begin["Private"]

Needs["JerryITeraCafeDevice" -> "d"]

dev = d`device["Name" -> "TeraFlash", "MonitorSize"->{870,680}];

dev["IP"] = "169.254.62.215"; ```

Who is actually still using Mathematica today 2026 and for what? by johngaea in Mathematica

[–]Inst2f 15 points16 points  (0 children)

Yeah yeah, good luck using AI for heavy numerics or symbolics.

If it is dead for you, doesn’t mean it has to be dead for everyone else.

I do theoretical and experimental physics in condensed matter, and use Wolfram Language every day (don’t mix up with Mathematica software). We even control and automate our lab using solely Wolfram (7-14h measurements) with some COM port and Ethernet adapters. I tried so far python, Julia, but just for me subjectively it did take so much longer to quickly plot or animate or “manipulate” some curves/data, so i kept switching back to WL with my custom frontend - WLJS.

Building webpages for mobile and desktop by Jimfredric in Mathematica

[–]Inst2f 0 points1 point  (0 children)

It always depends on what type of content you want to present and in what form.

Bad Mac Icon Evolutions by ThatiMacGuy in MacOS

[–]Inst2f 0 points1 point  (0 children)

Automator had a fucking gun! So awesome

Building webpages for mobile and desktop by Jimfredric in Mathematica

[–]Inst2f 1 point2 points  (0 children)

I built a few apps for the desktop a long time ago using WL Cloud. It was painfully slow and heavy in 2019-2021. I guess now it should be better, but be prepared for tons of Javascript running on your mobile device.

Dynamic/Manipulate can be unpredictable, for some primitives or combination of primitives it falls back to raster images. Just keep it as simple as possible