Learning Rails Pt. 2

Mar 19, 2023

Open the http://localhost:3000/about in the web browser. Obviously, you get the No route matches [GET] "/about" error. Because, this route doesn’t exist.

Learning Rails Pt. 1

Mar 14, 2023

Go ahead and create a new Rails application using the following command.

Go: Get Started Pt. 1

Mar 7, 2023

Create a new folder with iconic as the folder name.

ગિરની વાતો

Feb 24, 2023

ગિરનારનાં પગથિયાં પર ઢબ ઢબ લાકડીઓ ટેકા લેતી આવતી હતી. નાનાં છોકરાંને તેડીને બે મજૂરણો ચડી આવતી હતી. એમના બોલ મોતી જેવા વીણી શકાતાં હતાં. એક ડોસીનો બોલ પકડાયો: “શું કરું બાઈ? ગાંડી થઇ જાઉં તો મલક ઠેકડી કરશે કે હારીને ગાંડી થઇ ગઈ. એટલે જ રોજ ડુંગરા ચડવા-ઊતરવા રિયા.”

એ સાદ કોઈ સાંભળે છે કે?

Feb 9, 2023

સોળ વર્ષ પહેલાં બાબુ રવીન્દ્રનાથ ઠાકુરે અવાજ ઉઠાવેલો કે રાજદ્વારી રમતો ને પ્રપંચો મૂકી દો. દેશનાયકો, ગામડાં સજીવન કરો, ઠેર ઠેર મેળા ભરો, ઉજાણીઓ કરો,રામાયણ-મહાભારતનો રસ પાવા માંડો. જન્મભૂમિ આજે નાની નાની નદીઓને કિનારે ઊભી ઊભી ગારાનાં ઝૂંપડામાં જૂથની અંદરથી ડોકિયાં કરતી કરતી નાસેલાં સંતાનોને બોલાવે છે. એ સાદ કોઈ સાંભળે છે કે?

Learning Nest Pt. 3

Feb 8, 2023

The obvious next step is to create the hello, world application in Nest. Run the following command to create the hello, world application using Nest CLI.

Learning Nest Pt. 2

Feb 5, 2023

Following command will install the Nest CLI. This CLI will help us to scaffold the Nest application and provide the toolchain to do many other important things with Nest application. We’ll cover most of the toolchain functionalities in future.

Learning Rust Pt. 1

Jan 23, 2023

Rust is the system programming language that run blazingly fast, prevent segfaults, and guarantees thread safety. In other words, Rust is designed for the speed, safety, and concurrency. But, nowadays developers are crazy and use language other than it was originally intended for.

TIL: typedef is not recommanded with struct in C

Jan 22, 2023

Today, I learn that typedef with struct trick give you a way to use structure tag like normal type. But, it is not suggested as mentioned in Linux kernel coding style document except few scenarios.

Learning Nest Pt. 1

Jan 19, 2023

Nest is the Node framework. It is built on top of Express. You can build Microservices, REST APIs, GraphQL APIs, real-time apps and more.