Click here to Skip to main content
15,895,656 members
Everything / BSD

BSD

BSD

Great Reads

by pasztorpisti
An advice to make your DLL interface more attractive and easier-to-maintain even in cross-platform projects
by RCL_SPD
How to allocate memory on Linux and Windows
by h_wiedey
This tip shows how md5 and locate can be used to find duplicate files.

Latest Articles

by h_wiedey
This tip shows how md5 and locate can be used to find duplicate files.
by RCL_SPD
How to allocate memory on Linux and Windows
by pasztorpisti
An advice to make your DLL interface more attractive and easier-to-maintain even in cross-platform projects

All Articles

Sort by Score

BSD 

19 Feb 2016 by pasztorpisti
An advice to make your DLL interface more attractive and easier-to-maintain even in cross-platform projects
10 Aug 2018 by RCL_SPD
How to allocate memory on Linux and Windows
10 Mar 2012 by Sergey Alexandrovich Kryukov
Usually such licenses contain the terms of using the licenses themselves. Just read them. Usually you can use them. By the way, CodeProject contains a reference page on the default set of licenses offered to the authors of articles. Please...
27 May 2021 by Sandeep Mewara
void add_assign3(int *j) { *j = *j + 3; } It's a method that has a return type defined as void. You don't need to provide a return statement in such case. Alternate, you can do: void add_assign3(int *j) { *j = *j + 3; return; } If...
17 Nov 2022 by h_wiedey
This tip shows how md5 and locate can be used to find duplicate files.
10 Mar 2012 by aidin Tajadod
Hi Guys,Sorry I am not sure if here is the right place to ask this question!I am developing a free website which generates some codes. I am looking for a "Term of use" and "Policy" for my website.my question is can I use one of those existing licence? for ex (BSD,GPL or ...)Do you...
18 Sep 2012 by Yvan Rodrigues
http://en.wiki...
15 Jun 2014 by Member 8857897
Hello!We are using FreeBSD 8.2 on an embedeed system and facing one serious problem when accesing shared libraries.When executing a binary on FreeBSD the execution performance is normal. If an other binary(or the same) is accessing the same library later then the performance is going...
27 May 2021 by Ahmad Qassym
void add_assign3(int *j) {*j = *j + 3; } why we dont write return *j inside the function ? What I have tried: ...............................................................