There are some good sites out there where you can publish a short true storie according to a theme.
For instance:
- fmylife.com
- mylifeisaverage.com
- myhorriblesecret.com
I definitely recommend to read a couple of their stories, if you can stop.
There are some good sites out there where you can publish a short true storie according to a theme.
For instance:
- fmylife.com
- mylifeisaverage.com
- myhorriblesecret.com
I definitely recommend to read a couple of their stories, if you can stop.
If, like me, you like funny stories in the IT world, you’ll definitely enjoy thedailywtf.com. For instance, this story and this one are pretty awesome.
Here is a Top 10 of the best flash tower defense games around. Each one has something special which makes it fun and original amongst the genre.
If you like tower defense games, you can find more on towerdefence.net and on flashtowerdefence.com .
Tower Defense games became popular with Warcraft 3 custom maps. Today, there is a rising number of tower defense games online. One of the most successful is Desktop Tower Defense 1.5 but it is quite difficult.
So I will give you some tips on how to reach a good score (more than 6000 points) in the medium mode.
I hope that those tips help you. If that’s not enough, have a look at all the good videos on youtube showing maze building and upgrading with actual timing.
Did you know that Qt from the Qt library by Trolltech should be spelled “cute” and not “cutie” ? It’s because the “t” is in lowercase.
Personnally I find that a bit disappointing to have libraries or software products named after a common word. They should have more uniqueness in their names. For instance, I named my first software POVAMA and it is still the first result in google when you search for POVAMA.
Tell me what do you think about that.
Here is a list of anime i really liked:
Here is a list of anime I should watch
If you want to watch them for free, just go to http://aniwatch.com
Here is a list of great video games I’d like to try when I will have some time:
According to a study, children with a name beginning near the start of the alphabet have better scholar results. They might be more intelligent just because of the first letter of their name. Here is a list to help you find a suitable name for a smart child.
I love online comic strips and I feel like I should share a bit of the most funny ones with my small crew of casual readers.
Here is a funny anecdote about justice and violence.
http://www.vgcats.com/comics/?strip_id=257
It strikes numerous cords in me, first, it tells me that justice is blind and that you should’nt ask it anything unless you’re ready to get struck by a bear…
I have a dream that one day, students in maths and computer science from all over the world will unite to solve the greatest mathematical problems of all times.
Indeed, this day has almost come. ProjectEuler.net is a great learning tool which focuses on solving maths problems with the aid of some programming. The choice of the language and the method is left to the participant, only the answer is recorded. However, methods used are discussed in a specific thread for each problem (there are more than 160 problems).
I started using C++ but quickly noticed how simpler and shorter the ruby solutions were. So I went with Ruby and it went very smoothly even through I didn’t know the API.
I’m surprised at how many people keep submitting solutions using assembler language, I hope it’s just for the fun of showing their insanity.
For the record, here is an excerpt of my ruby solutions (warning spoiler ahead):
ex4: Find the largest palindrome made from the product of two 3-digit numbers.
# x, y 3-digits
# z=x*y
# 100*100 < z < 999*999
def isPalindrom(n)
if (n.to_s==n.to_s.reverse())
return true
else
return false
end
end
def f()
max=0
for x in 100..999
for y in 100..999
z=x*y
if isPalindrom(z)
#puts z
if (z>max)
max=z
end
end
end
end
return max
end
puts f()
ex6: Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.
def diff(n)
return n*n*(n+1)*(n+1)/4-n*(n+1)*(2*n+1)/6
end
puts diff(ARGV[0].to_i)
ex7: What is the 10001st prime number?
require 'mathn'
f = 0
primes = Prime.new
for i in 1..10001
f = primes.next
end
puts f
ex9: There exists exactly one Pythagorean triplet for which a + b + c = 1000.
Find the product abc.
def f(n)
for a in 1..n
for b in a+1..n
for c in b+1..n
if (a*a+b*b==c*c)
if (a+b+c==1000)
return a*b*c
end
end
end
end
end
return 1
end
puts f(ARGV[0].to_i)
I now have completed more than 16 problems. The difficulty increases gradually. On problems 12 and 15, my first scripts were too long to execute (more than 1 week), as I expected, I add to rewrite my beautiful bi-recursive function to something much more iterative. The results were astonishingly better, in less than one second, I had accomplished much more calculations than in one week with the previous method.
Recent Comments