
codingatthecoalface.wordpress.com
Coding at the Coalface | Real life codingReal life coding (by Dr Herbie)
http://codingatthecoalface.wordpress.com/
Real life coding (by Dr Herbie)
http://codingatthecoalface.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Tuesday
LOAD TIME
3.9 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
5
SSL
EXTERNAL LINKS
18
SITE IP
192.0.78.12
LOAD TIME
3.891 sec
SCORE
6.2
Coding at the Coalface | Real life coding | codingatthecoalface.wordpress.com Reviews
https://codingatthecoalface.wordpress.com
Real life coding (by Dr Herbie)
Working on Brownfield Applications | Coding at the Coalface
https://codingatthecoalface.wordpress.com/2014/01/19/working-on-brownfield-applications
Coding at the Coalface. Working on Brownfield Applications. When we learn software development for the first time most of us assume that we will be working on new and exciting applications using all the latest sparkly technology and a blank canvas to fill with our sophisticated architectural solutions. The truth is that most development work is brownfield development; maintenance and additions to existing software that was originally written by someone who no longer works there. Than blue-sky projects an...
Separation of Concerns should be done at all levels | Coding at the Coalface
https://codingatthecoalface.wordpress.com/2013/07/10/separation-of-concerns-should-be-done-at-all-levels
Coding at the Coalface. Separation of Concerns should be done at all levels. Articles concerning separation of concerns generally deal with the separation of concerns between different classes. However, there is more to this than separating out classes. What is the point of separation of concerns? So, separation of concerns is not really about classes, it’s about code generally. This means you should apply separation of concerns at all levels. Place your data structures in their own project (be they DTOs...
About | Coding at the Coalface
https://codingatthecoalface.wordpress.com/about
Coding at the Coalface. This blog is about improving code and development: not only the technical stuff, but also the philosophy and approach. Coming from a scientific background, moving to the private sector was a major culture change. It’s all about getting the job done; getting the code to do what the customer wants it to do and getting it to them fast. It’s Coding at the Coalface. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:.
Software Projects are like 18-wheel trucks | Coding at the Coalface
https://codingatthecoalface.wordpress.com/2013/10/15/software-projects-are-like-18-wheel-trucks
Coding at the Coalface. Software Projects are like 18-wheel trucks. The business of writing software is full of folk who just want to delete it all and start over so it can be done properly (where properly = written by me and not someone else ). Most of the time this is a bad idea; rewrites cost a lot and have a reasonable chance of being worse than the original (which has often had time to mature). It is usually much better to go for incremental change; baby steps to get to the end result. Rewriting a s...
Code does not have to be perfect | Coding at the Coalface
https://codingatthecoalface.wordpress.com/2013/07/07/code-does-not-have-to-be-perfect
Coding at the Coalface. Code does not have to be perfect. One thing that took me a while to figure out is that in. Software, code doesn’t have to be perfect; bugs. Writing business software is not about writing software, it’s about improving the business. So, does spending two days chasing down that annoying screen update issue help the business, or perhaps could the users put up with that for now? For our on-line mentoring and consultancy services, visit us on-line. Leave a Reply Cancel reply. You are c...
TOTAL PAGES IN THIS WEBSITE
5
July | 2007 | Dr Herbie\'s Blog
https://drherbie.wordpress.com/2007/07
Dr Herbie ’s Blog. Oh no, not more populations : overlapping generations. July 21, 2007. I promised, a while ago now, to show a version of the simulation with overlapping generations. This basically means that not all the individuals in the population die every season, so some remain in the next ‘generation’. OK, so starting with the simple stuff. Our original non-overlapping generation, only had one method to run every season:. Overlapping populations will need an extra method:. Writing a simulation is.
September | 2007 | Dr Herbie\'s Blog
https://drherbie.wordpress.com/2007/09
Dr Herbie ’s Blog. So you say you want an evolution …. September 8, 2007. OK, you’ve been very patient. All this talk of genetics, drift and populations and so far we haven’t seen any ‘survival of the fittest’. Well, here goes. The last version of the overlapping population model just randomly killed individuals with a 0.25 probability. By simply making this probability dependent on the trait on the individual we link survival to genetics which is the basis for Darwinian evolution. A value between 0 and 1.
May | 2007 | Dr Herbie\'s Blog
https://drherbie.wordpress.com/2007/05
Dr Herbie ’s Blog. May 25, 2007. So far, all we’ve done is look at individual runs of the simulation. While this is all well and good to get a feel for evolving populations, we sometimes need to ask wider questions. For example, in my past post on Genetic Drift. We stated that Drift has less of an effect in smaller populations by just comparing two simulations. If we wanted to know. Population size affects the strength of drift we need to get a little more scientific and create. Now, I’m prepared t...
From Genes to Individuals : more simulation code | Dr Herbie\'s Blog
https://drherbie.wordpress.com/2007/01/07/from-genes-to-individuals-more-simulation-code
Dr Herbie ’s Blog. From Genes to Individuals : more simulation code. January 7, 2007. OK, so we can simulate individual genetic loci. Next we need to group them together into individual members of a population of animals. The next C# class needed is the individual:. An individual is mainly a data collection. In this simple example we’re going to use an array of loci to encode an individual’s height:. Default number of loci in height array. ArraySize = 10; / The height array. Height = 0; foreach. The comp...
February | 2007 | Dr Herbie\'s Blog
https://drherbie.wordpress.com/2007/02
Dr Herbie ’s Blog. Genetic Probabilities and Code Revisited. February 23, 2007. 8216;Someone’ commented. That the probability matrix used in the basic genetics code was not necessarily explained very well. I was worried about this because, for some reason, I find it hard to explain. So this post will cover it in more detail. If you haven’t already been there, I suggest you go over ‘A Bit of Genetics’. To get the background, although I’ll actually go over most of it again here. They’re watching you! Indiv...
Replicates | Dr Herbie\'s Blog
https://drherbie.wordpress.com/2007/05/25/replicates
Dr Herbie ’s Blog. May 25, 2007. So far, all we’ve done is look at individual runs of the simulation. While this is all well and good to get a feel for evolving populations, we sometimes need to ask wider questions. For example, in my past post on Genetic Drift. We stated that Drift has less of an effect in smaller populations by just comparing two simulations. If we wanted to know. Population size affects the strength of drift we need to get a little more scientific and create. Now, I’m prepared t...
Genetic Drift | Dr Herbie\'s Blog
https://drherbie.wordpress.com/2007/04/30/genetic-drift
Dr Herbie ’s Blog. April 30, 2007. If you’ve managed to follow all the stuff so far about probability matrices, and random numbers you’ll want to know why we do simulations this way. The answer is to represent genetic drift. Genetic Drift is an evolutionary mechanism that doesn’t get as much press coverage as selection (survival of the fittest). The reason Genetic Drift doesn’t get as much attention is that it’s a weak force. It’s also random. However it’s still important. 50 red marbles is the. But it&#...
Meconon : Mentoring & Consultancy On-Line for Microsoft .NET developers.
http://www.meconon.net/index.html
Is your code good. Mentoring and Consultancy Online for .NET. Bringing more than 20 years of programming knowledge and experience to. A lesson on your own code? A full report for you and your team of developers. A bespoke report and tutorial using your own code. That shows you how to improve that code. Advice on advanced philosophies such as cohesion and coherence, separation of concerns, design patterns and more. A hand written report bespoke to your code; no automated boilerplate advice, no dead wood.
TOTAL LINKS TO THIS WEBSITE
18
codingatilivedigitally.wordpress.com
Coding @ ILiveDigitally | Coding, WPF, .NET, Entity Framework, …. all other things in coding
Coding, WPF, .NET, Entity Framework, …. all other things in coding. April 9, 2014. NET Native Make your Windows store apps start up to 60% faster – Part 2. The NET Native developer preview installs on top of Visual Studio 2013 Update 2 RC. Compiling your project in .NET Native mode. The solution property page. In the handy drop down in the toolbar (next to debug/release drop down). Selecting this actually causes a few things to happen. First, it creates a new file for your project called default....Secon...
Coding Atlas | Atlas, Asp.NET, HTML, CSS and Javascript all playing nicely together
What’s this reBlogger thing you talk so much about? Save on Del.icio.us. Sliding Task Lists project (day 5) Reorder Lists and client side update panel refresh. Sliding Task Lists project (day 4) database tables and saving new tasks with atlas. Sliding Task Lists project (day 3) using ModalPopup extender to create panels for adding new tasks. Thanks Shawn – CascadingDropDown extender (explained). Sliding Task Lists project (day 2) implementing Asp.NET 2 membership provider. Http:/ tinyurl.com/h…. I will e...
Coding At Midnight
Saturday, March 30, 2013. The View Generator - Part 3 - The Birth of a Module. Once we have program structure at hand in the form of an array of command lines, it is time to make them into a program module. To do that, we will use three services supplied by SoftwareAG. USR2014N. 160;interface for using the editor engine facility - USR4201N. Service to read and write data area sources - and USR0210N. 160;- interface for issuing save, catalog and stow commands on source modules. Friday, January 25, 2013.
codingatschool.com - codingatschool Resources and Information.
This domain has expired. If you owned this domain, contact your domain registration service provider for further assistance. If you need help identifying your provider, visit https:/ www.tucowsdomains.com/.
codingatsea.com - Registered at Namecheap.com
Welcome to namecheap.com. This domain was recently registered at namecheap.com. The domain owner may currently be creating a great site for this domain. Please check back later! Products and Services from Namecheap. Purchase domain names from just $3.98 per year. You can also transfer domain from another registrar to us for the same competitive price. WhoisGuard Privacy Protection Service. Low Cost 256bit SSL Certificates.
codingatthecoalface.wordpress.com
Coding at the Coalface | Real life coding
Coding at the Coalface. Working on Brownfield Applications. When we learn software development for the first time most of us assume that we will be working on new and exciting applications using all the latest sparkly technology and a blank canvas to fill with our sophisticated architectural solutions. The truth is that most development work is brownfield development; maintenance and additions to existing software that was originally written by someone who no longer works there. Than blue-sky projects an...
Coding @ Work
A list of different snippets of code to solve problems that are frequently encountered with Promises. Continue reading Promises Cookbook. March 23, 2015. April 11, 2015. Proudly powered by WordPress.
codingauctions.com - Under Construction
This Domain is Under Construction. Please Check Back Later.
codingaustralia.com
Teaching all kids to code. Scratch Coding for primary students. Coding Australia plans to deliver face to face workshops later in the year. Venues and dates are being finalised. Coding Australia will organise afternoon meetups at local schools. Venues and dates are being finalised. Template by W3.CSS Templates. Content by codingaustralia.com.
Coding Authority – Coding Authority
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post. Theme: Accelerate by ThemeGrill.
SOCIAL ENGAGEMENT