Monthly Archives: January 2012

Technical Career Navigator Review

In these hard economic times The Technical Career Navigator by Ray Weiss is the perfect book to help you find a job, keep your job and advance your career. The book is written for programmers, hardware engineers, technical managers and [...]

Share
Posted in books | Leave a comment

NumPy Project Euler Problem 4

This entry is part 4 of 9 in the series NumPy Project Euler

Project Euler Problem 4 is a bit silly. It’s about palindromic numbers. I could not find an appropriate algorithm, so I just tried something out. It seems to work OK.
1. Create a 3-digit numbers array
We will create an array to [...]

Share
Posted in programming | Tagged , , , | Leave a comment

Refactoring Book Review

Refactoring is the process of rewriting software, without changing the way it functions, in order to improve its readability, testability or maintanability. A book has been written on the subject by Martin Fowler. Some of the chapters were written by [...]

Share
Posted in books | Leave a comment

NumPy Project Euler Problem 3

This entry is part 3 of 9 in the series NumPy Project Euler

Project Euler Problem 3 seems almost impossible to crack. However, using the right algorithm – Fermat’s factorization method and NumPy, it becomes very easy. The idea is to factor a number N into two numbers c and d.

[...]

Share
Posted in programming | Tagged , | Leave a comment

2 Beautiful Computer Graphics Books

These Computer Graphics books are beautiful, because they have lots of color plates and figures, hardcover with nice designs. I think you should appreciate these kind of things, otherwise you could just as well hold a stack of paper in [...]

Share
Posted in books | Leave a comment

NumPy Project Euler Problem 2

This entry is part 2 of 9 in the series NumPy Project Euler

Project Euler Problem 2 is definitely harder than Problem 1. This one requires reading the Fibonacci numbers Wikipedia article.
I read that the Project Euler problems are some sort of katas. Katas are what martial artist call exercises, preparing you for [...]

Share
Posted in programming | Tagged , | Leave a comment

3 Great Computer Science Books in My Library

Here are 3 amazing (if a bit old) Computer Science books from my library.

1. TCP/IP Illustrated Volume 1

Author
W. Richard Stevens

ISBN-10
0201633469

This is a fantastic textbook about different network protocols. The protocols are illustrated using the output of tcpdump and other utilities. [...]

Share
Posted in books | Leave a comment

NumPy Project Euler Problem 1

This entry is part 1 of 9 in the series NumPy Project Euler

Project Euler is a website that lists a number of mathematical problems, which are perfect to be solved with NumPy. Let’s start the new year with Problem 1.
1. Call the arange function
Call the arange function in order to store all [...]

Share
Posted in programming | Tagged , | Leave a comment

4 Great Physics books I had to read

I made a list of four great introductory level Physics books I needed to read for my Master’s degree. You can see them below.

1. Analytical Mechanics

Authors
Grant R. Fowles and George L. Cassiday

ISBN-10
0030989744

Mechanics was one of the first (if not the [...]

Share
Posted in books | Leave a comment