Anonymous
I have to say that COW cause an relatively recently exploit (github.com/themester/DirtyCOW)
Dragoș
Hello from Spain, an insomniac here
Anonymous
Hello from Uzbekistan. Is there anybody that writing code for microcontroller.
Anonymous
Hello from Spain, an insomniac here
Hello from Spain and same
Liam
lol If Telegram supports nickname in group, "Liam Huang" would be "Liam Huang @ greeting from PRC".
Anonymous
That would be a nice feature to have but should it be based on your phone number's country code or geolocation?
Сардорбек
Hello programmers
Anonymous
How can I use sleep(1) condition ?
Roxifλsz 🇱🇹
Anonymous
What do you mean?
By Justin bieber😁
Roxifλsz 🇱🇹
By Justin bieber😁
No no no no no no. Absolutely not :D
Anonymous
Sorry not important. But I have a question. Is it possible to write natural logarithm ? If possible, how
Oluwaseyi
I am new in program... How do I start learning... So that I will be using right approach. Thanks
Сардорбек
m x n-dimensional and k given the number of matritsa (0<=k<=m). Matritsa sum and the sum of the elements in column k of the technique to build a program
Michael
rofl, the matritsa is matrix
Buck
However, unless you are an expert in this field (unfortunatelly, seem not), you do not share memory between processes. This breaks the secure isolation between processes provided by Linux, and makes memory volatile-ed. Finding a workaround of it, socket pair between processes is a good choice. See the introduction to it and a hello world-demo: https://users.cs.cf.ac.uk/Dave.Marshall/C/node28.html
thanks for the excellent explanation, however I almost managed to fix it, I discovered that the father creates shared memory and connects, the child can connect but must have the same memory ID. when the program was only one I did generate random (ipc_private), now I have defined it constant in the header and everything should work.
Michael
m x n-dimensional and k given the number of matritsa (0<=k<=m). Matritsa sum and the sum of the elements in column k of the technique to build a program
if it is allowed you had better describe your task in Russian, if it is a highshcool task it should be described in books for homework
Michael
I am new in program... How do I start learning... So that I will be using right approach. Thanks
some code examples can be found there http://en.cppreference.com/w/c/variadic , also try to read a book about algorithms
Anonymous
Hello
Anonymous
hello
many
Currently I'm working on a telegram bot with C++. What is the communication method used by telegram server and client? Long polling? Websocket? or something else?
Michael
Currently I'm working on a telegram bot with C++. What is the communication method used by telegram server and client? Long polling? Websocket? or something else?
There are two mutually exclusive ways of receiving updates for your bot — the getUpdates method on one hand and Webhooks on the other. Incoming updates are stored on the server until the bot receives them either way, but they will not be kept longer than 24 hours.
Anonymous
Now i learn mysql
Anonymous
😂
Michael
The webhooks and https are the best.
Anonymous
https://youtu.be/cKAcdD4EwZw
Zarna
Hello, I want to who can help me?
Zarna
I want to make timetable in php
Anonymous
Wrong chat.
many
I want to make timetable in php
Basically you need database, server and some ui
Zarna
Basically you need database, server and some ui
I using xampp as a server and phpmyadmin as a db
Zarna
But do not know how to code it
Zarna
Mostly there are based on calendar not time table
Anonymous
No much coding
Zarna
But i want to edit each of the column
Anonymous
Edit in xampp
many
I using xampp as a server and phpmyadmin as a db
Give an index to each timeslot, user submit content to server, server save the content to database
Anonymous
Now i learn mysql
Like in this
Anonymous
Someone help me
Anonymous
/
Anonymous
How to remove uncomplete record in database
Zarna
Something like this
Anonymous
https://youtu.be/cKAcdD4EwZw
Hey guys are you like this video please subscribe this channel please this guys very awesome in programming
Anonymous
Anonymous
I learn it for you
Zarna
Can u help me? I do not how to set id for each of the column
Anonymous
Wait
Anonymous
Hang up
fbs
👍
Zarna
Okkkay
Roxifλsz 🇱🇹
Don't beg for views, likes, etc. in this group
Anonymous
I have a confusion why "ampsersands" are being used here. Besides I see no reference of pointers to pointees
Anonymous
I mean normally this is how we work with pointrs https://bpaste.net/show/49ff09f20986
Anonymous
Where I am wrong?
Jeremy
*a pointer is pointing to address of int a in main, right?
Jeremy
Here's an excerpt from a stackoverflow question
Jeremy
You turn a value into a pointer with &: int* p2 = &i; // pointer p2 will point to the address of integer i
Jeremy
you're passing the int a argument as a pointer in the call to the add function
Jeremy
in your paste, there shouldn't be a need for a pointer, right?
Jeremy
it's all in the same scope
Jeremy
I'm not a C programmer, just guessing from looking at it though
Anonymous
it's all in the same scope
But why this code not working then?
Anonymous
I am sure I still don't understand how pointers actually work
Jeremy
just my guess but when you assign a value to a pointer, are you not giving it an address rather than a value?
Mat
You're doing a pointer sum
Jeremy
I'd have to get a book out to know
Anonymous
You're doing a pointer sum
I am sorry, but I am just trying to rewrite that code without using functions
Mat
b = variable *a = pointer *a -> b You wrote *a = 5, so *a = 5 -> ?