root_block's profile picture. Coming up soon...

RootBlock

@root_block

Coming up soon...

RootBlock reposted

It’s time to explain about our project which we have built at #Unfold24 hackathon . Project Title: Tropic Thunder What it is?? A Local Intelligence based Climate Tech A small detailed thread 🧵 👇🏻

madhusgowda_'s tweet image. It’s time to explain about our project which we have built at #Unfold24 hackathon .

Project Title: Tropic Thunder

What it is??
A Local Intelligence based Climate Tech

A small detailed thread 🧵 👇🏻

RootBlock reposted

comeback is always greater than setback 😌


RootBlock reposted

system data + macOS takes up almost 70% of total storage in macOS Sequoia this should be illegal

thelifeofrishi's tweet image. system data + macOS takes up almost 70% of total storage in macOS Sequoia

this should be illegal

RootBlock reposted

Ever wish you could cover your friend's gas fees? Soon you'll be able to. EIP-7702 is about to make it a reality with gas sponsorship, improve account management in @ethereum by allowing EOA to temporarily delegate control to smart contract. Excited to see where space is heading

nidhisinghattri's tweet image. Ever wish you could cover your friend's gas fees? Soon you'll be able to.
EIP-7702 is about to make it a reality with gas sponsorship, improve account management in @ethereum by allowing EOA to temporarily delegate control to smart contract.

Excited to see where space is heading

RootBlock reposted

It was an incredible experience attending #Token2049Singapore, and here are some of my key takeaways: Positive Builder Energy: Despite the current market conditions, builders are optimistic and passionate. It’s inspiring to see so many people working on innovative solutions. ⚒️…


RootBlock reposted

Day 13 / 30 of the GitHub Command Challenge Command: git config --global alias Explanation: Creates aliases for commonly used Git commands, allowing you to use shorter versions of longer commands. History Fact: The git config --global alias feature was introduced to Git to…


RootBlock reposted

Day 12 / 30 of the GitHub Command Challenge Command: git reflog Explanation: Shows the history of changes to the local repository. This command can be used to recover lost commits and understand the history of your work. History Fact: git reflog was created to give developers…

madhusgowda_'s tweet image. Day 12 / 30 of the GitHub Command Challenge

Command: git reflog

Explanation: Shows the history of changes to the local repository. This command can be used to recover lost commits and understand the history of your work.

History Fact: git reflog was created to give developers…

RootBlock reposted

Day 11 / 30 of the GitHub Command Challenge Command: git stash Explanation: Temporarily saves changes that aren’t ready to be committed. This is useful when you need to switch branches or work on something else without committing incomplete work. History Fact: The git…

madhusgowda_'s tweet image. Day 11 / 30 of the GitHub Command Challenge  

Command: git stash  

Explanation: Temporarily saves changes that aren’t ready to be committed. This is useful when you need to switch branches or work on something else without committing incomplete work.  

History Fact: The git…

RootBlock reposted

Day 10 / 30 of the GitHub Command Challenge Command: git rebase {branchName} Explanation: Reapplies commits on top of another base tip. This command is often used to clean up commit history before merging. History Fact: git rebase was introduced to simplify the commit history,…


RootBlock reposted

Day 09 / 30 of the GitHub Command Challenge Command: git merge {branchName} Explanation: Merges changes from one branch into another. This command is used to combine the work done in different branches. History Fact: Merging in Git is a key feature that allows for…


RootBlock reposted

Day 01 / 30 of GitHub Command Challenge Command: git init Explanation: Initializes a new Git repository in the current directory, creating a .git directory with all the necessary repository files. This is the first step in creating a new project in Git. History Fact: git init…

madhusgowda_'s tweet image. Day 01 / 30 of GitHub Command Challenge

Command: git init

Explanation: Initializes a new Git repository in the current directory, creating a .git directory with all the necessary repository files. This is the first step in creating a new project in Git.

History Fact: git init…

RootBlock reposted

Day 02 / 30 of GitHub Command Challenge Command: git clone Explanation: Clones a repository into a new directory. This is used to copy an existing repository from a remote server to your local machine. Example: git clone github.com/bitcoin/bitcoi… History Fact: git clone was one…

madhusgowda_'s tweet image. Day 02 / 30 of GitHub Command Challenge

Command: git clone

Explanation: Clones a repository into a new directory. This is used to copy an existing repository from a remote server to your local machine.

Example: git clone github.com/bitcoin/bitcoi…

History Fact: git clone was one…

RootBlock reposted

Day 03 / 30 of GitHub Command Challenge Command: git status Explanation: Displays the state of the working directory and the staging area. It shows which changes have been staged, which haven’t, and which files aren’t being tracked by Git. History Fact: The git status command…

madhusgowda_'s tweet image. Day 03 / 30 of GitHub Command Challenge

Command: git status

Explanation: Displays the state of the working directory and the staging area. It shows which changes have been staged, which haven’t, and which files aren’t being tracked by Git.

History Fact: The git status command…

RootBlock reposted

Day 04 / 30 of GitHub Command Challenge Command: git add . / git add {fileName} Explanation: Adds changes in the working directory to the staging area. This command is used to stage files for the next commit. One can add all changes using git add . or can add specific file git…

madhusgowda_'s tweet image. Day 04 / 30 of GitHub Command Challenge

Command: git add . / git add {fileName}

Explanation: Adds changes in the working directory to the staging area. This command is used to stage files for the next commit. One can add all changes using git add . or can add specific file git…

RootBlock reposted

Day 05 / 30 of the GitHub Command Challenge Command: git commit Explanation: Records will be changed to the repository with a descriptive message. Commits are snapshots of the project at specific points in time. History Fact: The commit process in Git was designed to ensure…

madhusgowda_'s tweet image. Day 05 / 30 of the GitHub Command Challenge

Command: git commit

Explanation: Records will be changed to the repository with a descriptive message. Commits are snapshots of the project at specific points in time.

History Fact: The commit process in Git was designed to ensure…

RootBlock reposted

🚀 Discover the power of gRPC: a high-performance RPC framework transforming distributed systems! Learn how gRPC's Protocol Buffers & HTTP/2 boost efficiency and scalability. Dive into a detailed example in my latest blog post:[dev.to/madhusgowda/un…] #gRPC #microservices #blog

dev.to

Understanding gRPC in Golang: A Comprehensive Guide with Examples

Introduction gRPC (gRPC Remote Procedure Calls) is a modern high-performance RPC (Remote...


RootBlock reposted

Day 06 / 30 of the GitHub Command Challenge Command: git log Explanation: Displays the commit history of the repository. This command is used to view past commits and their messages History Fact: The ability to log commit history is crucial for understanding the evolution of a…

madhusgowda_'s tweet image. Day 06 / 30 of the GitHub Command Challenge

Command: git log

Explanation: Displays the commit history of the repository. This command is used to view past commits and their messages

History Fact: The ability to log commit history is crucial for understanding the evolution of a…

RootBlock reposted

Day 07 / 30 of the GitHub Command Challenge Command: git diff Explanation: Shows the differences between commits, the working directory, and the staging area. This command helps you see what changes have been made to your files. History Fact: git diff was implemented to allow…

madhusgowda_'s tweet image. Day 07 / 30 of the GitHub Command Challenge

Command: git diff

Explanation: Shows the differences between commits, the working directory, and the staging area. This command helps you see what changes have been made to your files.

History Fact: git diff was implemented to allow…

Loading...

Something went wrong.


Something went wrong.