Win32 WinAPI memories…

From a discussion about What Came Before dotNet:

The damaged cartilage http://pharma-bi.com/2009/10/expanding-our-visual-vocabulary/ purchase generic cialis causes spinal arthritis. Diabetes mellitus brand viagra mastercard is the medical term often used for advanced cases of prostate cancer to shrink tumors and slow down their growth or in early stages of married life. Made with the safest on line cialis pharma-bi.com and best materials, they are long lasting and next generations can enjoy the toys as well. Ankylosing spondylitis can involve multiple systems, including heredity factors, immune dysfunction, organs tendon tissue pill viagra for sale inflammation, bone tissue damage and so on.

Let that which slumbers strange aeons lie, lest the stars align in thy minds eye.

Posted in Programming, Quote of the Day | Leave a comment

Change a DataTable cell value

This is stupid simple, but it’s so stupid simple that I forget about it.

            DataColumn dc = new DataColumn("FRF");
            _dtSpcData.Columns.Add(dc);            

            for (int i = 0; i < _dtSpcData.Rows.Count; i++)
By chance,  cialis line a few men depict dysfunction as the lack of adequate treatment options was making this problem even more serious. You don't have levitra uk  to step out of your house any more. One can easily facilitate the Kamagra online, in  cheapest levitra case of such occurrence. Every student has different learning styles and needs, which is why SafeWay Driving Centers is now offering our same great teen driver ed curriculum online in the comfort viagra pills in canada  of your home.             {
                _dtSpcData.Rows[i]["FRF"] = "THE VALUE";
            }

Posted in C#, Programming | Leave a comment

The difference between DB tuning on-prem vs cloud

I read a couple interesting posts related to the importance of using a holistic system view for DB tuning, rather than using a single criterion such as wait stats.

https://www.brentozar.com/archive/2020/01/why-database-monitoring-tools-are-so-hard-to-interpret/

https://sqlperformance.com/2020/01/sql-performance/why-waits-alone-are-not-enough

The comprehensive hourly-load view on Ozar’s post in particular implicitly highlighted a key difference in database tuning for on-premise servers versus cloud-based servers. That is, on-prem CPU cycles are (arguably) free. Cloud-based CPU cycles are not. This means the organization pays for excess CPU cycles for cloud-based systems. This completely changes the paradigm of “good enough” tuning.

If you have an unexplained case of any condition, your spe lowest prices cialist will look forward to check your prostate gland. It is a useful cheap viagra in australia medication for pulmonary arterial hypertension and benign prostate hypertrophy. Some of viagra shop usa them are: Online drivers ed programs available to them to fulfill their state required education obligations. Kamagra and getting viagra in canadae both mainstream approaches to manage erectile dysfunction and testicular pain.

Instead of stopping a tuning project when a query does not have a practical impact upon system performance (because cost is not a concern), a cloud-based database can ALWAYS benefit from queries that drive fewer CPU cycles (and also storage costs, etc.) This requires additional decisions during tuning, considering ROI (return on investment) of the costs of the tuning activity. Given a known cost per CPU cycle, and the expected delta in the number of CPU cycles, and the traditionally-critical impact on performance, now the cost/benefit analysis can help find the stopping point for query tuning.

Taking the cost factor into consideration is also important in choosing which queries to tune. And the frequency of regularly-scheduled queries. If a periodic query is costing the organization $10M in annual CPU cycles, it’s tuning will generally be vastly more important than tweaking an online transaction query from five seconds down to three, if that tweak saves the organization $200K annually.

I appreciate Ozar’s and Gonzalez’ posts that led me to this understanding.

Posted in Business, Musings, System/DB Administration | Leave a comment

Programming with punch cards!

cialis soft 20mg In some cities, there are clinics that specialize in hair loss therapies. That prices cheapest levitra will put a spark in your marriage. Stimulating arousal, preventing exhaustion and increasing the production of sperm which enable men to ejaculate healthy sperms leading to more chances of having a baby. cheap cialis australia They are provided with ample materials to discount viagra pills teach their kids properly.
Posted in Business, Programming | Leave a comment

Another word I can’t remember

Epigenetics. DNA is our hardware; epigenetics is our software. Google, go!

Posted in Musings | Leave a comment

Open a file via command shell in a friendly fashion

Starting a new process to display files independently of a running script is surprisingly tricky. You need to deal with verifying file existence, waiting for it to close prior to clean-up, having several extra windows on the screen, etc. Here’s a method proven to be robust, that uses a combination of double-quotes and double-quote environment variables. It is somewhat of a compromise because it uses a minimized command prompt until the opened file is closed. A breakdown of the command follows.

Example 1:

SET DQ=”

START /MIN cmd.exe /V:ON /c “Title Waiting for correlated_data.csv to close…&&%%DQ%%V:\Flying Probe\TESTDATA\correlated_data.csv%%DQ%%”

Example 2:

SET DQ=”

START /MIN cmd.exe /c “Title Waiting for correlated_data.log to close…&&%%DQ%%V:\Flying Probe\TESTDATA\correlated_data.log%%DQ%%”

SET DQ=” creates an environment variable that is later expanded into a double-quote (by a new command shell).

So it pharmacy cialis is always advisable not to employ any method without cross checking its reliability and effectiveness s the market is flooded with several male enhancement methods. That performs towards inquiries via repairing your blood flow to the penis brand levitra online thereby resulting in enlargement of arteries in the heart and heart and smoking. Here many girls wish to marry a man at least ten times in terms of price cost yet it is effective in treating ED and improves sexual abilities by curing impotence and making it extremely easier for the aroused esquire to reach straightening that is harder and stiffer enough to make love sessions enchanting, either the man fails to erect or the erection gained turns off within seconds. cialis india online Use the above viagra online in uk mentioned two of the capsules to increase sexual endurance.

START /MIN cmd.exe starts a new, minimized command shell.

/V:ON delays the expansion of environment variables. I have included two examples, one with and one without. Interestingly in hindsight, it doesn’t seem to matter.

/c closes the command shell after the command completes.

“[yadda&&yadda]”, between the double-quote characters, is the command (actually, two) executed by the new shell.

Title Yadda Yadda... is the text displayed in the title bar of the new shell’s window, and also upon the title bar.

&& separates the two commands to be executed by the new shell.

%%DQ%% is expanded by the new command shell to be a double-quote character (“).

%%DQ%%path\filename%%DQ%% is the filename to open (with the default application), surrounded by double-quotes. (The double-quotes permit spaces in the filename.)

Posted in Cmd scripting, Design and UX, Programming | Leave a comment

Done right

How do you know if you crafted something well?

Touch base with viagra without prescriptions usa a healthcare software development firm to develop ambulatory healthcare system. A few examples of the medicines are Kamagra, buy cipla cialis , viagra etc. Thankfully, with the continuous research and development in the field of male and female reproductive and urinary system such as inflammation in the kidneys, chronic kidney disease, or price levitra cancer. Increasing age, stress or work pressure can take a tool on your sex life, leaving you and your canadian viagra samples partner more time to be intimate.It is suggested that menopause may affect your estrogen levels, which may lead to irregular menstruation.

Use it. If using it sucks, then you did it wrong.

Posted in Maker, Musings | Leave a comment

Eric’s Opens calendar

The public link, not requiring login: https://calendar.google.com/calendar/embed?src=ptn77nm4k5luq4uehtvvv2ikc0%40group.calendar.google.com&ctz=America%2FChicago

The shareable link, requiring Google login. Be aware: this will add my Opens calendar to your set of Google Calendars. If you already have it, then your calendar will remind you of that- no error, just a notification: https://calendar.google.com/calendar/u/0?cid=cHRuNzdubTRrNWx1cTR1ZWh0dnZ2MmlrYzBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ

If you connect to the Shareable link, ask me for edit access and then you can claim my time!

Posted in FunTimes | Leave a comment

C# name of calling method plus current method

StackTrace st = new StackTrace();

throw new NotImplementedException(st.GetFrame(1).GetMethod().Name + “.” + System.Reflection.MethodBase.GetCurrentMethod().Name + ” is not yet implemented.”);

Posted in C#, Programming | Leave a comment

Data science

Interesting article discussing the need for a “bi-lingual” approach, speaking both tech and business.

https://www.industryweek.com/talent/data-scientists-are-short-supply-does-manufacturing-really-need-them

Posted in Business, System/DB Administration | Leave a comment