35 Best Places to Learn How to Code Quickly

I usually don’t add a lot of references to coding info beyond bash hacks but I felt this would be a good resources to save for future reference… enjoy!

From designzum.com

1) MIT Open Courses Ware

MIT course ware have a number of courses related engineering and computer science. It provides all the free resources as exams, assignments, design and analysis algorithms and more.

 

best resources to learn code online - mitopencourseware

(more…)

Continue Reading35 Best Places to Learn How to Code Quickly

Common Linux Log Files

 

 

If you spend lot of time in Linux, it is essential that you know where the log files are located, and what is contained in each and every log file.

/etc/rsyslog.conf controls what goes inside some of the log files. For example, following is the entry in rsyslog.conf for /var/log/messages.

$ grep “/var/log/messages” /etc/rsyslog.conf

*.info;mail.none;authpriv.none;cron.none
/var/log/messages

In the above output…
(more…)

Continue ReadingCommon Linux Log Files