Parth Sharmaparth-sharma-devops.hashnode.dev·Nov 5, 2024Day-11 Git&GitHub for DevOpsWhat is Git and why is it important? At its core, Git is a version control system that allows you to track changes to files. It provides a structured way to coordinate work on those files, making it possible for multiple people to collaborate seamle...DiscussDevops
Faizan Shaikhfaizanshaikh.hashnode.dev·Oct 20, 2024Day 16 Task: Docker for DevOps EngineersDocker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers that have everything the software needs to run, including libraries, system tools, code,...Discuss·48 readsdocker task
Himanshu NikhareforSideQuirk Blogssidequirk.com·Oct 13, 2024Unlocking the Power of Plugins in ObsidianIntroduction Obsidian is a powerful tool on its own, but its real strength comes from the vast library of plugins available. Plugins allow you to tailor your Obsidian experience to suit your specific needs, whether you're managing projects, writing, ...DiscussObsidian - Your Personal Knowledge Base and Note-Taking AppquickAdd
Rajat Chauhanchauhanrajatwork.hashnode.dev·Jul 1, 2024Basic Linux Commands with a TwistWhat are the Linux commands to: Task 1: View the content of a file and display line numbers. cat -n filename Task 2: Change the access permissions of files to make them readable, writable, and executable by the owner only. chmod 777 filename Task...Discuss·42 readsLinux#90daysofdevops
Mike Bestowemike793.hashnode.dev·Jun 29, 2024How Effective Project Timelines Save Money and Reduce MistakesIn the realm of project management, a clear and well-defined project timeline is invaluable. It not only guides the progress of the project but also helps prevent costly mistakes. By establishing a structured schedule, teams can ensure tasks are comp...Discussproject timeline
Nachiappan Kumarappandev-chronicle.hashnode.dev·May 27, 2024Mutex(lock) with C# exampleIn previous blog posts, we've observed that Threads/Tasks have the capability to run concurrently (more accurately, pseudo-concurrently). Additionally, we've explored how it's the responsibility of the operating system to manage thread scheduling. Th...Discuss·40 readsshared-resources
Sridhar Kandisridhark.hashnode.dev·May 9, 2024Unlocking Async Power : Task vs. ValueTask in .NETIntroduction In the realm of .NET asynchronous programming, mastering the nuances between Task and ValueTask can supercharge your applications' performance. Here's a concise breakdown of their differences and when to wield each for maximum efficiency...Discuss·10 likes·257 reads.NET
Danny Crastoblog.danwald.me·May 9, 2024Chained celery tasks with delayLeverage Celery Chains to execute sequential tasks. But it wasn't clear from the documentation on how to add a delay in-between executions. The initial (reasonable) attempt: result = ( add.s(1,1) | mul.s(3) | mul.s(4) ).apply_async(countdown=5...Discuss·66 readscelery
Boopathi Tboopathithulasimani.hashnode.dev·Apr 21, 2024Task 15Difference between Selenium IDE, Selenium Web Driver, and Selenium Gird ? Selenium Script in java open Google and search for "Selenium Browser Driver" We can click on Google search with Selenium web driver. First of all we need to identify the ...Discusstask
Nachiappan Kumarappandev-chronicle.hashnode.dev·Apr 18, 2024Threads (And Tasks) run pseudo parallellyOnly one thread runs at any moment Processors of the past (or what is called as a core) are capable of executing only one instruction at a time. Consequently, only a single thread could be actively running at any given moment. This is due to the arch...Discuss·166 readsThreads - Tasks - Async/Awaitpseudo-parallel