31 Jan 2015

Summary of the Cambridge MBA courses I studied: what I liked (and not), and how I had to be collaborative actually.

As I compared the Cambridge MBA with other schools in the previous post, I (finally) felt like objectively seeing the courses (recapping them might follow later).

In a retrospective review, I liked (and disliked) the following courses most:

Yet, satisfaction with a course does not necessarily mean a good result ...interestingly and sadly they are barely correlated (r=0.16).
Marks seems almost irrelevant to how I am stimulated by or satisfied with courses.

*Satisfaction is defined as an average score (1-10) between intellectual stimulation and personal fit to a lecturer; a relative mark is comparatively scaled based on my personal range between highest and lowest marks.

However, marks are approximately 40% determined by (in most cases) collaborative group works.
One example of how collaboration is included in marks (NB: weighted total of course depends on elective choices)

When you compare three terms, interestingly, the first term, Michaelmas, was more individualistic, while the last term, Easter, required a lot of class participations. On a different note, the second term, Lent, was the busiest term as there were a lot of group assignments while preparing for the coming GCP. However, when busy you learn a lot.

In my opinion, Michaelmas courses also should (and could) have engaged students more, to set up a pace of studying individually (yet for me this was good as I skipped some to join courses and events in different departments of the Uni). 

28 Jan 2015

Financial Times Global MBA Ranking 2015

Cambridge is overall ranked 3rd among major one-year MBA programmes, after INSEAD and IE as IMD drops its position this year; what's more, it has ranked at 4th for Value for Money and 5th for Aims Achieved among all the b-schools ; not too bad apart from the fact that Recommendation from Alumni still lags behind as 39th.

In a nutshell, obtaining Cambridge MBA will help you achieve your aims for what you pay, yet your opportunity of being recruited might not be widened significantly just by the fact your CV has a Cambridge MBA stamp.


(for the graphical purpose, all ranks below are put in minus; rank figures are among all the MBA programmes)

The overall rank for Cambridge Judge Business School in 2015 is improved to 13th, compared to 16th in last two years; this is third, if you compare among major one-year MBA programmes.



Its Value for Money rank has improved from 7th in 2014 to 4th, which is next to IMD as 3rd rank.



Moreover, the Aims Achieved rank went beyond IMD again, and got ranked 5th among all the MBA programmes.



However, the Recommendation from Alumni rank shows great room for improvement, despite a jump from 47th in last two years to 39th.


Note that Aims Achieve rank in 2015 is just ranked by sorting the percentage figure of each school as no rank is disclosed yet; even if two schools have the same percentage figure, the school that is showed upper is ranked one higher here. Those ranks are disclosed in 2013 and 2014, so there might be update in the near future.

Sources: Financial Times
http://rankings.ft.com/businessschoolrankings/global-mba-ranking-2015
http://rankings.ft.com/businessschoolrankings/global-mba-ranking-2014
http://rankings.ft.com/businessschoolrankings/global-mba-ranking-2013

16 Jan 2015

2015 New Year resolution (belated)

After several short trips to Korea, Japan, the US, and Spain within a few weeks, I finally came back in London, (caught a cold again), and successfully extended my visa to remain in the UK as a happy dependent :-p.

Now, belatedly, is the time to set new year's targets as every year. This year, again, I should stick to rather simple targets (rough allocation of time); this year is going to be a year of totally challenging new stuff:
  • Career: to success in seed financing for the startup (50%).
  • Private: to learn anew not to be bored; through studying Finance (MSc-level) and Economics (BSc-level) (20%), learning programming (20%) and absorbing various contents to write up a short fiction (10%).
Happy New Year 2015 monument, in a sort of traditional Japanese way with an orange.


Regrettably, last year I did not achieve much regarding my revised targets:
1. Keep exercise every week: Not really at all. After an accident in golfing, I stopped playing it. 
2. Complete the Cambridge MBA with writing up the final dissertation on 'innovation and corporate governance': Done, but not fully satisfied with what I wrote up.
3. Confirm a place, likely in London, for researching management in the UK while working on the entrepreneurial project: The startup goes well so far (definitely this is the greatest achievement unexpectedly), yet failed to secure a research position.
4. Draft a story of science fiction. An idea of multi-worlds/minds structure is there, yet still too vague to start writing.
Anyway, my life to get busy living goes on.
From a new year's trip to Grand Canyon in the US

13 Dec 2014

It's a wonderful life (by Nomad Cinema); yes it is, indeed.

After suffering from a cold for days unfortunately, I just got recovered by seeing the movie. Yes, 'no man is a failure who has friends.' (It's a Wonderful Life, 1946, directed by Frank Capra)

If there's a chance, I utterly absolutely indeed recommend to see it in a cinema, with good audience who clap their hands to thank to the truly wonderful movie. Today's fantastic event was was organised by the Nomad Cinema, who is supposed to donate 100% of their profits to The Sustainability Institute a pioneering environmental and educational charity in South Africa.
It's a Wonderful Life by The Nomad Cinema at the Look Out in the Hyde Park.
Indeed it is one of the best movies to wish a merry Christmas. The ending is so beautiful and heartwarming and the performance by James Stewart is just incredible. Just for my foot note, I did not know the fact that Frank Capra was from Sicily, Italy, like Giuseppe Tornatore, who directed Cinema Paradiso. I see they believed in the power of cinema, arguably.



6 Dec 2014

Learning Ruby on Rails

As I have been managing the company website, I realised I have to learn basics of web development. Therefore, last weekend, I joined a two-day workshop by Codecourse, which was a great opportunity to practically learn how to code with Ruby on Rails. This is my work-in-progress web applications.

It was really worthwhile course; what I essentially learnt was following:
  • All the important setups for web application development: online console by Nitrous, html and CSS frameworks by Bootstrap, online application platform by Heroku, Static Maps API by Google maps, voice and SMS APIs by Nexmo,  some gems in Github, and online e-commerce platform by Stripe.
  • How to practically develop (1) a personal website, (2) a web app to record locations and display in the map, (3) a web app to send a SMS text message, (4) a web app to upload pictures and purchase an order online, and (5) a web app to post status updates. So basically they are what you do mostly online nowadays (i.e. Wordpress or blogging, Messenger, Instagram, Amazon, Twitter etc.).
  • While following instructions by the organiser and facing unexpected errors, essentially my learning was about how to identify an error (mostly typo or undefined class or method) and how to crack it mostly by yourself.
Nitrous' console image
The following is my personal memo on the very basics on Ruby on Rails so that I would not forget about it at all.
  • To create a new project, command 'rails new the_name_of_the_project'. After run 'cd mysite", type 'rails server' starts the server so that you can check your code updates in your browser.
  • application.html enables every page to contain the same code that is in the application.html.
  • To add a new page, (1) open the routes.rb file in the config folder, (2) open the static_pages_controller.rb in app/controllers/, and (3) create a new file under the static_page folder.
  • To use Bootscamp CSS, first you have to copy Bootstrap CDN to the application.html.erb.
  • After you install in Gemfile (c.f. gem is a function defined/developed by someone already, e.g. Devise: sign-in and sign-up/authentication), you have to stop the server (Ctrl+c) and then run the "bundle install" command to reflect the changes while.
  • To upload updated pages, command (1)"cd the_name_of_the_project", (2) "git add . ", (3) "git commit -m"Finished the project", (4)"git push heroku master".
  • To create a database, run 'rails generate scaffold the_name_of_database', followed by name and definition of each column. (e.g. 'rails generate scaffold location name:string address:string latitude:float longitude:float')