Karlygash Yakiyayevakarlygash-yakiyayeva.dev·Jul 4, 2024Unix and Linux Guide: How to Use the Find CommandThe find command in Unix is a powerful utility used for searching files and directories based on various criteria such as name, type, size, permissions, modification time, and more. It recursively descends into directory trees and matches conditions ...DiscussLinuxDevops
Anjanesh LekshminarayananforAlpine JSalpinejs.in·Feb 17, 2024Using getters and setters Part 2This is second part in the series to make use of getters and setters in an AlpineJS object, that converts INR to USD. Well, only a setter has been used here where a function call is made to the setter priceInINR when the textbox of the USD value chan...Discuss·204 readsgetter and setter
Shraddha Bandhakavishraddha361.hashnode.dev·Feb 6, 2024Find Command And Its UsageThe find command is used for searching for files and directories in the Linux command line. Find is one of the most powerful and frequently used commands. It is impossible for a sysadmin or software developer to avoid the find command while working i...DiscussFIND
HelpLookhelplook.hashnode.dev·Jan 8, 2024How to Perform a Global Find and Replace of TextIf you often work with large amounts of text and need to find and replace specific words or phrases, HelpLook in your application provides a handy solution with its Search/Replace function. By using the Search/Replace feature, you can easily locate w...Discussupdate
DevBitBytedevbitbyte.hashnode.dev·Dec 7, 2023How to write JavaScript find and findLast from scratchfind Returns the first element that satisfies the testing function otherwise returns undefined. Array.prototype._find = function(cbFunction) { for(let i = 0; i < this.length; i++) { if(cbFunction(this[i], i, this)) { return th...DiscussJavascript Mini Challenges & ProjectsfindLast
Akash C Mdevopswithakash.hashnode.dev·Nov 13, 2023FIND CommandThe find command in LINUX is a command line utility for walking a file hierarchy. It can be used to find files and directories and perform subsequent operations on them. It supports searching by file, folder, name, creation date, modification date, o...DiscussDevOps BlogLinux
Fernando Bezerrafersales.hashnode.dev·Jul 30, 2023Laravel Eloquent Query find() and findOrFail() ExemploNo Laravel Eloquent, utilizamos o método find() para localizar a chave primária do modelo. Entretanto, em situações em que não encontrar a chave primária pode ser um problema, recorremos à função auxiliar abort(). Para lidar com esse cenário específi...DiscussFIND
Rihaab Wadekarmylinuxworkshop.hashnode.dev·Jul 16, 2023The beginning of a Linux StoryLinux workshop day-4 conducted under the Guidance of Pranav Jambare covered up the following points Sticky bit Setting Sticky bit on the directory allow only file owner, directory owner and root user to rename or delete its files. It is only appli...Discussssh
md ahnaf arshadmdahnafarshad.hashnode.dev·Jun 22, 2023Different between filter() and find() in javascriptfilter() and find() is a javascript method. only use an array. The find() method return a specific one and the filter() method returns more than one. find() method: const x = [12, 12,12,12,12,12, 22, 11, 1112, 221]; const y = x.find(res => res !== 12...Discussarray methods
Vishweshwaran M Jmjvish.hashnode.dev·May 23, 2023Demystifying Sed, Awk and Find CommandsIn this article, we are going to look into the powerful commands for text processing and file manipulation with detailed syntax explanations to have a better understanding of the concept. Without further ado let's dive in and look at the commands sed...Discuss·1 like·76 readssed