Wednesday, November 21, 2012
Treatment of insubordination
And (!) tried to use it in contrary to managers' bad opinion about his performance.
Some people would just benefit from being fired a couple of times.
ISTQB Certified - Foundation
------------------------------------------------------------------------
------------------------------------------------------------------------
Yes, I am a PM, not test engineer, but one should know how the activities he manages are done from inside.
Also, learning itself was very usefull to arrange my knowledge of SDLC and fill out the gaps in terms and processes.
Hello PMI
What I did yet:
- Training with Spider Project in Kiev, Ukraine (http://spiderproject.com.ua)
- PMI membership: pmi.org and my own PMBOK
So I will put here all the news, links and ideas I have related to the PMI and their activities
PMP certification experience (sorry in russian) http://pmi.org.ua/ru/articles/test
Certification price, procedure and other questions: http://www.pmi.org/en/Certification/~/media/PDF/Certifications/pdc_pmphandbook.ashx
New Agile certification from PMI practice advises: maybe sometimes in future...
(sorry in russian) http://pmi.org.ua/ru/articles/9067004
Thursday, August 09, 2012
Android NDK setup for Eclipse IDE
Here is a guide that helped
http://mhandroid.wordpress.com/2011/01/23/using-eclipse-for-android-cc-development/
NDK Android Eclipse
Tuesday, March 01, 2011
ASP.NET application does not work: 0x80070021. This configuration section cannot be used at this path
After reinstalling the Windows, Suite ASP.NET application does not work: 0x80070021. This configuration section cannot be used at this path
Unexpectedly help comes from Microsoft Knowledge Base:
http://support.microsoft.com/kb/942055/
See case #9
http://learn.iis.net/page.aspx/145/how-to-use-locking-in-iis-70-configuration
Editing the %windir%\system32\inetsrv\config\applicationHost.config helped.
Error message:
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.
Detailed Error Information
Module | AnonymousAuthenticationModule |
Notification | AuthenticateRequest |
Handler | PageHandlerFactory-ISAPI-2.0-64 |
Error Code | 0x80070021 |
Config Error | This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false". |
Config File | \\?\C:\Dev\531Patch00\Root\Web\Logon\web.config |
Friday, February 18, 2011
SQL 2008 setup error: Rebuild the performance counters of a SQL Server 2005 or 2008 instance
Here are the pills:
http://www.sqldev.org/sql-server-setup--upgrade/error-on-install-performance-counter-registry-hive-consistency-check--statusfailed-89399.shtml
Thursday, February 03, 2011
Importance of order
Just what I understand while trying to update a super-customized database came from client to our newest version:
There can never be too much journaling and logging!!!
Every megabyte you spent for detailed history of your application life can save you hours of your life those you'll damn hundred times otherwise.
Think early :-)
Wednesday, August 25, 2010
Self-hosted WCF service with SSL certificate security
Spent the whole day trying to force my self-hosted service to respond.
Finally what has helped is two lines below to execute (port, certhash, path and user name are up to you. Not sure about appid yet :-) ):
netsh http add urlacl url=httpS://+:2202/PatientService user=DOMAIN\user
netsh http add sslcert ipport=0.0.0.0:2202 certhash=ea81a9b4c330247f966d23d7e21266171f92cd47 appid={4EF5AB95-0A11-43b1-842C-51D56687CC7A}
Now need to understand - WHY??
Monday, August 02, 2010
Thursday, July 08, 2010
Tuesday, April 20, 2010
SQL Server 2008 setup: Error "Restart Computer Failed"
It was really bad.
However, there are kind people around!
Especially here:
Thursday, February 04, 2010
http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/
(However I am not sure about complex databases (like encrypted) yet...)
Friday, January 22, 2010
Change
HKLM\Software\Microsoft\Microsoft SQL Server\
1 = integrated only, 2-mixed
For
From here: http://www.sqlservercentral.com/Forums/Topic439615-359-1.aspx
Thursday, January 21, 2010
http://www.slideshare.net/reed2001/culture-1798664
Monday, July 27, 2009
PM Labs 2009 conference by Luxoft Training Center
More info is here: http://www.pm-labs.ru/news/105
So let's go on!
Thursday, June 25, 2009
Azure Cloud over firewall: HTTP protocol incompatibility
Just got a real problem - out corporative Squid firewall does not support HTTP 1.1 properly, and Azure data storage strictly requires it.
As a result, accessing Azure data from local application is not possible at all.
For example, log viewer application are useless.
And of course it is really hard to kick our administrators to change it.
Tuesday, June 23, 2009
Issue with parsing command lines containing path in c#
Another strange detail of .NET/C#:
I needed to pass two pathes to c# command line arguments, and wasn't able to control whether they are ended with backslash or not. Really it was a C# post-build tool so arguments were passed by MsBuild. Final command line looked like following:
"C:\My Path\My Program.exe" "C:\First Path\" "C:\Second Path\"
However C# command-line parser treats \" as esacape sequence
so for this sample
args[0]=="C:\\First Path\" "
and args[1]=="C:\Second"
and even args[2]=="Path\"".
Absolutely unacceptable, isn't it?
The only way to solve it I can see is to get the whole original command line from Environment.CommandLine and have your own parser. Please remember that this value includes executable name as well that may be or may be not quoted too.
Some explanation is here:
http://www.eggheadcafe.com/conversation.aspx?messageid=31268633&threadid=31268617
Wednesday, June 03, 2009
Converting Word document to clean HTML
I tried different approached found from Google - exporting and cleaning by Tidy, manual replaces, even using Gmail preview function (send document to GMail account and use preview on site).
Still looks ugly. I did not try DreamWeaver funcion for Word HTMl cleaning yet, maybe found one to try.
If it didn't help - need to copy-paste without formatting and format manually :-(.
Really Format Manual seemed to be the only possible solution - did it finally in Expression Web I had at hand. Funny tool but still missing some important features like formatting copier.
Monday, June 01, 2009
Troubles accessing WCF service on Vista
(Strange that there are so few comments on it found by Google.
Do any other developers use Vista? Or they know some secret way?
One of useful advises I met was "Get rid of Vista")
So, back to the problem.
I tried to debug by WCF service-based application on Vista
after succesfully running it on Windows XP.
However, it did not work.
First idea was to restart VisualStudio with Administrator permissions that is usual.
But it did not work again and gave smth. "is in Faulted state" error.
Magic words are the command:
netsh http add urlacl url=http://+:9001/ user=DOMAIN\user
Replace URL and user domain/name with your data.
More details are here:
http://stackoverflow.com/questions/598643/hosting-a-wcf-service-in-vista
and here
http://msdn.microsoft.com/en-us/library/ms733768.aspx
By the way, thanks a lot for all the guys from http://stackoverflow.com/. Great job!
(Sidenote. Why is it so complex to request permissions elevation from .NET? I got samples from Microsoft here but it is very unconmmon anyway)