How to Install PHP Composer in your Mac

Sudeep Acharya
Composer is the easiest way to manage dependencies to your small to large PHP projects. Use the following commands to install composer in your Mac curl -sS https://getcomposer.org/installer | php Now the composer is installed in your current directory. Now, you can access it using the following command php composer.phar [command] It works but you don’t always want to use this directory path to access the composer, So in the next step we will make it accessible globally.

How to set up basic PHP Project structure with Composer

Sudeep Acharya
Most of the time beginners learning PHP are unaware of Composer, if you are among them, Composer is a dependency management tool for PHP. Let’s take a simple example, rather than using include command in each of the PHP file, composer makes it easy by specifying that file as a dependency. Another example would be if you use some library then it makes easier to use and update it with a single command.

What is Philosophy?

Sudeep Acharya
Philosophy is Working out the right way to think about things. (Rather than best) It is a way to stepping back and working right way of thinking about things. It is an activity. Philosophy is learning specific tools and techniques to reason, argue and express yourself. All subjects, not just philosophy, try and think about things in right way. For examples: While doing physics, we investigate physical reality construction experiments, measuring and formulating theories.

Graduated from Charles Sturt University - Master of Information Technology

Sudeep Acharya
Event Information, Location - Rosehill Gardens, NSW, Australia, Time: 10th of December, 2019 at 2pm I am very happy to announce that i have now graduated in Master of Information Technology from Charles Sturt University Australia after i had graduated in Bachelor of Software Engineering in 2017. Charles Sturt University Graduation Ceremony, 10th of December, 2019 We have also captured the video of hat throwing. See Video on YouTube About Graduation Day: I woke up, shaved, had my hair cut and had a bath.

Why the rich are getting richer - Robert Kiyosaki

Sudeep Acharya
This is a quick note from the lesson of this book for my further reference. “The issue of wealth and income inequality is the great moral issue of our time.” Go to School, get a job, save money, get out of debt and invest for the long-term in the stock market is obsolete advise". because “Viruses can erase customer accounts without trace. Used offensively, these 3.viruses can create and uncontrolled flood of sell orders on widely held stocks such as Apple or Amazon.

Learn Kotlin (Part 5) - Class

Sudeep Acharya
Post Series: Part 1: Hello world and Basic Data Types Part 2: Array, Collection and Range Part 3: Control Flow Part 4: Function Part 5: Class Although Kotlin is statically typed language, it supports object-oriented programming like Java. Before explaining further let us dive into the basic syntax of the Kotlin class. class Vehicle { // class definition // class body } So, defining a basic class is as simple as this and similar to Java.

Are you ready for 2019?

Sudeep Acharya
A young girl getting pregnant for the first time, doctor asks her “Are you ready to be a mother?”, she touch her belly and stands silent. A young teenager soldier going to the war for the first time, sergant asks him “Are you ready to die for the country?” looking at his mother’s eye, he stands still. A last bencher student who have not touched the book even one time having final exams tomorrow, teacher knowingly asks him “Are you ready for the exams tomorrow?

Happy New Year 2019!

Sudeep Acharya
Hello guys! It’s been so long that i haven’t posted in this blog. I have posted just one post in this year 2018. In this year a lot of good things happened to me. I came to Australia in February 15, 2018 for studying Masters in Information Technology at Charles Sturt University in Sydney. At the time of writing this post, i just completed my two semesters and i am now on summer break which ends in March 4, 2019.

Learn Kotlin (Part 4) - Function

Sudeep Acharya
Post Series: Part 1: Hello world and Basic Data Types Part 2: Array, Collection and Range Part 3: Control Flow Part 4: Function Part 5: Class Merry Christmas Guys! The year 2018 is about to end. This have been a great year. Happy New Year 2019, May your new year be filled with Joy and Happiness. This will probably be the last post for this year 2018. Hope to see you all in the next year!

Learn Kotlin (Part 3) - Control Flow

Sudeep Acharya
Post Series: Part 1: Hello world and Basic Data Types Part 2: Array, Collection and Range Part 3: Control Flow Part 4: Function Part 5: Class In this post we are going to learn about the control flow in Kotlin. Let us learn about how to make a decision, how to perform a task multiple times by iterating and how to get out of the loop, how to continue to next iteration.