
gaussc.blogspot.com
Chasing TailSoftware Engineering thoughts
http://gaussc.blogspot.com/
Software Engineering thoughts
http://gaussc.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Tuesday
LOAD TIME
0.2 seconds
PAGES IN
THIS WEBSITE
12
SSL
EXTERNAL LINKS
23
SITE IP
216.58.194.161
LOAD TIME
0.202 sec
SCORE
6.2
Chasing Tail | gaussc.blogspot.com Reviews
https://gaussc.blogspot.com
Software Engineering thoughts
Chasing Tail: March 2008
http://gaussc.blogspot.com/2008_03_01_archive.html
Friday, March 7, 2008. Pair Programming in Practice. Is pair programming a viable method? This is a viable method. In our small (8 people) company we are using pair programming almost every day. But. It is not so easy as I thought at the beginning. 1 I think it is almost impossible to work in pair whole day. I cannot explain this very precisely, but when I work in pair I also need some loneliness from time to time, just to take a breath). For me 6h is max. 2 Working in pair is very tiring. Even though we...
Chasing Tail: C# needs Linq to be (really) functional language
http://gaussc.blogspot.com/2008/11/c-is-functional-language-but.html
Sunday, November 23, 2008. C# needs Linq to be (really) functional language. C# is a functional language. Although this is true for for all versions of the language there is very significant difference in usability between C# 3.0 and older releases. To see some differences let's compare the same code fragment. Using some typical functional constructs. Written in both: C# 2.0 and 3.0. First let's write simple function, which inspects (converts to readable string) array content using C# 2.0. Feature introd...
Chasing Tail: April 2008
http://gaussc.blogspot.com/2008_04_01_archive.html
Tuesday, April 29, 2008. Books about Software Engineering I recommend. My favorite book about Agile:. Agility and Discipline Made Easy. By Perr Kroll and Bruce MacIsaac (no polish edition). Another great book about Agile:. By Mary and Tom Poppendiecks (no polish edition). Introduction to XP (short and nice, a lot of good practices):. By Kent Beck and Cynthia Andres ( polish edition. Very good book about one of the most important "best practices":. By Paul Duvall (no polish edition).
Chasing Tail: Pesticide paradox
http://gaussc.blogspot.com/2008/12/pesticide-paradox.html
Saturday, December 6, 2008. Do you have a lot of automatic tests? Do you continously add new test cases and improve existing ones? You shouldn't sleep well. ;-). Please be aware that the value of the same tests executed over and over again (e.g. regression tests) decreases with time. This is known as "pesticide paradox". Following ISTQB "Certified T. It's not enough to have automatic tests suite. It's essential to improve it over the time. Subscribe to: Post Comments (Atom). View my complete profile.
Chasing Tail: February 2008
http://gaussc.blogspot.com/2008_02_01_archive.html
Sunday, February 24, 2008. Deep equality in modern languages. I was recently creating with Ruby simple Extract-Transform-Load. Tool for importing data set from XML file to our databse. At the beginning it seemed very easy, although painful task. The first problem I was trying to solve was testing. Nothing interesting, I thought. And I was almost right. Almost. Testing algorithm was very simple:. 1 expected = predefined data set (so called test fixture). 2 import data from XML file to DB. Ordinary thing, ...
TOTAL PAGES IN THIS WEBSITE
12
Most recent call: December 2010
http://konryd.blogspot.com/2010_12_01_archive.html
Monday, 20 December 2010. Mocking empty collections with FalseMock. A friend of mine described to me a PITA he had with mock - it doesn't play well with a common Python idiom:. If collection: for element in collection: do something(element). What he expected as default behaviour was for the mock to be iteratable as an empty collection. Instead, he got:. M = mock.Mock() for x in m: . print x . Traceback (most recent call last): File ". Line 1, in. TypeError: 'Mock' object is not iterable.
Most recent call: August 2010
http://konryd.blogspot.com/2010_08_01_archive.html
Monday, 16 August 2010. Distutils2 Summer of Code. This summer, I took part in Google Summer of Code project as a student. I worked on distutils2 project implementing new commands and improving the existing ones. In poarticular, my tasks were:. To implement a test command (similar to the one from setuptools/distribute. Port the upload docs command. Enhance the check command. Install] pre-hook.my postfix = path.to.hook. The improvements to the check command were arguably most neglected task in my project&...
Most recent call: Mock recipes
http://konryd.blogspot.com/2010/06/mock-recipies.html
Saturday, 12 June 2010. I posted recently a simple introduction. To the mock library. Today, I'd like to show you some of its indirect uses, that I found helpful in my everyday testing needs. It is very easy to set up mock objects to respond to events. You just access attributes and set either them or their return value. When using the patch decorator, a mock instance is provided to your test method as the last argument, so you set it up just before excercising your production code. Run code under test().
Most recent call: Issues with Django and MySQL on Mac OS X
http://konryd.blogspot.com/2011/01/issues-with-django-and-mysql-on-mac-os.html
Monday, 3 January 2011. Issues with Django and MySQL on Mac OS X. Today, I spent more time than planned setting up a Django installation with MySQL database backend. Below are the problems I encountered and the ways how I dealt with them. I'm using what's supposed to be the simplest MySQL installation out there - the official dmg from http:/ dev.mysql.com/. The installer puts all the files into. Bin/pip install MySQL-python - no-install. Mysql config = /usr/local/bin/mysql config. As it turns out, the Ru...
Most recent call: Mockity mock mock - some love for the mock module
http://konryd.blogspot.com/2010/05/mockity-mock-mock-some-love-for-mock.html
Friday, 28 May 2010. Mockity mock mock - some love for the mock module. It looks like Python mocking libraries are the new web frameworks - everyone wrote one. Let me show you my favourite mocking library so far - the mock module, written by Michael Foord. It's easy installable, so you can get to play with it in a moment. What makes it different than other modules like that? Most mocking libraries follow the old record-replay pattern, which works roughly like this:. Teach a mock what to expect. Mwhowas&#...
Most recent call: May 2010
http://konryd.blogspot.com/2010_05_01_archive.html
Friday, 28 May 2010. Mockity mock mock - some love for the mock module. It looks like Python mocking libraries are the new web frameworks - everyone wrote one. Let me show you my favourite mocking library so far - the mock module, written by Michael Foord. It's easy installable, so you can get to play with it in a moment. What makes it different than other modules like that? Most mocking libraries follow the old record-replay pattern, which works roughly like this:. Teach a mock what to expect. Mwhowas&#...
Most recent call: Optimizing fabfiles
http://konryd.blogspot.com/2011/01/optimizing-fabfile.html
Saturday, 15 January 2011. The simple fix is to change this:. Run = commands.append. Run(" & ".join(commands). This way, all your commands get called, and the execution still stops on first failure. You can use a with statement: gist. 9 February 2011 at 09:35. 10 February 2011 at 00:20. Subscribe to: Post Comments (Atom). Cieszyn, Śląskie, Poland. View my complete profile. Introduction to Selenium for Python programmers. Customising Djangos uniqueness validation message. My Traces on the Web.
Most recent call: January 2009
http://konryd.blogspot.com/2009_01_01_archive.html
Sunday, 25 January 2009. Why "Why 'Why OO Sucks' Sucks". exposes ignorance. A year and a half ago, I wrote a blog post. Which questioned some statements from Joe Armstrong's 'Why OO Sucks'. Article. While I still can't agree with all the article, I can see what he *really* meant and what I misunderstood then. So let's get back to the original article and its statements:. 1 Data structure and functions should not be bound together. 2 Everything has to be an object. Again, I said it's comfortable and natur...
Most recent call: Distutils2 Summer of Code
http://konryd.blogspot.com/2010/08/distutils2-summer-of-code.html
Monday, 16 August 2010. Distutils2 Summer of Code. This summer, I took part in Google Summer of Code project as a student. I worked on distutils2 project implementing new commands and improving the existing ones. In poarticular, my tasks were:. To implement a test command (similar to the one from setuptools/distribute. Port the upload docs command. Enhance the check command. Install] pre-hook.my postfix = path.to.hook. The improvements to the check command were arguably most neglected task in my project&...
TOTAL LINKS TO THIS WEBSITE
23
Gaussboys Super Magnets - Neodymium Magnets and Rare Earth Magnets
Gaussboys Super Magnets - Rare Earth Magnets. Call us toll free 1-866-840-4400. NdFeB Material Grades and Coatings. How Rare Earth Magnets are Made. On ALL orders over $10 in the USA! Thank you for visiting Gaussboys Super Magnets. We have a large selection of neodymium rare earth magnets in stock. If you need a custom magnet, please email us at magnets@gaussboys.com or call us toll free at 1-866-840-4400. Our office hours are 9-5 Pacific Time. You have no items in your shopping cart. Ver 17.0.2).
GAUSS | Wheel stop | Speed Hump | Bike rack | Bollard | Building Products | Safety Products
Jump to main navigation and login. Traffic Bollards and Cones. A niche in the market exists where a one-stop-shop is required for several civil products. In late 2012, Gauss Building Products Pty Ltd was borne from such a demand. Gauss Building Products offers a comprehensive range of ancillary building products such as bicycle racks, bollards, speed humps, wheel stops, skateboard deterrents, retractable barrier bars, traffic bollards and traffic cones. Feel free to contact us. And designed by SiteGround.
Gaussbuildingproducts.com
This Domain Name Has Expired - Renewal Instructions.
Magnetic Products & Services
Magnetic Products And Services. See MPS' Auto Degauss at Work. MPS' Auto Degauss was featured on National Geographic's "World's Toughest Fixes : Alaska Oil Pipeline". Demagnetize Large Parts and Pipelines. For over 45 years MPS has been providing outage degaussing services for Generators, Turbines, Pumps, Motors and all Machinery Components. Improve Processes by Removing Magnetism. MPS Provides worldwide degaussing of industrial equipment and rotating machinery components. We offer the following products:.
GAUSS by gloria k. Therapeutic Jewellery: Magnetize Your Life - Look Good. Feel Good.
Coal Black UNISEX Gallery. How to Wear Video Demos. Health and Wellness Benefits. GAUSS by gloria k. Look Good. Feel Good. Enjoy the health and wellness benefits. Of magnetic energy while wearing. Original designs reflecting the. Scenic beauty and cultural history of. Cape Breton Island, Nova Scotia, CANADA. Magnetic Jewellery designed and hand-crafted by gloria k. Cape Breton Island, Nova Scotia, CANADA. ALL Website Design, Contents and Images by gloria k. It s a Snap! Made to Match Earrings Gallery.
Chasing Tail
Monday, February 16, 2009. Configuring NUnit tests to work with log4net. I would like my NUnit tests to produce log4net logs. I have all my unit tests in separate assembly and I use NUnit GUI to execute the tests. Use assembly attribute to declare log4net configuration. Load log4net configuration for each namespace using NUnit's SetUpFixture attribute. Create app.config file containing log4net configuration. Create custom TestCase class which loads log4net configuration before running tests. Assert.C...
Gauss Furniture L.L.C, Sofa Chair, Auditorium Seating, Cinema Seating, Theater Seating, Stadium Seating School desk/chair
Cinema / Theater Chair. Student Chair and Desk. Cinema / Theater Chair. Student Chair and Desk. Are you looking chair for:. Winner of 2012 MIFF Furniture Excellence Award. Winning product: TB-618 and WD-118. Gauss Furniture L.L.C. , was established in Tainan, Taiwan in 1992, started with designing and planning of special projects and then gradually developing as a company integrated with design and research, manufacturing, selling and maintenance service. Custom design is also available for different exo...
Advanced DNS Management - Easy, web-based domain manager - ZoneEdit.com
Wwwgausschannel.com is a parked domain. Check Back For Updates. Prices now reduced by up to 57.7%! Fund your account with larger Credit Packs and save! Register and Transfer Domain Names Learn More. Under New Management Learn More.
Gauss' Children
Mostly on my research on descendants of Carl Friedrich Gauss and other relatives. Single mom, looking toward Parent Emeritus status. View my complete profile. Tuesday, November 6, 2012. I have been hanging out in Oak Grove Cemetery. A lot lately. We buried my parents' ashes there last month, on my grandmother's grave. I've been back to photograph a couple of times. Links to this post. Sunday, June 5, 2011. I started a group on Facebook, Gauss' Children. I have been posting there, but it occurred to me th...
Gauss' Children - Gauss' Children
From Gauss' Children. Redirected from Main Page. Gauss and his Children. This web site gathers together information about the descendants of Carl Friedrich Gauss. I envision it as a meeting place for researchers and family members, since both groups have an interest in this information. See the Gauss Index. For a list of Gauss descendants that I know about. This site includes a genealogy. Click on the link and fill in the form to search for people you are interested in. Descendants of Carl Friedrich Gauss.
网站访问报错