Setting up InfluxDB and Grafana for storing and viewing Arduino measured sensor values
Arduino and its related products are undoubtedly very popular among hobbyists and even professionals. One of the areas of interest with hobbyists and professionals is interfacing with many different sensors such as temperature, humidity, light, etc. The simplest method would be storing measured values on an SD card or transmitting…
STM8 Tutorial 2 – Implementing a simple delay function
STM8 Series of microcontrollers, the 8-bit series of STMicroelectronics, are cheap but powerful micros which provide a good value and performance to your simple projects. The problem is, these series are not geared toward hobby market. While there are fantastic tools like STM32CubeMX software pack and the HAL library which…
STM8 Tutorial 1 – How to read the datasheet
STM8 Series of microcontrollers, the 8-bit series of STMicroelectronics, are cheap but powerful micros which provide a good value and performance to your simple projects. The problem is, these series are not geared toward hobby market. While there are fantastic tools like STM32CubeMX software pack and the HAL library which…
Compile and install Caffe with CUDA and cuDNN support on windows from source
Caffe is a deep learning framework made with expression, speed, and modularity in mind. It is developed by the Berkeley Vision and Learning Center (BVLC) and by community contributors. Yangqing Jia created the project during his PhD at UC Berkeley. Caffe is released under the BSD 2-Clause license. In this…
Matrix implementation and operations in C++ – Part 1
Matrices are undoubtedly a very important topic in computer science. With the help of matrices many computational problems, ranging from finding roots of algebraic equations to extensive image manipulation and feature extraction in image processing and even video games, will become solvable. In this tutorial we will have a look into how…
Pimping up your Ubuntu!
Want great look and feel on your Ubuntu machine? then follow this guide! First of all, install NUMIX icons and themes
1 2 3 4 5 6 7 |
$sudo add-apt-repository ppa:numix/ppa $sudo apt update $sudo apt install numix-gtk-theme numix-icon-theme-circle |
Then, to easily change the themes and icons, install unity’s tweak tool
1 2 3 |
$sudo apt install unity-tweak-tool |
If you are on a GNOME based desktop (not unity) then get gnome’s tweak tool!…
Build and install CMAKE 3.7.2 on Ubuntu
This guide should work for any recent version of CMAKE up to 3.8.X. First of all download the source from here: https://cmake.org/download/ More specificly for Ubuntu 14.04 or higher, 64 bit: https://cmake.org/files/v3.7/cmake-3.7.2.tar.gz Download it to the following directory (or any directory you like! but make sure to use that directory!)…