Reading Time: 2 minutes I have been travelling many times to Düsseldorf for business.
The Nokia Siemens Networks office is located very close to the airport.
Here are some of my tricks when staying there.
Marc has spent the past few years putting oil on the fire of a hyper growth ad tech company. At Smartly.io he was in charge of scaling the support and its culture. At Eficode he is now leading an engineering team and running operations. He leads by example and puts a lot of emphasis on diversity and inclusion, constantly working to create a safe environment. A warm leader with a passion for memorable experiences and innovation.
Find Marc on Linkedin
Reading Time: 2 minutes I have been travelling many times to Düsseldorf for business.
The Nokia Siemens Networks office is located very close to the airport.
Here are some of my tricks when staying there.
Reading Time: < 1 minute
I have started to play rugby in France in 2002 at my engineering school (ECE Paris). My school team was called "XV du Camion". I played only one short season, 2002-2003.
Then I played for 4 years at ESNanterre in the suburb of Paris. I was a 2nd row and a prop.
Reading Time: < 1 minute
How to delete empty lines with vi?
Just type this in:
<esc>:g/^$/d
NOTE: This means that all the lines that just have a carriage return on them (NO Spaces), will be removed.
If you want to remove lines with empty spaces as well:
<esc>:g/^ *$/d
Reading Time: < 1 minute
Bash supports a surprising number of string manipulation functions.
For example if you want to get rid of the beginning of the name of a file or a folder on many files at a time you could do the following:
bash> ls mylongfile1 mylongfile2 mylongfile3 mylongfile4 mylongfile5 mylongfile6 mylongfile7 bash> for i in * > do > mv $i ${i:6} > done bash> ls file1 file2 file3 file4 file5 file6 file7
Reading Time: < 1 minuteCompeeds have saved my life numerous times already. Some people can’t stand them, I am a strong believer and I cannot go running, play rugby, or go for a long hike without having one in my pocket.
Reading Time: < 1 minuteFriendly
Estonia – Finland: 22/05/2010 – Win 15-22
European cup division 3C
Finland – Israel: 12/06/2010 – Loss 6-13
https://www.fira-aer-rugby.com/archives-match-563.htm
European cup division 2D
Cyprus – Finland 26/03/2011 – Loss 70-10
https://www.fira-aer-rugby.com/match-348.htm
Reading Time: 2 minutesI spent Jun-Dec 2010 in Dallas, Texas and for Thanksgiving I decided to enroll to the Turkey trot with my wife and my good buddy Jim.
It was a 5Km small race and it gave me the virus of running.
I completed it in 29min which is not too bad.
The atmospher was great, lot’s of people cheering, everyone happy, I loved it.
I thought I should get to a longer distance in order to enjoy the same feeling for a longer period. How about a 10K? Let’s make it 21K… Half Marathon.
Reading Time: < 1 minuteIn the file:
/etc/sysconfig/network-scripts/ifcfg-eth0
Add the following at the end of the file:
ETHTOOL_OPTS="speed 100 duplex full autoneg off"
Reading Time: < 1 minute On Redhat you would simply look for the file /etc/inittab and locate the line that says:
# The default runlevel. id:3:initdefault:
Simply replace the 3 with 2 or 4 or 5 depending what you wanna do in order to change the default runlevel.
On Ubuntu starting from some version around 6sh… whatever, no one is running that anymore anyway and those who do run it don’t need to change that. At the time I am writing this the current LTS is 10.04 and the current testing release is 10.10
So here is how to do it.
Reading Time: < 1 minute By default the binary "mail" is not installed on Ubuntu. At least it’s not on my brand new Ubuntu 10.10.
You need to setup the package mailutils.
apt-get install mailutils
Then you can send an email using the command line:
ls | mail blabla@gmail.com