Question for the Mac users

2015-03-31 Thread Bruce Sorge

Howdy all,
So I upgraded to Yosemite a while ago, and I want to play around with 
WordPress. I went through all the steps to get Apache up and running, and it 
works fine when I browse localhost. However, when I try to browse 
localhost/~brucesorge, I get the message Safari cannot connect to the server. 
Safari cannot open the page “localhost/~brucesorge” because safari cannot 
connect to the server “localhost”. Also, I can only get to localhost in 
Safari, not Chrome. Here are the steps I performed, all in Terminal of course.

Created the brucesorge.conf file and added:

Directory “/Users/brucesorge/Sites/“
AllowOverride All
Options Indexe Multiviews FollowSymLinks
Require all granted
/Directory

Then I set the permissions: sudo chmod 644 brucesorge.conf

I made sure the four lines in the /etc/apache2/httpd.conf were uncommented:

LoadModule authz_core_module libexec/apache2/mod_authz_core.so
LoadModule authz_host_module libexec/apache2/mod_authz_host.so
LoadModule userdir_module libexec/apache2/mod_usrdir.so
Include /private/etc/apache2/extra/httod-userdir.conf

I opened the http-userdir.conf file and uncommented:
Include /private/etc/apache2/users/*.conf

I then restarted apache, but no joy. Any ideas?

Thanks,

Bruce




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373332
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


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 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.
 
 sudo /usr/sbin/apachectl -t
 (Syntax OK means you've not screwed up the configs)
 
 4) The default location of Apache's home is here on a mac. Can you drop a
 static foo.html in there and get it to come up in your browser at
 http://127.0.0.1/foo.html? http://127.0.0.1/foo.html?
 
 /Library/WebServer/Documents
 
 5) I actually use the above location for all my app file directories and
 just create virtual hosts for each (instead of the userdir ~ thing).
 An examnple entry might look something like this:
 
 VirtualHost *:80
  DocumentRoot /Library/WebServer/Documents/clientproject
  DirectoryIndex index.cfm
  ServerName clientproject.localtest.me http://clientproject.localtest.me/
 /VirtualHost
 
 Localtest.me http://localtest.me/ always resolves to 127.0.0.1 and lets you 
 use subdomains to
 differentiate sites. So each of my projects has a similar line in
 extra/httpd-vhosts.conf. This also lets me turn on or off CF9, CF10, Railo,
 or Lucee per virtualhost depending on what the client is using in their
 environment.
 
 -Cameron
 
 On Mon, Mar 30, 2015 at 6:23 PM, Bruce Sorge wrote:
 
 
 Howdy all,
 So I upgraded to Yosemite a while ago, and I want to play around with
 WordPress. I went through all the steps to get Apache up and running, and
 it works fine when I browse localhost. However, when I try to browse
 localhost/~brucesorge, I get the message Safari cannot connect to the
 server. Safari cannot open the page “localhost/~brucesorge” because 
 safari
 cannot connect to the server “localhost”. Also, I can only get to 
 localhost
 in Safari, not Chrome. Here are the steps I performed, all in Terminal of
 course.
 
 Created the brucesorge.conf file and added:
 
 Directory “/Users/brucesorge/Sites/“
 AllowOverride All
 Options Indexe Multiviews FollowSymLinks
 Require all granted
 /Directory
 
 Then I set the permissions: sudo chmod 644 brucesorge.conf
 
 I made sure the four lines in the /etc/apache2/httpd.conf were uncommented:
 
 LoadModule authz_core_module libexec/apache2/mod_authz_core.so
 LoadModule authz_host_module libexec/apache2/mod_authz_host.so
 LoadModule userdir_module libexec/apache2/mod_usrdir.so
 Include /private/etc/apache2/extra/httod-userdir.conf
 
 I opened the http-userdir.conf file and uncommented:
 Include /private/etc/apache2/users/*.conf
 
 I then restarted apache, but no joy. Any ideas?
 
 Thanks,
 
 Bruce
 
 
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373335
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


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 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.
 
 sudo /usr/sbin/apachectl -t
 (Syntax OK means you've not screwed up the configs)
 
 4) The default location of Apache's home is here on a mac. Can you drop a
 static foo.html in there and get it to come up in your browser at
 http://127.0.0.1/foo.html?
 
 /Library/WebServer/Documents
 
 5) I actually use the above location for all my app file directories and
 just create virtual hosts for each (instead of the userdir ~ thing).
 An examnple entry might look something like this:
 
 VirtualHost *:80
  DocumentRoot /Library/WebServer/Documents/clientproject
  DirectoryIndex index.cfm
  ServerName clientproject.localtest.me
 /VirtualHost
 
 Localtest.me always resolves to 127.0.0.1 and lets you use subdomains to
 differentiate sites. So each of my projects has a similar line in
 extra/httpd-vhosts.conf. This also lets me turn on or off CF9, CF10, Railo,
 or Lucee per virtualhost depending on what the client is using in their
 environment.
 
 -Cameron
 
 On Mon, Mar 30, 2015 at 6:23 PM, Bruce Sorge wrote:
 
 
 Howdy all,
 So I upgraded to Yosemite a while ago, and I want to play around with
 WordPress. I went through all the steps to get Apache up and running, and
 it works fine when I browse localhost. However, when I try to browse
 localhost/~brucesorge, I get the message Safari cannot connect to the
 server. Safari cannot open the page “localhost/~brucesorge” because 
 safari
 cannot connect to the server “localhost”. Also, I can only get to 
 localhost
 in Safari, not Chrome. Here are the steps I performed, all in Terminal of
 course.
 
 Created the brucesorge.conf file and added:
 
 Directory “/Users/brucesorge/Sites/“
 AllowOverride All
 Options Indexe Multiviews FollowSymLinks
 Require all granted
 /Directory
 
 Then I set the permissions: sudo chmod 644 brucesorge.conf
 
 I made sure the four lines in the /etc/apache2/httpd.conf were uncommented:
 
 LoadModule authz_core_module libexec/apache2/mod_authz_core.so
 LoadModule authz_host_module libexec/apache2/mod_authz_host.so
 LoadModule userdir_module libexec/apache2/mod_usrdir.so
 Include /private/etc/apache2/extra/httod-userdir.conf
 
 I opened the http-userdir.conf file and uncommented:
 Include /private/etc/apache2/users/*.conf
 
 I then restarted apache, but no joy. Any ideas?
 
 Thanks,
 
 Bruce
 
 
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373334
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


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 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 playon
 with the Roku device and your computer...so if you have DVD's or other
 videos on your computer, you can view them via the playon app on the Roku
 device.  I have used it a little bit and performance seemed ok.  You are
 installing the playon server software on your computer and the Roku app is
 the client, so the network is all internal.  Hulu is another option.  I
 never really got into the Hulu stuff as much as I did Netflix and
 Amazon...but some people swear by it.  I love my Roku device.  Get the $99
 one...it has more features and you can even play games on it.  It only works
 with HDMI capable TV's.
 
 Unfortunately, the place I am in the middle of moving to only has Comcast
 (grr)...so I have cable again...I had to drop my ATT internet account.  I
 figured if I was going to sell my soul...I may as well go whole hog LOL.
 
 Eric
 
 -Original Message-
 From: Bruce Sorge [mailto:sor...@gmail.com] 
 Sent: Monday, March 02, 2015 12:44 PM
 To: cf-community
 Subject: Cutting the Cable
 
 
 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 discovered that I can save over $1,500.00 a month. 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 and can you give me some comments? I am also checking the inter webs
 and making comparisons.
 
 
 Thanks
 Bruce
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373282
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


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 iPhone 6+



 On Mar 2, 2015, at 9:45 AM, Cameron Childress camer...@gmail.com wrote:
 
 
 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 more than likely be linux based. I'll have CF and PHP,
 Apache as well as MySQL.
 
 Development I'd do on your desktop computer. For anything you want to show
 a client I'd use their hosting for it. We never host anything except our
 own site, which is hosted at VivioTech. All clients must find their own
 hosting. We usually recommend VivioTech for this, but probably about 50% of
 clients have their own hosting already, often internal in their offices.
 
 I have a long standing policy of not owning any servers and not having any
 servers in our office to maintain. This means we do not host our own email,
 web, voicemail, or anything else.
 
 If you are just looking to play, get a server and play, but if you are
 looking to maximize billable hours, my recommendation would be to own no
 equipment except your desktop and focus on writing code. When you have
 servers around you end up having to tinker with them, patch them, backup,
 etc.
 
 I'm not 100% sure if you are looking to be semi-retired and play, so maybe
 buying an actual server makes sense for you. Just giving my input from a
 billable perspective. All that tinkering is going to generally be
 unbillable work and can be had for SUPER CHEAP as a SaaS someplace.
 
 Lastly, I would highly recommend going to AWEsome Day in April. I went last
 year and it was a great overview of all the things Amazon Web Services
 offers. There are moments where it's a little sales-y but overall it was a
 great introduction to a very large number of concept and capabilities of
 Amazon AWS - and it's free!
 
 http://aws.amazon.com/events/awsome-day/atlanta/?trkCampaign=AWSome15ATLtrk=event_awsomeday_2015_namer_607
 
 Erika almost came to this event last time but got the day wrong, which was
 a little amusing, but probably not as amusing to her.. . :)
 
 -Cameron
 
 -- 
 Cameron Childress
 --
 p:   678.637.5072
 im: cameroncf
 facebook http://www.facebook.com/cameroncf | twitter
 http://twitter.com/cameronc | google+
 https://profiles.google.com/u/0/117829379451708140985
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373267
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Cutting the Cable

2015-03-02 Thread Bruce Sorge

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 discovered that I can save over $1,500.00 a month. 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 and can 
you give me some comments? I am also checking the inter webs and making 
comparisons.


Thanks
Bruce

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373268
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


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 discovered that I can save over $1,500.00 a month. 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 and 
 can you give me some comments? I am also checking the inter webs and making 
 comparisons.
 
 
 Thanks
 Bruce


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373274
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


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?  (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 am getting ready to leave cable except for
 internet. I discovered that I can save over $1,500.00 a month. 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 and can you give me some comments? I am also checking the inter webs
 and making comparisons.
 
 
 Thanks
 Bruce
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373271
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


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 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 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 the only thing I have that can do that is
 the MacBooks since it relies on Silverlight (ugh)
 
 
 
 On Mon, Mar 2, 2015 at 12: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 discovered that I can save over $1,500.00 a month. 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 and can you give me some comments? I am also checking the inter
 webs
 and making comparisons.
 
 
 Thanks
 Bruce
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373275
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


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 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 and can you give me some comments? I am also
 checking the inter webs and making comparisons.
 
 If you have lots of products in the Apple ecosystem then an AppleTV is
 worth it. Otherwise you might get more out of a Roku (and I see you already
 have a Chromecast). We also have Amazon Prime, Netflix, and Hulu. We rent a
 few shows directly from iTunes and occasionally rent a movie from iTunes
 too. It's still mega-cheap compared to paying Comcast for 99 TV shows about
 towing cars and meter maids.
 
 I would also check out Plex (https://plex.tv/) for streaming any content
 you may have locally on a server someplace. If you are into downloading
 stuff that will be the esiest way to get it to all your devices. Samsung TV
 has a player app for Plex, there is also a player for iPhone and Roku but
 not one for AppleTV (AFAIK).
 
 -Cameron
 
 ...
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373279
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Server Specs

2015-02-24 Thread Bruce Sorge

I'd do something like that, but I'm retiring from the Army in six months and 
I'm trying to keep my expenses down until I have a new job. I think I'll stick 
with the cube for now and see how that works. 

Sent from my iPhone 6+



 On Feb 24, 2015, at 5:39 PM, Zaphod Beeblebrox zaph0d.b33bl3b...@gmail.com 
 wrote:
 
 
 I can’t say that it’s my favorite either.  I just keep a server at
 DigitalOcean for $10/month.  It’s my 2nd choice though and hosting my own
 hardware would be 3rd.
 
 On Tue, Feb 24, 2015 at 4:28 PM, Bruce Sorge sor...@gmail.com wrote:
 
 
 I do have VMware and windows 7 installed. I just don't like using it.
 
 Sent from my iPhone 6+
 
 
 
 On Feb 24, 2015, at 5:17 PM, Zaphod Beeblebrox 
 zaph0d.b33bl3b...@gmail.com wrote:
 
 
 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 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 more than likely be linux based. I'll have CF and
 PHP,
 Apache as well as MySQL.
 
 Thanks.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373190
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Server Specs

2015-02-24 Thread Bruce Sorge

I do have VMware and windows 7 installed. I just don't like using it. 

Sent from my iPhone 6+



 On Feb 24, 2015, at 5:17 PM, Zaphod Beeblebrox zaph0d.b33bl3b...@gmail.com 
 wrote:
 
 
 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 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 more than likely be linux based. I'll have CF and PHP,
 Apache as well as MySQL.
 
 Thanks.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373188
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Server Specs

2015-02-21 Thread Bruce Sorge

I need to research the cloud option.  But the server would be nice for file 
storage as well as web development. 

Sent from my iPhone 6+



 On Feb 21, 2015, at 6:26 PM, Maureen mamamaur...@gmail.com wrote:
 
 
 In that case, you might want to do CentOS instead of Ubuntu, as most
 hosting companies use that. I only used Ubuntu because that was what
 the music software runs on.
 
 Another good choice is just to get a cloud instance for
 development..lets you work with whatever software you need to learn,
 and also lets you get some cloud experience.
 
 On Sat, Feb 21, 2015 at 6:02 PM, Bruce Sorge sor...@gmail.com wrote:
 
 Yeah, it looks perfect for my needs. I will not do any hosting, this is just 
 for my development environment. I want to duplicate my hosting environment 
 so that when a new site goes live, there are no surprises.
 
 On Feb 21, 2015, at 5:32 PM, Maureen mamamaur...@gmail.com wrote:
 
 
 Those Cobalt servers are awesome. I have several and I have an eBay
 alert to let me know when one shows up for bid so I can add to my
 collection.  Handy little buggers.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373182
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Server Specs

2015-02-21 Thread Bruce Sorge

Yeah, it looks perfect for my needs. I will not do any hosting, this is just 
for my development environment. I want to duplicate my hosting environment so 
that when a new site goes live, there are no surprises. 

 On Feb 21, 2015, at 5:32 PM, Maureen mamamaur...@gmail.com wrote:
 
 
 Those Cobalt servers are awesome. I have several and I have an eBay
 alert to let me know when one shows up for bid so I can add to my
 collection.  Handy little buggers.
 
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373180
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Server Specs

2015-02-21 Thread Bruce Sorge

Thanks Maureen. I am looking at a Cobalt cube 3 Server Appliance 
(http://www.ebay.com/itm/Sun-Cobalt-Cobalt-Qube-3-Server-Appliance-Tested-w-Power-Supply-and-CD-Manuals-/231485992799?pt=LH_DefaultDomain_0hash=item35e5a3ef5f
 
http://www.ebay.com/itm/Sun-Cobalt-Cobalt-Qube-3-Server-Appliance-Tested-w-Power-Supply-and-CD-Manuals-/231485992799?pt=LH_DefaultDomain_0hash=item35e5a3ef5f).
 Will that work for what I need? I assume that I can plug it into my Airport 
Extreme and manage it remotely?



 On Feb 20, 2015, at 11:01 PM, Maureen mamamaur...@gmail.com wrote:
 
 
 I built my server farm with used Cobalt servers that I bought for a few
 bucks on ebay.  Running Ubantu. Apache, php, mysql, railo (lucee), and a
 bunch of other languages and big data tools that I use for converting
 data.   Also open source audio and video tools.
 On Feb 20, 2015 8:58 PM, Bruce Sorge sor...@gmail.com 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 more than likely be linux based. I'll have CF and PHP,
 Apache as well as MySQL.
 
 Thanks.
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373176
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Server Specs

2015-02-21 Thread Bruce Sorge

Thanks again. I found the manual and it looks like this will work fine for me. 
I am going to buy it now. It appears a lot less expensive than building one 
from scratch.


 On Feb 21, 2015, at 11:47 AM, Maureen mamamaur...@gmail.com wrote:
 
 
 If you google you can find the instructional manual online.  That will
 give you a good idea of what you need to make it work.
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373178
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Server Specs

2015-02-20 Thread Bruce Sorge

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 more than likely be linux based. I'll have CF and PHP,
Apache as well as MySQL.

Thanks.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373174
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Help with a Survey for my School Project

2015-01-24 Thread Bruce Sorge

Did and done. 

Sent from my iPhone 6+



 On Jan 24, 2015, at 8:04 PM, Judith Dinowitz jdino...@houseoffusion.com 
 wrote:
 
 
 https://jeankim1.typeform.com/to/JQsUzX
 
 Sorry, here's the survey link. (facepalm moment)
 
 On Sat, Jan 24, 2015 at 8:02 PM, Judith Dinowitz jdino...@houseoffusion.com
 wrote:
 
 Hi. If you like to eat out, would you mind filling out a short survey for
 a school project? This should only take you about 5 minutes, max. Thanks so
 much!
 
 Judith Dinowitz
 
 
 -- 
 Judith Dinowitz
 Vice President
 House of Fusion, Inc.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373119
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Elevator Saga - This will ruin your Friday

2015-01-23 Thread Bruce Sorge

Yeah, I saw your post on FB and am already sucked into it instead of doing my 
school work. Thanks buddy!

 On Jan 23, 2015, at 9:25 AM, Cameron Childress camer...@gmail.com wrote:
 
 
 You have been warned
 
 http://play.elevatorsaga.com/
 
 -Cameron
 
 -- 
 Cameron Childress
 --
 p:   678.637.5072
 im: cameroncf
 facebook http://www.facebook.com/cameroncf | twitter
 http://twitter.com/cameronc | google+
 https://profiles.google.com/u/0/117829379451708140985
 
 
 ~

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373109
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: More Partially Clips: Computer Salesman

2015-01-19 Thread Bruce Sorge

Complete hardware isolation. Awesome. 





 On Jan 19, 2015, at 12:37 PM, Judith Dinowitz jdino...@houseoffusion.com 
 wrote:
 
 
 http://partiallyclips.com/2015/01/14/computer-salesman/#comments
 
 Thought you guys might like this take on antiquated computers...
 
 -- 
 Judith Dinowitz
 Vice President
 House of Fusion, Inc.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373099
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Speaking of bizarre news customs, what the heck is this all about?

2015-01-19 Thread Bruce Sorge

30 years or so ago that would pass muster. Not today. There are so many 
successful women in business that it would be completely disrespectful as you 
say. It totally discounts the contributions women have made in the world. 

Sent from my iPhone 6+



 On Jan 19, 2015, at 1:38 PM, Judith Dinowitz jdino...@houseoffusion.com 
 wrote:
 
 
 I have seen companies that, when creating a presentation, would put face
 shots of their male board members in, but not of their female board
 members. I protested because I thought it was disrespectful to their female
 board members. Let them not put the male board members up either.
 
 Sometimes people are just a bit irrational... That's how I look at it.
 They're trying to do the right thing, and I appreciate it, but they're
 going a bit too far.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373102
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: God Jul!!!!

2014-12-25 Thread Bruce Sorge

Merry Christmas to all. 

Sent from my iPhone 6+



 On Dec 24, 2014, at 11:33 PM, Eric Roberts ow...@threeravensconsulting.com 
 wrote:
 
 
 I would like to wish everyone a God Jul and Happy Holidays, whichever
 holiday you happen to celebrate!!
 
 Eric
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373045
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


In Virginia for the holidays

2014-12-08 Thread Bruce Sorge

So I'm going to be in Great Falls, VA for about six days visiting my little 
sister and her family. Since I'll be going by myself I have the flexibility to 
do what I want. Anyone in the area that'd like to have a beer or six and just 
hang out, hit me up at my email addy. It'd be nice to meet some more from the 
list. 

Bruce




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373012
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Time Always Marches Forward- But why?

2014-12-03 Thread Bruce Sorge

Very interesting article and analysis about why time always goes forward. 


http://news.discovery.com/space/time-always-marches-forward-why-141202.htm


Sent from my iPhone 6+


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373009
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Article on military pay and compensation

2014-12-03 Thread Bruce Sorge

This guy makes some valid points. As anyone who has served can tell you, the 
current system is flawed and needs a serious overhaul. I am a good NCO who gets 
excellent annual evaluation reports, yet I've served with shitty NCO 's who 
make the same pay as I do. 

http://taskandpurpose.com/real-problem-military-salaries-compensation/

Sent from my iPhone 6 Plus



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373011
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Happy Thanksgiving!

2014-11-27 Thread Bruce Sorge

It's always a great day when Americas team loses. 

Sent from my iPhone 5S

 On Nov 27, 2014, at 7:14 PM, Zaphod Beeblebrox zaph0d.b33bl3b...@gmail.com 
 wrote:
 
 
 and the cowboys lost.  Great holiday!
 
 -- 
 zB
 
 From: Ray Champagne r...@raychampagne.com
 Reply: cf-community@houseoffusion.com cf-community@houseoffusion.com
 Date: November 27, 2014 at 6:52:06 PM
 To: cf-community cf-community@houseoffusion.com
 Subject:  Re: Happy Thanksgiving!  
 
 
 Football, food, and general laziness. Best holiday ever!  
 
 You too.. :)  
 
 On Thu, Nov 27, 2014 at 6:26 PM, Vivec gel21...@gmail.com wrote:  
 
 
 Happy Thanksgiving all those who celebrate, and even those that don't ^_^  
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:373005
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: news of the week

2014-11-14 Thread Bruce Sorge

They are not interviews, their speeches. And Washington Post actually picked it 
up as well now

Sent from my iPhone 5S

 On Nov 14, 2014, at 9:03 AM, Vivec gel21...@gmail.com wrote:
 
 
 LOL..If only Fox News is covering it, I need to see the full interview
 myself, not the clips that Fox News selected.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372920
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: news of the week

2014-11-14 Thread Bruce Sorge

The Army uses try care for his medical benefits. It conforms with Obama care so 
nothing is changed for me

Sent from my iPhone 5S

 On Nov 14, 2014, at 10:39 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 Just curious, is there anyone on this list who has personally benefited
 from ObamaCare? I'm not looking for political bullshit, or he-said-she-said
 crapjust wonderingit has to have helped SOMEONE, right?
 
 I want to hear about it.
 
 On Fri, Nov 14, 2014 at 8:55 AM, Sam sammyc...@gmail.com wrote:
 
 
 I see the WP finally mentioned him but it's kind of a puff peace about
 how he's worth the $400k he was paid by the government.
 
 .
 
 On Fri, Nov 14, 2014 at 9:06 AM, Bruce Sorge sor...@gmail.com wrote:
 
 They are not interviews, their speeches. And Washington Post actually
 picked it up as well now
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372923
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Slate: Pentagon Says Hundreds in Military Exposed to Chemical Agents While in Iraq

2014-11-07 Thread Bruce Sorge

You are absolutely correct. Before joined, there was one thing I knew for sure. 
I didn’t want to go to college. Other than that, I had no idea what to do with 
my life. My mom made a half hearted suggestion to look into the military. It 
took me about three seconds to make a decision. I got out the phone book and 
looked up the recruiting station, then drove there and enlisted in the Army. 
That was one of the best decisions I made. I learned a lifestyle that I loved 
and thrived in. I love the Army so much, that I gave up a six figure income to 
come back in after a 13 year break. I took a HUGE pay cut and had to make some 
changes in my lifestyle, but I don’t regret coming back in. I will retire in 
nine months and will receive a lot of benefits. Retirement check for the rest 
of my life, very inexpensive medical and dental insurance through the army’s 
Tri-Care for Life program, VA home loans, veterans preference for certain jobs, 
the list goes on. I got my BS IT for free while in, and the 
 Army will pay for over half of my M ED degree before I retire, so I won’t have 
to take out much in pell grants and student loans. Most everyone I have met who 
is either currently serving or has previously served totally love the time they 
spent in the military. It’s a hard job to say the least, but it’s rewarding in 
so many ways. 


 On Nov 7, 2014, at 11:03 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 Meh, you hear mostly the bad.but the majority of US veterans had an
 extremely positive experience during and after their service. I've heard
 numerous people tell me that the military literally saved their lives. For
 many people it is the sole source of learned discipline and maturity in
 their lives. Yeah, there are some problems, some big problems..but
 discipline, respect, service, responsibility, self respect,
 accountability...these are still extremely valuable attributes that are
 demanded of our servicemen.
 
 You could do a lot worse.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372905
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Jealous Computers

2014-10-23 Thread Bruce Sorge

Please load argument disk 2. ROTFL!!! No clue what E.D.I.T.H. stands for.



 On Oct 23, 2014, at 4:04 PM, Judith Dinowitz edi...@fusionauthority.com 
 wrote:
 
 
 Another partially clips I thought you'd all enjoy:
 
 http://partiallyclips.com/2014/10/22/buried-in-computer-paper/
 
 So what do you think E.D.I.T.H. stands for?
 
 Judith
 
 http://www.flex-authority.com/
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372825
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Use your Spader sense

2014-10-23 Thread Bruce Sorge

The first time I heard of him was the movie Wall Street. I liked him then. And 
now, with Blacklist on TV, I really like him more. He’s a really good actor and 
plays an excellent villain. I am looking forward to this movie. What I like is 
Joss Whedon’s statement “Spader was my first and only choice. He’s got that 
hypnotic voice that can be eerily calm and compelling, but he’s also ver human 
and humorous. Ultron is not HAL. Spader can play all levels. He’s the guy to 
break The Avengers into pieces.” Oh, and Scarlett Johansen makes it worth 
watching as well. To answer you question, one word: Pinocchio. 


 On Oct 23, 2014, at 7:07 PM, Michael Dinowitz mdino...@houseoffusion.com 
 wrote:
 
 
 I just saw the Avengers 2 trailer and the one the thing that stood out the
 most was James Spader's voice as Ultron. There's just something about the
 cadence his voice that screams villain. Yes, I know they gave it a slight
 robotic modulation but the terror it elicits comes from him and him alone.
 
 Marvel's Avengers: Age of Ultron - Teaser Trailer (OFFICIAL) - YouTube
https://www.youtube.com/watch?v=tmeOjFno6Do
 
 Extra geek points if you know where the subject is paraphrased from

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372827
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Playoffs!

2014-10-02 Thread Bruce Sorge

I wish it were every year. I am an A’s fan. 

On Oct 2, 2014, at 9:50 AM, GMoney gm0n3...@gmail.com wrote:

 
 How sweet it is:
 
 https://www.youtube.com/watch?v=EDMJyiHIaBY
 
 Some of you seriously get to do this every year Been 29 years around
 here.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372735
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Playoffs!

2014-10-02 Thread Bruce Sorge

I didn't get a chance to watch it unfortunately. 

Sent from my iPhone 5S

 On Oct 2, 2014, at 10:04 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 Uh, hadn't you won your division for 3 straight years Not to mention 3
 straight world series appearances from 1988 to 1990, including a
 championship in 1989.
 
 I know it's been mostly heart break in the post season lately, but then
 that's true for all teams but 1 each year.
 
 How about that game on Tuesday Have you ever seen anything like that?!?!
 
 On Thu, Oct 2, 2014 at 8:56 AM, Bruce Sorge sor...@gmail.com wrote:
 
 
 I wish it were every year. I am an A’s fan.
 
 On Oct 2, 2014, at 9:50 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 How sweet it is:
 
 https://www.youtube.com/watch?v=EDMJyiHIaBY
 
 Some of you seriously get to do this every year Been 29 years around
 here.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372738
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Playoffs!

2014-10-02 Thread Bruce Sorge

And yes, we had some back to back championships. 
http://oakland.athletics.mlb.com/oak/history/postseason_results.jsp


Sent from my iPhone 5S

 On Oct 2, 2014, at 10:04 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 Uh, hadn't you won your division for 3 straight years Not to mention 3
 straight world series appearances from 1988 to 1990, including a
 championship in 1989.
 
 I know it's been mostly heart break in the post season lately, but then
 that's true for all teams but 1 each year.
 
 How about that game on Tuesday Have you ever seen anything like that?!?!
 
 On Thu, Oct 2, 2014 at 8:56 AM, Bruce Sorge sor...@gmail.com wrote:
 
 
 I wish it were every year. I am an A’s fan.
 
 On Oct 2, 2014, at 9:50 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 How sweet it is:
 
 https://www.youtube.com/watch?v=EDMJyiHIaBY
 
 Some of you seriously get to do this every year Been 29 years around
 here.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372739
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: What the iPhone 6 does better than the rest

2014-09-27 Thread Bruce Sorge

IMO, you get what you pay for. I was a devout windows and android user. I used 
to mock apple folks. Then I was offered a work in kind deal, and for some 
reason, I chose to be paid in the form of a 17 MacBook Pro. It took a while, 
but in the end, I was a convert. Now I have an iPhone, iPad and of course the 
Mac. I love them all. I love the interoperability of all three devices. I am 
looking forward to Yosemite to come out for the Mac to see what new level of 
interoperability I get. I still have two Windows machines in my house. they run 
Windows 7 and 8. I don't know why I hang onto them, but on rare occasions I 
will fire one up. I may turn one of them into a linux machine running Apache, 
PHP and ColdFusion as well as MySQL for a development web server since the 
sites I host are all on Linux servers. 
I don't think that Apple does anything revolutionary. IMO, it appears to me 
that they see what's out there, what people like and don't like, and 
make/upgrade a product that has the things that folks want, and not much of 
what they don't want. Again, my opinion. 
I don't mind that Apple waits a while to develop something that Android has 
been doing for a while. I am patient. I was not jonesing for a SWYPE keyboard, 
but as soon as I upgraded my iPhone to iOS 8, I paid the whopping .99 cents to 
get it. I am looking forward to seeing how the iWatch is going to work. From 
what I read, Apple took what Samsung has been doing with their watch, and 
making tweaks so that it's what people want, and leaving out what they don't 
want. 
In the end, its all about what you like. I won't bash a windows or android user 
(I will bash Windows 8 though) just because they like their systems. As was 
said in this thread, to each their own. 

Sent from my iPad

 On Sep 27, 2014, at 8:07 PM, Zaphod Beeblebrox zaph0d.b33bl3b...@gmail.com 
 wrote:
 
 
 The click wheel interface was pretty innovative at the time. I remember
 that my brother had one from Dell at the same time I got my first iPod
 classic. Hands down, it was easier to navigate the iPod. The other
 difference was the quality of the components.  Audiophiles would use the
 iPod along with the FLAC codec to store their digital collections because
 of the quality if the DAC.
 
 As for apple products being overpriced, I'm sure there are a lot of people
 that feel that way. I don't happen to be one of them.  I also  think that
 other companies have quality products e.g. Lenovo, but you end up spending
 a similar amount because you have to get the higher end product.
 
 On Saturday, September 27, 2014, Eric Roberts 
 ow...@threeravensconsulting.com wrote:
 
 
 How did they do an MP3 player better than anyone else?  Even the cheap
 crappy ones you can buy for 5 bucks play music just as good.  My old
 Creative Labs MP3 player that came out long before there was ever an iPod
 played music just as good as an iPod years before there was an iPod.  It
 synced with my computer's music folder...the only thing special about it
 was
 the introduction of iTunes to download music...though if I remember
 correctly, my player hooked up with Rhapsody.  I never saw what was so
 innovative about it.  Apple products are overpriced status symbols.  Ever
 since the PC's became just as powerful in the graphics department, Apple
 hasn't been anything special.  Hel...the only way they were able to improve
 their OS was to make it a Linux shell...
 
 Eric
 
 -Original Message-
 From: Vivec [mailto:gel21...@gmail.com javascript:;]
 Sent: Saturday, September 27, 2014 10:28 AM
 To: cf-community
 Subject: Re: What the iPhone 6 does better than the rest
 
 
 The apple iPod was a game changer ^_^
 They did the dedicated digital music player better than anyone else ever
 did, or has done since ;-D
 
 On 27 September 2014 11:12, Scott Stroz boyz...@gmail.com javascript:;
 wrote:
 
 
 people would claim it was a 'game changer' and that Apple
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372718
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: What the iPhone 6 does better than the rest

2014-09-24 Thread Bruce Sorge

 Disclaimer: I do not have ANYTHING to do with 4chan, I don't use
4chan, and have no vested interest whatsoever with 4Chan 

So exactly how do the photos automatically upload to 4chan? From what I
have read, the celebrity nudes that were online were posted to 4chan by the
person(s) who hacked the photos. I have not seen anything that allows
images to automatically upload to 4chan. As far as I know, the iPhone only
automatically uploads photos to iCloud and dropbox. And if you have your
Facebook app set up, it automatically uploads photos to a secure photo
gallery where they are not made public unless you specifically check the
image and upload it. Just curious where you got your information.

On Wed, Sep 24, 2014 at 10:41 AM, Sam sammyc...@gmail.com wrote:


 You forgot to mention naked photos instantly upload to 4chan

 The Apple pay is going to be GREAT!

 .



 On Wed, Sep 24, 2014 at 7:40 AM, Vivec gel21...@gmail.com wrote:
 
  For those of you wondering, here's what the iPhone 6 does better than any
  other phone out there on the market:
 
  The 64 bit A8 Processor is better and faster than anything else on the
  market.
 
  The fingerprint scanner is the best performing scanner on the market, and
  it is absolutely better than Samsung's S5 implementation
 
  The camera has an autofocus system usually reserved for DSLRs.
 
  Hand off of tasks between Apple devices is great, and a productivity
  booster for many. Pick up writing an email, an SMS, or sharing documents
  immediately between devices. (moving from your desktop to your iPad in
 your
  bedroom, for example, would be seamless)
 
  ApplePay is a tremendous innovation, with the ability to radically change
  the way we use Credit Cards
 
  So these aren't necessarily revolutionary changes, but neither has
 anything
  the competition has done been revolutionary.
 
  However, once again, Apple takes its incremental improvements and
  implements them correctly and with a marketing flair that appeals to its
  customer base. Which is why the iPhone launch always boast the best sell
  throughs of any mobile device.
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372645
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: What the iPhone 6 does better than the rest

2014-09-24 Thread Bruce Sorge

So then they're  not automatically being uploaded to 4Chan, correct? 

Sent from my iPhone 5S

 On Sep 24, 2014, at 11:43 AM, Sam sammyc...@gmail.com wrote:
 
 
 All your data automatically uploads to the iCloud, whether you
 realized it or not. Until you turn it off. Even now with the iPhone 6,
 police can't un-ecrypt your phone but they can access the your iCloud
 where it isn't encrypted. Apparently the iCloud was easy pickings for
 4chan users to grab and post. Some of these celebs said they deleted
 the images many years ago and had no idea they still existed.
 I haven't kept up, but last I heard Apple was blaming users again
 saying the accounts were hacked individually because the passwords
 were easy to guess. I'm not sure I believe that but it could be true.
 
 .
 
 On Wed, Sep 24, 2014 at 11:05 AM, Bruce Sorge sor...@gmail.com wrote:
 
  Disclaimer: I do not have ANYTHING to do with 4chan, I don't use
 4chan, and have no vested interest whatsoever with 4Chan 
 
 So exactly how do the photos automatically upload to 4chan? From what I
 have read, the celebrity nudes that were online were posted to 4chan by the
 person(s) who hacked the photos. I have not seen anything that allows
 images to automatically upload to 4chan. As far as I know, the iPhone only
 automatically uploads photos to iCloud and dropbox. And if you have your
 Facebook app set up, it automatically uploads photos to a secure photo
 gallery where they are not made public unless you specifically check the
 image and upload it. Just curious where you got your information.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372649
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: What the iPhone 6 does better than the rest

2014-09-24 Thread Bruce Sorge

And when they say they deleted the photos years ago, they probably just deleted 
them from their phone. Just because you delete something for your iPhone, does 
not automatically delete it from the cloud if you're automatically loading them 
up there. You actually have to manually delete each photo one of the time from 
the cloud. 

Sent from my iPhone 5S

 On Sep 24, 2014, at 11:43 AM, Sam sammyc...@gmail.com wrote:
 
 
 All your data automatically uploads to the iCloud, whether you
 realized it or not. Until you turn it off. Even now with the iPhone 6,
 police can't un-ecrypt your phone but they can access the your iCloud
 where it isn't encrypted. Apparently the iCloud was easy pickings for
 4chan users to grab and post. Some of these celebs said they deleted
 the images many years ago and had no idea they still existed.
 I haven't kept up, but last I heard Apple was blaming users again
 saying the accounts were hacked individually because the passwords
 were easy to guess. I'm not sure I believe that but it could be true.
 
 .
 
 On Wed, Sep 24, 2014 at 11:05 AM, Bruce Sorge sor...@gmail.com wrote:
 
  Disclaimer: I do not have ANYTHING to do with 4chan, I don't use
 4chan, and have no vested interest whatsoever with 4Chan 
 
 So exactly how do the photos automatically upload to 4chan? From what I
 have read, the celebrity nudes that were online were posted to 4chan by the
 person(s) who hacked the photos. I have not seen anything that allows
 images to automatically upload to 4chan. As far as I know, the iPhone only
 automatically uploads photos to iCloud and dropbox. And if you have your
 Facebook app set up, it automatically uploads photos to a secure photo
 gallery where they are not made public unless you specifically check the
 image and upload it. Just curious where you got your information.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372650
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: What the iPhone 6 does better than the rest

2014-09-24 Thread Bruce Sorge

I thought so. Just thought I would check. 

Sent from my iPhone 5S

 On Sep 24, 2014, at 11:52 AM, Sam sammyc...@gmail.com wrote:
 
 
 Correct, that's from a joke that was circulating last week comparing
 the iPhone 6 to a 2012 Android. I thought it was funny.
 
 .
 
 
 On Wed, Sep 24, 2014 at 11:47 AM, Bruce Sorge sor...@gmail.com wrote:
 
 So then they're  not automatically being uploaded to 4Chan, correct?
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372652
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: What the iPhone 6 does better than the rest

2014-09-24 Thread Bruce Sorge

However, there's still the issue of the touch ID being fooled with fake 
fingerprints. The guy who demonstrated that in 2013 demonstrated again with the 
iPhone 6. 

Sent from my iPhone 5S

 On Sep 24, 2014, at 4:04 PM, Judah McAuley ju...@wiredotter.com wrote:
 
 
 Answering part of my own question, it looks like ApplePay does have a
 couple of advantages over Google Wallet that are explained well in this
 article:
 http://www.macworld.com/article/2607181/why-apple-pay-could-be-the-mobile-payment-system-youll-actually-use.html
 
 It's a pretty good use case for some of the things you can do when you own
 the ecosystem in a way that Google doesn't. Cool stuff.
 
 Judah
 
 On Wed, Sep 24, 2014 at 9:37 AM, Judah McAuley ju...@wiredotter.com wrote:
 
 Couple of questions (and these are serious questions)...
 
 Is a 64-bit processor on a phone a good thing? It has historically been
 the case that 64-bit architectures were less efficient than 32-bit
 architectures unless you were running applications that needed more memory
 than a 32-bit architecture would allow. Phones are designed for smaller,
 short running processes. It seems to me that making it 64-bit is just going
 to end up being a waste of memory utilization because you need to allocate
 twice the memory for every operation.
 
 Is ApplePay substantially different than Google Wallet? I have been able
 to use Google Wallet with my phone at my grocery store for some time. Is
 Apple doing something very different or is it just an Apple version?
 
 Is the stopping of a task in one spot and picking it up in the other any
 different from what Google has been doing? I can start composing an email
 on my (Android) phone and pick it up on my (Mac) laptop without a problem.
 Same thing with documents. What is Apple doing differently?
 
 Better autofocus is cool. Not sure if it would make much difference for
 me, but that sounds cool. Fingerprint scanners are also not my thing but
 glad they are improving the tech.
 
 The bulk of what I've seen seems to be bringing feature parity to people
 invested in the Apple ecosystem who just really like the way that that
 stuff works for them. That's totally cool and what Apple should be doing. I
 just don't understand why it is being seen as super important or
 revolutionary or whatever but maybe I'm missing the details.
 
 Cheers,
 Judah
 
 On Wed, Sep 24, 2014 at 4:40 AM, Vivec gel21...@gmail.com wrote:
 
 
 For those of you wondering, here's what the iPhone 6 does better than any
 other phone out there on the market:
 
 The 64 bit A8 Processor is better and faster than anything else on the
 market.
 
 The fingerprint scanner is the best performing scanner on the market, and
 it is absolutely better than Samsung's S5 implementation
 
 The camera has an autofocus system usually reserved for DSLRs.
 
 Hand off of tasks between Apple devices is great, and a productivity
 booster for many. Pick up writing an email, an SMS, or sharing documents
 immediately between devices. (moving from your desktop to your iPad in
 your
 bedroom, for example, would be seamless)
 
 ApplePay is a tremendous innovation, with the ability to radically change
 the way we use Credit Cards
 
 So these aren't necessarily revolutionary changes, but neither has
 anything
 the competition has done been revolutionary.
 
 However, once again, Apple takes its incremental improvements and
 implements them correctly and with a marketing flair that appeals to its
 customer base. Which is why the iPhone launch always boast the best sell
 throughs of any mobile device.
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372662
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: There seems to be no end to the corruption....

2014-09-19 Thread Bruce Sorge

at this point, I don't see how heads will not roll. Anyone who knows anything 
about the NFL knows that every team has a team of investigators that include 
former police and FBI. It's not hard to find the truth, or at least get ahold 
of a police report. It's pretty obvious that coverups were occurring in order 
to bring in the all mighty dollar. It's unfortunate that those involved in this 
alleged coverup don't realize that-as the story mentioned-learning about a 
coverup is worse than just admitting the truth. I really hope that many folks - 
including Goodall - are fired and fined severely. 

Sent from my iPad

 On Sep 19, 2014, at 9:43 PM, Scott Stroz boyz...@gmail.com wrote:
 
 
  http://bit.ly/1tBfABt
 
 If any of this is true, and goes unpunished, I may be done with the NFL.
 
 -- 
 Scott Stroz
 ---
 You can make things happen, you can watch things happen or you can wonder
 what the f*k happened. - Cpt. Phil Harris
 
 http://xkcd.com/386/
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372615
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Who's rocking iOS8??

2014-09-18 Thread Bruce Sorge

I really do like the predictive keyboard. What a HUGE difference. I know
that iOS is behind the androids, but honestly I don't care. In fact, I am
glad that Apple is lagging a bit so that they have a chance to see what
folks really like and don't like. For instance, the Samsung watch thingy is
not working out as well as they would have wanted it to, and Apple is
looking hard at that and making a watch that people want. To be honest, I
doubt I'd get one because outside of the Army, I don't wear a watch.
I will try out the SWYPE keyboard. I tried it out on android devices and
like it. I need to sit down and play around with some of the other
features, but so far iOS 8 is really sweet. Can't wait for the new OSX to
come out so that my MacBook, iPad and phone play better together.






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372586
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Who's rocking iOS8??

2014-09-18 Thread Bruce Sorge

I agree scott. Both os's are very awesome in their own rights. I have used both 
and I prefer iPhones. To each his own I say. 

Sent from my iPhone 5S

 On Sep 18, 2014, at 2:28 PM, Scott Stroz boyz...@gmail.com wrote:
 
 
 Not sure I would agree that the iPhone is 'behind' Android. Yea, there are
 some features Android users have had for a while that are 'new' in the
 iPhone, but I am sure there are things in the iPhone 6 that will wind up in
 the GS6 (or whatever version will be next).
 
 Anyone who says Android is crap or iOS is crap is not worth listening to.
 Regardless of what OS your phone runs, you have an amazing piece of
 technology in your hands.
 
 I am not a fan of iOS - I hate the 'one button to rule them all'. I had an
 iPhone for 2+ years and I NEVER got used to the fact that button did NOT
 let you go 'back'.
 
 On Thu, Sep 18, 2014 at 12:16 PM, Bruce Sorge sor...@gmail.com wrote:
 
 
 I really do like the predictive keyboard. What a HUGE difference. I know
 that iOS is behind the androids, but honestly I don't care. In fact, I am
 glad that Apple is lagging a bit so that they have a chance to see what
 folks really like and don't like. For instance, the Samsung watch thingy is
 not working out as well as they would have wanted it to, and Apple is
 looking hard at that and making a watch that people want. To be honest, I
 doubt I'd get one because outside of the Army, I don't wear a watch.
 I will try out the SWYPE keyboard. I tried it out on android devices and
 like it. I need to sit down and play around with some of the other
 features, but so far iOS 8 is really sweet. Can't wait for the new OSX to
 come out so that my MacBook, iPad and phone play better together.
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372591
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Two bad choices

2014-09-09 Thread Bruce Sorge

I'd do her. 

Sent from my iPhone 5S

 On Sep 9, 2014, at 1:48 PM, C. Hatton Humphrey chumph...@gmail.com wrote:
 
 
 On Tue, Sep 9, 2014 at 12:42 PM, GMoney gm0n3...@gmail.com wrote:
 
 Your sig has a link to EastCoastConservative.comthat MIGHT be a clue as
 to which primary you are voting in :)
 
 
 Yeah, my signature has had that in it for over 6 years so the primary *I*
 am looking at is obvious.  I was trying to make it vague so others might
 share how they stood when faced with two options and neither one was really
 a stand-out.
 
 For this *specific* race we've got Gia Arnold (http://votegia.com/) against
 Rob Ortt (http://www.robortt.com/).  Inexperienced libertarian vs city
 mayor/combat vet moderate.  The Republican incumbent retired so there's no
 battle there.
 
 As for where they say they stand on things, I could vote for either of them
 and be comfortable.  I know enough about campaigns not to believe most of
 the attacks... but then again I also know that New York campaigns, even
 primaries, are dirty devious things at times.
 
 Until Later!
 C. Hatton Humphrey
 http://www.eastcoastconservative.com
 
 Every cloud does have a silver lining.  Sometimes you just have to do some
 smelting to find it.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372197
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Two bad choices

2014-09-09 Thread Bruce Sorge

she is 24

Sent from my iPad

 On Sep 9, 2014, at 4:06 PM, Sam sammyc...@gmail.com wrote:
 
 
 Three kids and still messing around?
 I might throw a leg over her but not sure I'd vote for her.
 
 .
 
 On Tue, Sep 9, 2014 at 4:03 PM, C. Hatton Humphrey chumph...@gmail.com 
 wrote:
 
 On Tue, Sep 9, 2014 at 3:51 PM, Scott Stewart webmas...@sstwebworks.com
 wrote:
 
 She's cute but she's what 17...?
 
 
 I remember reading somewhere that she's in her mid-20's and she's got
 either 2 or 3 kids.  Actually some of the attacks, especially on Facebook,
 are coming from folks that are blasting her for, abandoning her family.
 The affair that she had was the end of a dying marriage apparently and
 some folks are using her political campaign pages to shame her publicly.
 
 
 Until Later!
 C. Hatton Humphrey
 http://www.eastcoastconservative.com
 
 Every cloud does have a silver lining.  Sometimes you just have to do some
 smelting to find it.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372235
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Ray Rice

2014-09-08 Thread Bruce Sorge

Well, in the past, there have been suspensions.
In October of 2008, Adam Jones was initially suspended indefinitely for an
altercation with a bodyguard, but that was reduced to a 4 game suspension.
In 2011, Cedric Benson was suspended for 3 games for misdemeanor assault.
These are two incidents that talk of violence. There have been many
suspensions for violating the NFL's personal conduct policy, but I don't
know all the details and I am too lazy to look all of them up.

The NFL's personal conduct policy includes Criminal offenses including,
but not limited to, those involving: the use or threat of violence,
domestic violence and other forms of partner abuse So the first part,
the use or threat of violence covers this scenario. Considering how the NFL
is cracking down on players who tarnish the game, I would put my money on
him getting suspended at the very least. Below is the 2012 policy. I can't
find the one for 2014, but I would bet it's pretty similar.


http://images.nflplayers.com/mediaResources/files/2012%20Personal%20Conduct%20Policy.pdf


On Mon, Sep 8, 2014 at 4:40 PM, LRS Scout lrssc...@gmail.com wrote:


 You can't remove the size distinctions, especially from an nfl player.

 He could easily have restrained her and it's not the first time.
 On Sep 8, 2014 4:38 PM, Vivec gel21...@gmail.com wrote:

 
  Forget the woman, let's look at two men.
 
  The guy slaps Rice in the hallway.
 
  Then the guy slaps rice again inside the elevator. They push each other
  around, then the first guy comes at Rice AGAIN, a third time.
  Then Rice slaps himand he falls unconscious.
 
  If this was not a man-woman issue, what would be the verdict? Stalemate?
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372022
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Monitor Suggestions

2014-08-28 Thread Bruce Sorge

Howdy all,
I have a question regarding a new monitor. I have a MacBook Pro and
currently have an older Dell monitor. The quality is not as good as I'd
like. While I would LOVE to have an Apple monitor, I really can't justify
the cost. So, any good recommendations on a nice non-Apple monitor? I
currently have a Thunderbolt/DVI adapter and I'd like to stick with DVI.
Also, nothing smaller than 19.

Thanks and everyone have a happy, fun and safe Labor Day weekend.

Bruce


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371980
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Monitor Suggestions

2014-08-28 Thread Bruce Sorge

Matthew, minimum 19 display. Regarding IPS or TN, I don't really know
since I don't know enough about the two to make an educated decision. I
don't game on my computer (that's what my PS3 is for) and I don't watch
movies on my computer either (again, the PS3 with Netflix and Amazon
Prime). I do school work, surf the web, do web development and play around
with Photoshop. The only reason why I am even considering a new monitor is
because a few times when I slid my browser from the Dell to the laptop
display, I noticed a huge difference in quality. So based on this, not sure
what I need.

Ray, I have been looking at Samsung. They make great TV's (I own two
Samsungs) so I don't see why their monitors should be any different.

Jerry, from what I understand, if I go dual-link DVI, i should get a good
picture, right? Or am I missing something. I don't mind buying another
adapter for a different connection though.

One question that I do have, and I will do some of my own research as well;
does converting from thunderbolt to (enter connector name here) have any
affect on the resolution?

Thanks again everyone.


On Thu, Aug 28, 2014 at 12:33 PM, Ray Champagne r...@raychampagne.com
wrote:


 Samsung.  Bright colors and defined blacks.


 On Thu, Aug 28, 2014 at 10:57 AM, Jerry Milo Johnson jmi...@gmail.com
 wrote:

 
  We have 2 asus monitors, for mac minis, and they have had zero problems,
  and look great after a year.
 
  My feeling is these dvi high-res monitors have become commodity items
 again
  (they are all roughly equivalent on price and feature and display
 quality).
 
 
 
 
  On Thu, Aug 28, 2014 at 8:37 AM, Bruce Sorge sor...@gmail.com wrote:
 
  
   Howdy all,
   I have a question regarding a new monitor. I have a MacBook Pro and
   currently have an older Dell monitor. The quality is not as good as I'd
   like. While I would LOVE to have an Apple monitor, I really can't
 justify
   the cost. So, any good recommendations on a nice non-Apple monitor? I
   currently have a Thunderbolt/DVI adapter and I'd like to stick with
 DVI.
   Also, nothing smaller than 19.
  
   Thanks and everyone have a happy, fun and safe Labor Day weekend.
  
   Bruce
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371986
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Monitor Suggestions

2014-08-28 Thread Bruce Sorge

Thanks Matt,
Yes, I am actually leaning more towards HDMI now actually. This is because
some monitors I looked at and like have built in speakers. Now I just have
to head out to Best Buy to check them out, then head to Amazon for a better
deal.
This is going to be a great day. I took my final PT test for the Army, I
get to ride my bike AND hang out in the computer section of the store.


On Thu, Aug 28, 2014 at 3:31 PM, Matthew Smith chedders...@gmail.com
wrote:


 this is a cheaper tn that will do you fine(affiliate link, hope you don't
 mind):
 http://amzn.to/1sJXSc9

 it is 144 hz so you could game and 3d vision but the ps3 is nice.

 http://amzn.to/1tP9NqW

 This costs more, but is an IPS, better off angle viewing, better color
 accuracy and reproduction, overall better experience.  Hope it helps.

 I would think that hdmi is your best bet but dual link dvi is ok.  hdmi
 gives you sound but you dont have speakers so not an issue.


 On Thu, Aug 28, 2014 at 10:52 AM, Bruce Sorge sor...@gmail.com wrote:

 
  Matthew, minimum 19 display. Regarding IPS or TN, I don't really know
  since I don't know enough about the two to make an educated decision. I
  don't game on my computer (that's what my PS3 is for) and I don't watch
  movies on my computer either (again, the PS3 with Netflix and Amazon
  Prime). I do school work, surf the web, do web development and play
 around
  with Photoshop. The only reason why I am even considering a new monitor
 is
  because a few times when I slid my browser from the Dell to the laptop
  display, I noticed a huge difference in quality. So based on this, not
 sure
  what I need.
 
  Ray, I have been looking at Samsung. They make great TV's (I own two
  Samsungs) so I don't see why their monitors should be any different.
 
  Jerry, from what I understand, if I go dual-link DVI, i should get a good
  picture, right? Or am I missing something. I don't mind buying another
  adapter for a different connection though.
 
  One question that I do have, and I will do some of my own research as
 well;
  does converting from thunderbolt to (enter connector name here) have any
  affect on the resolution?
 
  Thanks again everyone.
 
 
  On Thu, Aug 28, 2014 at 12:33 PM, Ray Champagne r...@raychampagne.com
  wrote:
 
  
   Samsung.  Bright colors and defined blacks.
  
  
   On Thu, Aug 28, 2014 at 10:57 AM, Jerry Milo Johnson jmi...@gmail.com
 
   wrote:
  
   
We have 2 asus monitors, for mac minis, and they have had zero
  problems,
and look great after a year.
   
My feeling is these dvi high-res monitors have become commodity items
   again
(they are all roughly equivalent on price and feature and display
   quality).
   
   
   
   
On Thu, Aug 28, 2014 at 8:37 AM, Bruce Sorge sor...@gmail.com
 wrote:
   

 Howdy all,
 I have a question regarding a new monitor. I have a MacBook Pro and
 currently have an older Dell monitor. The quality is not as good as
  I'd
 like. While I would LOVE to have an Apple monitor, I really can't
   justify
 the cost. So, any good recommendations on a nice non-Apple
 monitor? I
 currently have a Thunderbolt/DVI adapter and I'd like to stick with
   DVI.
 Also, nothing smaller than 19.

 Thanks and everyone have a happy, fun and safe Labor Day weekend.

 Bruce



   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371991
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Monitor Suggestions

2014-08-28 Thread Bruce Sorge

I'll have to install that. Thanks.


On Thu, Aug 28, 2014 at 3:49 PM, Ray Champagne r...@raychampagne.com wrote:


 If you have the amazon price check app on your phone, you can scan the bar
 code at BB and then ask them to match.  I'm pretty sure the new CEO there
 instituted this policy a while back to try and battle back at Amazon.  That
 way you get the best price AND have them in your hand today!





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371993
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Monitor Suggestions

2014-08-28 Thread Bruce Sorge

that's because of people like me who use Red Laser I bet.


On Thu, Aug 28, 2014 at 4:29 PM, Jerry Milo Johnson jmi...@gmail.com
wrote:


 speaking of price checking on phones, both my local Target and my local
 Walmart now block and interrupt data signals on phones, so you cannot use
 the internet reliably in the store.

 (and no, it wasnt just bad signal, since the pharmacy person kept telling
 people no, the new walmart pharmacy app wont work inside the store, you
 have to go over to the door.)




 On Thu, Aug 28, 2014 at 3:53 PM, Bruce Sorge sor...@gmail.com wrote:

 
  I'll have to install that. Thanks.
 
 
  On Thu, Aug 28, 2014 at 3:49 PM, Ray Champagne r...@raychampagne.com
  wrote:
 
  
   If you have the amazon price check app on your phone, you can scan the
  bar
   code at BB and then ask them to match.  I'm pretty sure the new CEO
 there
   instituted this policy a while back to try and battle back at Amazon.
  That
   way you get the best price AND have them in your hand today!
  
  
  
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371997
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Monitor Suggestions

2014-08-28 Thread Bruce Sorge

11B

Sent from my iPhone 5S

 On Aug 28, 2014, at 7:31 PM, Matthew Smith chedders...@gmail.com wrote:
 
 
 What do you do in the Army?  13M, e4 here, got out in 1998.
 
 
 On Thu, Aug 28, 2014 at 2:41 PM, Bruce Sorge sor...@gmail.com wrote:
 
 
 that's because of people like me who use Red Laser I bet.
 
 
 On Thu, Aug 28, 2014 at 4:29 PM, Jerry Milo Johnson jmi...@gmail.com
 wrote:
 
 
 speaking of price checking on phones, both my local Target and my local
 Walmart now block and interrupt data signals on phones, so you cannot use
 the internet reliably in the store.
 
 (and no, it wasnt just bad signal, since the pharmacy person kept telling
 people no, the new walmart pharmacy app wont work inside the store, you
 have to go over to the door.)
 
 
 
 
 On Thu, Aug 28, 2014 at 3:53 PM, Bruce Sorge sor...@gmail.com wrote:
 
 
 I'll have to install that. Thanks.
 
 
 On Thu, Aug 28, 2014 at 3:49 PM, Ray Champagne r...@raychampagne.com
 wrote:
 
 
 If you have the amazon price check app on your phone, you can scan
 the
 bar
 code at BB and then ask them to match.  I'm pretty sure the new CEO
 there
 instituted this policy a while back to try and battle back at Amazon.
 That
 way you get the best price AND have them in your hand today!
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:372000
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: What every company should know about Agile development!

2014-08-17 Thread Bruce Sorge

The timing of this article is perfect. I am doing a 1500 word essay on a 
development methodology, and I chose Agile. I'll reference this article.  

Sent from my iPhone 5S

 On Aug 14, 2014, at 7:48 PM, Vivec gel21...@gmail.com wrote:
 
 
 http://www.technologyreview.com/view/528651/what-every-company-should-know-about-agile-software-development/
 
 Thought this was a good article in light of recent discussion.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371962
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


My future is around the corner, what to do...

2014-08-01 Thread Bruce Sorge

OK, so most of not all of you know that I'll be retiring from the Army in a
year (actually, 1 OCT 15, but I will be home on a 50 day vacation next
August). Anyway, I'll have my BS in IT with a general concentration in
November of this year. I am seriously considering going for my MS in
business or management.
So my goal when I retire is to land a management job in an IT shop in or
near Colorado Springs. Since I have been out of the civilian world for the
better part of seven years, what should I do to make myself marketable at
the management level? I have of course solid leadership experience in the
Army for the better part of 17+ years, and I have previous IT experience as
a ColdFusion, PHP, .NET, MySQL and MS SQL Server as a web developer, and my
PHP, CF and MySQL skills are still current as I do side jobs for folks.
But, I don't want to be a worker bee at the age of 52 when I retire. I know
having a degree and leadership experience helps. I am specifically talking
about technical skills. I want to make sure I can walk the walk, not just
throw out current technology buzzwords in any future interviews I will have.


TIA,

Bruce


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371901
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: My future is around the corner, what to do...

2014-08-01 Thread Bruce Sorge

Thanks. I am working on getting my clearance back. 

Sent from my iPhone 5S

 On Aug 1, 2014, at 10:30 PM, Maureen mamamaur...@gmail.com wrote:
 
 
 If you have or can obtain a security clearance, there are tons of jobs
 in with the government and with government contractors in the Colorado
 Springs area.  The Air Force currently has an IT management position
 open that pays up to 100K per year.  Look at some of the openings on
 usajobs.gov and see what the requirements are.  Lots of demand for  IT
 Security, it pays well and is not really that hard to learn.
 
 On Fri, Aug 1, 2014 at 5:35 PM, Bruce Sorge sor...@gmail.com wrote:
 
 OK, so most of not all of you know that I'll be retiring from the Army in a
 year (actually, 1 OCT 15, but I will be home on a 50 day vacation next
 August). Anyway, I'll have my BS in IT with a general concentration in
 November of this year. I am seriously considering going for my MS in
 business or management.
 So my goal when I retire is to land a management job in an IT shop in or
 near Colorado Springs. Since I have been out of the civilian world for the
 better part of seven years, what should I do to make myself marketable at
 the management level? I have of course solid leadership experience in the
 Army for the better part of 17+ years, and I have previous IT experience as
 a ColdFusion, PHP, .NET, MySQL and MS SQL Server as a web developer, and my
 PHP, CF and MySQL skills are still current as I do side jobs for folks.
 But, I don't want to be a worker bee at the age of 52 when I retire. I know
 having a degree and leadership experience helps. I am specifically talking
 about technical skills. I want to make sure I can walk the walk, not just
 throw out current technology buzzwords in any future interviews I will have.
 
 
 TIA,
 
 Bruce
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371906
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Crossfit experiences?

2014-07-25 Thread Bruce Sorge

Everything you need to know about crossfit. Hahaha. 
http://youtu.be/qnjYyfkcaNI
Sent from my iPhone 5S

 On Jul 25, 2014, at 11:03 AM, Judah McAuley ju...@wiredotter.com wrote:
 
 
 I'm a joiner, I like doing things with people, especially hard things, but
 I'm definitely not a cult person. I have way too many things I love in my
 life to get too caught up in the gym all the time.
 
 Cheers,
 Judah
 
 
 On Fri, Jul 25, 2014 at 7:59 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 If you decide to do it, please don't become one of those people for whom it
 becomes their lives. I know several people who cannot carry on a
 conversation without bringing up crossfit.
 
 
 On Fri, Jul 25, 2014 at 9:28 AM, Judah McAuley ju...@wiredotter.com
 wrote:
 
 
 I'm thinking about giving Crossfit a try. They have a Jump Start class
 that
 is 75 minutes, twice a week for 4 weeks as an intro where they do body
 analysis, help figure out your personal limitations in movement, set up
 core exercises and such. Sounds like the sort of structured introduction
 I'd like and I find the functional/integrative approach to working out
 appealing.
 
 Anyone here had experiences pro/con with Crossfit?
 
 Cheers,
 Judah
 
 
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371861
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: On the subject of responsibility, this seems on point.

2014-07-16 Thread Bruce Sorge

Duffleblog rocks. 

Sent from my iPhone 5S

 On Jul 16, 2014, at 9:36 AM, LRS Scout lrssc...@gmail.com wrote:
 
 
 Haha
 On Jul 16, 2014 9:30 AM, Jerry Milo Johnson jmi...@gmail.com wrote:
 
 
 
 http://www.duffelblog.com/2014/07/green-beret-ponders-just-war-theory-shooting-man-face/#!bfZUAv
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371633
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Slaughter of civilians by Israel...

2014-07-15 Thread Bruce Sorge

Tim is right. According to the Protocol Additional to the Geneva
Conventions of 12 August, 1949 and relating to the Protection of Victims of
International Armed Conflicts (Protocol l), 8 June 1977, launching an
attack on a military target that is being shielded by civilians is not off
limits. Part of this states
(c) effective advance warning shall be given of attacks which may affect
the civilian population, unless circumstances do not permit.

Of course when you read all of it, they go to great length to deter such
operations, but it's not prohibited per se.

http://www.icrc.org/ihl/WebART/470-750073?OpenDocument


On Tue, Jul 15, 2014 at 4:39 PM, Eric Roberts 
ow...@threeravensconsulting.com wrote:


 No...it wasn't flares...it was explosive ordinace.

 Taught by who? Atilla the Hun?  If you were taught what they have done is
 OK, then the Army sure has changed A LOT since I was in.  Israel has never
 avoided collateral damage.

 -Original Message-
 From: LRS Scout [mailto:lrssc...@gmail.com]
 Sent: Tuesday, July 15, 2014 2:21 PM
 To: cf-community
 Subject: RE: Slaughter of civilians by Israel...


 In the first instance you're talking about flares, not an offensive weapon.

 The others aren't war crimes, they have acted within the rules of land
 warfare as I've been taught them.

 Civilian population used as shields have the same legal rights as sand
 bags.

 They've gone out of their way to avoid collateral damage.
 On Jul 15, 2014 3:07 PM, Eric Roberts ow...@threeravensconsulting.com
 wrote:




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371597
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Slaughter of civilians by Israel...

2014-07-15 Thread Bruce Sorge

While there have been incidents of collateral damage caused by US forces
(usually planes dropping huge ass bombs), we do try very hard not to do
this. Case in point.
When I was in Tikrit back in '05, the insurgents would launch four or five
attacks against our FOB each week during the fighting season from orchards.
We already had these locations indexed, so as soon as they shot at us, we
fired back with our artillery. However, the the game changer was when they
started launching attacks from within the city. Once that happened, no more
counter attacks with artillery. Instead, we'd send a QRF into the sector
and kick down doors. The problem though was that they were not using homes
to attack us, they were using pickup trucks with the rocket launchers or
mortars in the bed, hidden using 55 gallon drums or tarps. So we pretty
much had to suck it up when it came to attacks from then on.

As far as what goes through the mind of someone who has to do this, I don't
know. I am an infantryman. I kick down doors and go on patrols looking for
the enemy,  I don't fire artillery on them.


On Tue, Jul 15, 2014 at 5:21 PM, Maureen mamamaur...@gmail.com wrote:


 How terribly hard it must be on the soldiers who are ordered to carry
 out these missions, even given that they are permitted.  Knowing that
 you are firing on non-combatants must be awful



 On Tue, Jul 15, 2014 at 5:04 PM, Bruce Sorge sor...@gmail.com wrote:
 
  Tim is right. According to the Protocol Additional to the Geneva
  Conventions of 12 August, 1949 and relating to the Protection of Victims
 of
  International Armed Conflicts (Protocol l), 8 June 1977, launching an
  attack on a military target that is being shielded by civilians is not
 off
  limits. Part of this states
  (c) effective advance warning shall be given of attacks which may affect
  the civilian population, unless circumstances do not permit.
 
  Of course when you read all of it, they go to great length to deter such
  operations, but it's not prohibited per se.
 
  http://www.icrc.org/ihl/WebART/470-750073?OpenDocument

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371601
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: how can people be this dumb?

2014-07-10 Thread Bruce Sorge

Hah. Blown head gasket, cracked heads or cracked block. Either way they got 
what they deserved. 

Sent from my iPad

 On Jul 10, 2014, at 1:02 PM, Scott Stewart webmas...@sstwebworks.com wrote:
 
 
 They set up the fuel system with a switch that dumps extra fuel causing an
 over rich fuel situation. I was sitting at a light in Winchester  VA when
 one of these knuckleheads pulled up and started revving  I started
 laughing when the smoke turned from black to white :)
 On Jul 10, 2014 12:50 PM, C. Hatton Humphrey chumph...@gmail.com wrote:
 
 
 I saw this as well and looked it up... it's not coal, rather it's diesel
 set to burn in a way that produces the smoke.
 
 Regardless, it's stupid... I used to know who wasn't paying for their tires
 by hearing them burn-out.  This strikes me as much the same.
 
 Until Later!
 C. Hatton Humphrey
 http://www.eastcoastconservative.com
 
 Every cloud does have a silver lining.  Sometimes you just have to do some
 smelting to find it.
 
 
 On Thu, Jul 10, 2014 at 11:16 AM, Cameron Childress camer...@gmail.com
 wrote:
 
 
 On Thu, Jul 10, 2014 at 11:13 AM, Zaphod Beeblebrox wrote:
 
 
 I'd seen this a few weeks back, but really figured I'd see something on
 snopes about it since you've really got to be an idiot to do
 thisalasit does look like this is really happening
 
 I saw this on FB last week.
 
 Morons. Willful ignorance at it's worst.
 
 -Cameron
 
 ...
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371318
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: A little VBA help please

2014-06-29 Thread Bruce Sorge

I'll give that a try Judith.

Sent from my iPhone 5S

 On Jun 28, 2014, at 10:42 PM, Maureen mamamaur...@gmail.com wrote:
 
 
 Try setting  the SQL statement to a variable, then execute the DoCmd.RunSQL.
 
 Dim SQL As String
 
SQL = INSERT INTO Borrowed (CustID, CDDVDID, DateOut, DueDate)
 VALUES(  Me.Combo0  ,  Me.Combo2  , #  Me.Text6   # , # 
 Me.Text8  #);
 
DoCmd.RunSQL SQL
 
 
 
 
 On Sat, Jun 28, 2014 at 2:26 PM, Bruce Sorge sor...@gmail.com wrote:
 
 Hey there community,
 I have a class project that is pissing me off. I have this bit of VBA code:
 
 DoCmd.RunSQL INSERT INTO Borrowed (CustID, CDDVDID, DateOut, DueDate)
 VALUES(  Me.Combo0  ,  Me.Combo2  , #  Me.Text6   # , # 
 Me.Text8  #);
 
 It does not work. I get a syntax error and the entire line is highlighted
 in red. I am sure it has something to do with my date fields (combo0 and
 combo2, and yes, I know that you should give meaningful names to your
 controls, but right now that's the least of my issues).
 
 Any VBA experts out there that can show my what will probably become a
 painfully obvious omission of some double quotes or something?
 
 Also, I'd like to point out that when I remove the pound signs, the current
 time is entered and not the date. The control is MS Access's datepicker.
 
 Bruce
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371122
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: A little VBA help please

2014-06-29 Thread Bruce Sorge

Actually without the #, everything works fine. The only issue is that the date 
picker inserts the time instead of the date. Access needs the #'s to enter 
dates from what I understand. This is why can't stand access.

Sent from my iPhone 5S

 On Jun 28, 2014, at 10:34 PM, C. Hatton Humphrey chumph...@gmail.com 
 wrote:
 
 
 On Sat, Jun 28, 2014 at 2:26 PM, Bruce Sorge sor...@gmail.com wrote:
 
 DoCmd.RunSQL
 
 
 Took a look at
 http://bytes.com/topic/access/answers/199515-docmd-runsql-not-reading-variable-combo-box
 
 Apparently the DoCmd.RunSQL doesn't know the Me object (or so the thread
 says).  Best help I can give on a short search.
 
 
 Until Later!
 C. Hatton Humphrey
 http://www.eastcoastconservative.com
 
 Every cloud does have a silver lining.  Sometimes you just have to do some
 smelting to find it.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371121
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: A little VBA help please

2014-06-29 Thread Bruce Sorge

Oh no. I could go on and on, but that would have to start a whole new thread.

Sent from my iPhone 5S

 On Jun 29, 2014, at 11:19 AM, Zaphod Beeblebrox zaph0d.b33bl3b...@gmail.com 
 wrote:
 
 
 surely that can’t be the only reason ;)
 
 
 On Jun 29, 2014, at 9:37 AM, Bruce Sorge sor...@gmail.com wrote:
 
 This is why can't stand access
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371124
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: A little VBA help please

2014-06-29 Thread Bruce Sorge

Yeah still the same issue. Screw it. I'll take a 0 on this assignment. I
don't care. Still going to get an A in the class.


On Sun, Jun 29, 2014 at 1:18 PM, Maureen mamamaur...@gmail.com wrote:


 Would probably help if I had the syntax right:

  Dim SQL As String

 SQL = INSERT INTO Borrowed (CustID, CDDVDID, DateOut, DueDate)
 VALUES(  Me.Combo0  ,  Me.Combo2  , #  Me.Text6   # , # 
 Me.Text8  #);

 DoCmd.RunSQL SQL

 On Sun, Jun 29, 2014 at 10:37 AM, Bruce Sorge sor...@gmail.com wrote:
 
  I'll give that a try Judith.
 
  Sent from my iPhone 5S
 
  On Jun 28, 2014, at 10:42 PM, Maureen mamamaur...@gmail.com wrote:
 
 
  Try setting  the SQL statement to a variable, then execute the
 DoCmd.RunSQL.
 
  Dim SQL As String
 
 SQL = INSERT INTO Borrowed (CustID, CDDVDID, DateOut, DueDate)
  VALUES(  Me.Combo0  ,  Me.Combo2  , #  Me.Text6   # , # 
  Me.Text8  #);
 
 DoCmd.RunSQL SQL
 
 
 
 
  On Sat, Jun 28, 2014 at 2:26 PM, Bruce Sorge sor...@gmail.com wrote:
 
  Hey there community,
  I have a class project that is pissing me off. I have this bit of VBA
 code:
 
  DoCmd.RunSQL INSERT INTO Borrowed (CustID, CDDVDID, DateOut, DueDate)
  VALUES(  Me.Combo0  ,  Me.Combo2  , #  Me.Text6   # , # 
  Me.Text8  #);
 
  It does not work. I get a syntax error and the entire line is
 highlighted
  in red. I am sure it has something to do with my date fields (combo0
 and
  combo2, and yes, I know that you should give meaningful names to your
  controls, but right now that's the least of my issues).
 
  Any VBA experts out there that can show my what will probably become a
  painfully obvious omission of some double quotes or something?
 
  Also, I'd like to point out that when I remove the pound signs, the
 current
  time is entered and not the date. The control is MS Access's
 datepicker.
 
  Bruce
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371126
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


A little VBA help please

2014-06-28 Thread Bruce Sorge

Hey there community,
I have a class project that is pissing me off. I have this bit of VBA code:

 DoCmd.RunSQL INSERT INTO Borrowed (CustID, CDDVDID, DateOut, DueDate)
VALUES(  Me.Combo0  ,  Me.Combo2  , #  Me.Text6   # , # 
Me.Text8  #);

It does not work. I get a syntax error and the entire line is highlighted
in red. I am sure it has something to do with my date fields (combo0 and
combo2, and yes, I know that you should give meaningful names to your
controls, but right now that's the least of my issues).

Any VBA experts out there that can show my what will probably become a
painfully obvious omission of some double quotes or something?

Also, I'd like to point out that when I remove the pound signs, the current
time is entered and not the date. The control is MS Access's datepicker.

Bruce


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371118
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Minds that change

2014-06-24 Thread Bruce Sorge

Having fought in both Desert Storm and OIF, I'll say this:

I fully supported Desert Storm, as did most of the world. To me it was a
just war for a good cause. Nuff said.

Regarding OIF, I was all for it. I believed that there were WMD's (proof
was finally discovered recently), and I believed that Saddam should not
have stayed in power. However, I completely am against how the war was
executed almost from the beginning. With Rumsfeld supporting a much smaller
invasion force, to the complete dismantling of the Iraqi Army (IA). There
were several mistakes made in the opening of the war. One of the biggest
ones was assuming that Turkey would be OK with the 4th Infantry Division
launching their part of the invasion from their country. Of course this
never happened, so we ended up invading Iraq from only the South, not the
North and South as was originally planned. That left an entire Mechanized
Infantry division with nothing to do but float around the ocean until they
could reach a Southern port to move in.

Dismantling the IA did nothing more than produce home grown insurgents
since the Army was the only source of income for these men. And then trying
to rebuild the IA didn't work out well either as they had neither the
inclination to learn our tactics nor did they have any motivation to
actually try and fight the insurgents since 1). The IA, like the Afghan
Army were infiltrated with Taliban, and 2). As long as coalition forces
were there, they knew that we'd do most of the fighting. The result is
unfolding in that country now. An Army that was otherwise well equipped,
but soldiers that are lazy and cowardly.

I'm completely against an further action from our servicemen and women
today beyond protecting the Embassy and the personnel assigned to work
there. No advise and assist teams should step foot into that country. They
had the opportunity to have us stay longer to continue training their sorry
ass soldiers, but Maliki didn't want to sign a Status of Forces Agreement
(SOFA), so we cut bait and left. Now that the shit has hit the fan, Maliki
is all for a SOFA. I say tough shit. You got what you wanted - Coalition
forces out of your country. Now deal with the consequences on your own.


On Tue, Jun 24, 2014 at 1:27 PM, Maureen mamamaur...@gmail.com wrote:


 I have all my emails from this list since I joined, and occasionally I
 will search them to find a post that I made.  Today, just for fun, I
 searched for posts I made or replied to  about Iraq, curious to see
 how much - if any - my opinion had changed.  Not much.

 But I was stunned by how different the views posted lately by some of
 the list members vary from what they felt back in 2004/2005.

 If you changed your mind about the Iraq War, I am curious as to why.
 Also, how do you feel about troops going back in to attempt to fix the
 current mess.

 Anyone feel like sharing?

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371076
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: I thought Hussein didn't have chemical weapons...

2014-06-19 Thread Bruce Sorge

The article is underestimating the ingenuity of these folks. As someone who
has been there several times, and has seen how they can take what to the
average person is a bunch of junk and turn it into a weapon. Just because
they live in mud huts does not mean they don't know how to build a weapon
out of just about anything they can get their hands on.


On Thu, Jun 19, 2014 at 3:02 PM, Eric Roberts 
ow...@threeravensconsulting.com wrote:


 Here is the complete section:

 16.32 Isis jihadists have seized a chemical weapons facility built by
 Saddam
 Hussein which contains a stockpile of old weapons, State Department
 officials have told the Wall Street Journal:

 Quote U.S. officials don't believe the Sunni militants will be able to
 create a functional chemical weapon from the material. The weapons
 stockpiled at the Al Muthanna complex are old, contaminated and hard to
 move, officials said.

 Nonetheless, the capture of the chemical-weapon stockpile by the forces of
 the Islamic State of Iraq and al-Sham, known as ISIS or ISIL, the militant
 group that is seizing territory in the country, has grabbed the attention
 of
 the U.S.

 We remain concerned about the seizure of any military site by the ISIL,
 Jen Psaki, the State Department spokeswoman, said in a written statement.
 We do not believe that the complex contains CW materials of military value
 and it would be very difficult, if not impossible, to safely move the
 materials.





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:371055
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Serious question

2014-05-27 Thread Bruce Sorge

OK, so my wife is really into Anime and Manga. What are those events that
they have where all of these folks gather. I'd like to surprise her and
take her to one near the Columbus, GA area. I am thinking ComicCon, but I
am not sure.


Thanks,
Bruce


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370459
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Serious question

2014-05-27 Thread Bruce Sorge

Cool. Thanks. 

Sent from my iPhone 5S

 On May 27, 2014, at 12:21 PM, Maureen mamamaur...@gmail.com wrote:
 
 
 Dragoncon in Atlanta on Labor Day weekend is probably the closest to you.
 http://dragoncon.org/
 
 Comic Con is in San Diego and tickets are very hard to get.
 http://comic-con.org/cci/
 
 Here is a list of cons.  Not sure how current it is, but it looks like
 it has most of them.
 http://animecons.com/events/
 
 On Tue, May 27, 2014 at 12:09 PM, Bruce Sorge sor...@gmail.com wrote:
 
 OK, so my wife is really into Anime and Manga. What are those events that
 they have where all of these folks gather. I'd like to surprise her and
 take her to one near the Columbus, GA area. I am thinking ComicCon, but I
 am not sure.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370461
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


HUGE favor

2014-05-27 Thread Bruce Sorge

Ok, here's the thing. I am supposed to go to Korea in October. The only issue I 
have with this is that I'll end up retiring from the army from Korea. Basically 
it's a huge pain in the ass to retire from overseas. So my personnel dept is 
doing up some paperwork to delete my assigner. The only angle we have is an 
exception to policy. Basically, it's saying I have a genuine  job offer that 
starts October 1st of next year. So here's the favor. Is anyone on this list 
who owns their own company willing to send me a job offer? Of course it's not a 
real one, but the Army does not know that nor will they ever know that. 

Thanks,

Bruce

Sent from my iPhone 5S

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370464
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Serious question

2014-05-27 Thread Bruce Sorge

I'd love to take her to that, but not from Ga to Chicago. The links Maureen 
sent seem promising for Atlanta. 

Sent from my iPhone 5S

 On May 27, 2014, at 12:52 PM, Judah McAuley ju...@wiredotter.com wrote:
 
 
 I believe that the largest Con for Anime is Anime Central, ACEN. It's held
 in Chicago every year. I have not been, as I'm not an anime fan, but from
 others that are into that sort of thing, I hear that it is pretty
 spectacular for them.
 
 http://www.acen.org/
 
 Cheers,
 Judah
 
 
 On Tue, May 27, 2014 at 9:09 AM, Bruce Sorge sor...@gmail.com wrote:
 
 
 OK, so my wife is really into Anime and Manga. What are those events that
 they have where all of these folks gather. I'd like to surprise her and
 take her to one near the Columbus, GA area. I am thinking ComicCon, but I
 am not sure.
 
 
 Thanks,
 Bruce
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370465
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: HUGE favor

2014-05-27 Thread Bruce Sorge

Thanks man. I appreciate it, not This has to happen in the next couple days. 

Sent from my iPhone 5S

 On May 27, 2014, at 1:55 PM, Judah McAuley ju...@wiredotter.com wrote:
 
 
 I've been doing contract work under my social security number but have been
 planning to stop that and get an EIN and such. If there isn't anyone else
 on the list who can help you out more quickly, I'll get that taken care of
 and then I'll happily work with you to make things work out for you.
 
 Cheers,
 Judah
 
 
 On Tue, May 27, 2014 at 10:36 AM, Bruce Sorge sor...@gmail.com wrote:
 
 
 Ok, here's the thing. I am supposed to go to Korea in October. The only
 issue I have with this is that I'll end up retiring from the army from
 Korea. Basically it's a huge pain in the ass to retire from overseas. So my
 personnel dept is doing up some paperwork to delete my assigner. The only
 angle we have is an exception to policy. Basically, it's saying I have a
 genuine  job offer that starts October 1st of next year. So here's the
 favor. Is anyone on this list who owns their own company willing to send me
 a job offer? Of course it's not a real one, but the Army does not know that
 nor will they ever know that.
 
 Thanks,
 
 Bruce
 
 Sent from my iPhone 5S
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370467
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Serious question

2014-05-27 Thread Bruce Sorge

Holy crap, I had no idea that this stuff was so huge. I guess that explains
why she can watch new Anime every single day in the three + years we've
been together.


On Tue, May 27, 2014 at 3:03 PM, Larry C. Lyons larrycly...@gmail.comwrote:


 DragonCon is great - its been going for at least 20 may 30 years. Well
 worth attending one.

 Also you may want to check out InterventionCon in Rockville MD at the
 end of August.
 http://interventioncon.com/

 Both have big Anime and Manga.

 There's also Otacon http://otakon.com/ that's almost a pure Anime
 festival.

 Also check out Anime Nation they have a list of Anime and Manga
 conventions from what I remember.

 http://www.animenation.com/





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370474
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Sandy Hook Truther Comes Forward, Provides Photos Of Stolen Memorial Signs In His Living Room | The Daily Banter

2014-05-26 Thread Bruce Sorge

Good answer. Thanks. 

Sent from my iPad

 On May 26, 2014, at 9:55 AM, Larry C. Lyons larrycly...@gmail.com wrote:
 
 
 I have not met them.
 
 On Sun, May 25, 2014 at 2:56 PM, Bruce Sorge sor...@gmail.com wrote:
 
 Except that I personally know people on the left and left of center who 
 believe this crap as well.  explain that please.
 
 Sent from my iPad
 
 On May 25, 2014, at 2:33 PM, Larry C. Lyons larrycly...@gmail.com wrote:
 
 
 Mainly because each and every time I've looked into the so called
 Sandy Hook truthers, I've found people who serious believe the entire
 black un helicopter thing. These people are on the more radical end of
 the right wing spectrum. Its not a matter of mere labeling its a fact.
 
 On Sun, May 25, 2014 at 1:44 PM, Jerry Milo Johnson jmi...@gmail.com 
 wrote:
 
 No doubt, the dude needs a full on nut shot.
 
 And Larry, why the instant attack and labeling? It demeans your arguments.
 
 It very well may be that this tool is right-leaning. And the odds are that
 he does listen to Alex Jones and all of his conspiracy crap (which I don't
 think he believes, but it is a schtick he is playing to rake in the big
 bucks). (If not, then Jones' marketing has a golden opportunity with this
 guy)
 
 But you are painting with the wrong brush on this one, I think.
 (and this is the stuff from you, the labeling and dismissing of large
 groups of people that drive me crazy)
 
 On another note, I hope they thought to check the original images sent to
 the paper for embedded exif/iptc metadata, like even maybe gps location?
 
 
 
 
 On Sun, May 25, 2014 at 1:10 PM, Larry C. Lyons 
 larrycly...@gmail.comwrote:
 
 
 Sandy Hook Truthers are always right wing extremists. Without
 exception. In fact I'd be surprised if there was one left of center
 person involved. Interesting to see who is affiliated with these
 truthers, although the accusations of Israeli involvement are
 characteristic of the extreme left anti-semites.
 
 http://en.wikipedia.org/wiki/Sandy_Hook_truthers
 
 On Sun, May 25, 2014 at 11:53 AM, LRS Scout lrssc...@gmail.com wrote:
 
 When did he mention his political affiliations?
 On May 25, 2014 11:44 AM, Larry C. Lyons larrycly...@gmail.com
 wrote:
 
 http://thedailybanter.com/2014/05/exclusive-sandy-hook-truther-comes-forward-provides-photos-of-stolen-memorial-signs-in-his-living-room/
 
 Simply disgusting. Amazing how far these reich wing nuts have fallen
 off the edge that they would do something this contemptuous, and
 disgusting.
 
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370456
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Sandy Hook Truther Comes Forward, Provides Photos Of Stolen Memorial Signs In His Living Room | The Daily Banter

2014-05-25 Thread Bruce Sorge

Good question. Larry?

Sent from my iPad

 On May 25, 2014, at 11:53 AM, LRS Scout lrssc...@gmail.com wrote:
 
 
 When did he mention his political affiliations?
 On May 25, 2014 11:44 AM, Larry C. Lyons larrycly...@gmail.com wrote:
 
 
 
 http://thedailybanter.com/2014/05/exclusive-sandy-hook-truther-comes-forward-provides-photos-of-stolen-memorial-signs-in-his-living-room/
 
 Simply disgusting. Amazing how far these reich wing nuts have fallen
 off the edge that they would do something this contemptuous, and
 disgusting.
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370443
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Sandy Hook Truther Comes Forward, Provides Photos Of Stolen Memorial Signs In His Living Room | The Daily Banter

2014-05-25 Thread Bruce Sorge

I personally know many nonconservative personnel who actually believe in all 
these conspiracies as well.

Sent from my iPhone 5S

 On May 25, 2014, at 12:09 PM, Zaphod Beeblebrox zaph0d.b33bl3b...@gmail.com 
 wrote:
 
 
 you are right, it didn't mention his political leanings, but the whole
 premise of the Sandy Hook truthers is that the government created a hoax in
 order to create legislation to ban guns.   Not many liberals fight those
 kinds of fights.
 
 
 On Sun, May 25, 2014 at 10:53 AM, LRS Scout lrssc...@gmail.com wrote:
 
 
 When did he mention his political affiliations?
 On May 25, 2014 11:44 AM, Larry C. Lyons larrycly...@gmail.com wrote:
 
 http://thedailybanter.com/2014/05/exclusive-sandy-hook-truther-comes-forward-provides-photos-of-stolen-memorial-signs-in-his-living-room/
 
 Simply disgusting. Amazing how far these reich wing nuts have fallen
 off the edge that they would do something this contemptuous, and
 disgusting.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370446
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Sandy Hook Truther Comes Forward, Provides Photos Of Stolen Memorial Signs In His Living Room | The Daily Banter

2014-05-25 Thread Bruce Sorge

Except that I personally know people on the left and left of center who believe 
this crap as well.  explain that please. 

Sent from my iPad

 On May 25, 2014, at 2:33 PM, Larry C. Lyons larrycly...@gmail.com wrote:
 
 
 Mainly because each and every time I've looked into the so called
 Sandy Hook truthers, I've found people who serious believe the entire
 black un helicopter thing. These people are on the more radical end of
 the right wing spectrum. Its not a matter of mere labeling its a fact.
 
 On Sun, May 25, 2014 at 1:44 PM, Jerry Milo Johnson jmi...@gmail.com wrote:
 
 No doubt, the dude needs a full on nut shot.
 
 And Larry, why the instant attack and labeling? It demeans your arguments.
 
 It very well may be that this tool is right-leaning. And the odds are that
 he does listen to Alex Jones and all of his conspiracy crap (which I don't
 think he believes, but it is a schtick he is playing to rake in the big
 bucks). (If not, then Jones' marketing has a golden opportunity with this
 guy)
 
 But you are painting with the wrong brush on this one, I think.
 (and this is the stuff from you, the labeling and dismissing of large
 groups of people that drive me crazy)
 
 On another note, I hope they thought to check the original images sent to
 the paper for embedded exif/iptc metadata, like even maybe gps location?
 
 
 
 
 On Sun, May 25, 2014 at 1:10 PM, Larry C. Lyons larrycly...@gmail.comwrote:
 
 
 Sandy Hook Truthers are always right wing extremists. Without
 exception. In fact I'd be surprised if there was one left of center
 person involved. Interesting to see who is affiliated with these
 truthers, although the accusations of Israeli involvement are
 characteristic of the extreme left anti-semites.
 
 http://en.wikipedia.org/wiki/Sandy_Hook_truthers
 
 On Sun, May 25, 2014 at 11:53 AM, LRS Scout lrssc...@gmail.com wrote:
 
 When did he mention his political affiliations?
 On May 25, 2014 11:44 AM, Larry C. Lyons larrycly...@gmail.com
 wrote:
 
 http://thedailybanter.com/2014/05/exclusive-sandy-hook-truther-comes-forward-provides-photos-of-stolen-memorial-signs-in-his-living-room/
 
 Simply disgusting. Amazing how far these reich wing nuts have fallen
 off the edge that they would do something this contemptuous, and
 disgusting.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370451
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Shipwrecked camera found underwater after 2 years with photos intact - British Columbia - CBC News

2014-05-23 Thread Bruce Sorge

The chain smokers weren't there to lay the beat. 

Sent from my iPhone 5S

 On May 23, 2014, at 11:36 AM, C. Hatton Humphrey chumph...@gmail.com 
 wrote:
 
 
 According to Isabelle M. Côté, Professor of Marine Ecology at Simon Fraser
 University, there were multiple marine species, from two kingdoms and at
 least seven phyla, living on the camera when it was found.
 
 And not a single selfie?
 
 Until Later!
 C. Hatton Humphrey
 http://www.eastcoastconservative.com
 
 Every cloud does have a silver lining.  Sometimes you just have to do some
 smelting to find it.
 
 
 On Fri, May 23, 2014 at 11:02 AM, Larry C. Lyons larrycly...@gmail.comwrote:
 
 
 
 http://www.cbc.ca/news/canada/british-columbia/shipwrecked-camera-found-underwater-after-2-years-with-photos-intact-1.2651173?cmp=rss
 
 that's a tough camera.
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370365
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Inside a Hollywood Hit Job: H ow Sting Artist Ja m e s O 'Ke efe Tried to Set His Latest Trap â â,¬ And G ot St ung Hims elf - The Daily B

2014-05-23 Thread Bruce Sorge

Loves me some NASCAR!! Can't wait for Atlanta. Taking the wife to the races
there.


On Fri, May 23, 2014 at 5:23 PM, Judah McAuley ju...@wiredotter.com wrote:


 I am not down with the Left Turn crowd.

 The holiday is a fine thing, though. Have a good one :)


 On Fri, May 23, 2014 at 2:21 PM, Larry C. Lyons larrycly...@gmail.com
 wrote:

 
  Regardless of what we think, I hope everyone has a great NASCAR, um
  Memorial Day.
 
 


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370411
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Inside a Hollywood Hit Job: H ow Sting Artist Ja m e s O 'Ke efe Tried to Set His Latest Trap â â,¬ And G ot St ung Hims elf - The Daily B

2014-05-23 Thread Bruce Sorge

Judah,
I first got into it when I was in Iraq in '05. My family was into it, got
my daughter into it, so I started watching it then. When I returned and
took my daughter to our first race together in Texas, man was I hooked.
It's one thing to see it on TV, but when you can hear and feel the cars
driving by, it's a unique experience. And if you get a chance to get a pit
pass, do it. You get up close to the cars and pit boxes. And if you can
score a hot pass, you get to go into the garage area and really see some
cool stuff. And of course there's the Richard Petty experience. Doing some
laps in an actual NASCAR (that is modified with a passenger seat). that was
a serious hoot!

What I want to see in person now is MOTOGP. I watch it on TV, but I want to
see these bikes in person.


Bruce


On Fri, May 23, 2014 at 5:31 PM, Judah McAuley ju...@wiredotter.com wrote:


 When it comes to car racing, I'm all about Rally. I help out, most years,
 with the Oregon Trail Rally and it is great fun watching cars bombing down
 logging roads in the mountains, on the edge of control, with nothing to
 guide them but a codriver and a route book.

 I'd love to head out to a WRC event some time, but as there isn't one in
 the US, it would be quite a trip. Maybe I'd like NASCAR if I tried it in
 person. They are skilled drivers, to be sure, but I find the environment to
 be kinda boring.  Easier spectating than being out in the woods for a
 rally, though.

 Cheers,
 Judah





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:370415
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Stabbing

2014-04-09 Thread Bruce Sorge

Imagine if the teachers were armed. 

Sent from my iPhone 5S

 On Apr 9, 2014, at 12:16 PM, Zaphod Beeblebrox zaph0d.b33bl3b...@gmail.com 
 wrote:
 
 
 http://www.cnn.com/2014/04/09/justice/pennsylvania-school-stabbing/index.html?hpt=hp_t1
 
 20 people injured…now imagine if he would have had a gun.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369865
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Stabbing

2014-04-09 Thread Bruce Sorge

Or, weirdos would think twice about going into a school with the intent of 
harming students. 

Sent from my iPhone 5S

 On Apr 9, 2014, at 12:31 PM, Jerry Milo Johnson jmi...@gmail.com wrote:
 
 
 Then there would likely be a couple of dead kids, too, caught in the
 crossfire.
 
 
 On Wed, Apr 9, 2014 at 12:22 PM, Bruce Sorge sor...@gmail.com wrote:
 
 
 Imagine if the teachers were armed.
 
 Sent from my iPhone 5S
 
 On Apr 9, 2014, at 12:16 PM, Zaphod Beeblebrox 
 zaph0d.b33bl3b...@gmail.com wrote:
 http://www.cnn.com/2014/04/09/justice/pennsylvania-school-stabbing/index.html?hpt=hp_t1
 
 20 people injured...now imagine if he would have had a gun.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369868
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Stabbing

2014-04-09 Thread Bruce Sorge

Yeah, we're all going to go back and forth on this. Offering counterpoints
to counterpoints. And eventually this is going to morph into the anti gun
folks going on about the utopian society we'll be living in if those darn
guns would just go away, and the pro gun folks making fun of the anti gun
folks, so I am going to bow out of the conversation now. My views have been
made known.

Bruce


On Wed, Apr 9, 2014 at 1:16 PM, Larry C. Lyons larrycly...@gmail.comwrote:


 You are presuming rationality in this case Bruce. People doing this
 sort of thing and thinking rationally don't exactly mix.





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369872
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Stabbing

2014-04-09 Thread Bruce Sorge

You make a good point about the idea that not everyone should have a gun,
but I still maintain that if certain criteria were met, there's no reason
why some teachers or school officials should not be armed. In the case of
this recent event, you are right, a gun would have been a bit much for an
appropriate response, but recall the original thread. Someone implied that
the violence could have been worse had the student had a gun, and so I
implied that if the student had a gun, and so did the teachers/officials,
either the crazy would not have acted at all, or the kids could have had
some degree of protection. No matter how you look at it though, there WILL
be injuries/casualties no matter what. We just need a way to mitigate the
number of casualties/injuries.

Anyway, even if people don't want to arm teachers/officials, why not hire
armed security as you mentioned? Why not put metal detectors in all
schools? Why are we more concerned with protecting a government building,
like a court house than we are of protecting our children? How come fat ass
pieces of shit like Michael Moore can have armed security, but our kids
can't? I guess that's really my point. (And yes, I know that Moore hired
his security, not tax payers, but it's just to make a point)

And your idea of hiring veterans to do the security work is good, but there
are soldiers that I have personally seen ( I see them almost every day on
my range) who have no business holding a weapon. Not all soldiers are good
shooters. Trust me.
Obviously for something like this to work, there'd have to be some testing
involved, like go to a shooting range that has different scenarios, shoot
houses and such so that folks could be evaluated. And psychological testing
is a must. Just because someone can shoot doesn't mean they are sane.


On Wed, Apr 9, 2014 at 1:58 PM, Jerry Milo Johnson jmi...@gmail.com wrote:


 I am not anti-gun.

 But I am also not a gun is the solution to every problem.

 I have seen people at the shooting range. Would NOT want them armed in a
 school with the desire to use it.

 And those are the people who PRACTICE.

 In this case, a crazy did not come into the school. He was already there.
 (student). And crazy, by default, means not reasoning normally.

 I don't think a gun would have done much IN THIS CASE. Heck, a CHAIR could
 have ended it faster. But there was too much panic, and no one is trained
 for handling sudden unexpected violence. Too bad there weren't more
 veterans as teachers in the immediate area. They (in my opinion) are
 probably more likely to react quickly and correctly when the normal rules
 are suddenly lost. Plus, it is good employment for veterans.






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369875
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Stabbing

2014-04-09 Thread Bruce Sorge

You are right. I have seen schools that have tall fences and/or metal
detectors. They are in pretty shitty neighborhoods with pretty shady
students. I was just posing some what ifs.I would not have wanted my
daughter attending that kind of school either.

I doubt we are ever going to get rid of guns. And just because you make
something illegal does not mean it will just go away. Prohibition, drugs
and certain classes of weapons are good examples. So since America will
more than likely keep Her guns, and since there are violent people in
America, we do have to live with the consequences as you say. So now were
back to how can we better protect our children.


On Wed, Apr 9, 2014 at 2:25 PM, Jerry Milo Johnson jmi...@gmail.com wrote:


 Truthfully?

 because I (and most of America) don't want our schools to be armed camps.

 metal detectors, armed guards, etc are the WRONG way to go on this stuff,
 just as more pretend security at airports is ridiculous.

 If we are a violent society, and don't want to look at and fix the root
 causes, then we should suck it up and accept the consequences.

 Armed camps around a school classroom is NOT a healthy environment.

 I certainly would not want to go to school in such a situation, and I don't
 want to meet the kids who do.









~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369878
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Vandals tip over Smart cars in San Francisco

2014-04-08 Thread Bruce Sorge

Not bad, but this video a little bit more 
interesting.http://tvnz.co.nz/nz-smashes-guinness-world-records/candy-lane-and-dancers-2970786

Sent from my iPad

 On Apr 8, 2014, at 10:51 AM, Larry C. Lyons larrycly...@gmail.com wrote:
 
 
 http://www.washingtonpost.com/news/morning-mix/wp/2014/04/08/vandals-tip-over-smart-cars-in-san-francisco/
 
 Bet it overtakes cow tipping in a few weeks.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369844
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Because it's friday....

2014-04-04 Thread Bruce Sorge

MoFo got skills. I love it. Thanks. Made my day after being up for over 36
hours.


On Fri, Apr 4, 2014 at 2:35 PM, GMoney gm0n3...@gmail.com wrote:


 The Star Wars theme on a Wurlitzer:

 http://www.fark.com/vidplayer/8198200

 You're welcome, have a great weekend.





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369774
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: CNN Breaking News

2014-04-02 Thread Bruce Sorge

What's to keep a corporation from giving an individual or several individuals a 
shit ton of money to donate.  

Sent from my iPhone 5S

 On Apr 2, 2014, at 11:48 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 THat sounds reasonable to me, and echoes what a very smart economist said
 on another list i'm on.
 
 
 On Wed, Apr 2, 2014 at 10:46 AM, LRS Scout lrssc...@gmail.com wrote:
 
 
 We limit both the market and speech in all kinds of insane ways.
 
 This will only further expand the soft corruption we've been seeing.
 
 Individuals shouldn't have a limit, corporations shouldn't get to donate at
 all as far as I'm concerned.
 
 
 On Wed, Apr 2, 2014 at 11:42 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 In a country founded on free enterprise and free speech...how do you
 contend we tell people how much money they can make and/or how they can
 spend it???
 
 Isn't this a fundamental paradox of our country's very existence?
 
 
 On Wed, Apr 2, 2014 at 10:22 AM, LRS Scout lrssc...@gmail.com wrote:
 
 
 Dollars = votes.
 
 We know this, now it's just precedent.
 
 The rich get richer and the rest get fucked.
 
 Limited government my ass.
 
 
 On Wed, Apr 2, 2014 at 11:19 AM, Larry C. Lyons larrycly...@gmail.com
 wrote:
 
 
 I think that the SCOTUS has just sold our representative republic
 down
 the river with this one. Its about as bad as Citizen's United.
 
 
 -- Forwarded message --
 From: CNN Breaking News breakingn...@mail.cnn.com
 Date: Wed, Apr 2, 2014 at 11:06 AM
 Subject: CNN Breaking News
 To: textbreakingn...@ema3lsv06.turner.com
 
 
 The U.S. Supreme Court today struck down limits on the total amount a
 person can donate to various political campaigns in a single election
 season. However, the court left intact the limit on how much an
 individual can give to any single candidate.
 
 We conclude that the aggregate limits on contributions do not
 further
 the only governmental interest this court accepted as legitimate,
 said Chief Justice John Roberts, referring to a 1976 ruling. They
 instead intrude without justification on a citizen's ability to
 express the most fundamental First Amendment activities.
 
 The divided 5-4 ruling could have an immediate impact on November's
 congressional midterm elections, and add another layer of high-stakes
 spending in the crowded political arena.
 
 Get complete coverage of breaking news on CNN TV, CNN.com and CNN
 Mobile.
 
 --
 CNN is now LIVE anywhere you want it.
 You can watch live CNN TV at http://CNN.com/CNNtv
 or on the CNN Apps for iPhone, iPad and Android.
 Contact your cable, satellite or telco provider for availability.
 --
 
 
 You have opted-in to receive this e-mail from CNN.com. To unsubscribe
 from Breaking News e-mail alerts, go to:
 http://cgi.cnn.com/m/clik?l=textbreakingnews
 
 One CNN Center Atlanta, GA 30303
 (c)  (r) 2014 Cable News Network
 
 
 --
 Larry C. Lyons
 web: http://www.lyonsmorris.com/lyons
 LinkedIn: http://www.linkedin.com/in/larryclyons
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369692
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: CNN Breaking News

2014-04-02 Thread Bruce Sorge

Good point there. I guess there's nothing we can really to to stop the 
corruption. There's always a way around everything. 

Sent from my iPhone 5S

 On Apr 2, 2014, at 11:59 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 Nothing.
 
 WHat's to keep the individual from telling the company to fuck off once
 he's got it's money, and going somewhere else?
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369696
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: CNN Breaking News

2014-04-02 Thread Bruce Sorge

There's ways around that. Besides, with what's been happening in the IRS 
lately, I don't have a lot of faith on them. 

Sent from my iPhone 5S

 On Apr 2, 2014, at 11:59 AM, LRS Scout lrssc...@gmail.com wrote:
 
 
 The IRS.
 
 
 On Wed, Apr 2, 2014 at 11:57 AM, Bruce Sorge sor...@gmail.com wrote:
 
 
 What's to keep a corporation from giving an individual or several
 individuals a shit ton of money to donate.
 
 Sent from my iPhone 5S
 
 On Apr 2, 2014, at 11:48 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 THat sounds reasonable to me, and echoes what a very smart economist said
 on another list i'm on.
 
 
 On Wed, Apr 2, 2014 at 10:46 AM, LRS Scout lrssc...@gmail.com wrote:
 
 
 We limit both the market and speech in all kinds of insane ways.
 
 This will only further expand the soft corruption we've been seeing.
 
 Individuals shouldn't have a limit, corporations shouldn't get to
 donate at
 all as far as I'm concerned.
 
 
 On Wed, Apr 2, 2014 at 11:42 AM, GMoney gm0n3...@gmail.com wrote:
 
 
 In a country founded on free enterprise and free speech...how do you
 contend we tell people how much money they can make and/or how they can
 spend it???
 
 Isn't this a fundamental paradox of our country's very existence?
 
 
 On Wed, Apr 2, 2014 at 10:22 AM, LRS Scout lrssc...@gmail.com
 wrote:
 
 
 Dollars = votes.
 
 We know this, now it's just precedent.
 
 The rich get richer and the rest get fucked.
 
 Limited government my ass.
 
 
 On Wed, Apr 2, 2014 at 11:19 AM, Larry C. Lyons 
 larrycly...@gmail.com
 wrote:
 
 
 I think that the SCOTUS has just sold our representative republic
 down
 the river with this one. Its about as bad as Citizen's United.
 
 
 -- Forwarded message --
 From: CNN Breaking News breakingn...@mail.cnn.com
 Date: Wed, Apr 2, 2014 at 11:06 AM
 Subject: CNN Breaking News
 To: textbreakingn...@ema3lsv06.turner.com
 
 
 The U.S. Supreme Court today struck down limits on the total amount a
 person can donate to various political campaigns in a single election
 season. However, the court left intact the limit on how much an
 individual can give to any single candidate.
 
 We conclude that the aggregate limits on contributions do not
 further
 the only governmental interest this court accepted as legitimate,
 said Chief Justice John Roberts, referring to a 1976 ruling. They
 instead intrude without justification on a citizen's ability to
 express the most fundamental First Amendment activities.
 
 The divided 5-4 ruling could have an immediate impact on November's
 congressional midterm elections, and add another layer of high-stakes
 spending in the crowded political arena.
 
 Get complete coverage of breaking news on CNN TV, CNN.com and CNN
 Mobile.
 
 --
 CNN is now LIVE anywhere you want it.
 You can watch live CNN TV at http://CNN.com/CNNtv
 or on the CNN Apps for iPhone, iPad and Android.
 Contact your cable, satellite or telco provider for availability.
 --
 
 
 You have opted-in to receive this e-mail from CNN.com. To unsubscribe
 from Breaking News e-mail alerts, go to:
 http://cgi.cnn.com/m/clik?l=textbreakingnews
 
 One CNN Center Atlanta, GA 30303
 (c)  (r) 2014 Cable News Network
 
 
 --
 Larry C. Lyons
 web: http://www.lyonsmorris.com/lyons
 LinkedIn: http://www.linkedin.com/in/larryclyons
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369697
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: CNN Breaking News

2014-04-02 Thread Bruce Sorge

Not that I know of, but then you can conclude that it's never been done, or 
they haven't been caught. 

Sent from my iPhone 5S

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369700
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: CNN Breaking News

2014-04-02 Thread Bruce Sorge

Let's not forget the recent scandal either Larry. 

Sent from my iPhone 5S

 On Apr 2, 2014, at 12:21 PM, Larry C. Lyons larrycly...@gmail.com wrote:
 
 
 Well given that the IRS has all but given up on investigating tax code
 violations of evangelical for profit churches
 (http://www.npr.org/2014/04/01/282496855/can-a-television-network-be-a-church-the-irs-says-yes)
 then its amazing that you'd have any faith in them.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369701
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: CNN Breaking News

2014-04-02 Thread Bruce Sorge

Agreed.


On Wed, Apr 2, 2014 at 1:39 PM, Judah McAuley ju...@wiredotter.com wrote:


 Elections aren't an enterprise (or at least shouldn't be). And money is not
 speech. Also, the country was not founded on the notion of free enterprise,
 though I will grant you that it has been a major thread through a lot of
 our existence.

 If you want to advocate for a candidate or a political party, then I
 absolutely think you should do so. Write blog posts, make signs and go
 stand next to a busy road, distribute fliers in your neighborhood. Hell,
 organize a rally and a march! Free speech baby, everyone has the right to
 speak up and make themselves heard.

 Donating $20 million dollars to a candidate that goes into an account that
 they can they use to prop up the campaigns of other candidates and buy
 their votes is not speech. It does not promote any principle of democracy.
 It is a financial transaction, an attempt to buy influence, a perversion of
 the notion that all men are created equal and that we all have a solemn
 duty to get in and mix it up in the political arena to form a more perfect
 union.

 Fuck that.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369705
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: I survived a gay wedding

2014-03-26 Thread Bruce Sorge

I was a major homophobe up until my 20's. A few things happened to change my 
attitude towards homosexuality. I dated a girl who opened my eyes to a world 
where people can be tolerant and get along, straight, gay or otherwise. Also, 
when I was stationed in California, my moms boss was gay. She was invited to a 
Christmas party at his house and she asked it I'd be her +1. So I attended and 
had a blast. No one tried to hit on me. We were all just hanging out talking 
about whatever. Finally, living in San Fran for a while really opened my eyes. 
Going to clubs where everyone had a good time, straight or gay was fun and 
interesting. No one tried to turn me gay like my brother thought would 
happen. These experiences were good for me as it's made me realize that being 
gay is fine. It's not hurting anyone and I am still a happy heterosexual in a 
happy straight marriage despite my interactions with homosexuals. 

Sent from my iPhone 5S

 On Mar 26, 2014, at 12:13 PM, GMoney gm0n3...@gmail.com wrote:
 
 
 So my wife and I went to our first gay wedding last weekend.
 
 And.contrary to what I've been told by some members of my family and by
 various conservative groups.my marriage was surprisingly unaffected. My
 wife and I both decided after we returned home nice and tipsy from the
 blast of a reception that our marriage was, oddly, NOT adversely affected
 by the two women we had witnessed getting married that night.
 
 Somehow their new found love, their stated devotion to each other through
 thick and thin, had not destroyed MY devotion to my wife. Somehow, the
 gathering of friends and loved ones in celebration of that marriagewas
 a blast.  God must have been busy doing something else, because he failed
 to smite anyoneeven when they played that Lady Gaga song at the
 reception!
 
 Now i'm all confused. It can be hard to keep up with exactly who God is
 supposed to be hating sometimes.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369630
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Fred Phelps Sr., leader of Westboro Baptist Church, dies at 84 - The Washington Post

2014-03-20 Thread Bruce Sorge

Best news I've had all day. 

Sent from my iPhone 5s

 On Mar 20, 2014, at 12:10 PM, Larry C. Lyons larrycly...@gmail.com wrote:
 
 
 http://www.washingtonpost.com/local/obituaries/fred-phelps-sr-leader-of-westboro-baptist-church-dies-at-84/2014/03/20/a0c5cd30-ae2b-11e3-a49e-76adc9210f19_story.html?algtrack=cfrec-0tid=btm_rex_1
 
 I could write something quite snarky. It isn't worth it.
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369604
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Goats, scsi, and age

2014-03-19 Thread Bruce Sorge

I remember SCSI well.


On Wed, Mar 19, 2014 at 3:20 PM, Michael Dinowitz 
mdino...@houseoffusion.com wrote:


 I was reading the explain xkcd site which referenced the need to sacrifice
 a goat to get a scsi chain working. I turned to one of the interns to see
 if she knew what scsi was. She didn't. She's 26. I feel old.

 1316: Inexplicable - explain xkcd -
 http://www.explainxkcd.com/wiki/index.php/1316
 High Performance SCSI  RAID: Fun with SCSI -
 http://www.staff.uni-mainz.de/neuffer/scsi/fun.html


 As an aside, I use an add-on to firefox called colt which allows for
 instant formatting of page links and such for saving to file. Works great
 for my day notes.


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369595
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Goats, scsi, and age

2014-03-19 Thread Bruce Sorge

True. My daughter is only 22 and she knows who Stevie Wonder is. And the
Doors, Eagles, Rolling Stones, etc... I raised her right! LOL.


On Wed, Mar 19, 2014 at 3:47 PM, GMoney gm0n3...@gmail.com wrote:


 THat's not an age thing, that's a not-knowing-your-music thing.






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369599
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Microsoft giving away free IT training -- and a job -- to soldiers

2014-03-13 Thread Bruce Sorge

That's cool. It would be nice if it's expanded to Colorado. And it's around 
next September next year. 

Sent from my iPad

 On Mar 13, 2014, at 6:51 PM, Jerry Milo Johnson jmi...@gmail.com wrote:
 
 
 @Bruce (or for general info),
 
 http://www.pcworld.com/article/2060539/microsoft-giving-away-free-it-training-and-a-job-to-soldiers.html
 
 
 Microsoft giving away free IT training -- and a job -- to soldiers
 |...http://www.linkedin.com/e/v2?e=5rihj-hspskfbv-3jt=plhmidToken=AQGU6ydjrgs99Atracking=eml-comm_nu_digest-article-read-5-id123ek=nu_digesturlhash=WVABurl=http%3A%2F%2Fwww%2Epcworld%2Ecom%2Farticle%2F2060539%2Fmicrosoft-giving-away-free-it-training-and-a-job-to-soldiers%2EhtmlIn
 a bid to help soldiers transition from the military to civilian life,
 Microsoft is offering a free IT training for soldiers in the military, plus
 a job.
 that is pretty cool.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369569
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Fate of Malaysia Airlines flight MH370 ??

2014-03-12 Thread Bruce Sorge

That's what I was saying this morning at work. 

Sent from my iPhone 4S. 

 On Mar 12, 2014, at 10:46 AM, Cameron Childress camer...@gmail.com wrote:
 
 
 On Wed, Mar 12, 2014 at 2:06 AM, Andrew Grosset wrote:
 
 interesting that apparently the passenger cell phones are still
 ringing.
 
 B-777 has not one but four independent ELTs of two types. It seems
 fantastic that they would all have become inoperative. Unless, the plane
 hasn't crashed at all. It is this aspect that is most perplexing, said
 Banerjee.
 
 
 Isn't this basically the plot of the TV show Lost?
 
 -Cameron
 
 ...
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369552
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


Re: Google Fiber Expands

2014-02-19 Thread Bruce Sorge

Not on fort Benning / columbus ga. 

Sent from my iPhone 4S. 

 On Feb 19, 2014, at 2:15 PM, Cameron Childress camer...@gmail.com wrote:
 
 
 I'm on the list. Anyone else?
 
 http://www.theverge.com/2014/2/19/5426338/google-will-explore-bringing-fiber-34-additional-cities
 
 -Cameron
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:369481
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm


  1   2   3   4   5   6   7   8   9   10   >