DEV Community

Yogendra Rampuria - Yogi
Yogendra Rampuria - Yogi

Posted on

 

Testing Post Via Dev.to

This is a simple blog to test Dev.to capability

Copy Pasted Image

This is a code block
Enter fullscreen mode Exit fullscreen mode
package me.yogendra.samples.test;

public class Application{
    public static void main(String [] args){
       System.out.println("Hello World!");
    }
}

Enter fullscreen mode Exit fullscreen mode

Yogendra.Me - Web Site

Build Status

This is my personal website. I am using a HEXO - static site generator to maintain it.

How to Contribute

Simple F-C-PR

  • You can fork this repository
  • Make change and test
  • Raise pull request

How to build or check changes

You need to have hugo and a text editor installed.

git clone git@github.com:yogendra/yogendra.me.git
cd yogendra.me
git submodule update --init --recursive
yarn start
Enter fullscreen mode Exit fullscreen mode

Navigate to [http://localhost:4000]

FAQ

Why GIT and HEXO

To get feedback. I want feedback on my work, posts, etc. And I want to provide a simple/well-known way for everyone to do so.

Why not use Blogger

I like Blogger. Its great. Frill free. But I want to be able to play around with with javascript libraries (Just for fun!).

Why not use WP/Drupal

Simple stack (only need webserver) and easy maintenance. I have used WP/Drupal and they are great. Keeping up with version (core/plugin/theme)…

Top comments (1)

Collapse
 
mavie1322 profile image
Teclaire Gladys Bahel

testingg

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.