Tuesday, March 28, 2023

Google Announces Coding Competitions Farewell

This year, 2023, Google announces the ending of Google Competition (CodeJam) after running it for 20 years.

Google CodeJam is the place where young / new software engineer practice their skills to step up into professional engineer. It was very prestige competition since it held by Google, one of the biggest IT company in the world and also comes with interesting prices and opportunities, as we know, from this competition Google also uses it for talents/developers recruitment.

But still, there are many coding competition skill you can attend such as:

  1. Codechef
  2. LeetCode
  3. TopCoder
  4. GoCoderz
  5. CodeGoda by Agoda
Those might not giving big prices, perhaps CodeGoda will gives similar type of Google Code Jam since it held by big IT company (Agoda).

Share:

Monday, March 20, 2023

Tips for Credit Card Users

Using a credit card can be a wise financial decision if done responsibly. Credit cards can help you build credit, earn rewards, and provide a convenient way to make purchases. However, it's important to use credit cards wisely by:

  1. Paying your balance in full and on time each month to avoid interest charges and late fees.
  2. Keeping your credit utilization low (i.e., not using too much of your available credit).
  3. Only using credit cards for purchases you can afford to pay back.
  4. Monitoring your account regularly for fraudulent activity.

If you are able to follow these guidelines, using a credit card can be a smart way to manage your finances. But always, Cash is King! Debt Freedom is the best.

Share:

Friday, March 17, 2023

The Difference of Vagrant and Dropbox

Vagrant is a tool that allows you to create and configure virtual development environments. It uses virtualization technology (e.g. VirtualBox, Hyper-V) to create a virtual machine that is configured to match the production environment as closely as possible. Vagrant allows you to easily manage dependencies and configurations, so you can quickly and consistently set up development environments that match your production environment. Vagrant is particularly useful when you need to replicate a complex production environment with multiple services, databases, and other dependencies.

Docker, on the other hand, is a containerization technology that allows you to create lightweight, portable, and self-contained application environments. Unlike virtual machines, which emulate an entire operating system, Docker containers share the host operating system kernel and only include the necessary runtime components and dependencies to run the application. This makes Docker containers much more lightweight and efficient than virtual machines, and allows you to easily package and deploy applications across different environments. Docker is particularly useful when you need to package and deploy applications that have complex dependencies.

In summary, Vagrant and Docker are both tools that can be used to manage development environments, but they use different technologies and serve different purposes. Vagrant is used to create and manage virtual machines that match the production environment, while Docker is used to create lightweight and portable containers that package applications and their dependencies.

Share:

Tuesday, September 18, 2018

Create API Service with Lumen 5.2

Useful Tools:

1. APIDOC (Inline Documentation for RESTful web APIs)
npm install -g apidoc

2. Project Preparation : Getting Lumen Installer
 composer global require "laravel/lumen-installer"

 3. Project Initialization
lumen new blog
that command will install a startup project in folder "blog" with latest Lumen version. As a note, this will require latest PHP version also. If you have old php version installed on your server and don't want to upgrade, you can use older version of lumen for example is version 5.2 which still able to use PHP 5.5x.
composer create-project laravel/lumen blog "5.2"
Check the latest installation requirements based on Lumen and its version here: https://lumen.laravel.com/docs/installation 

4. Route
Use prefix "api"
$app->group(['namespace' => "App\Http\Controllers", 'prefix' => 'api'], function($app){
    $app->get('/lessons', 'LessonsController@index');  
});
Share:

Saturday, September 15, 2018

Invstor's Check List

1. IDEAS

  • Something you're passionate about
  • Doesn't have to be original
  • Look for proven model in another market
  • Challenging enough to solve
  • Big enough market to serve
2. TEAM
  • Hangout with best people & work with them
  • Form a team with super combo:
    - Founder A : Can biz + finance
    - Founder B : Can do coding
    - Founder C : Can do marketing + design
    - Super adviser
3. PRODUCT
  • Build quick mockup as cheap as possible but enough to show that your team have good understanding of the product & how to tackle the problem.
  • Excellent UI/UX
  • Back-end system allow enough analytic
  • Technology that can scale
4. Traction
  • User vs Customers (cost to get customers)
  • Partnerships / listings / deals
5. REVENUE + PROFIT
  • Cost to get a sales
  • Margine
  • Expansion & scale

Share: