What's everyone doing today ?
-
I am stuck working on a classic ASP site and I am trying to get it set up to run locally. The connection string always seems just one iteration away from working....
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
Writing conversion scripts to clean, de-dupe and load guardian names for minors in health care records. Then converting cpt codes for immunizations into cvx codes for immunizations for around 8 million records. In t-sql. Grunt data work but kind of interesting. Tomorrow, an interview for another job.
_____________________________ Give a man a mug, he drinks for a day. Teach a man to mug...
-
I am stuck working on a classic ASP site and I am trying to get it set up to run locally. The connection string always seems just one iteration away from working....
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
Adding more functionality to our Silverlight and WCF framework, its looking cool.
www.software-kinetics.co.uk Wear a hard hat it's nnder construction
-
That's interesting... I have a OPCServer at work that's a constant source of headaches, and I'd love to rewrite it. Where can I find information about the beasts? I have no experience with them, or the industry standards they use.
Will Rogers never met me.
We have 3 or 4 OPCServers at work as well,(Beijer electronics,Archestra DASSIDirect). As you say they are a source of headaches.Especially the usage of DCOM. I am writing my own opcserver from scratch(with the help of a PLC programmer). I downloaded all pdf documents i could from Mitsubishi,explaining how the Melsec FX PLC works(the information given was slim). They try to hide the communication standard so it is very hard to find documents that explains how to write an OPCServer. Communication is like everything else.It's a stream of bytes over network or serial. You just have to figure out how. My next step is Siemens S7 which use a different stream of bytes,so i basically have to start over when I´m aiming for that one. If you want, you can go to http://libnodave.sourceforge.net/[^] which is a free library for Siemens S7 communication in multiple programming languages.
-
Actually this semester I can slack off a little. Last semester I had advanced geostatistics and a graduate level numerical methods course at the same time I was working about 30 hours a week. Almost killed me, but I passed everything with A's. Just one course and working less seems like vacation in comparison. At least all I'm doing is some math: ordinary differential equations, linear algebra, integral transforms, power series, partial differential equations, nothing fancy and all review. And the oil field stuff I handled on my cell phone while walking back from The University, no big deal. Now, working on ASP stuff, that would make my head hurt! :laugh:
CQ de W5ALT
Walt Fair, Jr., P. E. Comport Computing Specializing in Technical Engineering Software
I hope you at good university. My lessons too seems hard to understanding for someone not from the field, but it's all just bull crap :D
No more Mister Nice Guy... >: |
-
I am stuck working on a classic ASP site and I am trying to get it set up to run locally. The connection string always seems just one iteration away from working....
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
Last night I could not sleep, so I completely refactored my XNA graphics engine and user interface. By the time I came to work I already had done a good day's work. Now the UI, the 3D engine and the still rudimentary 2D engine can be used separately or in any combination. And, as a bonus, the whole thing now can render things into separate layers. And now I sit at work and am hunting far less interesting bugs :)
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011 -
Actually this semester I can slack off a little. Last semester I had advanced geostatistics and a graduate level numerical methods course at the same time I was working about 30 hours a week. Almost killed me, but I passed everything with A's. Just one course and working less seems like vacation in comparison. At least all I'm doing is some math: ordinary differential equations, linear algebra, integral transforms, power series, partial differential equations, nothing fancy and all review. And the oil field stuff I handled on my cell phone while walking back from The University, no big deal. Now, working on ASP stuff, that would make my head hurt! :laugh:
CQ de W5ALT
Walt Fair, Jr., P. E. Comport Computing Specializing in Technical Engineering Software
Walt Fair, Jr. wrote:
Now, working on ASP stuff, that would make my head hurt! :laugh:
A sore head is fine, it's when it makes my heart ache that I don't like it...
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
I am stuck working on a classic ASP site and I am trying to get it set up to run locally. The connection string always seems just one iteration away from working....
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
Programming ststement in the lounge. :P
"The whole idea that carbon dioxide is the main cause of the recent global warming is based on a guess that was proved false by empirical evidence during the 1990s." http://opinion.financialpost.com/2011/04/07/climate-models-go-cold/
-
Last night I could not sleep, so I completely refactored my XNA graphics engine and user interface. By the time I came to work I already had done a good day's work. Now the UI, the 3D engine and the still rudimentary 2D engine can be used separately or in any combination. And, as a bonus, the whole thing now can render things into separate layers. And now I sit at work and am hunting far less interesting bugs :)
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011Are you using XNA for more then games? How powerful is XNA compared to Directx or OpenGL?
-
Are you using XNA for more then games? How powerful is XNA compared to Directx or OpenGL?
Well, the graphics engine and user interface can be used for anything, not only games. I still need more controls, but by now I can use the UI almost like Windows Forms. I am going to include some support for the MVP pattern, so they will even be more practical. XNA is a managed wrapper and framework for DirectX 9. And probably the XBox support is the only reason that it's 'only' DirectX 9. You have a comfortable framework which makes initializing the Device object and other standard tasks very easy and managed code does not cost too much performance. At least at the beginning you will have more performance issues from less optimal code for the shaders or badly synchronized threads than from getting to the limits of the GPU.
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011 -
Well, the graphics engine and user interface can be used for anything, not only games. I still need more controls, but by now I can use the UI almost like Windows Forms. I am going to include some support for the MVP pattern, so they will even be more practical. XNA is a managed wrapper and framework for DirectX 9. And probably the XBox support is the only reason that it's 'only' DirectX 9. You have a comfortable framework which makes initializing the Device object and other standard tasks very easy and managed code does not cost too much performance. At least at the beginning you will have more performance issues from less optimal code for the shaders or badly synchronized threads than from getting to the limits of the GPU.
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011if it is a wrapper it should be simpler as well? I´m starting to get curious, maybe i should dive into XNA. How is deployment of written programs, Is it as easy as normal C# programs to make .msi installers?
-
if it is a wrapper it should be simpler as well? I´m starting to get curious, maybe i should dive into XNA. How is deployment of written programs, Is it as easy as normal C# programs to make .msi installers?
Not simpler. You still have control over everything as far as I can see, but the framework classes take a lot of tedious work (like initializing the graphics device) off your hands. Deplayment may be a tiny bit more difficult. Or I just did not get it right and must look into it again. The problem is with the Content, a folder of graphics resources, which was not deployed along with the rest of program. But once I'm ready, I am going to add a complete setup project anyway.
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011 -
Not simpler. You still have control over everything as far as I can see, but the framework classes take a lot of tedious work (like initializing the graphics device) off your hands. Deplayment may be a tiny bit more difficult. Or I just did not get it right and must look into it again. The problem is with the Content, a folder of graphics resources, which was not deployed along with the rest of program. But once I'm ready, I am going to add a complete setup project anyway.
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011Ok, It sounds interesting enough anyway. I will dive into it.
-
Ok, It sounds interesting enough anyway. I will dive into it.
Have you done something with DirectX before?
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011 -
Have you done something with DirectX before?
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011No I havent. I´ve just started picking up on Blender(3d studio). I will export models to an engine later on. I have written stuff in OpenGL C++ and using models created in google Sketchup. I havent decided on the engine yet(OpenGL,DirectX or XNA). I love the multithreading capabilities of C# so i might go C# XNA when i write it :) .
-
I am stuck working on a classic ASP site and I am trying to get it set up to run locally. The connection string always seems just one iteration away from working....
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
Ewww. I'm working on a project that is part legacy ASP, part ASP.Net, and part Silverlight. There's a descriptive word that comes to mind, and the first syllable is "cluster"...
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997 -
No I havent. I´ve just started picking up on Blender(3d studio). I will export models to an engine later on. I have written stuff in OpenGL C++ and using models created in google Sketchup. I havent decided on the engine yet(OpenGL,DirectX or XNA). I love the multithreading capabilities of C# so i might go C# XNA when i write it :) .
OpenGL is similar enough, so this may help. Right now I'm at work and can't get you a link, but you might search for Riemer's XNA tutorials to get a good start. I have not been there for a longer time, so I can just hope they have updated the tutorials for XNA 4.0. Code for version 3.0 will not work without some changes.
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011 -
Walt Fair, Jr. wrote:
Now, working on ASP stuff, that would make my head hurt! :laugh:
A sore head is fine, it's when it makes my heart ache that I don't like it...
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
I never have that problem. Work never makes my heart ache. Kids, wife, now that's another matter.
CQ de W5ALT
Walt Fair, Jr., P. E. Comport Computing Specializing in Technical Engineering Software
-
I hope you at good university. My lessons too seems hard to understanding for someone not from the field, but it's all just bull crap :D
No more Mister Nice Guy... >: |
Well, I could have sent off for my degree via email, but decided I'd go to someplace with real professors, etc.[^]
CQ de W5ALT
Walt Fair, Jr., P. E. Comport Computing Specializing in Technical Engineering Software
-
OpenGL is similar enough, so this may help. Right now I'm at work and can't get you a link, but you might search for Riemer's XNA tutorials to get a good start. I have not been there for a longer time, so I can just hope they have updated the tutorials for XNA 4.0. Code for version 3.0 will not work without some changes.
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011Will do, Thanks.
-
Will do, Thanks.
Welcome! And usually I export my modest models from Blender to XNA with the .x format. You just must set it to swap the Y and the Z axis because of different coordinate systems.
"I just exchanged opinions with my boss. I went in with mine and came out with his." - me, 2011 ---
I am endeavoring, Madam, to construct a mnemonic memory circuit using stone knives and bearskins - Mr. Spock 1935 and me 2011