Blanxer NepalforBlanxer Blog'sblog.blanxer.com·Nov 22, 2023What is Blanxer - What problem it solvesLet me start with the problems we all been facing here in Nepal. People are just starting to understand value of digital presence and branding 90% of business in nepal don’t have website which is most important thing from branding perspective Peop...Discuss·293 readswhat
Iqmaiqmacodes.hashnode.dev·Sep 27, 2023How to Run All Cells In Google ColabI had a presentation with a teammate a month back where we had to showcase a project in front of an audience. I couldn't use my code which was on colab mostly because it wasn't complete yet and we decided to go with my teammate's code instead since w...Discuss·14 likes·65 readssolutions
Awais Sajidblackdiamond.hashnode.dev·Aug 22, 2023How to create Merkle Trees for airdrops: Quiz SolutionWhat kind of data structure is a Merkle Tree? Tree How is each leaf node labeled in Merkle Tree? A cryptographic hash of the data block How is each non-leaf node labeled in Merkle Tree? A cryptographic hash of its child nodes’ values In the abo...Discussmerkle tree
Ogungbaye Oluwatosin Faiththetosinfaith.hashnode.dev·Jul 29, 2023My Journey As A Semicolon NativeBefore now, I used to wonder why people choose to work in tech. But then I started reading and hearing about how rewarding software engineering can be. I started listening to podcasts where people shared their stories and experiences in the field. T...Discuss·1 likeSoftware Engineering
Alex Schiesslblog.arjs.net·Feb 26, 2023My k8s journey continues... Part II... In the last part, you could read about the beginning of my k8s journey. The rescue of my Monitor Raspberry Pi, and the build of my 5 Raspberry Pi k8s cluster. Also the basic setup with DietPi OS. In part II, I want to show how I did the k8s setup...Discuss·4 likes·50 readsk8s adventuresKubernetes
Jamie Richardsjamie.hashnode.dev·Oct 28, 2022Finding a side hustleI'm part of a web design and development agency and while we're super busy its good to challenge yourselves every now and then. I wanted to challenge myself so have decided to attempt to create a "side hustle" which will bring on some extra revenue ...Discussev
Sudip Ghoshimsudip.hashnode.dev·Oct 10, 2022Leetcode journey - Question 1328 - Break a PalindromeProblem: Q1328. Break a Palindrome Given a palindromic string of lowercase English letters palindrome, replace exactly one character with any lowercase English letter so that the resulting string is not a palindrome and that it is the lexicographica...Discuss·58 readsleetcode
Haneunhanlee.hashnode.dev·Jul 27, 2022[ Solution]1189. Maximum Number of BalloonsProblem Problem_Link Solutions (time, space) O(n), O(1) class Solution { public static int maxNumberOfBalloons(String text) { /* //for all alphabet characters int[] charList = new int[26]; for (char c : text.toChar...Discuss·46 readsAlgorithm Solving Studyleetcode
Haneunhanlee.hashnode.dev·Jul 22, 2022[Solution] 2148. Count Elements With Strictly Smaller and Greater ElementsProblem Problem_Link Solutions (time, space) O(n), O(1) class Solution { public int countElements(int[] nums) { int min = Integer.MAX_VALUE; int max = Integer.MIN_VALUE; int count = 0; for (int temp : nums) { ...DiscussAlgorithm Solving Studyleetcode
Sood Ruchikaruchikasood.hashnode.dev·May 17, 2022Strivers DSA sheet - Solutions to pattern problemsIf you want to have a look at the javascript solutions to the pattern problems you can check it out from the below github repo Pattern problems -solutionsDiscuss·116 readsDSA