
applicationengineering.blogspot.com
Jack Notarangelo's Application Engineering BlogA blog about Agile/Scrum and general software development and engineering.
http://applicationengineering.blogspot.com/
A blog about Agile/Scrum and general software development and engineering.
http://applicationengineering.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Wednesday
LOAD TIME
0.3 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
18
SSL
EXTERNAL LINKS
35
SITE IP
172.217.11.33
LOAD TIME
0.281 sec
SCORE
6.2
Jack Notarangelo's Application Engineering Blog | applicationengineering.blogspot.com Reviews
https://applicationengineering.blogspot.com
A blog about Agile/Scrum and general software development and engineering.
Jack Notarangelo's Application Engineering Blog: March 2010
http://applicationengineering.blogspot.com/2010_03_01_archive.html
Jack Notarangelo's Application Engineering Blog. The purpose of this blog is to share software development methodologies and techniques related to project management, estimation, resourcing, communication, etc. Sunday, March 28, 2010. Why Cloud Computing Won’t Lead to Dumb Terminals. It’s easy to fast forward to a time where cloud computing will once again lead to an era of dumb terminals. However, I don’t believe that to be true. With cloud computing, the proximity of our data is less important (and lik...
Jack Notarangelo's Application Engineering Blog: Distributed Scrum - Integrating Offshore Resources
http://applicationengineering.blogspot.com/2011/10/distributed-scrum-integrating-offshore.html
Jack Notarangelo's Application Engineering Blog. The purpose of this blog is to share software development methodologies and techniques related to project management, estimation, resourcing, communication, etc. Wednesday, October 5, 2011. Distributed Scrum - Integrating Offshore Resources. There are plenty of articles written about offshoring projects, significantly less written on distributed teams, and a trivial amount written on distributed scrum with oursourced and offshore teams. When you find the r...
Jack Notarangelo's Application Engineering Blog: July 2010
http://applicationengineering.blogspot.com/2010_07_01_archive.html
Jack Notarangelo's Application Engineering Blog. The purpose of this blog is to share software development methodologies and techniques related to project management, estimation, resourcing, communication, etc. Friday, July 30, 2010. Performing a Review of a Software Development Team. Each developers’ local version of source code and folder structure should be identical so if someone were to go from developer to developer the location and folder structure would be identical. This one is a big deal to me ...
Jack Notarangelo's Application Engineering Blog: October 2011
http://applicationengineering.blogspot.com/2011_10_01_archive.html
Jack Notarangelo's Application Engineering Blog. The purpose of this blog is to share software development methodologies and techniques related to project management, estimation, resourcing, communication, etc. Sunday, October 30, 2011. Development Managers in Agile. To understand the role of a development manager in Agile, we must first understand the difference between management and leadership. So how should leadership and management manifest themselves in an Agile-based organization? A leader is ofte...
Jack Notarangelo's Application Engineering Blog: February 2010
http://applicationengineering.blogspot.com/2010_02_01_archive.html
Jack Notarangelo's Application Engineering Blog. The purpose of this blog is to share software development methodologies and techniques related to project management, estimation, resourcing, communication, etc. Saturday, February 20, 2010. Which Cloud is right for you? A good example of the inadequacy of the big four as software engineering environments is the fact that Amazon deletes VMs when they are shut down. That’s clearly indicative of a public facing focus where shutting down a VM equate...A more ...
TOTAL PAGES IN THIS WEBSITE
18
DataGeek: November 2012
http://datadevgeek.blogspot.com/2012_11_01_archive.html
Exploring the world of data and database development.among other things. Thursday, November 15, 2012. Resetting Your Windows Local Administrator Password. Boot onto DVD of Windows Server 2008. Choose “Repair your computer”. Go to c: windows system32. Rename Utilman.exe to Utilman.exe.bak. Copy cmd.exe to Utilman.exe. Click the Ease of Access button on lower left corner of login screen (Should open a command prompt). Net user administrator Newpass123 inside the command prompt. Reboot using the DVD.
DataGeek: December 2012
http://datadevgeek.blogspot.com/2012_12_01_archive.html
Exploring the world of data and database development.among other things. Sunday, December 23, 2012. A SQL Backup Option Just for Transferring a Database. Here’s an interesting option when copying a database just to transfer it. Say to bring down a copy of production to troubleshoot or test. This allows you to backup a database without affecting the regular backup history or restore ability. Copy-Only Backups (http:/ msdn.microsoft.com/en-us/library/ms191495(v=sql.105).aspx). Subscribe to: Posts (Atom).
DataGeek: Avoiding NOLOCK
http://datadevgeek.blogspot.com/2012/08/avoiding-nolock.html
Exploring the world of data and database development.among other things. Thursday, August 30, 2012. Here’s an interesting article. Http:/ www.jasonstrate.com/2012/06/the-side-effect-of-nolock/. On the affects of using the NOLOCK hint in your SQL queries and how even data not being directly affected by an update can be messed up in your query. Subscribe to: Post Comments (Atom). John Bastow is a software architect and engineer and sometime technology consultant who's written a few apps in his time.
DataGeek: Why ISNUMERIC Returns More Than Just Strictly Numeric Strings and What to do Instead
http://datadevgeek.blogspot.com/2012/09/why-isnumeric-returns-more-than-just.html
Exploring the world of data and database development.among other things. Monday, September 17, 2012. Why ISNUMERIC Returns More Than Just Strictly Numeric Strings and What to do Instead. This article ( Why doesn’t ISNUMERIC work correctly? Explains why the the SQL ISNUMERIC function returns true for strings with more than just digits and decimal points. The short answer is that it considers formatted numbers, such as those with currency symbols or commas among others as numeric. NOT LIKE '%[ 0-9.]%'.
DataGeek: September 2011
http://datadevgeek.blogspot.com/2011_09_01_archive.html
Exploring the world of data and database development.among other things. Thursday, September 1, 2011. Here’s a neat little feature I wasn’t aware of until recently. You can make a .NET Dictionary object case-insensitive. i.e. myDictionary[“ABC”] returns the same as myDictionary[“aBc”]. You can read more at:. C# Case-Insensitive Dictionary on Dot Net Perls (http:/ www.dotnetperls.com/case-insensitive-dictionary). Subscribe to: Posts (Atom). View my complete profile. Musings, mumblings, and murmurs.
DataGeek: August 2011
http://datadevgeek.blogspot.com/2011_08_01_archive.html
Exploring the world of data and database development.among other things. Wednesday, August 31, 2011. Returning Multiple Disparate Result Sets as XML From SQL Server Using FOR XML EXPLICIT. Monday, August 22, 2011. Fun with WCF, WSDL and the F5 (Updated). Although the backend functionality is fairly stable, the web service layer itself is not that mature. Not too big a deal as it’s a fairly thin wrapper over our existing service layer. We created, tested and delivered a test ....Not so much. ...
DataGeek: COALESCE vs. ISNULL in T-SQL
http://datadevgeek.blogspot.com/2012/05/coalesce-vs-isnull-in-t-sql.html
Exploring the world of data and database development.among other things. Monday, May 14, 2012. COALESCE vs. ISNULL in T-SQL. A colleague of mine forwarded the following article along to me:. Deciding between COALESCE and ISNULL in SQL Server. Http:/ www.mssqltips.com/sqlservertip/2689/deciding-between-coalesce-and-isnull-in-sql-server/. Subscribe to: Post Comments (Atom). John Bastow is a software architect and engineer and sometime technology consultant who's written a few apps in his time.
DataGeek: March 2012
http://datadevgeek.blogspot.com/2012_03_01_archive.html
Exploring the world of data and database development.among other things. Friday, March 16, 2012. I ran into an issue with one of my WCF services and was having the quite a time trying to track it down, especially since it was failing before it was getting to the actual service. I came across a nice way of tracing the call all the way through the process. Add the following section to your web.config file:. 160; source name=System.ServiceModel. 160; listeners. 160; /listeners. John Bastow is a ...
DataGeek: Tracing WCF Calls
http://datadevgeek.blogspot.com/2012/03/tracing-wcf-calls.html
Exploring the world of data and database development.among other things. Friday, March 16, 2012. I ran into an issue with one of my WCF services and was having the quite a time trying to track it down, especially since it was failing before it was getting to the actual service. I came across a nice way of tracing the call all the way through the process. Add the following section to your web.config file:. 160; source name=System.ServiceModel. 160; listeners. 160; /listeners.
DataGeek: A SQL Backup Option Just for Transferring a Database
http://datadevgeek.blogspot.com/2012/12/a-sql-backup-option-just-for.html
Exploring the world of data and database development.among other things. Sunday, December 23, 2012. A SQL Backup Option Just for Transferring a Database. Here’s an interesting option when copying a database just to transfer it. Say to bring down a copy of production to troubleshoot or test. This allows you to backup a database without affecting the regular backup history or restore ability. Copy-Only Backups (http:/ msdn.microsoft.com/en-us/library/ms191495(v=sql.105).aspx). View my complete profile.
TOTAL LINKS TO THIS WEBSITE
35
Non-Existent Domain
Your browser does not support iframes, please click here.
Application Elements - Home
Web Services with PHP. Let Applications Elements bring all of the necessary ingredients together to help your enterprise succeed with I/T initiatives. Our approach is a simple and straight forward recipe for success:. Our team is small, energetic and focused. Our members are skilled and experienced with the latest tools and technologies. We conduct regular I/T sessions to share our knowledge and keep our skills sharp. Align Business and I/T. Use the Right Approach. Use Advanced Technologies Correctly.
Sign In
applicationenginebasics.blogspot.com
Application Engine
View my complete profile. Monday, June 18, 2007. Application Engine is a PeopleTool designed to develop background SQL processing programs. AE offers an alternative to writing Cobol or SQR programs for background SQL processing. AE does not generate, parse or understand SQL. It merely executes SQL that we provide. We can use AE for straight, row-by-row processing, but the most AE programs are written to perform set-based processing. 1 Graphical Developer Interface. 3 Data Dictionary Integration. 3 Data D...
applicationengineer.com
The domain applicationengineer.com is for sale. To purchase, call Afternic.com at 1 781-373-6847 or 855-201-2286. Click here for more details.
applicationengineering.blogspot.com
Jack Notarangelo's Application Engineering Blog
Jack Notarangelo's Application Engineering Blog. The purpose of this blog is to share software development methodologies and techniques related to project management, estimation, resourcing, communication, etc. Sunday, October 30, 2011. Development Managers in Agile. To understand the role of a development manager in Agile, we must first understand the difference between management and leadership. So how should leadership and management manifest themselves in an Agile-based organization? A leader is ofte...
Price Request - BuyDomains
Url=' escape(document.location.href) , 'Chat367233609785093432', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=500');return false;". Need a price instantly? Just give us a call. Toll Free in the U.S. We can give you the price over the phone, help you with the purchase process, and answer any questions. Get a price in less than 24 hours. Fill out the form below. One of our domain experts will have a price to you within 24 business hours. United States of America.
Application engineer jobs ~ all Application engineer jobs with one search (USA) | ApplicationEngineerJobs.org
Job title, keywords or company. City, state or zip. 2,959 new jobs. In the USA over the last 7 days. Job juncture, inc. Try browsing by state.
Under Construction
applicationengineers.blogspot.com
Application Engineers
Friday, July 30, 2010. The Manufacturing and Machine Tool Industry. Post you job here. Subscribe to: Posts (Atom). The Manufacturing and Machine Tool Industry. We are the largest Blog network in the industry. To advertise on this page or other Blogs in our group call 1 866 449-0442 or SKYPE:MediaWebLink. View my complete profile. Simple template. Powered by Blogger.
Price Request - BuyDomains
Url=' escape(document.location.href) , 'Chat367233609785093432', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=500');return false;". Need a price instantly? Just give us a call. Toll Free in the U.S. We can give you the price over the phone, help you with the purchase process, and answer any questions. Get a price in less than 24 hours. Fill out the form below. One of our domain experts will have a price to you within 24 business hours. United States of America.