Ramblings of a Coder's Mind

Engineering × AI × Scale

K

Tag: productivity

Posts tagged with productivity

Upgrade everything in brew

Homebrew is a the missing package manager for Mac OS. Brew cask extends Homebrew and brings its elegance, simplicity, and speed to Mac OS applications and large binaries alike. If you’re using these tools and would like to upgrade all of the applications you have, run the following command. brew...

Read on →

Mass renaming file extensions with PowerShell

PowerShell is one of Windows’ most underused tools in my opinion. In many cases it rivals if not betters support that bash scripts provide. If you want to remove the extension of a file (say removing ‘!ut’ from file names), it’s a simple one line command. dir *.!ut | rename-item...

Read on →

Mass downloading Google Drive Files

Has anyone ever shared with you hundreds of Google Drive files instead of sharing the directory? It happened to me today and I noticed Gmail clips the HTML part of the message at 102 KB. Usually Gmail provides a way to download all attachments (Google Drive or otherwise) or the ability...

Read on →

ExpandRegion on Sublime Text

Once you get used to the JetBrains suite of IDEs pressing Cmd/Ctrl+W for expanding selection becomes second nature. This leads to closing tabs on most applications such as text editors which is of little consequence since you can train yourself to use a different short cut. My favourite text editor (Sublime Text) does...

Read on →

Desktoppr Downloader v1.0

I recently found Desktoppr, a service which has an insane number of curated wallpapers. What’s even better is that they come with an easy to consume API. To fulfil my insatiable need for good high resolution wallpapers, I wrote a script to go through the thousands of pages of images...

Read on →

File list generator v1.3

I noticed that my old file list generator page didn’t have a valid link any more. Since I’d go through and upload it again, I guess it would be worth it to add some minor documentation and make the path variable optional as well :) Here are some sample scripts...

Read on →

Recursively delete files from a folder in Windows

This is something one might need to do regularly. I need to because wget often creates multiple index.html@* files despite being set up not to (my GUI for wget might forget configs.. who knows?) I’m left with a couple of hundred folders with 6 html files each which to me...

Read on →

Removing file extensions

A problem I’ve faced quite a few times is having a folder full of files with a padded extension that needs to be removed before I can use the files. This can happen with .tmp, .bak, or other temporary extensions added by various applications. It’s easy to rename all files...

Read on →

File list generator v1.1

On a lazy Sunday afternoon when you’ve got nothing better to do, you either write rather useless scripts or update them. I chose to do the latter. The file list generation script I wrote some time back was mainly to generate a list of movies I have. When I generated...

Read on →

Clean File List Generation with PowerShell Script

I have a whole load of movies that I’d like to generate a list of. I considered writing a batch script but it didn’t really do something I needed. I ended up writing my first regular use (non test) PowerScript and here’s how. My first requirement was to list all...

Read on →

The power of the Windows key!

The Windows key might have started as something a tad bit redundant (considering Ctrl+Esc does the same thing) but the Windows Key is so much more. I have already spoken about the Win+(1-9) to activate programs in Vista’s Quick Launch Toolbar and its transition to taskbar applications in Windows 7....

Read on →

Chrome Tips

Custom Search Engine Right click the address bar and click Edit search engine. Click add, fill in a name and a keyword followed by the search query. For adding the Messenger Plus Forum Search engine I used the name as “Messenger Plus! Forum Search” (doesn’t really matter what you use...

Read on →

Command Line e-mailing

Ever wanted to send a quick email but then though, “nah.. cba to open my inbox right now”? Now you can send emails via command line! It doesn’t have to be installed though you could do so if you please. I give you Blat! Here is a simple example from...

Read on →

Uptime Challenge

There is a Plus! scripting competition going on that the entire community knows about. With t-shirts for all participants, there have been over 70 entries in 3 weeks. There are only 4 days to go so despite my exams, here is my shot at the competition. I don’t want to...

Read on →