19 July 2011

IMA 14th Early Career Mathematician Conference

I went to this on Saturday mainly for the career talk which was held in the morning and bits of the afternoon. The conference was held at the University of Leicester. And during some of it people were twittering #ecm14. Adrian Hamilton took the talk on career planning workshop. We first looked at what to include on a CV, the very broad first:
  1. Profile (Pen Picture of facts)
    1. Management level
    2. Business Areas
    3. Functions carried out
    4. skills, abilites, strenghts
  2. Achievements
    1. Some selected achievements
    2. Excerpts from experience
  3. Career Progression
    1. Start from most recent
    2. Dates, name of organisation, what it does
    3. Key tasks and responsibilities
  4. Other Relevant Facts
    1. Education, qualifications, training
    2. Outside work experience, interests, personal
He did mention that CV change over time, the format I mean but they should about 2 pages no more. Any more and the employer will get bored, as he/she has too see loads of these.
We then did a group discussion on identifying Achievements and then trying to get as many doing words as possible to show what you have accomplished. He also mentioned as a side note that apparently there a preconception that mathematicians aren't good with money, so if you can show you are good with money it will be no bad thing (nudge, nudge).
We also looked at the different ways to search and apply for jobs.

Cold Approach
It's simple, one letter. Useful if growing company. But there may be no job available. Also the chances of success are small.

The other methods most people know:
Contact Networks
Response to Adverts
Recruitment Agencies

The Contact Network seemed to be the best way of getting a job you want. We also looked at Referral Interviews. This was completely new to me. If you have some one in a contact network and you ask them about getting a job in a particular sector, they can refer you to someone who may have more knowledge about the goings on.

The first step is to get referred to someone. Next write them a letter about what you want to get out of it, these referrals are not for you to ask them for a job but talk to them your career plan in general sense, also send them your CV. Next to phone them to confirm a meeting. This is where you mention your letter and make clear that you are not after a job. Mention that it will not take long and you know their time is valuable. If they say they can't help you, stroke their ego tell them they have vast knowledge about this particular field.
If it all goes well hold the meeting, then send a thank you letter for meeting that person.

We also spent some time looking a questions that may be asked i.e.
What recruitment agencies specialise in this sector?
What sort of papers or source should I look at for job advertisement?
Realistic Salary?
Do you other people that could help me out and me more information in these sort of areas we have discussed?
Is my cv okay?
can I hear about your experience.

We then looked at responding to to job adverts, difficult interview questions, do and don't of interviews. Then each person was given a snippet from Mathematics Today (February 2011). This featured a bit about job options and describing where certain people work. One option some one mentioned was Transportation planner. Then a list of website to find jobs:
  1. Datatech Recruiment
  2. DSTL- Defence science and Technology Laboratary
  3. Government Actuary's Department
  4. Government Communications Headquarters GCHQ
  5. Government Operational Research Service
  6. Government Statistical Service GSS Jobs
  7. Matchtech Group
  8. Met Office
  9. Statisticians in the Pharmaceutical Industry PSI
  10. Office for National Statistics
  11. The inside career guide to Actuarial Work
  12. The institute of Actuaries
  13. Transport Planning Opportunities

At the end of this there was a talk by Peter Rowlett about mathematics teaching and learning. Aperiodic tiling by Edmund Harris and a talk by Steve King on something to do with Rolls Royce.

As a side note they did say for students you can join the ima for free or £5 fee.

1 July 2011

Html show hide button

I've set up a new blog where i can post my MSc project user entry system on there. At the moment i have a long way to go. Any way at the moment i have a couple of buttons that are meant to display information on line of code but you can't hide it so i remembered xkcd had the spoiler hide show code but it looked a bit complicated so i searched elsewhere and found this website and it looked amazing and from these two i developed my own version of hide and show tailored to my specs.

<!--my code for info button-->
<button type="button" onclick="if (document.getElementById('PartitionSource Info').style.display !=''){
document.getElementById('PartitionSource Info').style.display='';
document.getElementById('PartitionSource Info').innerHTML='infomation based on button';
}
else{
document.getElementById('PartitionSource Info').style.display='none';
}">
Info
</button>
<p id="PartitionSource Info" style="display: none">
text</p>

And here is the actual button


22 June 2011

Lists using HTML and JavaScript

After browsing the web for ages on trying to work out how to do expansions of lines for excel, I gave up. It seems it is easy to expand rows but to do automatically is not. So I moved on to html. Someone directed me to W3schools as a recommendation, I do recommend it. Anyway lists, I am going to use the same example as last time.


<h2>Physica Module </h2>
<!--Runtime-->
Should the processes be timed and printed at the end of the run?
<form>
<select name="Runtime" id="Physica.Runtime">
<!--default is off-->
<option value="OFF">OFF
<option value="ON">ON
</select>
</form>
<button type="button" onclick="PhysicaModule()">
Submit
</button>
<p id="Runtime Output"> </p>

<script type="text/javascript">
function PhysicaModule()
{
txt=document.getElementById("Physica.Runtime").name+" "+ document.getElementById("Physica.Runtime").value;
document.getElementById("Runtime Output").innerHTML=txt;
}
</script>


the idea is there is dropdown list with two options "ON" and "OFF" and a button underneath called submit. underneath that is a paragraph where we put the results from clicking the button into (at the moment i haven't worked out how to get it into a txt file). Then a bit of javascript that determines what happens when the button is pressed. which hopefully we say "Runtime ON" or "Runtime OFF" depending on what option you choose.


Physica Module


Should the processes be timed and printed at the end of the run?




If the above bit of code doesn't work do it for yourself just remember to put <HTML> at the beginning and </HTML> at the end.

20 June 2011

MSc project

My main goal for my Project was to design a user interface to help create the 'inform' file that can be used for PHYSICA. For this I am deciding whether to use HTML and JavaScript or create it using Excel. So to test it out I am going to create a test case for each that will cover the following critea:
1. Lists. Some lines of code of physica have different options
2. Expansion. This is for if the user wants to specify for example Materials properties and they had multiple materials, space would be required.
3. Write to file. In each case I need to know how easy it is to write to file
4. Read from file. this is for if the user need to change something. this is more tricky.

Now the hard part my knowledge of both is not extensive so hopefully when I learn something new I'll post it on here (I hope).

Starting on Excel 1st.
Lists. From my research from today there are two ways of creating lists.
No Visual basic required

1st thing 1st you need to specify options for your list. My list is commands for a bit of code called 'Runtime' the options are "ON" or "OFF" this I put in column E. For the user I have put a prompt in Cell A2 simply called 'Runtime'


Now select the cell B2 then go to data tab and click Validate.


Although this is a mac version of Excel the options are similar for Windows users. In the drop down option select "list" and then specify what the options are and then your done.


Visual Basic form of a list.
Actually there are multiple ways of creating lists. One option is using a "Combo Box" but since I want it in the cell I'm not going to cover this.

Sub test()
Dim sList As String
Dim N As Integer
Dim dv As Validation

sList = "On,Off"
Set dv = Range("C2").Validation
dv.Delete
'.delete i think will clear the range it has been assigned
dv.Add xlValidateList, xlValidAlertStop, xlBetween, sList
'expression.Modify(Type, AlertStyle, Operator, Formula1, Formula2)
'below is what may have to use for intergers problem
'i tested the word thing if you enter something than not on the list it give a warning box
'website=http://msdn.microsoft.com/en-us/library/bb210323%28v=office.12%29.aspx
End Sub

if you see ' line its a comment.
To be honest I did adapt it from this website

There is another way which is good to use for constraints on variables(from this website).

With Range("e5").Validation
.Add Type:=xlValidateWholeNumber, _
AlertStyle:= xlValidAlertStop, _
Operator:=xlBetween, Formula1:="5", Formula2:="10"
.InputTitle = "Integers"
.ErrorTitle = "Integers"
.InputMessage = "Enter an integer from five to ten"
.ErrorMessage = "You must enter a number from five to ten"
End With


Hope you learned something I know I did.

UPDATE 21/6/2011 09.49AM
Just found out he second bit of code crashes if you run it more than one so it should be:

sub test()
Set dv = Range("B4").Validation
With dv
dv.Delete
.Add Type:=xlValidateDecimal, _
AlertStyle:=xlValidAlertInformation, _
Operator:=xlBetween, Formula1:="0", Formula2:="10"
.InputTitle = "Real"
.ErrorTitle = "Must be Real"
.InputMessage = "Enter an Real from zero to ten"
.ErrorMessage = "You must enter a number from zero to ten"
End With
End Sub

17 May 2011

interesting links 18/4/11 till today

Sorry for the delay I had 2 exams to revise for and i still have 2 courseworks to do before 27th may. I know. lovely!

Maths
#MathMaths 43: mosquitoes, ants & northern hairy-nosed wombats; ethnomathematics; routefinders; new symmetries; & more bit.ly/h3dfLF

how rude, and brilliant. Contradiction - Spiked Math http://t.co/l8MEp5N

Math/Maths 44: Prehistoric Sat-nav is back; @MoMath1 site; $24m book; 911 math help; snow; flu; sex; sport; Glee & more http://bit.ly/fvHeYf

RT @PeterRowlett nice 'optimisation gone wrong' case: Amazon's $23,698,655.93 book about flies http://bit.ly/fzTYlr

OR blogs i found:
ThinkOR http://t.co/WhFi8bO
Michael Trick has a few blogs http://bit.ly/5HNITY

The Movie Math Quiz Part 4 - Spiked Math http://t.co/Z8o2g4H

voting system on @PlusMathsOrg http://bit.ly/ibpAt4 and the wiki article on Arrow's paradox http://bit.ly/aiIO3r

ooh funky science i like BBC - Bang Goes the Theory - Hands-on Science http://t.co/XzBxipt

#MathMaths 45: Will Grigori ever speak to the press again?; AV; blood TSP; time; tombs; evidence-based policy & more bit.ly/iTusAZ

#MathMaths 46: Early Maths Day; Perelman; AV; Han shot 1st!; Paul the Octopus; PvNP; Humanistic Math; circadas; & more http://bit.ly/ilLC3Z

http://www.mathsjam.com/

JOST A MON: Carnival of Mathematics 77 http://t.co/V8bY5Uv

ha ha ha-sex and maths- Math Jokes 4 Mathy Folks http://t.co/I7yOhIS

#MathMaths 47: fave nums; 6/2(2+1); is maths finished? discovered or created?; arts v. science; stereotypes; and more. bit.ly/jcZlwl
Next MathMaths will be streamed live hopefully around saturday 4th June.

Gadgets and tech
Square-the amazing card payment for iphone, very nice http://t.co/L6cX8yL

easter eggs in your mac http://t.co/9NPrg33 via @theappleblog

spotify changes for free account http://t.co/iE6XTGy it's good well it wont affect me much

LiveProfile - blackberry, android and iphone- http://itun.es/i6R3Jh #iTunes #freetexts my cousin told me alright so leave it out- i have to say i may have more free texts/calls apps than people to actually use it with, some people would call it ironic!

blocks website for a certain time frame- may improve my revision....LeechBlock :: Add-ons for Firefox http://t.co/ywoXX71

Spotify download service takes on iTunes by The Gadget Show http://t.co/jSIec12

amazing if it was in the uk, earn money by walking around-Gigwalk in the iTunes App Store http://t.co/jDeNsSp

1st person video game with no video, its an audio experience- 5 stars-Papa Sangre http://t.co/5vvonqI the website http://t.co/ZVdftFV

Random
YouTube - The Axis of Awesome - Lazyeye (007) http://t.co/feTOtZq it made me laugh

RT @Nitrome: Hey Nitromians, Our highly anticipated game "SteamLands" has now been released! http://bit.ly/egc9gn

@Steven_moffat seems like he's starting on Sherlock Holmes

Luv@FirstTweet | Twitter Online Dating, Tweet and Meet, Connect with Singles http://t.co/8hYSLFu

nice pics RT @big_picture: The Royal Wedding http://t.co/O7RMhRd #royalwedding #rw2011

Super 8-shooting movie on iphone, i think its based on a film of the same name which is coming out soon ish http://t.co/d8Af5el

House is renewed for an 8th season

RT @Nitrome: Hi Nitromians! We have released our latest game Test Subject Green! :D check it out here! http://bit.ly/jZg3XJ

just updating my glee spotify playlist http://bit.ly/hdHuoY

18 April 2011

Interesting links 7/4/11 till today

Apple
How To Connect iChat to MSN, Facebook, and More: Apple News, Tips and Reviews « http://t.co/nMYJglO

Guardly Turns iPhone into Personal Security Guard: « http://t.co/P0WNUsK via @theappleblog only catch is it's only available in the US itunes store.

Fahrenheit and celsius app- love how it updates itself, check the pic it's really genius http://t.co/p5g4Fkp via @theappleblog

Gadgets
sell old mobiles, ipods, laptops for money or high street vouchers http://t.co/07A6jC2 via @thegadgetshow

Maths
from @Noelann Interested in simulation? Tip from #yor17, check out http://t.co/8ZrejeJ

The Hidden Science Map | Future Morph http://t.co/rJlBRpE this will be available for 6 months i believe.

RT @PeterRowlett: Remember to listen to @Noelann on the @uniofgreenwich Maths Cafe in this 3 min audio podcast http://bit.ly/mathshe @HESTEM

Video: Benford’s Law - How mathematics can detect fraud! (by singingbanana) http://tumblr.com/xqt21v143m

Greenwich Maths Time: Young Operational Research Society Conference http://t.co/rE4pDKs

Walking Randomly » Carnival of Math #76 http://t.co/Pxk6wiu via @walkingrandomly

#MathMaths 42: guest @mathsinthecity; Pioneer Anomaly; 3D Knight's Tour; @Google grants; FBI crypto; @Mangahigh; & more http://bit.ly/f3Yd5Y

citizen science links- Bang Goes the Theory, Series 4, Episode 5 http://t.co/EO5dQMg

Movies
there is a trailer for Johnny English 2, the trailer does look funny, i want to see it http://t.co/q8c6Os8

7 April 2011

interesting links

unfortunately I didn't realise how much time my MSc would take of my personnel time so this is a short blog on links I have discovered on twitter and blogs I read. Enjoy. since i plan to keep this up weekly (it may not) i am going to look back to 24 march till today.

Maths and Stats
How to write math equations (integrate Latex) in Blogspot/Blogger « Mathematics and Multimedia

apparently this is googles uk magazine website 'think quarterly' with data but i can't seem to get it to work...

a fractal joke, very nice-Math-Frolic http://t.co/qKfGAYQ

Bank note in india £0 http://t.co/cQ5ZW5P

a MATLAB like environment-Scilab WebSite http://t.co/THxwGN7
according to @walkingrandomly 's blog

we're sorry the number you have dialed is imaginary. please rotate your phone 90 degrees and try again MJ4MF maths jokes

cryptology no reward but definitely a challenge-FBI — Help Solve an Open Murder Case, Part 2 http://t.co/uYhhzXv #maths #puzzle via @alexbellos

In America it is Math Awareness Month http://t.co/uOGlvUX link via Math-Frolic

Maths podcast MathMaths http://t.co/dhxD3y3

Math Poems from MJ4MF

Plus podcast on sport engineers or read the article

Film and TV
RT @RottenTomatoes: Captain America: The First Avenger trailer pumps it up. Watch it: http://bit.ly/gC65Rt

Prequel for Doctor who

Hugh Laurie sings http://bit.ly/h71wrA

Gadgets
Android and me

MoxierWallet secure your accounts http://t.co/gGFBNsi

Viper- free calls on iPhone, iPad and iPod link via theappleblog

Plugin for your browser- Tineye find out who is in a picture http://t.co/JuOP1fQ

Video of game on iPad called Slice (knives and blood) http://t.co/PoSHbgx

Social
New And Improved! 62 Movie Twitterers You Should Follow-Empire http://t.co/y4AdcO0

Axis of Awesome-youtube video "Can You Hear the F***ing Music Coming Out of My Car?" http://t.co/aI00IjS

Nitrome game-Knight trap

Glee spotify playlist http://bit.ly/dQlN9d