Help me plz

Author


How do I use an internal camera on a laptop?


.

I do some reviews and always use my Kodak camera. I want to do a review on my laptop and I don’t like by the external camera.
I have a built in web cam in my dell inspiron 1545. Here’s an example if I’m not being clear. I want it to look like this.

http://www.youtube.com/watch?v=LO67Ro4bLA0

Thanks.

Best answer:

Answer by Greybox
no such thing as a “internal camera” what you need is a screen recorder. if you have a pc hen just search for camtasia or any other freeware. for ubuntu or linux go to the software center i reflect ther eis one there. and for a mac go to the app store or something.

What do you reflect? Answer not more than!

Help me plz

Tagged with: camerainternallaptop 

Should I get a gaming laptop/notebook?


.

My circumstances is kind of complicated. My desktop that i have now is getting ancient but still plays games decently at low settings. The problem is that I have a very limited internet connection. I have the usb Connect Mercury from AT&T right now with 5GB a month at a month. Now I live with 5 other family members that I have to share this internet with. I like to play games like call of duty MW2, and Black ops, Crysis 2 online but with limited internet it makes it hard since I have check daily and make sure the 5GB lasts in anticipation of the end of the month. To makes matters even worse lately I have bought the games left 4 dead, and The Ball but i cannot play them since there is a 1.5GB update for left 4 dead and 400Mb update for The Ball. Last month I may possibly not play, and had to limit getting online for 2 weeks since I downloaded the 680Mb map pack for call of duty black ops so I had to make the some 30Mb last in anticipation of the 2nd of the next month when my treatment resets. The only option I see is if I buy a gaming laptop. not only would i get me a new gaming rig I would be able to use it at school and download all the updates and games at school or the library. I know I may possibly build a powerfull desktop but then that still leave me a problem with downloading updates. I have been trying to investigate gaming laptops for a 1yr now and the asus g73sw or the sager np8170 seem like my best options around 00. I found someone selling the sager np8170 online for 00 and it seems in excellent shape and he had originally paid 00 for it so I am temped at the moment to jump on the deal. I do not want to get a gaming laptop and regret it so some advice would be much appreciated. Also I have tried looking up to see if i can download updates at school and bring them home on a flash drive but that is not possible since I have to download them through the Steam attention. Another thing is that I have tried looking at other internet providers but I just happen to live in the worst spot where no one reaches where I live except AT&T. So my major question is should I buy a gaming laptop in my circumstances? Thanks for reading and I would really appreciate the advice in this complex circumstances.
I live in Leavenworth Kansas. It does seem like I answer my on question, but I am just not sure if it is really worth to get a gaming laptop to just be able to update and download my games. I am very torn with the choice. If there are any other recommendations, such as of gaming laptops, ISP I would really appreciate it. Thanks.

Best answer:

Answer by hunterthegame
Hi there

After reading the whole tale, i came up to a very weird thing! You have answered all the question by yourself and i would recommend you to buy a laptop because you can not leave the gaming habit so go ahead buy a notebook according to your budget.

Update your question with your address only the area not your household no. ;) so that i can tell you about other affordable ISPs.

Regards,
Ibrahim

www.passion2write.com

What do you reflect? Answer not more than!

Help me plz

Tagged with: gaminglaptop/notebook 

Western Power Killed My Pong Clock


.

No, really. After now’s brown-out my irreplaceable original Buro Vormkrijgers Pong Timer appears to be fried.

Really not pleased at all.


Check it out:Cup(Of T)

Help me plz

Tagged with: clockkilledPongPowerwestern 

Splatting Hell


.

Recently both at work and at home I was faced with the same problem: a PowerShell ‘control’ speech that needed to pass parameters down to an illogical series of child scripts (i.e. enumerating over scripts in a directory, and executing them in turn).

I needed a way of binding the parameters passed to the child scripts to what was passed to the parent speech, and I thought that splatting would be a fantastic fit here. Splatting, if you aren’t aware of it, is a way of binding a hashtable or array to a command’s parameters:

# ie replace this:
dir -Path:C:\temp -Filter:*

# with this:
$dirArgs = @{Filter="*"; Path="C:\temp"}
dir @dirArgs

Note the @ sign on the last line. That’s the splatting operator (yes, its also the hashtable operator as @{}, and the array operator as @(). It’s a busy symbol). It binds $dirArgs to the parameters, rather than attempting to pass $dirArgs as the first positional argument.

So I thought I may possibly just use this to pass any-and-all arguments passed to my ‘master’ speech, and get them bound to the child scripts. By name, mind, not by position. That would be terrible, because each of the child scripts has different parameters. I want PowerShell to do the heavy lifting of binding the appropriate parameters to the child scripts.

Gotcha #1

I first attempted to splat $args, but I’d forgotten that $args is only the ‘left over’ arguments after all the positional arguments had been taken out. These go into $PSBoundParameters

Gotcha #2

…but only the ones that really match parameters in the current speech/function. Even if you pass an argument to a speech in ‘named parameter’ style, like this:

SomeScript.ps1 –someName:someValue

…if there’s no parameter ‘someName’ on that speech, this goes into $args as two different items, one being ‘-someName:’ and the next being ‘someValue’. This was surprising. Worse, once the arguments are split up in $args they get splatted positionally, even if they would otherwise match parameters on what’s being called. This seems like a design mistake to me (update: there is a Connect issue for this).

Basically what this meant was that, unless I started parsing $args myself, all the parameters on all the child scripts had to be declared on the parent (or at least all the ones I wanted to splat).

Gotcha #3

Oh, and $PSBoundParameters only contains the named parameters assigned by the caller. Those left unset, i.e. by defaulting values, aren’t in there. So if you want those defaults to propagate, you’ll have to add them back in yourself:

function SomeFunction(
    $someValue = ‘my defaulting’
){
    $PSBoundParameters['someValue'] = $someValue

Very tiresome.

Gotcha #4

$PSBoundParameters gets reset after you dotsource another speech, so you need to capture a reference to it before that :-(

Gotcha #5

Just when you thought you were finished, if you’re by [CmdLetBinding] then you’ll probably get an error when splatting, because you’re trying to splat more arguments than the speech you’re calling really has parameters.

To avoid the error you’ll have to revert to a ‘vanilla’ from an ‘advanced’ function, but since [CmdLetBinding] is implied by any of the [Parameter] attributes, you’ll have to remove those too :-( So back to $myParam = $(throw ‘MyParam is required’) style validation, unfortunately.

(Also, if you are by CmdLetBinding, remember to remove any [switch]$verbose parameters (or any others that match the ‘common’ cmdlet parameters), or you’ll get another error about duplicate properties when splatting, since your speech now has a –Verbose switch involuntarily. The duplication only becomes an issue when you splat)

What Did We Learn?

Any: Don’t try this at home.

Or: Capture PSBoundParameters, place the defaults back in, splat it to child scripts not by CmdLetBinding or being ‘advanced functions’

Type your parameters, and place your guard throws back, just in case you end up splatting positionally

Have a lie down


Check it out:Cup(Of T)

Help me plz

Tagged with: HellSplatting 

Answers Rating

  • Cheryl W: Employed skills utilizing the ability to work closely with all levels of employees and...  Thumb up 0
  • dogman: My experience is extensive as I have worked closely with all levels of employees….  Thumb up 0
  • C Stevens: Yes, sounds pretty good, but make sure to spell it as “employees” not with an...  Thumb up 0
  • Pinlia Wat: >>>>>> Some webmasters do not recommend Godaddy as it may suspend your domain or hosting...  Thumb up 0
  • Saswat Mohanty: Currently 4GB is morethan enough for games. And if you are bit unsatisfied then 8GB is...  Thumb up 0
© 2010 Computersplace.net