Skip to content
This repository has been archived by the owner on Aug 9, 2020. It is now read-only.

Fixed Grammar for all of the files #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions tech/2018-06-05-Simple-Introduction-To-Python-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ class: post-template
author: bauripalash
---

Python is a programming language that is **Easy to learn** , has **Clear Syntax**. I recommend every newcomer to learn Python first because,
Python is a programming language that is **Easy to learn **, has **Clear Syntax**. I recommend every newcomer to learn Python first because,

- Easy to learn
- Used by Major Tech Giants
- Used in from Simple Desktop to NASA research centre.
- Used in from Simple Desktop to NASA research center.
- Salary of Python Programmers is very high

Let's Learn Something without further talking,

## Let's start with Traditional Hello World


**Hello World** is a traditional program that every programmer Writes at very first time when learning a new Programming Language, in python it's very simple:
**Hello World** is a traditional program that every programmer Writes at the very first time when learning a new Programming Language, in python, it's very simple:

{% highlight python %}

Expand All @@ -28,22 +28,22 @@ print("Hello World")
{% endhighlight %}


In This Current Moment you might be wondering how can you write python programs yourself?
In This Current Moment, you might be wondering how can you write python programs yourself?

Actually There're two ways to do it

1. **Online, in a online interpreter**
1. **Online, in an online interpreter**
2. **Offline, in your local computer**

### 1. Write and Run Python Programs Online

There're plenty of ways to write and run Python Programs online , but my recommendation is **repl.it**
There're plenty of ways to write and run Python programs online, but my recommendation is **repl.it**

Step 1 : goto <https://repl.it/languages/python3>
Step 1 : go to <https://repl.it/languages/python3>

Step 2 : On the left side write python programs (eg. Hello World program above) , and click "Run >"
Step 2 : On the left side write python programs (eg. Hello World program above), and click "Run >"

Step 3 : Now On The console at right side you'll see output `Hello World`
Step 3 : Now On The console at the right side you'll see output `Hello World`

You can also Signup there to save your programs for later use.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The results for the West Bengal Board (India) Madhyamik 2018 have been published
![Sad](https://media1.tenor.com/images/44396a8da3c65f507608a970581fbc94/tenor.gif?itemid=3518791)

When the results were declared on the news channels this morning at 9 o'clock, I was eager to hear from those students that managed to make the list.
All of them were asked about their life-style during pre-examination time, how they studied and what their future plan were after now.
All of them were asked about their lifestyle during the pre-examination time, how they studied and what their future plan was after now.

There was however something very peculiar about their answer:
**Most of the students wanted to be a _Doctor_**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@
layout: post
cover: assets/images/advanced.jpg
navigation: True
tags: [Future ,Education, Thoughts]
tags: [Future , Education, Thoughts]
class: post-template
author: bauripalash
---

**Science** , You've heard the word many times. Nowadays in developing countries like India, Science is one of key things to run a country.
**Science **, You've heard the word many times. Nowadays in developing countries like India, Science is one of key things to run a country.

![weird science](https://palash.tk/assets/images/wscience.gif)

Science is one of the most common thing in our life that we encounter everyday, from Bedroom to Drawing Room , Bathroom to Kitchen, Office , College... Simply Everywhere.
Science is one of the most common things in our life that we encounter every day, from Bedroom to Drawing Room, Bathroom to Kitchen, Office, College... Simply Everywhere.

But the sad truth is , **Many Students Are Afraid of Studying Science**, they say _Science is Hard_ , _Science is only for Meritorious Students_ , _I'm not capable of Science_ and so on..
But the sad truth is, **Many Students Are Afraid of Studying Science**, they say _Science is Hard _, _Science is only for Meritorious Students _, _I'm not capable of Science_ and so on.

![quote](https://i.pinimg.com/736x/0d/3b/97/0d3b97acef5bf8bf28b94031875e83e4--school-quotes-teacher-quotes.jpg)

Science is not hard , it depends on how you're taught. Science is easy , it just needs a great teacher to show you the enjoying path of learning Science.
Science is not hard, it depends on how you're taught. Science is easy, it just needs a great teacher to show you the enjoying path of learning Science.

Just Think , How Can a Thing Which We Use Daily cannot be learnt by YOU.
Just Think, How Can a Thing Which We Use Daily cannot be learned by YOU.

So my fellow readers, there's a saying,
So, my fellow readers, there's a saying,

> A Good Student is Also a Good Teacher

So , if you're from Science Stream, Show Others the fun way to learn Science, Because Fate of Humanity is in your hand now...😊
So, if you're from Science Stream, Show Others the fun way to learn Science, Because the Fate of Humanity is in your hand now...😊

8 changes: 4 additions & 4 deletions tech/2018-06-12-Easy-Calculations-With-Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ So let's do some simple Mathematics with [Python](https://python.org), we've cho

> I recommend reading my previous article about starting with python <https://palash.tk/Simple-Introduction-To-Python-Programming>, read that before going further if you're new to Programming or Python

So let's start..
So let's start.

## Start Python

If you've python installed locally run [IDLE](https://en.m.wikipedia.org/wiki/IDLE) otherwise use online interpreter like [Repl.It](https://repl.it/languages/python3)
If you've python installed locally run [IDLE](https://en.m.wikipedia.org/wiki/IDLE) otherwise use online interpreters like [Repl.It](https://repl.it/languages/python3)

If You've Opened IDLE or Other [REPL](https://en.m.wikipedia.org/wiki/Read–eval–print_loop) you'll see a prompt like this,

Expand All @@ -46,7 +46,7 @@ If you find any problems please comment below the article, I'll surely help you_

If you've successfully completed the previous chapter, now you have a `>>>` or `>` prompt on your screen.

In the `>>>` type `1+2` and press enter. If you've done everything correctly you'll see a output of `3`
In the `>>>` type `1+2` and press enter. If you've done everything correctly you'll see an output of `3`

Try other,

Expand Down Expand Up @@ -75,6 +75,6 @@ Try other,

Looking for the answer?

I'll not tell you, find Yourself using Python 😉 if you're able to find it , comment your answer below in the comment box 👇.
I'll not tell you, find Yourself using Python 😉 if you're able to find it, comment your answer below in the comment box 👇.

That's the fun of Programming 😁
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ author: bauripalash
---


If you're a Android Phone User there's 99% probability that you've heard about **Android Launchers** , if you haven't,
If you're an Android Phone User there's 99% probability that you've heard about **Android Launchers **, if you haven't,

> Android launchers are apps that can spice up your phone's home screen or act as a personal assistant. They help you to customize your android phone

Android Launchers are usually used by people who don't want to be limited by system provided **User Interface**
Android Launchers are usually used by people who don't want to be limited by a system provided **User Interface**

Today We'll Take a Look at two of my favourite **Free & Open Source** Android Launcher.
Today We'll Take a Look at two of my favorite **Free & Open Source** Android Launcher.

Let's Start...

Expand All @@ -23,11 +23,11 @@ Let's Start...

<img src="https://f-droid.org/repo/icons-640/ch.deletescape.lawnchair.plah.1878.png" >

It's a Open Source Android Launcher, available on Play Store as well as F-Droid.
It's an Open Source Android Launcher, available on Play Store as well as F-Droid.

![](https://fsgh.palash.tk/imgs/lc-home-main.jpg)

It's Customisable , Fast, Lightweight , Easy To Use.
It's Customisable, Fast, Lightweight, Easy To Use.


There's plenty of Customizing Settings available.
Expand All @@ -36,26 +36,26 @@ There's plenty of Customizing Settings available.

> My Favourite Feature is Changing Between Dark, Light or Black Mode.

Vist Official Website : <https://lawnchair.info>
Visit Official Website: <https://lawnchair.info>


## KISS Launcher

![](https://f-droid.org/repo/icons-640/fr.neamar.kiss.133.png)

It's also a Awesome, Fast, Customizable , Super Lightweight (app size in KBs)
It's also an Awesome, Fast, Customizable, Super Lightweight (app size in KBs)


![kiss Launcher](https://fsgh.palash.tk/imgs/kiss-l-home.jpg)

One thing i like most about it is it's speed and minimalist design.
One thing I like most about it is its speed and minimalist design.


I'm not telling you to use them , but i recommend you to try them once.
I'm not telling you to use them, but I recommend you to try them once.

Now It depends on what you wants, whether it might be minimalist design or lightweight design or feature rich style.
Now It depends on what you want, whether it might be minimalist design or lightweight design or feature-rich style.


You'll heard people talking about Nova Launcher or Apex Launcher, I'm not saying that they are bad, but they are feature rich and they drain too much battery.
You'll hear people talking about Nova Launcher or Apex Launcher, I'm not saying that they are bad, but they are feature-rich and they drain too much battery.

So Next Time Choosing Launcher Choose Carefully. 😉
32 changes: 16 additions & 16 deletions tech/2018-06-23-Baby-Steps-In-C-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,40 +7,40 @@ class: post-template
author: bauripalash
---

**C** is one of most used Programming language till date. It is one of the most powerful language and mother of many modern Programming language (eg. Python , Ruby)
**C** is one of the most used programming languages to date. It is one of the most powerful language and mother of many modern Programming languages (eg. Python, Ruby)

![](https://media2.giphy.com/media/fnD9cHHIrYRYk/giphy.gif)
[©giphy](https://giphy.com)
{: .crtx}


🍭 C is a compiled language, unlike [Python](https://python.org) or [Ruby](https://www.ruby-lang.org/en/) , C programs must be translated from human readable code to machine readable code.
🍭 C is a compiled language, unlike [Python](https://python.org) or [Ruby](https://www.ruby-lang.org/en/), C programs must be translated from human-readable code to machine-readable code.

> The program which translates human readable C code to machine readable code is called a compiler
> The program which translates human-readable C code to machine-readable code is called a compiler


> You'll be Astonished to know that the most [Compilers](https://en.m.wikipedia.org/wiki/Compiler) of C (eg. GCC) is also written in C
> You'll be astonished to know that the most [Compilers](https://en.m.wikipedia.org/wiki/Compiler) of C (eg. GCC) is also written in C

You'll find people who says , C is so hard but i say nothing is hard it just needs a good teacher to explain everything.
You'll find people who say, C is so hard but I say nothing is hard it just needs a good teacher to explain everything.

So without further talking let's take our first step in the world of C Programming.

## Setting Up Workspace

As i mentioned earlier C is a compiled language so you need a compiler such as GCC to compile C programs.
As I mentioned earlier C is a compiled language so you need a compiler such as GCC to compile C programs.

Today we'll be using Repl.it to compile and Run C programs online.
Today we'll be using Repl.it to Compile and Run C programs online.

If You want to run and compile C Programs in Your local device [Read This Article](https://www.tutorialspoint.com/cprogramming/c_environment_setup.htm)
If you want to run and compile C Programs in Your local device [Read This Article](https://www.tutorialspoint.com/cprogramming/c_environment_setup.htm)

To Run and Compile C programs online without installing anything , Use [REPL.it](https://repl.it/languages/c)
To Run and Compile C programs online without installing anything, Use [REPL.it](https://repl.it/languages/c)

When Opening Repl.it you'll see a sample program is already written in the left pan. Clear it first.
When Opening Repl.it you'll see a sample program is already written in the left pane. Clear it first.


## Writing Traditional Hello World

As I mentioned earlier Hello World is traditional program which every programmer Writes at first when learning new language. Which just prints **Hello World** text in a console window
As I mentioned earlier Hello World is a traditional program that every programmer Writes at first when learning a new language. Which just prints **Hello World** text in a console window

Hello World program in C is a bit longer than Python or Ruby.

Expand All @@ -56,13 +56,13 @@ int main()
}
{% endhighlight %}

Write the above code in the left pane of repl.it or if using Local device , write the above script in a file called **hello.c** and execute the command in terminal
Write the above code in the left pane of repl.it or if using Local device, write the above script in a file called **hello.c** and execute the command in terminal

` gcc -o hello hello.c`

If you're in repl.it click the **Run ** button and if on local device execute this command
If you're in repl.it, click the **Run ** button and if on local device execute this command

`./hello` if on a linux or Mac Device
`./hello` if on a Linux or Mac Device
Or
`hello` on MS Windows Device

Expand All @@ -73,7 +73,7 @@ If everything is fine, you'll see a **Hello World** text in console/terminal

If there's any problem, feel free to let me know in the comments bellow 👇

Otherwise Let's Go To The Next Chapter
Otherwise, Let's Go To The Next Chapter

## Understanding The Hello World Program

Expand All @@ -96,7 +96,7 @@ int main()

`int` is the acronym of integer

here `main()` is a function , everything inside a function is taken as a instructions , from this our program knows what to do. There may be other functions , but `main()` is a special function , in every program this function is executed first.
here `main()` is a function, everything inside a function is taken as an instruction, from this our program knows what to do. There may be other functions, but `main()` is a special function, in every program, this function is executed first.

And this `()` parentheses help Compilers identify that it is a function.

Expand Down
Loading