Wow this looks like an interesting project!
jayart
Posts
-
Almost a complete waste of time -
Something thta was actually improved is going from VS2008 to 2010It works for C++ stuff too
-
What is this tool called?:laugh:
-
What is this tool called?Nope.. The intereactive whiteboard requires to be connected to a PC. This will not be the case. DD: I need to set automatic reminders like birthdays, bill payments, appointments, cleaning house etc. .
-
What is this tool called?I blame my age but not sure why I cannot find a single product which satisfies my requirement. Ok not wasting any time further - I am looking for a simple automated organizer for home. 1) It should be physically installable at home (in the kitchen - may be near the fridge)so no its not software that I am looking for. 2) Every time a reminder(todo action item like clean drawers) is triggered the display should show the reminder as well as all old reminders due. Untill the reminder is snoozed or dismissed, the todo action items should remain displayed. 3) I should be able to change the occurence of the reminder I think I need something smiliar to Google calendar but like a digital whiteboard which I can install any where in the house. I am almost feeling like writing a program for this but not sure about the hardware. I am pretty sure there should be something like this in the market but what is it called? Any suggestions/links are welcome.
-
So long, suckers! [modified]Wish you Happy Birthday in advance! I will be drunk tomorrow - watching TV. On sun - Watching TV and then getting drunk. Hold on - Am I drunk right now :rolleyes:
-
Someone who is bricking it big time!ha ha Dalek. You are so funny.
-
Had a horrible interview which lasted 3+ hoursI think the same. It was after so many years that I went for the interview and I was back to basics. Even simple things appeared so tough (now that I think about it I feel so silly). I could have done better - definitely! But as someone said "second chances" are rare.
-
Had a horrible interview which lasted 3+ hoursMy head is still spinning with the experience I had. The questions itself were not that tricky but it is my mistake, I should have prepared well. :(
-
What is my problem?LOL no I am not. You may be right. Most of the left-handers I know are generally more creative.
-
What is my problem?Thanks. It is giving me more motivation to go for an indepth investigation. I have to say would be timeconsuming but will be worth it.
-
What is my problem?At work it so happens that I fix quite challenging problems(typical non reproducible bugs which occur every hundred hours) but I cannot make out which fix exactly worked. It has happened twice till now. If I undo my fixes bug is reproducible. So definitely there is a fix in my version. Although my manager is impressed but I struggle to explain him and peers what fixed the issue. Most of the times I do know what fix worked but there are some times when I really dont think there is a logical connection with the symptons and my fixes but it works. huh I am going mad.
-
It's true: security is as good as the lowest common denominator.Made me LOL :laugh:
-
Why do you ANSWER questions in the programming forums?Regarding unanswered questions, there should be a way to highlight them. Probably an automatic way of bumping them from the hundreds of post posted. I also like the idea of categorizing quetsions using beginner/middle/complex categories. Also rating the users or giving them badges (next to their names), who answered and their answeres were accepted would encourage them more to answer.
-
Guess His Experience LevelI think the same. But no one in my team thinks this way and they have managed to make this as a coding rule.
-
16 layers of ifs, Who dare challenge this?I somehow do not appreciate the "single return" coding rule.
-
C++ wrappers for C struct apiProbably the bold text should be in all capital and font size 36! :laugh:
-
How to expose mixed class as COM class [modified typo rectified]Looks like I have to implement CCW (COM Collable wrapper) for the mixed class. Any examples or links in this regard wil be great.
-
How to expose mixed class as COM class [modified typo rectified]I am at an initial stage of converting a mixed class to make it COM class. (and eventually a complete project) I googled a bit but have found information only for managed(C#) class. Typically the mixed class would look like
// (in .h file)
namespace MyNameSpace
{
public __gc class CPoint
{
public:
CPoint();
~CPoint();
CPoint(float x, float y, float z);
__property void set_X(float x){ m_pPoint->m_x = x; }
__property float get_X() {return m_pPoint->m_x;}
public private:
// some functions here
};I have to expose this class as a COM class. I need an interface too. But not sure how to do this. Any link or information will be very helpful.
modified on Monday, May 19, 2008 5:59 AM
-
Math.Round..What am I missing?The problem is that the third party dll uses float value in its class. So I really cant get rid of the float :-) and I still need to use this dll. As a work around I am using Math.Abs() method to find out tolerable difference between the two float values instead of checking exact difference using "==" with floats.