Re: Justification for murder

2015-04-20 Thread Cameron Childress
On Mon, Apr 20, 2015 at 9:45 AM, Jerry Milo Johnson jmi...@gmail.com wrote: I also prefer the } else { notation. Me too, and I never leave off the curly brackets, even when it's optional. More explicit for the next confused person reading the code (probably me in a few months/years).

Re: Justification for murder

2015-04-20 Thread Cameron Childress
For some reason I find myself switching at time between both styles. I am not really sure why. One just feels better sometimes and the other feels better other times. I think that if the file's short I prefer version #2 since it helps everything look compact. If the code's gonna be longer than

RE: Justification for murder

2015-04-20 Thread Eric Roberts
Heheh...yeah...I never understood that indentation style. The first one makes more sense to me. It's much more readable. I definitely sympathize with the characters LOL. Eric -Original Message- From: Michael Dinowitz [mailto:mdino...@houseoffusion.com] Sent: Sunday, April 19, 2015

Re: Justification for murder

2015-04-20 Thread Jerry Milo Johnson
I am definitely a brace on the end of the top line kind of guy. I also prefer the } else { notation. Fortunately, the WordPress coding standards agree with me. https://make.wordpress.org/core/handbook/coding-standards/php/#brace-style My pet peeve, though, is var2 = #var# in cf code. And

Re: Justification for murder

2015-04-20 Thread Jerry Milo Johnson
Sadly, unconciously I think I do it to appease the compiler/interpreter gods. Don't make them struggle on easy stuff, so they aren't mad at me when they get to the complex stuff I have in there. On Mon, Apr 20, 2015 at 9:48 AM, Cameron Childress camer...@gmail.com wrote: On Mon, Apr 20, 2015

Re: Justification for murder

2015-04-20 Thread Scott Stewart
I'm in line with Jerry, I don't care how you format your code as long as it is formatted in a readable manner, you do it the same way throughout and I can reverse engineer it quickly if I have to make changes. oh yeah and scope the damn variables so I don't have to hunt around for them. On Mon,

Re: Eclipse not respnding

2015-04-17 Thread Zaphod Beeblebrox
ftp plugin? Oh manI don't miss that kind of deployment method. On Wed, Apr 15, 2015 at 10:52 AM, LRS Scout lrssc...@gmail.com wrote: I'm working across FTP on production sites using the aptana plugin, probably related to that. They're mainly using sublime here, anyone recommend a

Re: Squarespace vs. Wordpress

2015-04-16 Thread Cameron Childress
with Hal re: Wordpress vs. Squarespace. He suggests that Squarespace may be more user-friendly. Does anyone here have comments/recommendations for or against either? Thanks, Judith ~| Order the Adobe Coldfusion Anthology now

RE: Squarespace vs. Wordpress

2015-04-16 Thread Rick Eidson
in subdomain and folders. Rick -Original Message- From: Judith Dinowitz [mailto:jdino...@houseoffusion.com] Sent: Thursday, April 16, 2015 10:55 AM To: cf-community Subject: Squarespace vs. Wordpress I'm looking to set up Judithdinowitz.com and I had a nice conversation with Hal re: Wordpress vs

Re: Squarespace vs. Wordpress

2015-04-16 Thread J.J. Merrick
Judithdinowitz.com and I had a nice conversation with Hal re: Wordpress vs. Squarespace. He suggests that Squarespace may be more user-friendly. Does anyone here have comments/recommendations for or against either? Thanks, Judith

Re: Eclipse not respnding

2015-04-15 Thread LRS Scout
Thanks man. On Wed, Apr 15, 2015 at 11:33 AM, Cameron Childress camer...@gmail.com wrote: https://wiki.eclipse.org/FAQ_How_do_I_increase_the_heap_size_available_to_Eclipse%3F I'd also check out Sublime Text http://www.sublimetext.com/ -Cameron On Wed, Apr 15, 2015 at 11:27 AM, LRS

Re: Eclipse not respnding

2015-04-15 Thread Jerry Milo Johnson
Heap size is good, but eclipse will also choke if an open file (accessed across a network share) is disconnected, or intermittent. Make sure you close any open files on network shares that are not connected, rather than leaving them open. (textwrangler on the mac has a similar issue.) On Wed,

Re: Eclipse not respnding

2015-04-15 Thread LRS Scout
I'm working across FTP on production sites using the aptana plugin, probably related to that. They're mainly using sublime here, anyone recommend a good ftp plugin? On Wed, Apr 15, 2015 at 11:48 AM, Jerry Milo Johnson jmi...@gmail.com wrote: Heap size is good, but eclipse will also choke if

Re: Eclipse not respnding

2015-04-15 Thread Cameron Childress
https://wiki.eclipse.org/FAQ_How_do_I_increase_the_heap_size_available_to_Eclipse%3F I'd also check out Sublime Text http://www.sublimetext.com/ -Cameron On Wed, Apr 15, 2015 at 11:27 AM, LRS Scout lrssc...@gmail.com wrote: I'm going nuts with eclipse not responding every couple of seconds.

Re: Eclipse not respnding

2015-04-15 Thread Jerry Milo Johnson
no, aptana handles ftp well - no open file pointers. but aptana does freeze if memory gets low. im dabbling right now in sublime for my css / style files. using phpstorm for most work, and textwrangler for text editor with no help. still miss cfstudio5 daily. (but then again, I still miss the

Re: Eclipse not respnding

2015-04-15 Thread Maureen
Jerry. Brief is still around. Rewritten for Windows, even has a 64 bit version. briefeditor.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Eclipse not respnding

2015-04-15 Thread LRS Scout
Studio/Homesite will always have a place in my heart. On Wed, Apr 15, 2015 at 11:57 AM, Jerry Milo Johnson jmi...@gmail.com wrote: no, aptana handles ftp well - no open file pointers. but aptana does freeze if memory gets low. im dabbling right now in sublime for my css / style files.

RE: Eclipse not respnding

2015-04-15 Thread Eric Roberts
You can go into the config.ini and increase the memory limits, that usually helps, but I have been having issues with Luna (not sure what version you are on) where large pages will be real slow...like when I am typing, I can type a whole line before the 1st three letters appear on the line and

Re: Question for the Mac users

2015-03-31 Thread Cameron Childress
1) I'm assuming you are using the built in Apache and didn't install via MAMP or something? 2) Run this to make sure DNS isn't borked: ping localhost (just looking for an IP to resolve here, not a ping reply) 3) Run this to make sure you don't have an error in your Apache configs someplace.

Re: Question for the Mac users

2015-03-31 Thread Cameron Childress
Great! That -t option is my friend. I to it every time I edit the conf files because it's so easy to mess something up in there. -Cameron On Tue, Mar 31, 2015 at 2:34 PM, Bruce Sorge wrote: Yeah, it was the brucesorge.conf file. I had a type. Fixed it and it works. Thanks On Mar 31,

Re: Question for the Mac users

2015-03-31 Thread Bruce Sorge
Yeah, it was the brucesorge.conf file. I had a type. Fixed it and it works. Thanks On Mar 31, 2015, at 9:02 AM, Cameron Childress camer...@gmail.com wrote: 1) I'm assuming you are using the built in Apache and didn't install via MAMP or something? 2) Run this to make sure DNS isn't

Re: Question for the Mac users

2015-03-31 Thread Bruce Sorge
Thanks. I'll give it a shot tonight when I get home. Sent from my iPhone 6+ On Mar 31, 2015, at 9:02 AM, Cameron Childress camer...@gmail.com wrote: 1) I'm assuming you are using the built in Apache and didn't install via MAMP or something? 2) Run this to make sure DNS isn't

RE: I'm demoing my final project tomorrow night

2015-03-26 Thread Eric Roberts
Break a leg!! -Original Message- From: Judith Dinowitz [mailto:jdino...@houseoffusion.com] Sent: Tuesday, March 24, 2015 10:55 PM To: cf-community Subject: I'm demoing my final project tomorrow night If anyone's in Manhattan tomorrow night (Wednesday) and wants to stop by, please come

Re: I'm demoing my final project tomorrow night

2015-03-26 Thread Mark Spence
Good luck! I hope it goes well for you and your team. On Thu, Mar 26, 2015 at 5:13 PM, Eric Roberts ow...@threeravensconsulting.com wrote: Break a leg!! -Original Message- From: Judith Dinowitz [mailto:jdino...@houseoffusion.com] Sent: Tuesday, March 24, 2015 10:55 PM To:

Re: Australian comedian on gun culture in US.

2015-03-25 Thread Jerry Milo Johnson
That is all funny. Thanks. On Wed, Mar 25, 2015 at 4:00 PM, Vivec gel21...@gmail.com wrote: Interested in US views on this, he highlights his points well. https://youtu.be/fP3HJVp3n9c ~| Order the Adobe Coldfusion

Re: software to emulate mobile device on PC for development

2015-03-21 Thread LRS Scout
...@panos.cc] Sent: Friday, March 20, 2015 2:40 PM To: cf-community Subject: Re: software to emulate mobile device on PC for development Wow... I've been doing mobile development for years and I NEVER knew that existed... I always just made the screen smaller or used the iPhone

Re: software to emulate mobile device on PC for development

2015-03-21 Thread Mark Spence
. It pretty much does for Android what Safari does on Macs for iOS. Eric -Original Message- From: J.J. Merrick [mailto:j...@panos.cc] Sent: Friday, March 20, 2015 2:40 PM To: cf-community Subject: Re: software to emulate mobile device on PC for development Wow... I've been

Re: software to emulate mobile device on PC for development

2015-03-21 Thread Maureen
for iOS. Eric -Original Message- From: J.J. Merrick [mailto:j...@panos.cc] Sent: Friday, March 20, 2015 2:40 PM To: cf-community Subject: Re: software to emulate mobile device on PC for development Wow... I've been doing mobile development for years and I NEVER

RE: software to emulate mobile device on PC for development

2015-03-20 Thread Casey Dougall
mobile development and have been using Chrome. It pretty much does for Android what Safari does on Macs for iOS. Eric -Original Message- From: J.J. Merrick [mailto:j...@panos.cc] Sent: Friday, March 20, 2015 2:40 PM To: cf-community Subject: Re: software to emulate mobile device

RE: software to emulate mobile device on PC for development

2015-03-20 Thread Eric Roberts
Yeah...it's pretty cool. I am learning mobile development and have been using Chrome. It pretty much does for Android what Safari does on Macs for iOS. Eric -Original Message- From: J.J. Merrick [mailto:j...@panos.cc] Sent: Friday, March 20, 2015 2:40 PM To: cf-community Subject: Re

Re: On the Snow.com or MountainNews.com

2015-03-20 Thread Casey Dougall
Sorry Judah, I didn't see this message when I replied to the other. Wish I was still at Stratton or I'd have access to this for ya. Good ol days, I miss Vermont... The ski reporter still had to login to both of these sites to update reports back then. My first year at Stratton I rode 69

Re: Looking for Skiers...

2015-03-20 Thread Casey Dougall
Let me know what you need... From snowboard instructor, shop manager, ski mountain e-commerce coordinator for a large resort to webmaster for snowboard company, I've seen or done it. Let me know what your questions are... Casey On Mar 8, 2015 2:58 PM, Judith Dinowitz

Re: software to emulate mobile device on PC for development

2015-03-20 Thread Vivec
That is So awesome!! I'm using it now! Hahahhaha :) Wheee!! I can pretend to be on my cell when i'm on my computer! wh!!! I am invincibl!!! ha ha ha! ^_^ On Friday, 20 March 2015, LRS Scout lrssc...@gmail.com wrote: In chrome developer tools there's an emulator built right in.

Re: software to emulate mobile device on PC for development

2015-03-20 Thread Mark Spence
Exactly what I was looking for. Thank you very much. On Thu, Mar 19, 2015 at 10:41 PM, LRS Scout lrssc...@gmail.com wrote: In chrome developer tools there's an emulator built right in. It's under more tools. Looks like a phone in the upper left corner of the developer tools frame. On

Re: best way to structure the mobile portion of a site

2015-03-20 Thread J.J. Merrick
Best bet is to learn Responsive design and build with a Mobile First approach. You can hide things such as links to the cart by this method if you want. Couple of good places to learn is: http://en.wikipedia.org/wiki/Responsive_web_design and one of my favorite frameworks that helps a TON in

Re: best way to structure the mobile portion of a site

2015-03-20 Thread Cameron Childress
On Fri, Mar 20, 2015 at 3:37 PM, J.J. Merrick wrote: Best bet is to learn Responsive design and build with a Mobile First approach. You can hide things such as links to the cart by this method if you want. +1 -Cameron ...

Re: software to emulate mobile device on PC for development

2015-03-20 Thread J.J. Merrick
Wow... I've been doing mobile development for years and I NEVER knew that existed... I always just made the screen smaller or used the iPhone emulator in xcode. I feel like my whole life was a lie now. WOW! On Fri, Mar 20, 2015 at 12:02 PM, Mark Spence markpence...@gmail.com wrote: Exactly

Re: lol AmericanThinker

2015-03-19 Thread LRS Scout
Can't take credit for it, been floating around military pages for a while. On Mar 19, 2015 3:05 AM, Gruss Gott grussg...@gmail.com wrote: Rotfl! Aloha snackbar is the funniest damn thing I've read this month. On Feb 25, 2015 1:03 PM, LRS Scout lrssc...@gmail.com wrote: Shhh, aloha

Re: Question on Rails and Lazy Loading

2015-03-19 Thread Casey Dougall
Ski reports don't change after they have been published normally. you can call them once and check dates tamp of report and cache it for the rest of the day Casey Dougall On Mar 19, 2015 8:55 PM, Judith Dinowitz jdino...@houseoffusion.com wrote: We're building a ski trip planning app in

Re: software to emulate mobile device on PC for development

2015-03-19 Thread LRS Scout
In chrome developer tools there's an emulator built right in. It's under more tools. Looks like a phone in the upper left corner of the developer tools frame. On Fri, Mar 20, 2015 at 12:38 AM, Mark Spence markpence...@gmail.com wrote: I want to develop a mobile version of a site. Is there

Re: Officer shooting in Ferguson

2015-03-12 Thread Judah McAuley
I know that people can do it but I was pretty sure that it required quite a bit of training and practice, which is what makes me suspicious. Just seems to me that 2 hits to a head/shoulder out of 3 or so shots in the middle of the night by an untrained person would be unlikely. Maybe not though.

Re: Officer shooting in Ferguson

2015-03-12 Thread Jerry Milo Johnson
They were standing together close in a line. Like British Redcoats during the Revolution. You cannot easily hit a specific target from that distance, but the bullet can travel that far, and if the elevation is correct you are going to hit something in that line. From the google: A typical 1911

Re: Officer shooting in Ferguson

2015-03-12 Thread GMoney
The cops are out of the hospital, so that's good news. I can't decide if this kind of violent turmoil is just the kind of cleansing-by-fire this society needs, and we'll come out of this much better off in our race relations.or if this is just further proof of the de-evolution of our species

Re: Officer shooting in Ferguson

2015-03-12 Thread LRS Scout
Plus a hand gun calibre carbine can fire accurately at those ranges. I've seen video of guys that can shoot a standard 1911 out to 100 meters but that's pretty rare. But like jerry said, most likely those are area hits as opposed to point. On Mar 12, 2015 2:04 PM, Jerry Milo Johnson

Re: Web Analytics Software: Recommendations, Anyone?

2015-03-08 Thread Vivec
... No clue 0_0 On 3 March 2015 at 15:50, Judith Dinowitz jdino...@houseoffusion.com wrote: I have been doing a lot of data analysis with Kissmetrics for my fourth project. The client I am working with wants me to investigate possible alternatives for web analytics programs. He needs a

Re: Cutting the Cable

2015-03-03 Thread Jerry Milo Johnson
!@#%^%. I did not know that. THANK YOU! On Tue, Mar 3, 2015 at 8:26 AM, Cameron Childress camer...@gmail.com wrote: On Mon, Mar 2, 2015 at 3:35 PM, Bruce Sorge wrote: It's a year, not a month. It was a typo. I settled on the Apple TV. Tip #1 for AppleTV... Hold down the center

Re: lol AmericanThinker

2015-03-03 Thread Michael Dinowitz
Literally no one is safe unless they are the exact type of Muslims that ISIS is. They have a checklist that they use to question other Muslims about things like how they bow, what direction they pray, etc. Wrong answer is deadly. If your not a Muslim your dead without the checklist...unless they

Re: lol AmericanThinker

2015-03-03 Thread Michael Dinowitz
I hate to say this is a red herring but Muslims have killed more Muslims than we ever have. Is the Muslim Brotherhood pro-ISIS or anti? I believe that they are anti so I'll have to look it up. On Wed, Feb 25, 2015 at 3:18 PM, Dana dana.tier...@gmail.com wrote: nothing says muslim brotherhood

Re: Cutting the Cable

2015-03-03 Thread Cameron Childress
On Tue, Mar 3, 2015 at 10:14 AM, Jerry Milo Johnson wrote: I did not know that. You're welcome :) I said the same thing when someone showed that to me. I'd had it for about a year before I knew I could do that. -Cameron

Re: lol AmericanThinker

2015-03-03 Thread GMoney
Not exactly death to all non Muslims outright. Dozens of Christians were released the other day by ISIS. Apparently they have a different check list for Christians. They can be freed if they: 1) agree that ISIS is in control. They have to call them master and 2) pay a tax This according to a CNN

Re: Cutting the Cable

2015-03-03 Thread Cameron Childress
On Mon, Mar 2, 2015 at 3:35 PM, Bruce Sorge wrote: It's a year, not a month. It was a typo. I settled on the Apple TV. Tip #1 for AppleTV... Hold down the center button till all the icons wiggle and you can move the apps around. Some of the apps are pretty stupid and some you will use all the

Re: Selenium and Jenkins

2015-03-03 Thread LRS Scout
Dang, it changes daily I think. On Tue, Mar 3, 2015 at 2:41 PM, Jerry Milo Johnson jmi...@gmail.com wrote: Packt books has been giving away free ebooks this month (in exchange for free registration on the site). https://www.packtpub.com/packt/offers/free-learning One of them was

Re: lol AmericanThinker

2015-03-03 Thread LRS Scout
What was done to the Yazidi is a travesty. Many of the terps in Iraq came from their ranks and they've stood by us through each of our forays into Iraq, and we've allowed them to be tortured and murdered time and again. The Jiza is the tax that non believers must pay, and it's not just in Iraq

Re: Selenium and Jenkins

2015-03-03 Thread LRS Scout
Cool, thanks man. On Tue, Mar 3, 2015 at 2:41 PM, Jerry Milo Johnson jmi...@gmail.com wrote: Packt books has been giving away free ebooks this month (in exchange for free registration on the site). https://www.packtpub.com/packt/offers/free-learning One of them was

Re: lol AmericanThinker

2015-03-03 Thread Michael Dinowitz
They walked because they are people of the book and can be spared if they follow a whole boatfull of rules, including that tax. ISIS has one script for dealing with Muslims, one script for dealing with peoples of the book, and a third for everyone else. A Muslim failing on the Muslim script is an

Re: Selenium and Jenkins

2015-03-03 Thread Jerry Milo Johnson
Packt books has been giving away free ebooks this month (in exchange for free registration on the site). https://www.packtpub.com/packt/offers/free-learning One of them was https://www.packtpub.com/web-development/selenium-2-testing-tools-beginner%E2%80%99s-guide which seemed like a good

Re: lol AmericanThinker

2015-03-03 Thread Sam
Make me wonder who's side we're on. http://news.nationalpost.com/2015/03/01/canadian-military-predicted-libya-would-descend-into-civil-war-if-foreign-countries-helped-rebels-overthrow-gaddafi/ ... Some officers in the Canadian Forces tried to raise concerns early on in the war that removing

Re: lol AmericanThinker

2015-03-03 Thread Vivec
Never trust the West. They will turn on you in the end, always. This is what the West has taught leaders in the middle east. Then the US wonders why they don't want to work with them. On 3 March 2015 at 10:19, Sam sammyc...@gmail.com wrote: Make me wonder who's side we're on.

RE: Cutting the Cable

2015-03-02 Thread Eric Roberts
1500.00? How much do you pay for cable and internet? You can save some money, but 1500 a month?Up until recently, I didn't have cable. I just watched Netflix and Amazon Prime via my Roku device on my TV and the online apps on my computer and tablet/phone. You can also stream video via

RE: Cutting the Cable

2015-03-02 Thread Eric Roberts
OK...that makes more sense LOL -Original Message- From: Bruce Sorge [mailto:sor...@gmail.com] Sent: Monday, March 02, 2015 12:52 PM To: cf-community Subject: Re: Cutting the Cable Shit, that’s a year, not month. Hahahahahaha On Mar 2, 2015, at 1:43 PM, Bruce Sorge sor

Re: Cutting the Cable

2015-03-02 Thread Bruce Sorge
It's a year, not a month. It was a typo. I settled on the Apple TV. Sent from my iPhone 6+ On Mar 2, 2015, at 3:33 PM, Eric Roberts ow...@threeravensconsulting.com wrote: 1500.00? How much do you pay for cable and internet? You can save some money, but 1500 a month?Up until

Re: Server Specs

2015-03-02 Thread Cameron Childress
On Fri, Feb 20, 2015 at 8:57 PM, Bruce Sorge wrote: I need to build a budget web server for doing development on small sites. It will only reside in my apartment. I have not built one in over a decade, so I'd like some ideas. I am thinking mid-tower with a low end graphics card since it will

Re: Server Specs

2015-03-02 Thread Bruce Sorge
Thanks Cam. I'll try and go to that. And I am not looking to get back into development full time. It's for personal use as well as doing some small things for friends and keeping my skills up. This server won't be public facing. For that I'd send clients to their own hosting. Sent from my

Re: Cutting the Cable

2015-03-02 Thread LRS Scout
1500 a year? On Mon, Mar 2, 2015 at 1:51 PM, LRS Scout lrssc...@gmail.com wrote: If you have chromecast or all-share or a smart tv they often allow mirroring. I'm looking on craigs list for a samsung smart tv right now because my phone will mirror out of the box. On Mon, Mar 2, 2015 at

Re: Cutting the Cable

2015-03-02 Thread Bruce Sorge
Shit, that’s a year, not month. Hahahahahaha On Mar 2, 2015, at 1:43 PM, Bruce Sorge sor...@gmail.com wrote: Howdy all, I know some of you on this list have made the switch from cable/satellite television to just online, and I am getting ready to leave cable except for internet. I

Re: Cutting the Cable

2015-03-02 Thread LRS Scout
$1500? WTF? (Typo I assume) I have a Roku 3. Works great. I also pirate a ton of stuff, so yeah. On Mon, Mar 2, 2015 at 1:43 PM, Bruce Sorge sor...@gmail.com wrote: Howdy all, I know some of you on this list have made the switch from cable/satellite television to just online, and I

Re: Cutting the Cable

2015-03-02 Thread LRS Scout
If you have chromecast or all-share or a smart tv they often allow mirroring. I'm looking on craigs list for a samsung smart tv right now because my phone will mirror out of the box. On Mon, Mar 2, 2015 at 1:48 PM, Zaphod Beeblebrox zaph0d.b33bl3b...@gmail.com wrote: I use a Blu-Ray player I

Re: Cutting the Cable

2015-03-02 Thread Zaphod Beeblebrox
I use a Blu-Ray player I picked up for $40 to do my Netflix in my media room - it had optical out and my older Roku box only had rca jacks. I also use the linux boxes on my mythtv system to allow all the other tvs to get Netflix via Chrome running in Kiosk mode. I have Amazon prime, but so far

Re: Cutting the Cable

2015-03-02 Thread Bruce Sorge
Not a typo dude. Wowway is pretty pricy. Internet and Cable. Last month my bill was $187.00. And I don’t buy PPV movies either. And I don’t have a choice since they are the ONLY choice I have in my apartment. On Mar 2, 2015, at 1:46 PM, LRS Scout lrssc...@gmail.com wrote: $1500? WTF?

Re: Cutting the Cable

2015-03-02 Thread Bruce Sorge
That's what I'll save, yes. Sent from my iPhone 6+ On Mar 2, 2015, at 1:51 PM, LRS Scout lrssc...@gmail.com wrote: 1500 a year? On Mon, Mar 2, 2015 at 1:51 PM, LRS Scout lrssc...@gmail.com wrote: If you have chromecast or all-share or a smart tv they often allow mirroring. I'm

Re: Cutting the Cable

2015-03-02 Thread Zaphod Beeblebrox
I got a chrome cast a few years back as a gift and still have yet to use it. Most of my TV’s are pretty old. The only hi-def thing I own is my projector in the media room. Since my TV’s are all old, they’re also dumb-tvs On the upside, MythTV supports apple mirroring so I do that quite

Re: Cutting the Cable

2015-03-02 Thread LRS Scout
lol On Mon, Mar 2, 2015 at 1:51 PM, Bruce Sorge sor...@gmail.com wrote: Shit, that’s a year, not month. Hahahahahaha On Mar 2, 2015, at 1:43 PM, Bruce Sorge sor...@gmail.com wrote: Howdy all, I know some of you on this list have made the switch from cable/satellite television to

Re: Cutting the Cable

2015-03-02 Thread Cameron Childress
On Mon, Mar 2, 2015 at 1:43 PM, Bruce Sorge wrote: My question is what device to get? I have a PS3 for Netflix and Amazon Prime. I have Google Chromecast, but I am not impressed with the quality. The sound keeps cutting out. I am looking at a Roku or Apple TV device. What are you all using

Re: Cutting the Cable

2015-03-02 Thread Bruce Sorge
I have a MacBook Pro, iPhone and iPad as well as an AirPort Extreme. Apple TV might be what I need. I do like the idea of a smart tv though. Sent from my iPhone 6+ On Mar 2, 2015, at 2:45 PM, Cameron Childress camer...@gmail.com wrote: On Mon, Mar 2, 2015 at 1:43 PM, Bruce Sorge

Re: lol AmericanThinker

2015-02-28 Thread C. Hatton Humphrey
On Fri, Feb 27, 2015 at 11:40 PM, Vivec gel21...@gmail.com wrote: Mine was 607953. :-) I don't know how or why I remember that With all this conversation I pulled mine from the ashbin of history... 2204567 ;) Until Later! C. Hatton Humphrey http://www.eastcoastconservative.com Like

Re: Server Specs

2015-02-28 Thread Judith Dinowitz
: you have a macbook correct? Why not just download vmware fusion and install whatever server software you want? Even though you’re sharing CPU, it’s gotta be faster than the specs of the Cube On Fri, Feb 20, 2015 at 7:57 PM, Bruce Sorge sor...@gmail.com wrote: I need

Re: lol AmericanThinker

2015-02-27 Thread Vivec
Mine was 607953. :-) I don't know how or why I remember that On 27 February 2015 at 13:59, Cameron Childress camer...@gmail.com wrote: I've lost track of my ICQ number now though. -Cameron ~| Order the Adobe

Re: lol AmericanThinker

2015-02-27 Thread Cameron Childress
On Fri, Feb 27, 2015 at 12:24 PM, Jerry Milo Johnson wrote: Is Cincinnati or dancing pig that part you most regret? I think he should be regretting the use of ICQ, or maybe wearing it like a badge of honor... -Cameron ...

Re: lol AmericanThinker

2015-02-27 Thread Sam
Before AOL ruined it . On Fri, Feb 27, 2015 at 12:33 PM, GMoney gm0n3...@gmail.com wrote: dude, this was 15 years ago.back then ICQ was the shit. On Fri, Feb 27, 2015 at 11:31 AM, Cameron Childress camer...@gmail.com wrote: On Fri, Feb 27, 2015 at 12:24 PM, Jerry Milo Johnson

Re: lol AmericanThinker

2015-02-27 Thread Jerry Milo Johnson
Is Cincinnati or dancing pig that part you most regret? On Fri, Feb 27, 2015 at 12:13 PM, GMoney gm0n3...@gmail.com wrote: i once accidentally called my boss a Cincinnati dancing pig. I thought i was writing to someone else on ICQ, but i was writing to him. So.yeah. On Fri, Feb 27,

Re: lol AmericanThinker

2015-02-27 Thread GMoney
i once accidentally called my boss a Cincinnati dancing pig. I thought i was writing to someone else on ICQ, but i was writing to him. So.yeah. On Fri, Feb 27, 2015 at 11:05 AM, C. Hatton Humphrey chumph...@gmail.com wrote: On Fri, Feb 27, 2015 at 12:02 PM, J.J. Merrick j...@panos.cc

Re: lol AmericanThinker

2015-02-27 Thread GMoney
dude, this was 15 years ago.back then ICQ was the shit. On Fri, Feb 27, 2015 at 11:31 AM, Cameron Childress camer...@gmail.com wrote: On Fri, Feb 27, 2015 at 12:24 PM, Jerry Milo Johnson wrote: Is Cincinnati or dancing pig that part you most regret? I think he should be regretting

Re: lol AmericanThinker

2015-02-27 Thread J.J. Merrick
new friends Routh. Iran and Syria have been kicking ISIL's ass pretty hard. -Original Message- From: LRS Scout [mailto:lrssc...@gmail.com] Sent: Wednesday, February 25, 2015 2:33 PM To: cf-community Subject: Re: lol AmericanThinker I didn't get it, but I don't think

Re: lol AmericanThinker

2015-02-27 Thread C. Hatton Humphrey
On Fri, Feb 27, 2015 at 12:02 PM, J.J. Merrick j...@panos.cc wrote: 4. The internet is stupid. I think this is best response to many things. None of us - to the person - are infallible. All of us - to the person - have times when we wish there was an undo button on life. Until Later! C.

Re: lol AmericanThinker

2015-02-27 Thread Sam
I did. His response was immediate. The finger came after someone said Allahu Akbar. . On Fri, Feb 27, 2015 at 12:02 PM, J.J. Merrick j...@panos.cc wrote: Watch the actual video... 1. He trips coming up the stairs. 2. Someone makes some sort of joke about it. 3. He is laughing and

Re: lol AmericanThinker

2015-02-27 Thread Maureen
where my wife and I re-met (been married for almost 17 years now too). ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re: lol AmericanThinker

2015-02-27 Thread GMoney
Yeah? What's the number, i'll break out my ProComm+ and dial it up On Fri, Feb 27, 2015 at 12:32 PM, C. Hatton Humphrey chumph...@gmail.com wrote: On Fri, Feb 27, 2015 at 1:28 PM, Maureen mamamaur...@gmail.com wrote: I have a fondness for it too. That's where my husband told me he

Re: lol AmericanThinker

2015-02-27 Thread C. Hatton Humphrey
On Fri, Feb 27, 2015 at 1:39 PM, Sam sammyc...@gmail.com wrote: Don't you need a land line for that? Nope, most use Telnet (some use SSH) for connecting so something like PuTTY works fine as a client. Amazingly things like FIDO are still around and somewhat active. There's a small group of

Re: lol AmericanThinker

2015-02-27 Thread LRS Scout
At least out wasn't aol, compuserve or irc On Feb 27, 2015 1:00 PM, Cameron Childress camer...@gmail.com wrote: On Fri, Feb 27, 2015 at 12:33 PM, GMoney wrote: dude, this was 15 years ago.back then ICQ was the shit I still had it configured in Trillian / Adium till pretty recently.

Re: lol AmericanThinker

2015-02-27 Thread GMoney
: At least out wasn't aol, compuserve or irc I have a particular fondness for IRC, it's where my wife and I re-met (been married for almost 17 years now too). Until Later! C. Hatton Humphrey http://www.eastcoastconservative.com Like the saying goes, Measure Twice, Cut Onc

Re: lol AmericanThinker

2015-02-27 Thread C. Hatton Humphrey
On Fri, Feb 27, 2015 at 1:01 PM, LRS Scout lrssc...@gmail.com wrote: At least out wasn't aol, compuserve or irc I have a particular fondness for IRC, it's where my wife and I re-met (been married for almost 17 years now too). Until Later! C. Hatton Humphrey http

Re: lol AmericanThinker

2015-02-27 Thread Jerry Milo Johnson
, C. Hatton Humphrey chumph...@gmail.com wrote: I have a particular fondness for IRC, it's where my wife and I re-met (been married for almost 17 years now too). ~| Order the Adobe Coldfusion Anthology now

Re: lol AmericanThinker

2015-02-27 Thread C. Hatton Humphrey
On Fri, Feb 27, 2015 at 1:28 PM, Maureen mamamaur...@gmail.com wrote: I have a fondness for it too. That's where my husband told me he wanted a divorce one week after I had spent all my savings to buy us a house next door to his parents. ;-) O.o How exactly does one reply to that?

Re: lol AmericanThinker

2015-02-27 Thread Sam
Don't you need a land line for that? . On Fri, Feb 27, 2015 at 1:32 PM, C. Hatton Humphrey chumph...@gmail.com wrote: On Fri, Feb 27, 2015 at 1:28 PM, Maureen mamamaur...@gmail.com wrote: I have a fondness for it too. That's where my husband told me he wanted a divorce one week after I

Re: lol AmericanThinker

2015-02-27 Thread Jerry Milo Johnson
God, now I miss The Pirate's Cove. Best BBS for Apple back in the day. Out of Long Island, iirc. I threw out my acoustic coupler 300 baud modem last summer. It was time. On Fri, Feb 27, 2015 at 1:43 PM, C. Hatton Humphrey chumph...@gmail.com wrote: On Fri, Feb 27, 2015 at 1:39 PM, Sam

Re: lol AmericanThinker

2015-02-27 Thread Cameron Childress
On Fri, Feb 27, 2015 at 12:33 PM, GMoney wrote: dude, this was 15 years ago.back then ICQ was the shit I still had it configured in Trillian / Adium till pretty recently. Nobody used it to communicate with me for a really long time but I kept it alive forever just in case someone turned

Re: lol AmericanThinker

2015-02-27 Thread GMoney
savings to buy us a house next door to his parents. ;-) On Fri, Feb 27, 2015 at 1:20 PM, C. Hatton Humphrey chumph...@gmail.com wrote: I have a particular fondness for IRC, it's where my wife and I re-met (been married for almost 17 years now too

Re: lol AmericanThinker

2015-02-27 Thread Maureen
Yeppers..he did indeed. I don't even think I was mad about him wanting a divorce, just wish he has told me before we bought the house. On Fri, Feb 27, 2015 at 1:29 PM, GMoney gm0n3...@gmail.com wrote: Your husband told you he wanted a divorce on IRC?!?!?!?! That's.wowlower

Re: lol AmericanThinker

2015-02-27 Thread GMoney
12758985 still rattles around in my head..that might be my ICQ number. On Fri, Feb 27, 2015 at 11:59 AM, Cameron Childress camer...@gmail.com wrote: On Fri, Feb 27, 2015 at 12:33 PM, GMoney wrote: dude, this was 15 years ago.back then ICQ was the shit I still had it configured

Re: lol AmericanThinker

2015-02-27 Thread Sam
Last time I logged in was six or more years ago and I got slammed with porn ads and get rich quick crap. I had to quickly uninstall and not look back. , On Fri, Feb 27, 2015 at 12:59 PM, Cameron Childress camer...@gmail.com wrote: On Fri, Feb 27, 2015 at 12:33 PM, GMoney wrote: dude, this

  1   2   3   4   5   6   7   8   9   10   >