Abijith K Aabijithka.hashnode.dev·Oct 15, 2024Push Your First Commit to GitHubAfter creating commits in our local system, it's time to push our local commits to the server (GitHub). First, you should create a repository on GitHub to push your local commits or versions. After creating a repository on the server side, follow the...DiscussGitHub
Prem Choudharyprem14choudhary.hashnode.dev·Sep 21, 2024How to connect local system to github...?For connecting your local system to github you have to create a token.Steps to create a token. Go to github settings → Developers setting → Personal access token → Tokens(classic) → Generate token. Name your token, give repo scope to it and then cl...DiscussGit
Abd0ukabd0uk.hashnode.dev·May 5, 2024Using Git and GitHub: A Step-by-Step GuideHere's an easy-to-follow guide for using Git and GitHub: Install GitHub CLI (gh): Open your terminal. Run the following command to install GitHub CLI: sudo apt install gh Authenticate with GitHub: Run the command: gh auth login Follow the p...DiscussGitHub
Rajdeep Singhasingh384.hashnode.dev·Mar 22, 2024Embracing Decentralization: The Role of Validator Nodes in Push ProtocolINTRO: In the realm of decentralized networks, the concept of validator nodes stands as a pillar of trust and integrity. These nodes play a pivotal role in ensuring the security and consensus of blockchain-based systems, and their significance cannot...Discuss·30 readspushprotocol
Gautam Rajnooberboy.hashnode.dev·Feb 6, 2024Revolutionize Your Web3 Communication with Push Chat: Say Hello to Secure, Decentralized Messaging!In the rapidly evolving landscape of web3 communication, traditional messaging platforms are being reimagined to meet the growing demand for secure, decentralized, and privacy-focused solutions. Push Chat emerges as a pioneering protocol that bridges...Discusspushprotocol
Rythme Nagranirythme.hashnode.dev·Feb 5, 2024The Sorcery of Push Protocol: A Magical GuideThe Magical Realm of Push Protocol In the mystical realm of web3, a powerful spell known as the Push Protocol has been cast, creating a communication network that transcends the boundaries of blockchain kingdoms. This enchantment enables cross-chain ...Discuss·8 likespush notifications
S Soumyakantas-soumyakanta.com·Dec 14, 2023How to Remove Accidentally Pushed .env File in Git HistoryRecently I was implementing Google Analytics to my Next.js portfolio website. I saved my Google measurement ID in a .env file. After all the work, I pushed my .env file directly to the online repository without adding it to .gitignore. It was a whole...Discuss·1.3K readsGit
DevBitBytedevbitbyte.hashnode.dev·Dec 9, 2023How to write JavaScript array methods push and pop from scratchpush Add an element to the end of the array(JS has a dynamic array). Array.prototype._push = function(...values) { for(let i = 0; i < values.length; i++) { this[this.length] = values[i] } return this.length } const fruits = ['ap...DiscussJavascript Mini Challenges & ProjectsJavaScript
Romman Sabbirrommansabbir.com·Dec 5, 2023Android: In-App Push Notifications with Payloads and Handling Click EventsIn the world of mobile applications, user engagement and interaction are crucial for success. One effective way to engage users is through push notifications. In this article, we'll delve into the details of generating in-app push notifications with ...Discuss·1.7K readsAndroid Application DevelopmentAndroid
Irfan S Mominirfans.hashnode.dev·Nov 9, 2023Day-08 Task: Basic Git & GitHub for DevOps EngineersDescribe Git Git is a version control system that lets you keep track of file changes and divide up work among several users. While it may be used to track changes to any set of files, it is most frequently used for software development. Git allows y...Discuss#shubhamLondhe