Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - 12TimesOver

Pages: 1 2 3 [4] 5 6 7
46
Off Topic / Media discussion - from shoutbox
« on: March 04, 2010, 03:17:25 AM »
I decided to move this to a new thread since it seems to make the most sense. This is in response to the discussion brewing in the shoutbox regarding HD media players and Popcorn Hour.

On network connectivity - A network connection is your lifeline. Many/most/all media players will connect to your network via wireless or wired nowadays and you DEFINITELY want yours to. If it doesn't, how would you access your central data storage or stream media to the device? Nowadays it isn't enough to be able to stick a disk into a device and play it, you need many ways to move your media to your tv and tuner. Even many TV's are made to connect directly to your network so you can stream Internet content via what are called "Widgets" which, IMO, are really a waste unless you're someone who is satisfied with limiting streaming to Flickr pics and Yahoo videos. I want to play BlueRay and DVD movies, listen to CD's, listen to MP3's, watch DIVx's, rent a movie on Netflix, watch Hulu videos, rotate photos off a USB key, etc, etc. Almost ALL of this requires connectivity to a network and any media player worth it's time will connect to yours.
 
On device connectivity - @Coragin, HDMI is the preferred method nowadays rather than USB but it works very much the same way. Typically you would have a device, usually a receiver/tuner, with multiple HDMI inputs and a single output. You would connect in, say, a Blue Ray player, PS3, Media PC, etc and have one HDMI connection out to your TV. HDMI carries both video and audio signals in a single, High-Def digital connection. In fact, HDMI and DVI (connection on most video cards and monitors nowadays) are essentially the same format just different connectors.
 
On price - yes the popcorn hour is $300 without any blueray/dvd/hard drive or wireless. This isn't cheap, especially considering a Terabyte drive (if you want it) will run you about $75 and a Blue-Ray drive about the same. Fully equipped you are looking at around $500. However, what you get for this money is the ability to do EVERYTHING I discuss above and more. This replaces a Blueray/DVD player, CD Player, Netflix streaming box, a Slingbox, a Media PC, and more. They aren't going after the DVD Player market, they're going after the Media PC market with a Blueray player price point. To build the same thing in a Media Center PC you'd pay $200 or more just for a decent media PC case. The base model of the C200 is the same price as a PS3! There aren't any other media players out there doing the same thing for much less, especially when you start looking at your lower-end PCH models (A-200 with no drives is much cheaper).

But if not PCH there are some other potentially promising systems out there, you just have to keep an eye out. For me it comes down to features supporting the Entertainment Center consolidation. There's a thread or 2 on this here in Off-Topic somewhere; one started by me and one by Cerv. What is EC consolidaiton? Well, at my house I have a 7-foot high monster, Sauder entertainment Center I bought at Service Merchandise 12 years ago. In this bohemith I have a dual-cassette player, 5 disc CD changer, old 5.1 Dolby Surround Sound receiver, a broken DVD player that works once in a while, my Comcast set top box, a VHS player, a 275 pound 36" television, and countless VHS's and DVD's in the media cupboards on either side. I want this to be nothing more than a 46" LED Television sitting on a small, esthetically appealing cabinet with nothing more than a receiver, a media player, and a DVR all connected with single HDMI cables and the ability to connect to network attached storage whether it's a share on my PC or a NAS in the basement.

Anyhow, this post is starting to look like it's from Coragin (hehe ;) just playin with ya buddy) so I'll wrap it up. Hope it's helpful, as you can tell I've been doing a lot of research for a while. I'd be happy to share some more specific models I've chosen should anyone care!

Peace!

X

48
Cool Links! / Pandora
« on: February 17, 2010, 06:39:19 AM »
I'm probably the only one here who'd never heard of this site before now but I am officially hooked to it. Pandora Radio let's you setup a virtual "radio station" by telling it an artist or song you like and it builds a playlist of styles similar to what you've entered. I'm hearing all kinds of awesome stuff I've never heard before all at the expense of rolling advertisements that I don't see anyhow because it's minimized. I love it!

Pandora

X

50
Scripting Chat / Namespace var interaction
« on: February 13, 2010, 05:01:07 AM »
A quick question just to make sure I understand namespace var interaction.

Consider the following:
Code: [Select]
gosub 1
gosub 2
Display %_var
Halt

sub 1
   namespace push
   namespace local 1
   set %_var Hello
   namespace pop
return

sub 2
   namespace push
   namespace local 2
   set %_var World
   namespace pop
return
I was assuming that proper Namespace execution would mean that this snippet wouldn't display anything (NULL) however it does indeed display "World".

Now consider the following:
Code: [Select]
gosub 1
gosub 2
halt

sub 1
   namespace push
   namespace local 1
   set %_var 1
   set %_var2 %_var + 9
   Display %_var2
   namespace pop
return

sub 2
   namespace push
   namespace local 2
   set %_var2 %_var + 9
   Display %_var2
   namespace pop
return

Again, proper Namespace execution would have me assume that this code would show "10" as the first Display value (from sub 1) and "9" as the second Display value (from sub 2) but it does indeed display "10" for both.

I would have thought that the reason to use Namespace would be to isolate variables and even their values to the namespaces in which they were defined. Not only are the values not stored but the variables aren't even isolated. I don't understand the point of using Namespace if this is the case. Maybe I need to go re-read the Namespace tutorials TM and Cerv have so kindly put together but I was a little annoyed this morning when I discovered my use of Namespaces in a script assumed they were implemented correctly and this idiotic assumption has caused me a ton of needless troubleshooting on the next version of my miner LOL.

Anyhow, I'm running off little sleep so hopefully this discussion makes sense.

Any constructive input is welcome!

X

51
Scripting Chat / REPEAT/UNTIL Loops - Do you use brackets or none?
« on: January 26, 2010, 12:36:52 PM »
I go back and forth for no apparent reason other than my mood I guess. I'm going to pick one and stick with it. What do you do?

52
Off Topic / The top 12 reasons I'm liking Notepad++ so far
« on: January 26, 2010, 07:12:21 AM »
12) TextFX
11) Opensource
10) Plugins/Compare
09) "Save Copy As"
08) Macro/Start Recording
07) Launch In Firefox/IE
06) Base64 Encode/Decode
05) Replace across all files
04) Load/Save Session
03) Convert Case
02) Language/C, C#, C++, Kixtart, XML, VB, SQL, User Defined, etc, etc
01) Synchronize scrolling
00) Collapse/Uncollapse

Just thought I'd throw this out there because I'm editing some config files in Notepad++ right now and keep stumbling across things I've always wanted to be able to do but couldn't with Notepad, etc.

XII

53
Not exactly "Off Topic" but wasn't sure where else to put it.

I'm curious if anybody else has this issue and if you've been able to resolve it if so.

I have found that I simply can't use the post editor for any message longer than the window size, especially when Replying to a message (verse starting a new message although it still happens with New, just not as frequently). Once I get past the lines that display in the window without scrolling down the edit box goes haywire, bouncing around with every key press and not displaying the text as I type (ie, keeps it below the viewable portion of the screen). This has been going on since roughly about the time I upgraded to IE 8 and it happens on 3 different PC's with 3 different OS versions so I know it isn't simply something wrong on a workstation.

I'm also assuming this is a client setting, not a site issue, otherwise TM would have been all over it already. :) Definitely open to all suggestions!

X

54
Cool Links! / Free Uniball Pen Link
« on: January 20, 2010, 09:27:05 AM »
Yep, follow the prompts. Giving away 10,000/day starting around 12:00pm CST through the end of March or until they give away 500,000 pens. These pens retail for about $3.00 each.

Enjoy!

http://www.uniballsuperink.com/Home

55
12TimesOvers' Script Library / XIIxOveR's Poisoning Trainer
« on: January 15, 2010, 09:46:57 AM »
Code: [Select]
;============================================
; Script Name: XIIxOveR's Poisoning Trainer
; Author: XIIxOveR
; Version: 3.0 Beta
; Date Modified: 10/04/2011
; Purpose: Trains Poisoning
;============================================

1.0 - Initial Public Release
1.01 - Fixed syntax issue causing infinite loop
2.0 - Beta - Added option to remain hidden while training; requires Human character or Hiding skill of at least 20. Miscellaneous cleanup.
3.0 - Beta - Almost a complete re-write. Integration of XIIx Standard subs, RoT timer support, re-written poison selection routine, new timer logic to slightly speed up poison attempts after cure/heal routines, removed option for unassisted setup, general cleanup

Instructions
    1) Secure container in a house or bankbox (bankbox must be open when starting script)
    2) A lot of bottles of correct levels of Poison, G-Heal, and G-Cure potions in the secure
    3) Dagger, apple, or fishsteak in Backpack
    4) Press start and follow prompts

 Notes
    1) For most effective use of time and resources make sure to at least NPC train the skill
    2) At this time the script only supports potions for healing and curing just to keep things simple
    3) Currently this script uses the following skill chart:
          00.0 - 44.9   Lesser Poison
          45.0 - 69.9   Normal Poison
          70.0 - 99.0   Greater Poison
          99.1 - GM     Deadly Poison

NOTE: Version 3.0 is beta. I have not yet tested it and am soliciting testers. I decided to work on this rather than spend time fixing issues with 2.0. Thanks for watching.

XII

56
Off Topic / Virus Software
« on: January 11, 2010, 06:38:43 AM »
So what is everyone using nowadays for virus protection? I use McAfee because I get it for free through work however the subscription we have access to won't work on my XP laptop with only 256 Megs of RAM. Personally I don't care for McAfee that much anyhow and I would rather reformat my machine every two weeks than use Norton.

Anyone using something they are happy with other than these that may still work on my laptop?

X

57
Off Topic / USA-Based Dial-up Users?
« on: December 18, 2009, 05:19:44 AM »
Hey guys and gals.

So, I know I am among the minority but I do have need for dial-up every now and then. For example, if I want to play UO from work I need to use dial-up. Some hotels I get stuck in still haven't stepped up to modern times thus I need dial-up. Once in a while I stay with family that have no Internet access and no neighbors with wirless thus I need dial-up. Etc, etc.

I just let my Netscape dial-up account lapse when I closed the credit card it was on. I decided that 9.95/mo for unlimited was too high just for how little I use it. I've started shopping around for el-cheapo plans and stumbled across the site http://www.freedomlist.com which seems like a pretty good site for information on national ISP's. I'm looking at plans offering 100-150 hours/mo.

So far I'm drawn to All2easy (www.all2easy.com). Anyone here use a cheap dial-up service that may have some input? I'm talking $50/yr or less cheap here!

All input is welcomed!

X

58
Virtualization / Tutorial - Setting up Microsoft Virtual PC 2007
« on: December 02, 2009, 07:29:36 AM »
If you are running Windows 7 you can install the latest version of MS Virtual PC however this turorial will focus only on Virtual PC 2007. Be sure you are running SP3 if Windows XP

First, you need to download the software. There are two versions, 32-bit and 64-bit, pick your version and download.

Virtual PC 2007 SP1 Installation package
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=28c97d22-6eb8-4a09-a7f7-f6c7a1f000b5

Then download Security Update 1
http://www.microsoft.com/downloads/details.aspx?familyid=88DE1513-8D35-410F-8896-FE668F885CA0&displaylang=en

Now we install...
1 - Run the Virtual PC 2007 SP1 installation package.
2 - Click "Next" at the welcome screen
3 - Accept the license and click "Next"
4 - Put in whatever information you want for Username and Organization, choose whether you want "Anyone" or "Only for me", click "Next"
5 - Pick the folder you want to install to or leave it default (C:\Program Files\Microsoft Virtual PC), click "Install"
6 - Click "Finish" when done
7 - Install the Security Update package, this will tell you to reboot usually, go ahead.

Next, we create a new PC...
1 - Start Microsoft Virtual PC (Start\Programs\Microsoft Virtual PC)
2 - The first thing that comes up will be the "New Virtual Machine Wizard", I like to click "Cancel" here and head to "File/Options" first but you don't have to. If you do, just go through the options and make sure you are comfortable with the settings. You may find that you are perfectly happy with the default settings.
3 - Now click "New" and start the wizard again
4 - Keep "Create a virtual machine" selected and click "Next"
5 - Give the machine a name and a location, I suggest changing the default location because it will put the devices in your "My Documents" folder in your profile. I usually give the Name as the same Windows name I will give the PC when I build it. I also like to put the machines in a different folder on my Data drive ("D:\Images\VirtualPC" for me). Click "Next"
6 - Select the OS you will install, e.g. Windows XP, click "Next"
7 - Select "Adjusting the RAM" and enter the amount of memory you want to dedicate to this device, for a Windows XP box I like to put it to at least 256 Megs. Just pick what you want and click "Next"
8 - Since you haven't created a virtual hard disk yet, select "A new virtual hard disk" and click "Next"
9 - Browse to the folder you want to store your image in and give it a name (leave it with the .vhd file extension). I like to give it the same name and folder as step 5, this way all of the files stay together and are easily identified as belonging to a specific PC. Pick your hard drive size, I would suggest at least 4gig if Windows XP but this greatly depends on what you will be doing with it. Once decided click "Next"
10 - Click "Finish"
11 - You will now see your new Virtual PC listed in the "Virtual PC Console", don't start it yet. Select it and click "Settings"
12 - Go through the settings and get familiar with the options here. This is how you control the behavior of the "hardware" and the save settings, etc.
13 - Once satisfied with the settings move along!

Finally, we put an Operating System on the new PC...
1 - Insert your installation media into your CD/DVD drive (e.g. your Windows XP installation CD)
2 - In the "Virtual PC Console" click "Start"
3 - The virtual machine will start and a new window will open. In the bottom, left-hand side of the window you will see several icons including a CD icon. Right-mouse click the icon and select "Use physical drive X:" where "X:" is the CD Drive with your media in it.
4 - Click "Action" then "CTRL+ALT+DELETE". Your new machine should restart and, if you are using the correct installation media :) the Windows installer now kicks in and you have now reached the end of this half-hazard tutorial.

Any questions?

Enjoy!

XII

59
Cool Links! / Free food!!!
« on: November 03, 2009, 07:41:11 AM »
Ok, I've always been a fan of http://slickdeals.net and I watch it throughout the day while working but I happened across a couple of threads I thought worth sharing with others:

Free Food for signing up on email lists - http://slickdeals.net/forums/showthread.php?sduid=288380&t=840784
Free food on your birthday - http://slickdeals.net/forums/showthread.php?t=1622259

Gotta love FREE food, even if it means a little SPAM ;)

XII

60
Off Topic / Multi-media at home, what are you doing?
« on: October 07, 2009, 09:24:24 AM »
Ok, so I've been beefing up my media environment recently and am working on building the ultimate, but affordable, multi-media experience in my home. My goal is to clean-up some of the antiquated audio/video/PC equipment I have while establishing the next few years worth of new media experience. Of course, money is indeed an object however I obviously can't do this for free so I'm intending to put down a few G's anyhow.

So what do I want to be able to do and what have I looked at so far? For starters, I want to clean up the current entertainment center (7' tall BTW lol):

36" Phillips CRT, 11 years old
Teac 5.1 Dolby surround-sound receiver, 12  years old
Sony dual-cassette deck, 10 years old
Teac 5-disc CD changer, 10 years old
Pioneer VHS player, 10 years old
Pioneer DVD player, 8 years old
Digital Cable Receiver
2 x Fisher floor speakers, 30+ years old
Sony Vaio PC, 8 years old
DELL Latitude laptop, 7 years old


Ok, so as you can see I'm a bit behind the times.

I'm intrigued by the idea of integrating my PC into my entertainment system via wireless and/or wired media. I've started looking into some products but I'm wondering what other people are doing.

For example, for wireless audio streaming nothing can beat the affordability and efficiency of an Airport Express however this is an audio-only solution and there are limited 3rd party options out there that relieve you from having to use iTunes to stream the audio.

For video there are products such as the Sony BPD-N460, Popcorn Hour, and Roku but these are all based on only streaming specific Internet-based content providers rather than media from the PC. In other words, all of these devices connect to the Internet directly thus don't work if I want to play a DIVx from my PC to my television for example.

I can go with a PS3 and use the streaming capabilities and gain a Blue-Ray player (and gaming console) to boot but we're talking major power consumption for something that wouldn't get used as a console anywhere near as much as a multi-media station (200 watts verse 40 watts of the Sony BlueRay player above is a huge difference).

So far I've built a new PC with a TB of storage and plenty more eSATA space and Windows 7. I didn't put a Blue-Ray player in and now I'm kicking myself in the ass but I only blew $30 on the DVDRW in it now so adding a Blue-Ray to the PC is certainly an option. I plan on buying a new, mid-range (under $1000) laptop and a 46"-47" LCD/LED television. Now I have to integrate all of this!

Anyone else battling with these questions? Anyone else doing any of this? What is your favorite configuration? PS3? Wireless verse wired? Etc? I'd love to hear from you!

XII

Pages: 1 2 3 [4] 5 6 7