Skip to content

Month: October 2014

Twidere (Android) – Setting up Tabs from Twitter Lists

It wasn’t straightforward doing adding a list from my twitter account to a tab in Twidere. So here you go…

From Tabs click the + sign, press List Timeline. Press where it says “Select user list” and search for yourself. Select your account. You should now be displayed your private lists. Just press one and finish the process of adding it.

There you go.

Leave a Comment

My first PowerShell command – Rename Files

This is my first power shell command. I wanted to remove all spaces from the file names in my current directory.

Dir | Rename-Item –NewName { $_.name –replace " ","" }

Here is more information on the Rename-Item command.

http://technet.microsoft.com/en-us/library/hh849763.aspx

Leave a Comment