Você é autodidata? – DEV Community

Antes de qualquer coisa, vamos quebrar um mito aqui. Pessoas autodidatas não são pessoas que lêem uma única vez sobre algum assunto, absorvem, entendem e aprendem tudo o que leu pra sempre, como alguém que tivesse memória fotográfica, não. Pessoas autodidatas não são gênios. Pessoas autodidatas são pessoas teimosas, insistentes, perseverantes e por último e […]

🎩The Magic of || and && in JavaScript

In JavaScript, it is common to see code like this: const shade = choices.shade || ‘crimson’; Enter fullscreen mode Exit fullscreen mode Or like this: const identify = information && information.identify; Enter fullscreen mode Exit fullscreen mode You may know what this code does, however perhaps you do not know why. A few easy however […]

Interacting with AWS S3 using Spring Boot application

In the case of storing objects (information, photographs..), there are a number of choices to select from. Ought to I’m going with holding information on similar/totally different server as that of software or in database as a BLOB or persist path as document on DB? What about scalability, upkeep, resiliency, decoupling and so forth.? With […]

REPL-like environment for Rust (A Rust Playground Locally)

TL;DR: I made a easy REPL-like atmosphere program (much like Python’s REPL or interactive interpreter) for Rust. In a way, it is a Rust Playground, however regionally, proper via your terminal, so you possibly can play alongside some Rust code with out creating a brand new file and compiling it. Repo Hyperlink is right here: […]

Making tmux suck less – DEV Community

tmux is a superb software. Nevertheless it’s principally unusable out of the field. Strive it – hearth it up in a naked atmosphere with out a tmux config file. You may haven’t any colours. You may have bizarre keybindings points. The vim clipboard shall be damaged. Copying textual content along with your mouse shall be […]

Some Newborn Open Source Repositories

All of us knew that what we now have now as common open-source repositories or well-known instruments that we use every single day began with an concept and developed for private utilization after which revealed because of excessive satisfaction of proprietor/developer. On this submit, I’m gonna share 7 open-source repositories/instruments of mine that I’ve developed […]

VIM: Introduction

Video for this tutorial right here: https://youtu.be/BNx7tgDdTi0 What’s VIM? To begin with, let’s speak about vi (pronouce vee-eye). Vi editor is a brilliant in style editor in linux as a result of it enable you to to extend your productiveness by simply utilizing your keyboard. For that cause, you don’t want to make use of […]

What’s in your SW Developer toolbox?

Let’s assume you recognize a programming language and are proficient with it. Is it sufficient to be knowledgeable SW developer? No, it’s not. The programming language is your major instrument. It’s the brush of the painter and the hammer of the carpenter. However you’d must grasp different instruments to collaborate with different builders and contribute […]

Ways to get the file size in C

On this article I’ll talk about two approaches to get the file dimension utilizing C programming language. Strategy 1 When we now have to get the file dimension first strategy that is available in our thoughts is to open the file, search the cursor to the tip of the file after which get place of […]