<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>OS X on Justin Carmony</title>
		<link>https://www.justincarmony.com/tags/os-x/</link>
		<description>Recent content in OS X on Justin Carmony</description>
		<generator>Hugo</generator>
		<language>en-us</language>
		
		
		
		
			<lastBuildDate>Thu, 03 Nov 2011 16:33:02 +0000</lastBuildDate>
		
			<atom:link href="https://www.justincarmony.com/tags/os-x/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Siege with User Authentication</title>
				<link>https://www.justincarmony.com/2011/11/03/siege-with-user-login/</link>
				<pubDate>Thu, 03 Nov 2011 16:33:02 +0000</pubDate>
				<guid>https://www.justincarmony.com/2011/11/03/siege-with-user-login/</guid>
				<description>&lt;p&gt;If you want to stress test your application, the quickest and best way to do so is with &lt;a href=&#34;http://www.joedog.org/index/siege-home&#34;&gt;siege&lt;/a&gt;. From the siege website:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Siege is an http load testing and benchmarking utility. It was designed to let web developers measure their code under duress, to see how it will stand up to load on the internet. Siege supports basic authentication, cookies, HTTP and HTTPS protocols. It lets its user hit a web server with a configurable number of simulated web browsers. Those browsers place the server &amp;ldquo;under siege.&amp;rdquo;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Mac OS X Lion, /etc/hosts Bugs, and DNS Resolution</title>
				<link>https://www.justincarmony.com/2011/07/27/mac-os-x-lion-etc-hosts-bugs-and-dns-resolution/</link>
				<pubDate>Wed, 27 Jul 2011 22:21:00 +0000</pubDate>
				<guid>https://www.justincarmony.com/2011/07/27/mac-os-x-lion-etc-hosts-bugs-and-dns-resolution/</guid>
				<description>&lt;p&gt;&lt;em&gt;Final Update: I&amp;rsquo;m working on a follow-up post, but thanks to all the comments, it seems that somehow during the Snow Leopard to Lion upgrade, the /etc/hosts file was encoded incorrectly (likely the type of newlines used), and that Lion would fail to read it properly. Please try to copy the contents of the /etc/hosts file, recreate the file, and paste to fix your problem.&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Update: I was still having problems with using .local for my development sites. After some extensive debugging and research I&amp;rsquo;ve found out some interesting things. It appears that &lt;a href=&#34;http://www.multicastdns.org/&#34;&gt;Multicast DNS&lt;/a&gt; (mDNS), which is used in Apple&amp;rsquo;s Bonjuor for network discovery without a tradition DNS Server, has the Top Level Domain &lt;a href=&#34;http://files.multicastdns.org/draft-cheshire-dnsext-multicastdns.txt&#34;&gt;.local reserved for special mDNS functionality&lt;/a&gt;. Mac OS X will treat domains ending with .local differently! Use another TLD, like .dev, and it will work correctly.&lt;/em&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Mac OS X &amp; Wireshark - No Interfaces Found Fix</title>
				<link>https://www.justincarmony.com/2011/05/12/mac-os-x-wireshark-no-interfaces-found-fix/</link>
				<pubDate>Thu, 12 May 2011 18:58:57 +0000</pubDate>
				<guid>https://www.justincarmony.com/2011/05/12/mac-os-x-wireshark-no-interfaces-found-fix/</guid>
				<description>&lt;p&gt;&lt;a href=&#34;https://www.justincarmony.com/images/wp/2011/05/wireshark-logo.png&#34;&gt;&lt;img src=&#34;https://www.justincarmony.com/images/2011/05/wireshark-logo-300x92.png&#34; alt=&#34;&#34; title=&#34;wireshark-logo&#34;&gt;&lt;/a&gt;Alright, quick fix for a problem I always forget. When running Wireshark on OS X, when I go to select an interface to capture on, I get an error telling me there are no available interfaces to capture on. This is because Wireshark is running as a user that doesn&amp;rsquo;t have ownership on these interfaces.&lt;/p&gt;&#xA;&lt;p&gt;Solution, open up the terminal and run the command:&lt;/p&gt;&#xA;&lt;p&gt;&lt;code&gt;sudo chown &amp;lt;username&amp;gt; /dev/bpf*&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;After a reboot, these permissions get reset, so you need to do it after each reset (and hence why I need this every now and then but can never remember the command).&lt;/p&gt;</description>
			</item>
			<item>
				<title>Ignoring Files In SVN</title>
				<link>https://www.justincarmony.com/2010/08/15/ignoring-files-in-svn/</link>
				<pubDate>Sun, 15 Aug 2010 07:01:09 +0000</pubDate>
				<guid>https://www.justincarmony.com/2010/08/15/ignoring-files-in-svn/</guid>
				<description>&lt;p&gt;&lt;a href=&#34;https://www.justincarmony.com/images/wp/2010/08/subversion_logo-384x332.png&#34;&gt;&lt;img src=&#34;https://www.justincarmony.com/images/2010/08/subversion_logo-384x332-150x150.png&#34; alt=&#34;&#34; title=&#34;subversion_logo-384x332&#34;&gt;&lt;/a&gt;There is a method for ignoring files in an svn via their svn:ingore tool. For those who use windows w/ TortoiseSVN, it has a really slick interface for handling it all. However, for those of us (like me) who are on a Mac and just use the command line, I always forget the commands. So here is my note to myself on how to do it:&lt;/p&gt;&#xA;&lt;p&gt;First, navigate to the folder I want to edit it&amp;rsquo;s ignore settings.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Recursively Add New Files to SVN</title>
				<link>https://www.justincarmony.com/2009/02/20/recursively-add-new-files-to-svn/</link>
				<pubDate>Fri, 20 Feb 2009 16:51:33 +0000</pubDate>
				<guid>https://www.justincarmony.com/2009/02/20/recursively-add-new-files-to-svn/</guid>
				<description>&lt;p&gt;One great thing about running Windows is TortoiseSVN. I makes managing my SVN so easy. One of the problems I&amp;rsquo;ve ran into on other systems was I had been working for several hours. I would have dozens of new files and with TortoiseSVN it would show me a list of all the new files and I could hit &amp;ldquo;select all&amp;rdquo; and commit. However, on Mac I haven&amp;rsquo;t found an SVN client that I like, so I just use the terminal commands. There are also times, like when managing a WordPress installation, that WordPress and its plug-ins could auto update. I wanted to be able to add all the new files on the linux server back into the svn.&lt;/p&gt;</description>
			</item>
			<item>
				<title>XAMPP for Mac - My Frustrations &amp; Solutions</title>
				<link>https://www.justincarmony.com/2009/02/14/xampp-for-mac-my-frustrations-solutions/</link>
				<pubDate>Sat, 14 Feb 2009 23:15:34 +0000</pubDate>
				<guid>https://www.justincarmony.com/2009/02/14/xampp-for-mac-my-frustrations-solutions/</guid>
				<description>&lt;p&gt;&lt;a href=&#34;https://www.justincarmony.com/images/2009/02/xampp-objectdock.png&#34;&gt;&lt;img src=&#34;https://www.justincarmony.com/images/2009/02/xampp-objectdock.png&#34; alt=&#34;&#34; title=&#34;xampp-objectdock&#34;&gt;&lt;/a&gt;These last few days I&amp;rsquo;ve been trying to get &lt;a href=&#34;http://www.apachefriends.org/en/xampp.html&#34;&gt;XAMPP&lt;/a&gt; to work on my MacBook Pro these last couple of days and it has been &lt;em&gt;&lt;strong&gt;frustrating&lt;/strong&gt;&lt;/em&gt;! It seemed I kept running into more and more problems. For those who don&amp;rsquo;t know, XAMPP is tool for developers to run a LAMP stack (Linux, Apache, MySQL, PHP) on your machine locally. I&amp;rsquo;ve been running it on my Windows machines for years, and I have been running my production servers on Linux.&lt;/p&gt;</description>
			</item>
			<item>
				<title>I&#39;m a PC - Take That Apple</title>
				<link>https://www.justincarmony.com/2008/09/19/im-a-pc-take-that-apple/</link>
				<pubDate>Fri, 19 Sep 2008 22:27:38 +0000</pubDate>
				<guid>https://www.justincarmony.com/2008/09/19/im-a-pc-take-that-apple/</guid>
				<description>&lt;p&gt;It is about time that Microsoft answers back to Apple&amp;rsquo;s &amp;ldquo;I&amp;rsquo;m a PC, I&amp;rsquo;m a Mac&amp;rdquo; commercials. The ironic thing is I am writing this from my MacBook Pro. Apple for so long started to take little jabs at Microsoft&amp;rsquo;s Windows. Their first commercials we&amp;rsquo;re pretty straight forward, but lately they&amp;rsquo;ve been getting more misleading. Here is an example:&lt;/p&gt;&#xA;&lt;div style=&#34;position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;&#34;&gt;&#xA;&#x9;&#x9;&#x9;&lt;iframe allow=&#34;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen&#34; loading=&#34;eager&#34; referrerpolicy=&#34;strict-origin-when-cross-origin&#34; src=&#34;https://www.youtube.com/embed/OOjlqg3tYBI?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0&#34; style=&#34;position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;&#34; title=&#34;YouTube video&#34;&gt;&lt;/iframe&gt;&#xA;&#x9;&#x9;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Give me a break. Windows can come bundled with everything Mac does. The only real program I&amp;rsquo;ve been impressed with has been Apple&amp;rsquo;s Mail.app. Other then that, there isn&amp;rsquo;t anything super fantastic about their other programs. iTunes is terrible as it keeps crashing my iPhone and Laptop. Here is another one that it super misleading:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Two-Way Sync between Google Calendar, Windows, OS X, and iPhone</title>
				<link>https://www.justincarmony.com/2008/08/23/two-way-sync-between-google-calendar-windows-os-x-and-iphone/</link>
				<pubDate>Sat, 23 Aug 2008 21:43:36 +0000</pubDate>
				<guid>https://www.justincarmony.com/2008/08/23/two-way-sync-between-google-calendar-windows-os-x-and-iphone/</guid>
				<description>&lt;p&gt;Since my wife and I got our new iPhones, I&amp;rsquo;ve been playing around with a way unify our calendars. When we first got married we started to use Google Calendar. We have three calendars: mine, hers, and ours. Its great for staying organized, especially when we&amp;rsquo;re trying to organize two lives. It worked well for several weeks, except one thing&amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;We had to be on-line and on the browser to view our Google Calendars.&lt;/strong&gt; Lot of the time when we needed to see our calendar we were with family or friends without computer access. Also, when I work I have twenty or so browser windows open, and it can be difficult to find my calendar in the mix. I also am biased towards desktop client applications when I&amp;rsquo;m using them every hour of the day. So I set out on my quest to find a way to sync across all the different mediums I use. Now that I think I&amp;rsquo;ve found my solution, I thought I would share my findings with the rest of the world.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Mac Keyboard Quirks - Making Mac more like Windows</title>
				<link>https://www.justincarmony.com/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/</link>
				<pubDate>Thu, 03 Jul 2008 16:16:00 +0000</pubDate>
				<guid>https://www.justincarmony.com/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/</guid>
				<description>&lt;p&gt;Alright, the sound of dying Apple fanboys are crying through out the internet at the posting of this entry, but there are two things I can&amp;rsquo;t stand about the Mac:&lt;/p&gt;&#xA;&lt;p&gt;Command &amp;amp; Control are switched - this is a major pain, especially when using a KVM to switch between a Windows, Mac, and Linux machine. It is just crazy!&lt;/p&gt;&#xA;&lt;p&gt;Home &amp;amp; End - They don&amp;rsquo;t work like they should on every other OS. I&amp;rsquo;ve never really figured out exactly what they do on Mac, but on Windows they go to the beginning or end of a line.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Apple Needs to Stop Being Misleading - Viruses &amp; Malware</title>
				<link>https://www.justincarmony.com/2008/07/02/apple-needs-to-stop-being-misleading-viruses-malware/</link>
				<pubDate>Wed, 02 Jul 2008 11:09:00 +0000</pubDate>
				<guid>https://www.justincarmony.com/2008/07/02/apple-needs-to-stop-being-misleading-viruses-malware/</guid>
				<description>&lt;p&gt;The other day I was talking with my cousin and she asked how I liked my MacBook Pro. She told me all the cool things she had heard. A friend of hers said that with a Mac you don&amp;rsquo;t ever need to buy anything like &amp;ldquo;Norton&amp;rdquo; cause Macs don&amp;rsquo;t get viruses. She asked me if that was true and in reality it is a two part answer.&lt;/p&gt;&#xA;&lt;p&gt;Here is the classic ad on Apple &amp;amp; viruses:&lt;/p&gt;</description>
			</item>
	</channel>
</rss>
