Thursday, November 17, 2016

A Beginner Guide To JsonResume

Hi, new post again. I am going to tech you how to use jsonresume and create your own dashing resume easily. 

If you search on google something like this "online resume builder/maker, download resume template" you get thousands of sites but most of them are not free. but jsonresume is free and opensource. you can easily create super cool resume just in a moment. So lets get started. 


step - 01 : you need to install git on your machine follow this site and download and install git.

step - 02 : Now you need to install nodejs on your machine. here is the official site download and install nodejs. Now you are ready to get started json resume.lets check that everything is working fine. open the command prompt or terminal npm -v you will the current version number mine is 3.10.8. If you did not see this then reinstall the nodejs.

step - 03: Here is the official site (https://jsonresume.org/) jsonresume. To install jsonresume open your terminal and write the following code  npm install -g resume-cli  now we are completely ready to create our first resume. 

step - 04 : resume init write the code in terminal you should ask for your name and email give them properly. Browse the directory (in windows it should be "C:\Users\YourName\node_modules") there you will find a resume.json file open the file in any editor and edit the field those field are pretty self explanatory. when your are done 
write the following command resume serve to see your resume live in browser.

you should see the basic flat theme but don't worry there are so many elegant themes are available. Here is the list of them  you have to install them into your directory. forget to mention you can export your theme as pdf format by this command resume export .

Feel free comment if you have any error.
follow me on twitter @shohan4556

Wednesday, September 28, 2016

Captain Bland's Space Adventure

Hi, after finishing the "Complete Unity Developer" Course at Udemy I feel like I have a good foundation on Unity. So that I want to go for long run, this is the game I am currently working on "Captain Bland's Space Adventure". A cute pixel art space adventure game.

Please like the Facebook page.

**The Presskit of the game is here.





Saturday, September 10, 2016

Wednesday, June 15, 2016

Phaser Experiment - Making a Health Bar With PhaserJs

Hi everybody, Today I made a simple Healthbar with PhaserJs . Its required little bit tuning though but I think this example can help you to understand the basic idea of implementing health bar.
You can use "Linear Interpolation" or "Linear Tween" to make this Bar smooth.


Friday, April 22, 2016

Top 5 Bracket Extension I used All The Times

Hi guys, this post I will talk about top 5 Bracket extension that you should use to be more productive. 

1. Beautify : This is the extension I install at first after installing Bracket. This extension will help you to beautify your code just press ctrl+shift+L.

2. Tabs-Cutome-Working : This is one of handy extension this extension helps you to move one file to another using keyboard to use this extension press ctrl+tab.

tabs


3. Phaser-Chain : If your are a PhaserJs developer then this extension will be your best friend to use this extension press ctrl+i.

Phaser chain


4. Bracket-Icons : This is extension is very beautiful, it creates files icons according to file types.




5. Todo : I know you are commented your code so lets do it more effectively. To use this extension comment like this in your code : 
// todo : this is a comment.
press ctrl+atr+t see the magic.


** Themes : Use a theme that is convenient to your eyes. I usually use new-one-dark, monaki, and bracket default dark theme. there are so many nice themes are available in Bracket repository choose yours.

So this is the end of this post if you have any query feel free to post in comment.

Tuesday, March 22, 2016

Javascript Events By Example


Hello everybody, today I will show you three types of javascript events.

Type 01 : In this type event you can add event in html tag, this is bad practice.

Type 02 : This type of event is very handy. you grub the element by id and attach event.

Type 03 : This is more advance type than Type 02, the advantage is you can add multiple events, create your own event and attach them in your code even non DOM elements.

Here is the simple example of these three types of events.


Saturday, March 19, 2016

Thursday, March 17, 2016

My Favourite Pixel Art Tools !

I am not talking about Photoshop even Gimp, I am talking about the most user friendly, easy to use pixel art tool "Piskel" and "Aseprite". I used both tools. Booth are very much attractive almost all the features you need to draw nice pixel art.

Piskel :


piskel
Piskel GUI
This is what I just drew with piskel editor, it has offline and online version.
you can also create animation sprite with this nice tool.
very easy to use.

When you are drawing pixel art then keyborad shortcut is very helpful, you can get all the shortcut here easily.

Piskel is not so hard to use just get your hands on it, I hope you will never be disappointed.

I hope I will post some pixel art drawing tips later on, time is a matter :).

Saturday, March 12, 2016

Wednesday, January 27, 2016

Tuesday, January 5, 2016

How to install Monodevelop 5 on Ubuntu 14.04

Monodevelop is available in software center on Ubuntu 14.04 but its too old. So I am gonna show you how to download the latest version of monodevelop (5.x) on Ubuntu 14.04. lets follow me.

Open Terminal, the paste the below commands, 

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF

echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list

sudo apt-get update

sudo apt-get install monodevelop

And you are done !.