
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
November 2nd, 2023, 10:03 AM
Hello,
I am new to using the FileStream class. I have the following code, but do not fully understand it:
Using myFile As New...
2 replies | 2557 view(s)
-
November 8th, 2023, 09:12 AM
If I want to write code for C89 It's necessary to use fflush(stdout) during message print to output ?
E.g. with printf("message") .
5 replies | 1999 view(s)
-
November 10th, 2023, 07:27 AM
What is reason to put data (ip, port) into structure of sockaddr to use connect primitive or bind ?
It could to be easier to pass as single...
3 replies | 2260 view(s)
-
November 8th, 2023, 09:56 AM
I need help on the code below, I'm able to start Winsock with VBA library below or initialize , but I'm failing to connect to my local machine with...
2 replies | 2154 view(s)
-
October 31st, 2023, 10:12 AM
Job Description
About our Principal Data Developer role
As the Principal Data Developer, you will be recognised as a technology leader by...
0 replies | 2215 view(s)
-
November 8th, 2023, 02:06 AM
Hi,
Got an old project, rebuilt it for Intel using VS2015. How to build the same for ARM?. Got mfc140.lib missing, etc.
0 replies | 2131 view(s)
-
November 6th, 2023, 11:05 PM
Calling all AppSec experts!
How do you approach security across the SDLC? What cloud security and supply chain threats impact your team? Share...
0 replies | 2020 view(s)
-
November 6th, 2023, 11:08 PM
Calling all AppSec experts!
How do you approach security across the SDLC? What cloud security and supply chain threats impact your team? Share...
0 replies | 1925 view(s)
-
November 2nd, 2023, 04:44 AM
Hello,
I have this error on the EDITEXT line when I try to compile this resource file.
I checked MSDN, the definition of EDITTEXT seems to be...
6 replies | 1096 view(s)
-
November 10th, 2023, 07:24 AM
I'm writing network app client/server with tcp persistent connection. If network went down, both client and server socket are kept opened, they are...
5 replies | 1264 view(s)
-
November 14th, 2023, 09:06 AM
Where is administration?
I'ts important.
Thank.
3 replies | 1109 view(s)
-
November 6th, 2023, 11:11 PM
Calling all AppSec experts!
How do you approach security across the SDLC? What cloud security and supply chain threats impact your team? Share...
0 replies | 1635 view(s)
-
October 30th, 2023, 05:33 AM
Hello all ,
Note: These values are constantly changing
My example ..
#include <iostream>
1 replies | 1144 view(s)
-
November 17th, 2023, 11:57 AM
Can you tell me how can I change my password?
What am I doing wrong?
Please tell me.
Yours faithfully.
x
0 replies | 1272 view(s)
-
November 6th, 2023, 11:09 PM
Calling all AppSec experts!
How do you approach security across the SDLC? What cloud security and supply chain threats impact your team? Share...
0 replies | 1199 view(s)
-
November 16th, 2023, 09:24 AM
Can't answer an existing topic, what should I do ??
Maybe I'm doing something wrong?
Please tell me.
Yours faithfully.
*** Post...
2 replies | 839 view(s)
-
November 26th, 2023, 03:51 PM
I wrote this naïve code to make a sorted lists out of three sorted lists:
import std.compat;
using intLst = std::forward_list<int>;
intLst...
5 replies | 362 view(s)
-
November 20th, 2023, 04:50 AM
I'm currently working on a Spring Boot project and integrating Swagger for API documentation. While the basic setup is clear, I'm facing challenges...
0 replies | 1034 view(s)
-
November 2nd, 2023, 05:13 AM
What are the best practices for handling exceptions in Java? How can developers create reliable and maintainable code by effectively using try-catch...
0 replies | 988 view(s)
-
November 15th, 2023, 10:48 AM
Are there any of the moderators?
How to create your first post.
Yours faithfully.
1 replies | 710 view(s)
-
October 31st, 2023, 06:55 AM
We are looking for a full-stack mid-level Developer to join our Sage.com Web Development team at a very exciting time. The team itself focuses upon...
0 replies | 767 view(s)
-
November 6th, 2023, 11:07 PM
Calling all AppSec experts!
How do you approach security across the SDLC? What cloud security and supply chain threats impact your team? Share...
0 replies | 736 view(s)
-
November 6th, 2023, 10:56 PM
Calling all AppSec experts!
How do you approach security across the SDLC? What cloud security and supply chain threats impact your team? Share...
0 replies | 696 view(s)
-
Yesterday, 10:46 PM
Hi, ALL,
I am doing a cross-platform programming using C++ cross-platform library.
At one point of time my program needs to read the value from...
0 replies | 18 view(s)
-
Yesterday, 04:36 AM
The choice of the right programming language for cross-platform mobile app development depends on various factors such as project requirements,...
1 replies | 513 view(s)
-
November 27th, 2023, 11:49 AM
If you have to 'roll your own' merge, then using insert_after as suggested by salem_c above consider:
#include <forward_list>
#include...
5 replies | 362 view(s)
-
November 27th, 2023, 11:19 AM
OK. Then consider:
int main() {
intLst l1 { 1, 5, 6 }, l2 { 4 }, l3 { 2,3,7,8 };
l1.merge(l2);
l1.merge(l3);
std::ranges::copy(l1,...
5 replies | 362 view(s)
-
November 27th, 2023, 08:29 AM
Sorry, I should have said that this is an exercise and using `std::forward_list` is mandatory.
@salem
Perhaps this way:
// ...
intLst res;...
5 replies | 362 view(s)
-
November 27th, 2023, 05:24 AM
Why use forward_list and not a list? Using a list makes life much easier by allowing use of std::merge. Consider:
#include <iostream>
#include...
5 replies | 362 view(s)
|
Click Here to Expand Forum to Full Width
|