MYWOT
Child safety
Confidence
Trustworthiness
Confidence
MALICIOUS CONTENT INDICATORS
Laurentluce.com most likely does not offer any malicious content.
Secure connection support
HTTPS
Laurentluce.com provides SSL-encrypted connection.
ADULT CONTENT INDICATORS
Laurentluce.com most likely does not offer any adult content.
Audience
-
Gender
Men
99%
Women
21%
Popular pages
-
Laurent Luce's Blog
Laurent Luce's Blog Regression analysis can be used to search for relationships among observation variables. I wanted to find out if unemployment rate and housing prices are related. I also w...
-
Solving mazes using Python: Simple recursivity and A* search – Laurent Luce's Blog
Solving mazes using Python: Simple recursivity and A* search written 12 years ago This post describes how to solve mazes using 2 algorithms implemented in Python: a simple recursive algorithm and the ...
-
Python and cryptography with pycrypto – Laurent Luce's Blog
Encryption algorithms Encryption algorithms take some text as input and produce ciphertext using a variable key. You have 2 types of ciphers: block and stream. Block ciphers work on blocks of a fixed ...
-
Python list implementation – Laurent Luce's Blog
This post describes the CPython implementation of the list object. Lists in Python are powerful and it is interesting to see how they are implemented internally. Following is a simple Python script ap...
-
Python dictionary implementation – Laurent Luce's Blog
This post describes how dictionaries are implemented in the Python language. Dictionaries are indexed by keys and they can be seen as associative arrays. Let’s add 3 key/value pairs to a dictionary: ...
-
Python integer objects implementation – Laurent Luce's Blog
This article describes how integer objects are managed by Python internally. An integer object in Python is represented internally by the structure PyIntObject. Its value is an attribute of type long....