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:
Lately, I have been creating lots of how-to videos for my colleagues at work. I like to include subtitles since some people may prefer to read the words I am saying. We use Microsoft Stream to host the videos since it is part of our Office 365 subscription. One of the great things about Microsoft Stream is that it will automatically generate captions (subtitles) from the audio in the video file. You can edit the captions right in the web interface as you watch the video. Microsoft did a great job on this user experience. Today, I needed to burn the subtitles into the video because of limitations of the customers computers. Handbrake does this well, but it does not understand the WebVTT format. There are several online converters, but I do not like giving my content to unknown internet services, so I starting learning about the difference between the formats. JBI Studios have a very helpful explanation about the differences. I w...
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