User Portlet
Featured Contributor
Discussions |
---|
Yep, have a look at Protect, or SetAttributes with the Protected attribute. Clear or ClearAll would then start issuing a message saying it can't clear your function because it's protected, which reassuring at first but may become annoying, so you... |
You should also be aware of "contexts". In a notebook, the current context is ``Global` ``, given by `$Context`. If you want to get a list of symbols you have created, evaluate `Names["Global`*"]`. Some theory that may be helpful: there's a... |
I see, you're on Raspberry Pi? This is what I would do, forget about the UI in this case. * Evaluate `$UserBaseDirectory` in your notebook. * Using you favorite command-line or file management tool(s), place the desired `.m` file in the... |
There are many cases where you might want to run code that works on all cloud objects in an entire cloud object directory tree: * apply permissions to all files in a cloud directory * count all files in a cloud directory * add up the total... |
First, the problem is not with `CreateScheduledTask`; this is deprecated but still works as of 12.2. Of course, it is good advice to move away from a deprecated function. But there are a couple things to fix here: * In your example as written,... |
In my style of writing WL, I typically use pure functions inline, without assigning them to a name, as when writing the function argument to `Map`. For functions that I want to be part of my package, I use function definitions (the `SetDelayed`... |
Just curious, why Jupyter instead of Wolfram Cloud? The best experience is going to be there, where all the energy goes. |
Also look at DeleteCases. |
You can work around this by replacing the hyphens: ``` numberText = IntegerName[76] Speak[StringReplace[numberText, "\[Hyphen]" -> "-"]] ``` |
Oh, good :) I have to do some similar things, data science-y for work and financial stuff for my own needs so this is a familiar pattern. |