- presentation of remeasurement: the Board tentatively decided that, although remeasurements should be presented in other comprehensive income, there were circumstances in which it would be appropriate to allow an entity to elect to present remeasurements in profit or loss (primarily to address accounting mismatches) for a given plan.
- curtailment & settlement: the Board tentatively proposed recognition rules for
- gains and losses resulting from a curtailment or plan amendment arising as part of a restructuring plan or is linked to termination benefits
- termination benefits arising as a part of plan amendment arises as part of a restructuring plan
A new blog on various actuarial stuffs...
Saturday, 29 January 2011
IAS 19 Employee Benefits : From the Board - Remeasurement & Curtailment/Settlement
Thursday, 27 January 2011
Python Web-Hosting with Numpy : virtualising your environment
- Virtualisation of a own Python environment with the website hoster
- Installation of the required tools with easy_install.
For your information:
- I didn't know numpy, scipy and friends could be (easily) installed with easy_install
- This at least requires the gcc tools or the corresponding compiling and building tools to be installed with the server
sys.path
.$ virtualenv $HOME/my_python
$ $HOME/my_python/bin/easy_install numpy
#!/home/myuser/my_python/bin/python
import numpy
# script here
import sys
sys.path.insert(0, '/home/myuser/my_python/lib/python2.5/site-packages')
import numpy
Tuesday, 25 January 2011
The difficult choice of a python IDE
Here is a nice list of the possibilities: Open source Python IDE's
For the moment I work with Spyder and Eclipse(PyDev) that comes with a package that's interesting because it gives you a lot of functionality at once (Python x,y (scientific-oriented Python Distribution))
I also tried out Eric and Pyscripter and Eric seems also interesting when you want some more help with GUI development (Qt) and webenabled development (Django).
Friday, 21 January 2011
Python, Programming language of 2010
Programming language Python has become programming language of 2010. This award is given to the programming language that gained most market share in 2010. Python grew 1.81% since January 2010. This is a bit more than runner up Objective-C (+1.63%). Objective-C was favorite for the title for a long time thanks to the popularity of Apple's iPhone and iPad platforms. However, it lost too much popularity the last couples of months.
Python has become the "de facto" standard in system scripting (being a successor of Perl in this), but it is used for much more different types of application areas nowadays. Python is for instance very popular among web developers, especially in combination with the Django framework. Since Python is easy to learn, more and more universities are using Python to teach programming languages.
Source: TIOBE
Wednesday, 19 January 2011
For .NET users: GSL binaries
This link points to two .NET libraries 2 libgsl_d.dll and libgslcblas_d.dll that have been been built statically (and posted on www.quantcode.com). Hence they can be used from a C# application of plat invoke, without dependency issues.
Saturday, 15 January 2011
For .NET lovers or slaves : SharpDevelop 4.0 has been released
- It includes tools that are not included in the limited Express versions, such as Class Diagrammes
- It handles more .NET dialects from the same platform: VisualBasic.NET, C#, Boo, F# and IronPython and IronRuby
- It includes a translation module between dialects
- For those who cannot miss their favorite scripting language, it includes (Iron)Python/Ruby console even if you develop under C#.
Friday, 7 January 2011
"IAS 19 Employee Benefits : prémices d'une mutation" has been issued by Kluwer
Thursday, 6 January 2011
Prospective mortality tables; R is your friend
A very interesting R package that permits to easily fit the Lee Carter model for prospective mortality tables.
website: http://cran.r-project.org/web/packages/demography/demography.pdf
Description:
Functions for demographic analysis including lifetable
calculations; Lee-Carter modelling; functional data analysis of
mortality rates, fertility rates, net migration numbers; and stochastic population forecasting
Interested people might also find intersting to use the web applciation developped by Mr Lee himself:
http://lcfit.demog.berkeley.edu/
Useless to say that the web application uses Python... ;-)