Academic Writing experiences with Google Scholar

I have been writing a paper on internal marketing and marketing orientation and hitting Google Scholar and a trial subscription to Refworks pretty hard.

I have a few of use-cases that I would like to see better support for.

1) Given a search term which are the foundational break-through papers that initially defined the concept and defined the “ground” of the concept.
2) For a search term, which are the key papers that stand within the tradition established by the foundational papers that have developed the ideas in the last 5 years. This could be translated into the query: “For a search term’s group of most cited N (therefore foundational) authors find all papers in the last Y years that cite M or more of them.”

Ambi – streamlined – loses SEQ operator

Ambi is proving to be a great extensible RPN calculator. Applying the ‘zen’ of RPN to programming fun!

Enjoy the new release of Ambi.

This week I have discovered that the seq operator is not necessary.  Initially, I thought that seq would be necessary, however it turns out that the other lambda operators are sufficient.  So we now can write an interative approximator of cuberoot in this way …

function; root3;
  dowhile;
    import dup $n = $guess =;
    $guess $prev = $n $prev sq / $prev + .5 * $guess =;
    $guess $prev - abs .000000001 >;
    $guess export ;
125 root3 .

Not a seq in sight!   And we may rewrite the function as a recursive function this way …

function; inner-root3;
 if;
  import $n = import $prev = $prev $n $prev sq / + .5 * $guess = $guess $prev - abs .000000001 >;
  $guess $n inner-root3 $guess =;
  $guess export;

function; root3;
  import dup inner-root3 export ;

100 root3 .

In addition the current release adds the ++ and increment and decrement operators.

Ambi is now a RPN inspired programming language

Exactly how to generalise RPN calculation style into a programming language is a question that has fascinated me recently.  I am pleased to report that there now exists a programming language that is a natural extension of RPN — Ambi.

A factorial operator may now be defined in Ambi. A new version has been posted today. 

// Factorial Function;
function; ! ;
  seq ; import $n = ; 
  ifelse;
    $n 1 eq;
    1 export;
    $n 1 – ! $n * export;
// Use the function ;
5 ! .

Check it out!

Converting SAT scores to ATAR

2014-Jul-09 If you wish to learn the current conversion from SAT to ATAR, I recommend calling UAC (http://www.uac.edu.au) by telephone and asking for a copy of the “Common Assessment Schedules for converting SAT and AP scores to their equivalent ATAR”.


2009-Jan-20 Australian students abroad rejoice! All Australian universities have agreed together to follow the recommendations of my report and more fairly convert SAT scores into the Australian UAI!


Did you know that in 2006/7 Australian students who attempt to enter university on the basis of a SAT1 score may be penalised by up to 6 UAI points? I have been following this story for the last 12 months and the lack of SAT1 percentile data for the new SAT1 has clouded the issues. Now, finally, the College Board have published the percentile data for the new SAT1. You can find it here 2006 2007.

Based on this new data from the College Board I have updated my explanation report. The report NSW and ACT school leavers and the conversion of SAT1 to an equivalent UAI (pdf) is a call for change!

Here is the abstract from the report.

Some NSW & ACT high school leavers graduate high school while overseas. These students potentially enrich Australian university communities with their global outlook. Many of these students seek entry to NSW & ACT university courses through the University Admissions Centre (UAC) on the basis of the American College Board’s Scholastic Aptitude Tes1 (SAT1). This report examines the nature o the SAT1 and then compares SAT1 scores with NSW & ACT University Admission Index (UAI) scores. UAC affiliated tertiary institutions assess SAT1 scores on the basis of a œCommon Assessment Schedule that appears to create barriers to university entry for NSW & ACT students who graduate from high school while overseas. These students appear to be penalised by up to 6 UAI points in the process of converting a SAT1 score to a UAI score. After examining the current Assessment Schedule and some of its effects on Australian students, this report recommends an updated Assessment Schedule based on the 2006 SAT1 cohort.

Read the full NSW and ACT school leavers and the conversion of SAT1 to an equivalent UAI report (pdf).

This new report replaces the two earlier reports which you can find here and here.

Privatisation ‘raised death rate’?

The conclusion of the study published in Lancet is really Rapid Social Change ‘raised death rate’The BBC headline’s focus on ‘privatisation’ is quite catchy though – esp. in a season of unprecedented nationalisation of assets by western governments.

Ambi Calculator and Programming Language

I have created Ambi Calculator and Programming Language as a result of investigation about the possibility of a Reverse Polish Notation Language.

Ambi operates in both Reverse Polish Notation and Polish Notation for arithmetic expressions.

Ambi 0.4.0 is now released as an online Calculator and Programming Language.

Myers-Briggs analysis based on your writing …

Typealyzer correctly analysed this blog and nailed me as an INTJ.  Great work.  Try it out!

Vista with a touch of Ubuntu

The image below captures my amazement.  A few days ago, I installed Virtualbox on my Vista machine and installed Ubuntu.  After a bit of tweaking I now have Vista and Ubuntu seamlessly working together on the same desktop!  Check it out!

The installation of Virtualbox was easy and it seamlessly connected to the local network and the internet.  On the screen above you can see the auto-update of Ubuntu working side-by-side with MS Word under Vista!

I can see a day coming where every PC will be run by a hypervisor with one or more guest OS’s!

Reverse Polish Notation Language

I love RPN calculators.  My favorite is Hypatia which I use regularly for calculations.  I love being able to order my calculation to avoid brackets and being able to enter a list of numbers and add them up with a single command:

hy 12 23.4 43 94 3 d SUM

Now I am wondering about a full computer language built from the ground up as an RPN language?

A bit of googling led me to RPL or Reverse Polish Lisp which is close.  I wonder if this direction has been explored in other languages.

I am imagining a language where assignment is pretty straight forward (with explanatory pseudocode comment):

1 a = # a = 1

boolean expressions are just regular RPN:

a 1 + b > # a + 1 > b

and an if control structure would look like:

; bf ; bt ; a if # if a then bt else bf;

the meaning of the “;” token is to push following tokens (until the next structural token) unevaluated onto the stack as a single entry.  The if token evaluates the top stack entry (a) and then evaluates either the second (bt) or the third (bf).

A do while loop would look like this:

; b ; a dowhile # do b while a;

The dowhile token evaluates the second stack entry (b) and then the first (a) and repeats until a is false.

A key of RPN expressions is that there are no brackets required – by analogy in a RPN language there would be no nested statements!

Open question.  Can this idea be developed into a usable programming language?

The Laws of Identity

Kim Cameron posted a busy person’s summary of the Laws of Identity and invited comments. Here is my version.

The Laws of Identity are fulfilled when …

  • Individuals using computers can be in control of the information they give out about themselves.
  • Individuals can give out just the information needed for the purpose at hand, and only to those who need it.
  • 3rd parties can not link up all the ways individuals have used the Internet. For example, an individual always using a single identifier would be a big mistake.
  • Individuals can choose who provides their identity information to whom and for what purpose.
  • Individuals can understand how the identity system works and are able to make rational decisions and protect ourselves.
  • Individuals can operate the identity system with a universally consistent, comprehensible user experience even though behind the scenes, different technologies, identifiers and identity providers are being used.

Improving engagement in Distance Education

I am studying at the moment and would like to see an increase in the consistent engagement level demanded of me during the 14 or so weeks of the semester. At the same time, I would like to see this done in a way that doesn’t impact on the instructor’s time. Here is a suggestion:

Student Sourcing Multiple Choice Questions Weekly Activity
This weekly activity could count for (say) 10% of the student’s total score.

Each week, students

  1. use a small web application to develop and enter a week-specific multiple choice question with four answers to a bank of student created questions for this subject and
  2. answer two questions that other students have entered.

When a student creates a question, they must give the text/ web reference that justifies their answer.

A student league table is maintained by the application showing a score calculated as:

  • +2 for each question authored and submitted before the end of the relevant week.
  • +1 for each question that the student answers correctly,

Quality is maintained through a challenge process. When answering questions entered by someone else, a student may believe that the question is off-topic or just wrong, if so, they may challenge the question. A challenge is resolved by the instructor. A successful challenger is given two points from the question’s author’s tally and the question is removed from the question bank. In order to discourage frivolous challenges, an unsuccessful challenger gives up three points to the author who was proved correct and the question is marked as “validated” to prevent further futile challenges.

If this, or something similar, had been in place for my current subject – I would be much better prepared for my exam today!

Lightweight Project Management

Good to be blogging again after a three month hiatus.

The Work Breakdown Structure has caught my attention. The work breakdown structure is foundational to project management. My insight today is that the WBS could also be foundation to a task management tool. The beauty of the WBS is the way that it assists in enumerating ALL the work and ONLY the work involved in a project – this idea is a way to leverage this ability in a lightweight way with an easy migration to a sophisticated PM tool.

I imagine a WBS creation tool like Freemind with its fluid and fast interface. The leaves of the tree are work packages which naturally degenerate to tasks.

For simple projects, one view of the WBS would present only the leaves of the tree (ie only the tasks) as a reorderable list. Tasks could then be assigned to a day and checked off when done like other task managers.

When the task view is not powerful enough the tool would allow the full power of a Project Management (PM) tool like openproj to be applied to the same WBS and work packages/ tasks.

If dependences between parts of the WBS are added using the PM tool then the task view would show the tasks in clusters based on the dependencies.

Signless One-way Paths for Pedestrians

When I was at university getting from class to class between buildings meant fighting your way along a footpath against a flow of students coming the opposite direction. Solutions? You could widen the path (more concrete) or redesign the pathway using a similar width of concrete split into two paths, one for each direction.

Here is an illustration:
Signless One Way Paths

There is no need for signs. People will naturally walk taking the most direct path towards their goal. In this way, the two paths end up being effectively one way. In addition, the area between the two paths may be grassed and treed.

The result – no additional concrete and no signs – and no dodging oncoming traffic!

This design occurred to me in 1982 or ’83 and it has only taken me 24 years to get it written down. If anyone has seen this idea implemented anywhere – I would love to see pictures. Leave a comment.

Adaptive Shop Facades

If all our building’s internal walls, signage as well as dynamic displays where flat panel displays what would happen?

I was walking through a mall a few days ago and realised that pretty much all that I could see around me could be displayed on flat panels like those in Minority Report. There are many consequences of this, (including the paint industry taking a bit of a battering), but in this post I would like to highlight one.

When our local mall’s interior surfaces are covered with a covering of seamless flat panel displays, the addition of a camera and thermometer recording outside a store will enable shop owners to adapt their decor to attract clients!

Shop owners would like to preserve the visual unity of their brand, but at the same time could:

  1. adapt the perceived ‘coolness’ or ‘warmth’ of their shopping environment to the outside temperature.
  2. adapt the colour saturation of their store to it a sense of continuity with the outside environment.
  3. adapt the brightness of the store to minimise eye dilation adaptation for shoppers
  4. adapt the color palette used by their store in response to the colour palettes used by surrounding stores.

From the perspective of shop owners this capacity is no doubt appealing, at the same time, though I will not be able to walk through
malls like that without feeling manipulated! I am not the only one thinking about the implications of this technology. The Interactive Architecture Organisation is a good place to visit to explore this theme more.

Internet All The Way Down

“STEPS Toward The Reinvention of Programming”[linkmoved] has a great piece about the promise of a uniform model of computation based on arbitrary decomposition to the internet. On p32 they say:

Part of the solution to œan Internet all the way down has interesting conflicts with today’s hardware and we are curious to see just how far this can be taken without having to posit a different (but pretty minimal) set of machinery to help out. Basically, we would like to make a distributed object system that is (a) so protected that it can allow completely foreign objects to be brought in from elsewhere without causing harm, and (b) so efficient that a much higher level of abstract communication can be used between objects (perhaps an advanced form of œpublish and subscribe or œforward inferencing using knowledge patterns).

One of the central observations underlying RDBC (and Hypertext Computing) is just this idea of the Internet All the Way Down!