goosh.org - the unofficial google shell. Installation - homebrew - GitHub The suggested and easiest way to install Homebrew is on the homepage. We don’t duplicate it here because it is a security risk to list it on a user-editable wiki. The standard script installs Homebrew to /usr/local so that you don’t need sudo when you brew install. It is a careful script, it can be run even if you have stuff installed to /usr/local already. It tells you exactly what it will do before it does it too. And you have to confirm everything it will do before it starts. There are other ways to install Homebrew which provide you with more flexibility. Requirements An Intel CPU 1 OS X 10.5 or higher 2 Command Line Tools for Xcode: xcode-select --install, or Xcode 3 A Bourne-compatible shell for installation (e.g. bash or zsh) 4 If you want to build software that utilizes X11 components, you’ll need to install XQuartz. If you want to build Java bindings (in software such as Subversion, Berkeley-DB, CMake, etc.) Alternative Installs Untar anywhere
Ruby Programming Language Microsystems - BigAdmin Shell Commands Oracle acquired Sun Microsystems in 2010, and since that time Oracle's hardware and software engineers have worked side-by-side to build fully integrated systems and optimized solutions designed to achieve performance levels that are unmatched in the industry. Early examples include the Oracle Exadata Database Machine X2-8, and the first Oracle Exalogic Elastic Cloud, both introduced in late 2010. During 2011, Oracle introduced the SPARC SuperCluster T4-4, a general-purpose, engineered system with Oracle Solaris that delivered record-breaking performance on a series of enterprise benchmarks. Happy 18th Birthday, GNOME! – GNOME Today, GNOME turns 18. On Friday, August 15, 1997, GNOME was founded by two then-university students, Miguel de Icaza and Federico Mena Quintero. Their aim: to produce a free (as in freedom) desktop environment that is beautiful and simple to use. Join us in celebrating GNOME’s birthday! Spread the word and show how vibrant the GNOME community is! Federico Mena Quintero at GUADEC 2015. Photo Credit: Garret LeSage Happy birthday, GNOME!
What’s New in Xcode - Developer Tools Technology Overview Easy setup Take advantage of a complete workflow to manage pull requests directly within Xcode. Create new requests, see a queue of pull requests ready for your review, and quickly view, build, and test results generated locally or by Xcode Cloud. Team comments inline Comments that your teammates make on code during review display inline within the code editor, along with the name and avatar of the reviewer. Quick compare Jump into a comparison view of any two versions of your source code, in any editor, while retaining your current editing context. Cloud signing Apps are code-signed using an Apple-hosted service that manages all of your certificates, making App Store submission easier and more reliable. Bottom bar The always-visible bottom bar shows useful information, such as line and column, and offers direct access to quickly compare different versions of code. Vim mode CarPlay simulator Instant crash reports and feedback Custom documentation
ShellExView - Shell Extension Manager For Windows Related Utilities UninstallView - View installed applications on Windows 10/8/7/Vista and optionally uninstall them WhatIsHang - Get information about Windows software that stopped responding (hang) ShellMenuView - Disable/enable static context menu items of Explorer. See Also NK2Edit - Edit, merge and fix the AutoComplete files (.NK2) of Microsoft Outlook. Description Shell Extensions are in-process COM objects which extend the abilities of Windows operating system. The ShellExView utility displays the details of shell extensions installed on your computer, and allows you to easily disable and enable each shell extension. ShellExView can be used for solving context-menu problems in Explorer environment. System Requirements This utility works on any version of Windows, starting from Windows 98 and up to Windows 10. x64 versions of Windows are also supported. Versions History License This utility is released as freeware. Disclaimer Download links are on the bottom of this page Using ShellExView
- dougscripts.com June 9 2017 - 7:06 am Kirk and I go deep on playlists in iTunes in this week’s episode of The Next Track podcast. Real deep. This episode is sponsored by Audio Hijack from Rogue Amoeba. If you can hear it on your Mac, you can record it with Audio Hijack. Download a free trial of Audio Hijack and be sure to check out a special offer for The Next Track listeners in this week’s episode. You can listen to the episode at The Next Track website here or subscribe here in iTunes to make sure you get all future episodes. May 31 2017 - 3:38 pm I have just updated Delete Empty Playlists to v3.0. This latest version can, certainly, delete all the empty playlists it finds. Delete Empty Playlists is free to use with a donation nag and is available to download from this page. May 23 2017 - 7:54 pm Apple released iTunes 12.6.1.25 just about a week ago. I believe this is the third time a release has been updated with a minor build shortly after its initial release. May 22 2017 - 12:00 pm May 19 2017 - 12:14 pm
Research Systems Unix Group: radmind radmind - A suite of Unix command-line tools and a server designed to remotely administer the file systems of multiple Unix machines. For Mac OS X, there's also a graphical interface. At its core, radmind operates as a tripwire. It is able to detect changes to any managed filesystem object, e.g. files, directories, links, etc. Each managed machine may have its own loadset composed of multiple, layered overloads. Loadsets are stored on a remote server. radmind is available under a BSD-style license. UNIX tips: Learn 10 more good UNIX usage habits Let's face it: Bad habits are hard to break. But habits that you've just become comfortable with can be even more difficult to overcome. Sometimes, a fresh look at things may provide you with an "A-ha, I didn't know you could do that!" moment. Building on Michael Stutz's excellent article, "Learn 10 good UNIX usage habits," this article suggests 10 more UNIX command-line commands, tools, and techniques that may make you more productive as a UNIX command-line wizard. The 10 additional good habits you should adopt are: Use file name completion.Use history expansion.Reuse previous arguments.Manage directory navigation with pushd and popd. Use file name completion Wouldn't it be great if you didn't have to type a long, convoluted file name at the command prompt? Which shell am I running? What happens if you don’t know which shell you're currently running? Listing 1. $ echo $0 -bash $ ps –p $$ PID TTY TIME CMD 6344 ttys000 0:00.02 –bash C shell Bash Korn shell Use history expansion Listing 2.