

IIRC Same compiler version doesn’t mean the ABI will be the same. Each compilation may produce different representation of data structures in the binary. Depending on the optimization and other things.
IIRC Same compiler version doesn’t mean the ABI will be the same. Each compilation may produce different representation of data structures in the binary. Depending on the optimization and other things.
Perfect, it looks like the thing I want. Hopefully it can do multiple devices in different networks. I’ll test it out when I can.
Thank you :)
I’d like a local filesharing option. Where a single folder would be synced in my phone from home computer when I’m at home, and from work computer and phone when I’m at work. Without using cloud sync between them only when I’m physically traveling between them, that’s good enough for most use cases of cloud sync that I want for work.
Sometimes you get into skill issue, or time issues. I make some softwares that I need, but I don’t have advertising skills to make people use it.
And sometimes I want to make something, but I don’t have the necessary skills.
For example I’d like a local filesharing option. Where a single folder would be synced in my phone from home computer when I’m at home, and from work computer and phone when I’m at work. Without using cloud sync between them only when I’m physically traveling between them, that’s good enough for most use cases of cloud sync that I want for work.
Thank you. I have a family to worry about so can’t survive on ramen alone… But I’ll look for other countries postdoc and such. I’m a bit scared of moving somewhere I don’t know the local language now because of how things are going in the US, if something like this happens and I can’t understand their language I’d not even know the dangers.
Where are you going? I’m currently on last yr of PhD and thinking of leaving, but I don’t know if I should abandon the PhD to leave or not. I’d like to finish it, at least do it remotely, but chances of finding work immediately after PhD are slim.
Thank you.
I did consider Julia in the beginning, but I’m using rust so I can make a python library available for people. And also because I can easily transfer other programs I have, and some other libraries in C into rust easily. My project is mostly about connecting the existing tools the grant agency has plus tools scientific communities use.
What do you mean by official language communities? I don’t know what is rust official community. I am in rust discord but I have never gotten any response on any questions I ask about non trivial things there. I need people knowledgeable about macro, stable abi, and other features.
I’m not from CS related field. Me and my advisor don’t know professors in CS fields, and my university doesn’t have CS grad programs when I looked around. And I need an external professor anyway. My friends that are in CS grad school all do AI/ML related research.
\1 is group 1 which is inside ()
, so second part is repeated 2 or more times of 2 or more char.
You forgot empty line. Since first part is ^.?$
it’s one or zero of any character.
Sorry, I forgot about this. I meant to say any sane modern language that allows unicode should use the block specifications (for e.g. to determine the alphabets, numeric, symbols, alphanumeric unicodes, etc) for similar rules with ASCII. So that they don’t have to individually support each language.
I thought the most mode sane and modern language use the unicode block identification to determine something can be used in valid identifier or not. Like all the ‘numeric’ unicode characters can’t be at the beginning of identifier similar to how it can’t have ‘3var’.
So once your programming language supports unicode, it automatically will support any unicode language that has those particular blocks.
Yeah but those are arguments to cd
, the error says command not found
Edit: Sorry didn’t see /S
There is one called OpenScan that’s available for Android
Those topics seems a little advanced for a Linux user without cyber security knowledge though. I personally don’t understand any of them lol. I know what hardening is, what CVEs are; but except for few anecdotes like the logj4, xz, etc, I don’t think I’d know enough to talk about the cyber security side of linux.
I was thinking more along the side of daily life things. Like how programmer like linux because it’s easier to develop things and manage environments and cross program compatibility.
What would be interesting topics in Linux for you guys. I am in a Linux student club, have no experience with cyber security except the generic things, and we are looking to attract cyber security students since Linux doesn’t have many students to maintain club status.
You know how people say “Devil you know is better than God you don’t”?
Excel is that Devil people know. It’s not the best tool for a lot of stuffs but it let’s people do things.
I saw a co-worker generate sequence for formula in excel for another cell in excel. They wanted to do average of all January data, instead of averageif/sumif/countif etc, they generated a sequence a1+a13+a25… And used excels’ drag down thing to make the formula. I’m like who could even verify it.
If there was an easy way to use rust or something on webassemly and use that instead of JS. I’d be so happy, but I can’t find how to do it without npm.
I think that’s why Github suggests MIT as default. Unaware people will just put that. Most open source people just code things they want without thinking much on other aspects. We really need some sort of enforcement to stop companies banking on voluntary work done for the community.
Yeah, and there’s no plan to stabilize the ABI because it’s developing.
You can use C ABI for some data formats, but you’re limited on what you can use (mostly primitives). There’s a crate stable-abi or abi-stable that provides a way to do things to keep it stable, but since it’s external crate it has limitations.
I know it’s frustrating because I am writing something in rust that loads functions in runtime. I thought it’d be easy because programs written in C do it all the time. Rust gives a lot of advantages but working on dynamic loading hasn’t been fun. And there aren’t a lot of resources about this either.