|
|
Browse by Tags
All Tags » software (RSS)
Showing page 1 of 2 (16 total posts)
-
If so, you should go and grab a copy (for free) of CodeRush Xpress for Visual Studio!
(I already own a copy of another addin, but I'll give it a try anyway :)
Adriano
-
As I said in this post, today I've found an interesting site about C++ programing practices.
While reading this pages I learned another way to write a fragile application (as always, writing bad code is enough :)
So, let's go for it! What will be the output of the following program?
void main(int argc, char* argv[])
{
int n = 255;
size_t ...
-
Hi.
Today I reached this page (on cert.org) site talking about C++ secure standard practices. I haven't read it to the end yet but at a first glance it looks pretty interesting (and useful) to me.
Wait, don't call yet!! There's a page regarding safe practices for C also!
I'll be reading this as soon as I get some time to ;)
Adriano
-
Hi.
This will be a very short, but I hope useful, post!
Of course I usually do a google search when I want to find some system/programing tools.
Also I do keep an eye on some pretty helpful sites:
The Free Country (www.thefreecountry.net)
Source Forge (www.sourceforge.net)Codeplex (www.codeplex.com)Fresgmeat (freshmeat.net/)One site that I ...
-
Hi!
I've just updated the Linq Console application! Now you don't need to copy your model assemblies to Linq Console folder anymore!
You can use the load command as follow:
:load ''c:\my projects\test\Test.Model.dll''
and the application will be able to load it :)
The source code can be downloaded from our svn ...
-
Hi.
Suppose you have the following C++ program (in a Windows box):
#include ''stdafx.h''
#include ''string.h''
void write(char *str, FILE *target)
{
fwrite(str, strlen(str), 1, target);
}
void _tmain(int argc, _TCHAR* argv[])
{
write(''Test:stderr\r\n'', stderr);
write(''Test:stdout\r\n'', stdout);
}
and you want to redirect its output to a ...
-
Hi,
Db4o just announced a new release! Check it out here and let us know what you think about these new (IMO) cool features!
Adriano
-
Para muitos usuários (e mesmo desenvolvedores) do Windows o conceito de arquivo esta tão sedimentado que muitas vezes melhorias significativas no sistema de arquivos deste sistema operacional (no caso o NTFS) são ignoradas.
Neste post apresento um dos recursos mais desconhecidos, stream alternativas de dados ou ADS (do inglês, Alternate Data ...
-
Assim como a morte de linguagens de programação como Cobol, Fortram, Basic, etc. e também a extinção dos programadores já foram anunciadas várias vezes, mas nunca se concretizaram ,graças a Deus, muitos já anunciaram a morte do COM (Component Object Model), uma tecnologia da MS para a componentização de soluções.
Infelizmente (para estes ...
-
Você desenvolve, ou conhece alguém que desenvolva, componentes COM/COM+? Integrando com o SNA/HIS server?
A algum tempo atras eu já não encontrava muitas pessoas que conhecessem e/ou desenvolvessem usando COM/COM+; agora parece mais difícil ainda! Bom, pelo menos a MS ainda utiliza estas tecnologias de forma extensiva, visto que no Windows Vista ...
1
|
|
|