if you have read through most of the concepts in Rust and want to build something in Rust, i would suggest below website to start with...
https://mattgathu.github.io/writing-cli-app-rust/
Thursday, September 27, 2018
Wednesday, September 26, 2018
multiple termnial at the same screen - Ubuntu
I started using multiple screen in my office to do multiple tasking. I thought it was not going to save my time and efficiency. But I experienced that it was highly improving my work efficiency. I was able to finish my tasks quickly without much tiring when doing multi-tasking.
But when i reach home and open the laptop, its highly difficult for me switch between screens.
So I was searching for a tool where i can create multi-terminal on the same screen.
you can use terminator
the installation is simple
apt-get install terminator
open a terminal and type
$terminator
you will get a terminal open by terminator , then you can split it using ctrl +shift +o
But when i reach home and open the laptop, its highly difficult for me switch between screens.
So I was searching for a tool where i can create multi-terminal on the same screen.
you can use terminator
the installation is simple
apt-get install terminator
open a terminal and type
$terminator
you will get a terminal open by terminator , then you can split it using ctrl +shift +o
Monday, August 6, 2018
Rust on Amazon EC2
Amazon EC2 is very popular nowadays. So wanted to try something with EC2., not sure how much its going to cost me .Usually I stop amazon experiments when I reach the credit card page. :-)
This time really wanted to try what is EC2.
I took the basic plan and lauched a Ubuntu server and installed Rustc, cargo and gcc.
Its really exciting to login to remote machine and experiment some really installation and programming as we do in our local machine.