Nils
For example? :)
Oh is that a question?
Nils
Yes
CreateProcess and WinExec
Anonymous
CreateProcess and WinExec
CreateProcess aint deprecated
Anonymous
And it doesn't have 10 variations
Anonymous
Afaik, it has only W and A
Talula
CreateProcess aint deprecated
Are you writing program for your college or are you doing it to make a project?
Nils
And it doesn't have 10 variations
Ever heard of "exaggerate"?
Anonymous
Ever heard of "exaggerate"?
Oh, so their style is to divide it to functions by the type of string
Nils
Oh, so their style is to divide it to functions by the type of string
Why would you have multiple types of strings tho
Nils
... And why would you want that in filenames, registry keys etc? 🤔
Nils
Doesn't sound like a good idea to put wide characters into filenames
Anonymous
Good question
Anonymous
Im not sure
Anonymous
I dont use it 😂
Suka
Doesn't sound like a good idea to put wide characters into filenames
but they did used it. https://washingtonindependent.com/japan-path-separator-yen/
Junaid
What university year are you in?
Comsats University lahore 3rd smster
Nils
but they did used it. https://washingtonindependent.com/japan-path-separator-yen/
They could also just be like any other OS and use '/' instead of L"\"
Junaid
How to create an audio player with Playlist options using some data structure in C++
Laopigo
Why does calling SDL_SetRenderDrawColor function cause a segmentation fault? https://pastebin.com/NdsE7jf3
arfa
is there any c++ or c# to c converter
Anonymous
Spirit
I’m not sure c# should really be in that sentence tho
Spirit
Granted I’ve barely used c# but it doesn’t really remind me of c++ or c
Spirit
I thought it was more similar to Java
\Device\NUL
yups but in modern cpp char is used to hold 1 character and it can be ascii or unicode(utf8, utf16, or 32) cmiiw
char is one byte, use wchar_t or char16_t or char32_t if you want to work with unicode
Anonymous
I waiting for it few hours, please someone build it for me.
MᏫᎻᎯᎷᎷᎬᎠ
So I was working with a C++ RPC library rpcLib based on Message Pack format which uses the protocol to handle requests and responses It has both client and server sides classes for it And it works fine so far until I downloaded a client side library on JS and tried to make a call to an RPC function, which results a crash on the server side(some type_error exception, it's weird I know), so my thoughts are that the library is made to be used by its components(classes) for both server and client side Nevertheless, the library is cool in some context, it has workers threads approach to handle and process rpc calls, gives a unique SessionID to each connected client, logging facility Is there any library like so for C++, that doesn't crash? The message formatting protocol doesn't really that matter(Unless it's xml, I'll be conservative for that)
Talula
I think you can make it on the site itself.
Anonymous
I think you can make it on the site itself.
I'm newbie, can you please build it for me? I don't have any idea how to work with this library but if someone build it for me I'll start learning it.
Anonymous
Compile it
Are you sik? I don't know to how to compile it that's the problem
Anonymous
Just go to Visual Studio Installer, check "C++ Development" and boom install
Anonymous
Sik?
Yeah my English also is awful like my coding
Anonymous
If it doesn't have .sln files, what build system does it use?
Nils
/report
Nils
*sick (?)
Anonymous
Anonymous
*sick (?)
Why would he ask that tho?
Nils
fact is, he did lol
Anonymous
😐 There are more than 15k member can just somone compile it for me?
Anonymous
fact is, he did lol
I guess he is asking if I'm mental, because I tried to help him. Kinda rude lmao
Nils
Why you care?
if it is something small I could just do it I am just sitting in free time rn anyways
Hanz
https://github.com/open-quantum-safe/liboqs-dotnet
Anonymous
https://github.com/open-quantum-safe/liboqs-dotnet
Yeah it's just a wrapper, its need main dll
Hanz
oh
Nils
also Null how much do you pay?
Nils
for me compiling your stuff
Anonymous
also Null how much do you pay?
You should be happy that he is allowing you to compile for him
Anonymous
Hanz
lol
Nils
Anonymous
https://github.com/open-quantum-safe/liboqs-dotnet
You can send links and i can't. Why?????
Nils
Are you serious?
yes why would I do that for free lol if you can do it yourself
klimi
Null: https://github.com/open-quantum-safe/liboqs
Anonymous
yes why would I do that for free lol if you can do it yourself
Are you sik? You should pay him to be allowed to compile for him and now you are being allowed for free
Nils
lol
Hanz
Null lets come to my PM, lets end this discussion
Talula
I just want the compiled dll file
Still what does it have to do with Github?
Anonymous
Hi all, am using cin.ignore() when inputting strings, works fine only that first character is omitted, how to fix this
Bojan_Krdemn
Hi! I am implementing heap data structure as a part of an assignment. Want to ask what. When I delete the root node, I move it to the end of the array, right? And there it lies untill it gets being rewritten
Anonymous
Hi! I am implementing heap data structure as a part of an assignment. Want to ask what. When I delete the root node, I move it to the end of the array, right? And there it lies untill it gets being rewritten
No it doesn't get rewritten. You shorten the length of your array by 1 to exclude that element. This will be followed up by a sift up operation. It is as good as having been deleted. A good practice is to free any resources that particular node held if it is not going to be used anymore. Of you are doing a inplace sorting using a heap then you leave the node as it is at the end without freeing the resources but you still have to reduce the array length by 1 so that the sift up algorithm works properly