Posix compliant Mojo Shell?
Compiling a dynamic/static library
How Unsafe/Safe is this code?
CollectionElement
. It works well and doesn't have any memory errors, but I wanted to get a second opinion on if it seems safe enough to use.
One issue it has is that I can't check the type when you append or get from it since it does not store type info. Currently I just store the types size and compare to that.
```python
simple example:...How can I see the peak memory usage of a datastructure like alist in mojo?
Mojo documentation says "The Mojo compiler uses lifetime values to track the validity of references.
Using Mojo For Back-end Web Development
What pointer lifetime to use when iterating through a tree?
Error when running Mojo when path contains # (hash)
#
. When running mojo I get the following error:
/home/user/Documents/#MojoProjects/hello-world/.magic/envs/default/bin/mojo: error: cannot map file that is not an actual file or block device
...Canonical way to add NuMojo to a Mojo project?
project/vendor
or project/lib
directory to host these external packages.Preserving mutability when passing to function
Python integration: address not mapped to object
Creating files from code
Pyserial-like communication in Mojo
dict containing sets?
rag[current_label]
is a "function that might raise in a context that cannot"
what's the simplest way to build a dict whose values are sets? can I operate on the sets? ...Could Mojo be the first all purpose language?
modifying runtime value from @parameter scope crashes the compiler
why does this String init work without len?
buf = InlineArray[UInt8, 640](0)
...
s = String(buf.unsafe_ptr())
buf = InlineArray[UInt8, 640](0)
...
s = String(buf.unsafe_ptr())
Global variable support?
why is this return a copy?