Useful tools and tricks for using a Mac in the Enterprise environment (was Adventures in running FreeBSD 6.1 on a Dell Latitude C400)
Dual Screen Remote Desktop
Get link
Facebook
X
Pinterest
Email
Other Apps
rdesktop is pretty cool. Check out an rdp session between a machine running Ubuntu remoting to a windows box. rdesktop is using both monitors for the remote windows desktop. Pics below:
It seems that tiling window managers suit me as I am back to Xmonad with GNOME. This time I added xcompmgr to the mix and got a nice config that fades all non-focused windows (except rdesktop for some reason. Perhaps because it is on the other screen). I also have some window shadows which are nice for floating dialog boxes. See the screenshot below:
In a previous post, I mentioned that I installed QuickSilver. I have since removed it because I found that the spotlight feature of OS X 10.4 works well amazingly well.
I often have to write up engineering calculations for my work. Often I use LaTeX because of its excellent handling of equations, references, and custom variables. My strategy is to do the calculations in Excel, then create custom variables in a variables.tex file that contain all the values from my spreadsheet that will appear in the write up. I do this because if there is an error in my calculation, I can just change the value in one place and it will be corrected everywhere in the document where it appears. Unfortunately, I sometimes have to deal with 50 or 100 values. Manually changing those even in only one place can quickly become time consuming, so I wrote the following Excel macro to automatically write the variables.tex file for me when I save the spreadsheet. Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) Const texFileName As String = "variables.tex" Dim FileNum As Integer Dim curLabel As String Dim curValue As String FileN...
Comments