• FileMaker

    New RepTools!!!

    Originally posted at http://www.318.com/TechJournal 318, Inc. is proud to announce the immediate availability of our flagship software product, RepToolsâ„¢ 2008. RepToolsâ„¢ 2008 is a customer relationship management (CRM) suite developed specifically for the entertainment industry. RepToolsâ„¢ 2008 has nine integrated modules that are designed to efficiently manage all of the information businesses need to manage sales forces automation, asset management, and customer relationships from the beginning to the end of production. With instantaneous access to every aspect of the production process and comprehensive metrics for detailed analysis, RepToolsâ„¢ 2008 will let you worry about what matters the most: your customers. Over 100 New Features: Document Management – RepToolsâ„¢ 2008 has an all new…

  • Active Directory,  Mac OS X,  Mac OS X Server

    Mac OS X: dirt

    dirt is a new utility in Leopard that can be used to test Directory Services.  You can use dirt to test authentication for LDAP or Active Directory.   The -u flag uses the username from the node you are testing against, in the above example it is the Active Directory username.  dirt tests whether an account exists in any node and can be used with the following structure: dirt -u username -n This would result in the following output if the account is located in Active Directory: User username was found in: /Active Directory/domainname The -p flag can also be used to test passwords.  You can also specify the node in Directory…

  • Windows Server,  Windows XP

    Windows System Explorer

    If you’re done with Task Manager then check out SystemExplorer at http://systemexplorer.mistergroup.org. SystemExplorer is a free utility that will help you search through those processes for the ones that are virus laden, leaking memory or just plain not supposed to be there and therefore wasting your valuable system resources. SystemExplorer can show file paths, parent processes, process publishers, action histories and let you search for details against a database. In short, there have been great replacements for Windows’ Task Manager for years but this one might just be one of the better ones we’ve tried.

  • Network Infrastructure,  sites

    Domain Tasting

    Assumption for a Domain Taster: If a domain can generate over $6.00 a year in PPC revenue then someone will register it and someone will place PPC advertising on it. Read more here: http://icannwiki.org/Domain_tasting

  • Mac OS X

    Mac OS X: Automatically Open Expanded Viewing

    The open and save dialogs can automatically have the expanded view opened by default rather than having you need to open it manually each time you go to open or save a file. To enable this setting, use the following command: defaults write -g NSNavPanelExpandedStateForSaveMode -bool TRUE

  • Unix

    VI Cheat Sheet

    Creating and opening Files Running a vi command without a file name will open a new file. Running a vi command with a existing file name will open that file for editing. For example, using vi test.txt will open a document called test.txt if it’s in the working directory. VI Modes Command mode treats input from the keyboard as vi commands. Command mode cannot be used for entering text. When a file is first opened, you start out in command mode and you will not see the words you are typing on the screen . To enter and edit text you have to switch to insert mode by pressing the…

  • Mac OS X,  Mac OS X Server,  Ubuntu,  Unix

    Getting Started with tar

    If we were in the directory Desktop and wanted to backup all the files to a tarball called backups.tar, we could issue this command:  tar cvf backups.tar . The flags here:c creates an archive, v makes the process run verbose and f sets the file name.  The . tells tar to back up the current working directory.  Use pwd if you’re unsure what that is.  As we didn’t tell tar where to put the file it will automagically put it in the working directory.  By default tar is recursive although you can specify an n flag to alter that default behavior.   Now, to display the contents of the tar file we just created,…

  • Mac OS X,  Mac OS X Server,  Ubuntu,  Unix

    hostname

    OK, so this one is pretty easy.  You can use the hostname command to return back the name of your computer.  There’s also a nifty little s flag to remove any domain naming from the return string.