What do you want in a job?

Well it’s a good question, as part of sorting out tax documentation I came across the following list (go figure why it was with tax stuff).
I made this list sometime mid 2002, I remember specifically the job I made the list for to evaluate. I’ve yet to take adequate time to completely review each point carefully and revise, however it’s a good starting point to look back at what you thought previously.

This list is not a list of what I want in a job, more a checklist of what I would like, and at the end I can get a score of how well the job fits to these items.

  1. Use of Existing Core Skills – Technologies
  • Oracle, Unix, Java, HTML/Web
  • Open Source Projects (Apache – HTTP/Java/XML, My SQL, PHP, etc)
  1. Use of Existing Core Skills – Experience
  • Database Modelling
  • Large Systems Design & Development
  • Application Performance Tuning
  • Technical Problem Solving
  1. About Newer Technologies
  • Encourage/Embrace use
  • Not bleeding edge
  • Opportunity for learning new relative skills
  1. Work Environment
  • Equipment
  • Location
  • Core working hours
  • Work at home options
  1. Team Environment
  • Ability to undertaking varying roles (and not undertake others due to other team members)
  • Existing working relationship with people
  • Across Development/Management/Support Teams
  1. Project Environment
  • Durations – 1 month – 1 year
  • Challenging
  • Varying
  • Problem Solving
  1. Project Methodologies
  • Emphasis on Quality Procedures
  • Emphasis on Software Testing
  • Emphasis on Customer
  1. Renumeration
  2. Other
  • Some Fun
Tagged with: General

Producing Alternative Means statistics with SQL

MySQL’s built-in AVG() computes the arithmetic mean — the sum divided by the count. That is the right default for many questions, but it is not always the right measure of central tendency.

Extending MySQL Capabilities with UDFs, Plugins and Components

MySQL offers three different approaches to extending the SQL capabilities with the default product you download and install. These are: User Defined Function (UDF) MySQL Manual MySQL Plugin MySQL Manual MySQL Component MySQL Manual For the purposes of this post I will be using the current LTS version MySQL 8.

Producing One-Sample Z-Test statistics with SQL

The one-sample Z-test determines whether a sample mean differs significantly from a known population mean when the population standard deviation is also known. It is the appropriate test when the population parameters are established — quality control benchmarks, national averages, long-run process measurements — and you want to evaluate whether a new sample is consistent with them.