Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

david garlisch

@david garlisch
About
Posts
7
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Why does most C/C++ developer prefers char *c instead of char* c?
    D david garlisch

    My $0.02. In general variables are declared as:

    type varname;

    So ask the questions: What is the type of varname? What is the varname?

    char c; // char is the type. c is var name
    char* c; // char* is the type. c is the var name

    double d; // double is type. d is var name
    float f; // float is type. f is var name

    double* d; // double* is type. d is var name
    float* f; // float* is type. f is var name

    Ultimately, BOTH ARE CORRECT. As long as all devs in a team/organization use the same code format style guide, IT DOESN'T MATTER. Just be consistent.

    www.pointwise.com

    The Lounge question c++

  • Why does most C/C++ developer prefers char *c instead of char* c?
    D david garlisch

    Which is why I never use comma separated variable declarations.

    char* a , b, c[12], *d[5]; // ugly and prone to misinterpretation

    char* a; // no ambiguities here!
    char b;
    char c[12];
    char* d[5];

    www.pointwise.com

    The Lounge question c++

  • AV recommendations?
    D david garlisch

    I have been using Grisoft's AVG anti-virus *free* edition for years. I am very happy with it. http://free.grisoft.com

    www.pointwise.com

    The Lounge css security help question

  • Monitor size?
    D david garlisch

    I use 2 Dell 20" wide screen 1680x1050 LCDs (2005FPW/2007WFP). I would highly suggest multiple hi-res monitors over 1 larger monitor. Inches are not as important as pixels! As you said, you like to keep things maximized. One screen can have studio maxed on it. The other screen can have the app you are debugging running on it, or email, or docs. You get the idea. You will find your optimal layout. The one thing I have found exceptionally powerful with multiple monitors is the ability to debug draw issues that are vitually impossible to debug on a single monitor. Swapping back and forth between the debugger and the app on one screen completely messes up the paint/message sequence!

    www.punchcad.com

    The Lounge csharp css visual-studio question

  • Source Version Control
    D david garlisch

    If you have small dev team, the free version of perforce is very nice. I use it at home and at work. Integrates nicely with visual studio and mac x-code. There are nice winOS and macOS clients too. perforce downloads

    www.csi-concepts.com

    The Lounge collaboration question announcement

  • That's it, I'm ditching CVS!
    D david garlisch

    Perforce has a free limited user download you may want to check out. from perforce download page[^]: Licensing You may use software downloaded from Perforce for any purpose you want and for as long as you like. The Perforce Server supports only two users and five client workspaces unless used with a Perforce License. We will be happy to issue you a free Evaluation License to remove the user/workspace restrictions for a limited time. And no, I do NOT work for Perforce. ;) David

    www.csi-concepts.com

    The Lounge linux

  • Source control (VS2005 integrated, comunity approved)
    D david garlisch

    I have had a lot of success with the Perforce system. And it is free for personal/small group usage. From the Perforce website: Licensing You may use software downloaded from Perforce for any purpose you want and for as long as you like. The Perforce Server supports only two users and five client workspaces unless used with a Perforce License. We will be happy to issue you a free Evaluation License to remove the user/workspace restrictions for a limited time. The best part, is being able to access the server from any machine on the network or internet. You can use port forwarding and ssh tunneling to access the server through a firewall.

    www.csi-concepts.com

    The Lounge html com tools question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups