Karthi Skarthi-devopswork.hashnode.dev·Nov 3, 2024Optimizing Your Workflow with Aliases in .cshrc: A Guide for Efficient Command-Line ManagementUsing aliases in a .cshrc (C shell resource) file is a common practice to improve efficiency and streamline repetitive tasks. Let's explore the purpose, usage, benefits, and differences between .cshrc and other shell configuration files like .bashrc,...cshrc
Nile Bitsnilebits.hashnode.dev·Sep 12, 2024AS Keyword in SQL ServerThe SQL Server database management system is widely used for storing and managing data in relational databases. One of the most essential yet simple keywords in SQL Server is AS, used primarily for aliasing. While the AS keyword may appear straightfo...SQL
Cillian Mylesidiomaticbytes.com·Jun 30, 2024Terminal Aliases for Flutter & GitSome maybe more so than others, but typically as developers we use our terminals frequently to complete tasks. Sometimes these tasks have the exact same set of steps, other times the order might of steps might change. If the commands and their order ...6 likes·133 readsFlutter Wrapper
Shani Riversshanirivers.hashnode.dev·May 15, 2024Using Python Libraries: Essential TipsA library in Python is a reusable chunk of code that you may want to include in your programs and projects. Libraries provide pre-written functionality, a group of modules, which saves you writing code for those functions that are already defined in ...Python 3
Afridi Shaikcloudcoder.hashnode.dev·Mar 23, 2024Profile FilesProfile files are hidden files (starting with a dot) in Linux/RHEL that define your shell environment. They control settings like environment variables, aliases (shortcuts for commands), and terminal behavior. These files are processed in a specific ...70 readsLinux AlchemySystem-wide profiles
Tafadzwa Dembatafadzwa.hashnode.dev·Sep 24, 2023Mastering Command-Line Efficiency with AliasesPicture this: Instead of typing git push, you unleash an alias - gp, and bam! Your Git updates are sailing smoothly with just a couple of keystrokes. gcb branchName , and you navigate to the desired branch instead of having to type out git checkout...command line
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Aug 17, 2023Bash AliasesBash aliases allow you to define shortcut names for often-used commands. They can save a lot of typing, especially for long command names. Here's how you define a bash alias: alias alias_name='command' For example, to define an alias for the ls comm...Bash Fundamentalsbash script
Matthew Hardmatthewhard.com·Jun 17, 2023Gmail Aliases: Unlocking the Secret to Inbox Organization and ControlI found a lot of really cool features while digging around in various online services, but one that I discovered in Gmail is particularly awesome. Ever wondered shady website you signed up for sold your email address and who you should be angry with?...69 readsgmail
Shivangam Sonishivi.hashnode.dev·May 2, 2023Simplifying Module Imports in Vite React TypeScript with AliasesAs our Vite React TypeScript projects grow in complexity, we often find ourselves importing modules from various directories. Writing out long relative paths can be tedious and make our code less readable. Fortunately, there's a solution—aliases. Wit...3 likes·1.4K readsReactReact
Pratik Jagrutpsj.codes·Dec 2, 2022Git AliasesGit is the most widely used Version Control System (VCS) or Source Code Management(SCM) software. It is a day-to-day go-to tool for many developers. Many developers use a terminal/command line to operate it. In the terminal, we type git commands git ...145 readsGit