Jyotiprakash Mishrablog.jyotiprakash.org·Dec 18, 2024Arrays, Strings, and StringBuilder in JavaWhen diving into Java programming, the foundational tools for handling data and text are Arrays, Strings, and Builders. Each serves a distinct purpose, and together, they form the backbone of efficient data processing and text manipulation. Arrays of...240 readsJava
Anix Lynchgozeroshot.dev·Dec 12, 2024Why JSON object is super usefulHere are 4 specific before-and-after demonstrations to clarify how JSON makes working with LLMs more manageable and efficient. 1.Scenario: Chatbot for Restaurant Reservations The customer sends a message:"Hi, I'd like to book a table for 4 people at...json
Sakshi from KushoAIsoftware-deep-dives.hashnode.dev·Dec 6, 2024How regex was responsible for the crowdstrike outageThis blog is written by Akshat Virmani at KushoAI. We're building the fastest way to test your APIs. It's completely free and you can sign up here. Do you know what one of the biggest nightmares of people who rely on computers often is? The computer ...tech failure
Anix Lynchgozeroshot.dev·Nov 13, 2024NLTK, SpaCy VS Hugging Face #5: Regex, Exact Matching, Entity Recognition, Grammar ParsingSource Code Here: NLTK Codehttps://gist.github.com/a93560d8434cf4c147ed0a19e027c913.git HuggingFace Code https://gist.github.com/7c787074999fa8cfc835663ce8a8d2a0.git Comparison Table Here’s a comparison table summarizing when to use Hugging Face Tra...nltk
Debajyati Deydebajyatidey.hashnode.dev·Nov 9, 2024FeaturedTop 9 Rust Based CLI Tools You Need to Try Now!Summary of the Content Prior to Reading the Article In this article, we explore a selection of Rust-based command line tools that enhance the Linux ecosystem with improved performance and modern features. These tools, including exa, fd, bat, ripgrep...89 likes·453 readsLinuxcli
정세욱saeoki.hashnode.dev·Nov 8, 2024정규표현식 (RegExp) 문법 정리데이터를 다룰 때, 잘하면 잘할수록 역량과 성과가 오르는 기술 중 하나가 정규표현식 (Regular Expression)이다. 정규표현식을 잘 알면 특정한 조건의 문자를 검색하거나 추출, 치환하는 과정을 매우 간편하게 처리 할 수 있다. 하지만 정규표현식은 숙달되어 있지 않다면 보자마자 한 눈에 파악하기 쉽지 않고 잘 헷갈리기 때문에 자주 사용되는 문법을 정리하여 익숙해지기 위해 포스팅을 시작한다. RegExp 반복/선택 관련 기호 ?: 바...ArticlesRegex
Rijul Rajesh T Prijultp.hashnode.dev·Nov 3, 2024Build up your confidence with Regex: 5 Techniques to make it STICKMy experience with Regex, and how it's a TIME-SAVER Regular expressions (Regex) look intimidating due to their complex set of characters and symbols. However, when you get to the know-how of things, Regex can be made simpler. Take my story, for insta...10 likesRegex
Kervin Vasquezkervin.blog·Oct 14, 2024Encuentra espacios en blanco con Regex en JavaScriptEn JavaScript, las expresiones regulares (regex) son una herramienta poderosa para encontrar y manipular texto. Uno de los usos más comunes es identificar espacios en blanco en cadenas de texto, ¡porque a veces esos espacios están donde menos te lo e...54 readsJavaScript
Pavani Pampanapythoncontentvalidation.hashnode.dev·Oct 12, 2024Your Ultimate Guide to Validating Course ContentIn today’s digital world, content quality matters more than ever, especially when it comes to educational platforms. Having a well-aligned course title, description, image, and video is key to delivering value to learners. I created a Python-based co...Python
Junaid Bin Jamanjunaidbinjaman.help·Sep 6, 2024Mastering Regular Expressions (Regex) and Using Them Effectively in PHPIntroduction Regular expressions (Regex) are essential tools in programming that enable developers to search for patterns within strings efficiently. Whether you’re working on form validations, search functionalities, or data extraction, regex offers...10 likesPHPRegex