I am looking for a thorough tutorial which discusses night shooting with the EOS T3i.

Does anybody know of such a beast.  A video tutorial would be ideal.  The night-portrait setting is just not doing it for me, and I plan to make a career out of night-shots.
Any help?
Thanks.
Thomas Kemper
PS I am new to the forum.  I am glad to be here!

In addition, you could actually go out and shoot!  Shoot a lot, since we don't have film as an expense, there is no reason not to.  Try things different things.  Keep track and watch what you are doing as doing is the best teacher.  
EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
Photoshop CS6, ACR 8.7, Lightroom 5.7

Similar Messages

  • TS4212 can anyone help please..  since iCloud  came on the scene  My all in one printer  keeps saying  it is not USB connected.  I have been  looking for over a week now   and even chatted  with the USA  but cannot get it to work

    can anyone help please..  since iCloud  came on the scene  My all in one printer  keeps saying  it is not USB connected.   what do I do
    I have been  looking for over a week now   and even chatted  with the USA  but cannot get it to work.
    I am really struggling

    Thanks
    someone named  Eloisa   she gave me   a phone no.   or visit hp.com/uk
    cannot make head nor tale of it all.  I am old.  and find everything hard to undertstand

  • I'm looking for a digital picture frame that is compatible with the iPhone 5 and 4S.  I was looking at the Panasonic MW-20 but from what I can see I don't think it is.  Any information would be great!  Looking to buy a replacement frame for Christmas.

    I'm looking for a digital picture frame that is compatible with the iPhone 5 and 4S.  I was looking at the Panasonic MW-20 but from what I can see I don't think it is.  Any information would be great.  Looking to buy a replacement for Christmas.  Thanks!

    Hi - the new lightning connector on the iPhone 5 has an authentication chip so very few 3rd party manufacturers have come out with compatible devices - so I doubt that you will find a frame that works for both phones - however Apple has come out with 2 apapters - one is a cable and one is a direct 30 pin to lightning device - you would have to check out each frame to see if one of these might work - I looked at the Panasonic and it looks promising but I would check the return policy of anything that you buy in a case it doesn't work.

  • Looking for a sports video camera that is compatible with the mac

    Looking for a video camera that can record sports well and is also compatible with the mac. I've been using iMovie to edit videos for a highlight reel of my highschool soccer games that I coach.

    I like Sony HD MiniDV (HDV) Handycam Camcorder - HDRFX1000, but I have also used several older Sony (DCR-TRV17 and DCR-TRV70) and Canon (VIXIA HV20, VIXIA HV30, and VIXIA HV40) tape-based Firewire-equipped camcorders with good results.
    I prefer tape-based Firewire-equipped cameras because of their IEEE 1394 transfer speed, compatibility with iMovie HD, and ability to serve as the source recording directly into iMovie when desired.  If none of these characteristics is important to you, other Mac-compatible camcorders with suitable zoom ranges and lens speeds for the light levels you encounter should also do nicely for recording at your games.
    You do not say which iMovie version you are using, but you can find about known compatible camcorders by searching for the info in a search like this one.
    Message was edited by: EZ Jim
    Mac OSX 10.9

  • HT5244 Are there any signs i should look for that would indicate my system is infected with the new java virus?

    Just to keep an eye out.

    WZZZ wrote:
    I ran it just to see, even though I know I'm clean. I agree with T. Reed's comment that it may not be for the novice user who doesn't know what belongs where.
    Which is why they should just press "enter" when in doubt.
    I know this isn't your full time job, but perhaps you might want to write another alternate script
    Apple says it is going to write one.
    Another thing. When it was busy scanning Applications -- I know it says "this may take some time," I gave up and hit skip after giving it a very long time to finish.
    Thanks. Don't mean to be ungratefu for your good work on this.
    There is no way to tell how long that will take. If I had to edit that script, I would just remove that part. I was following advice that was not accurate in the ensuing blog frenzy. That was costly. I didn't have much time, so should I have gone ahead and scan system areas or done a better job with LaunchAgents? I made the wrong choice.
    I always welcome suggestions. Unfortunately, comments on User Tips seem to be locked down pretty tight.
    It is a moot point now that Apple is going to write a script. When that happens, I will take down that script. Until then, I'm just reminding people to press "enter" when in doubt.

  • Looking for a Powershell Script which can put the scom servers in maintenance mode

    Looking for a Powershell Script which can put the scom servers in maintenance mode so that SCOM should not send an alert during planned task.
    Rahul

    1. Provide list of servers line-by-line in C:\ServerList.txt, make sure you provide limited no. of servers, do not exceed 20 - 25 per batch
    2. Save the script with suitable name (test.ps1)
    3. Open PowerShell cmd prompt
    4. Script accepts 3 params - TimeInMinutes, Reason and Comment
    **** Please note, this script will work for SCOM 2012 R2
    param([int32]$TimeMin, [string]$Reason, [string]$Comment)
    try
    $api = new-object -comObject 'MOM.ScriptAPI'
    Import-Module operationsmanager
    New-SCOMManagementGroupConnection
    $Servers = Get-Content "C:\ServerList.txt"
    $Time = (Get-Date).Addminutes($TimeMin)
    Foreach ($Server in $Servers)
    #Get Computer instance
    $ComputerClass = Get-SCOMClass -Name Microsoft.Windows.Computer
    $ComputerClassInstance = Get-SCOMClassInstance  -Class $ComputerClass | Where {$_.DisplayName -eq $Server}
    If ($ComputerClassInstance -ne $Null)
    $HealthServiceWatcherClass = Get-SCOMClass -name:Microsoft.SystemCenter.HealthServiceWatcher
    #Get Health Service Watcher Class instance of the server
    $HSWClass = Get-SCOMClass -Name Microsoft.SystemCenter.HealthServiceWatcher
    $HSWClassIns = Get-SCOMClassInstance  -Class $HSWClass | Where {$_.DisplayName -eq $Server}
    #Starting the maintenance mode
    Start-SCOMMaintenanceMode -Instance $HSWClassIns -EndTime $Time -Reason $Reason -Comment $Comment
    Start-SCOMMaintenanceMode -Instance $ComputerClassInstance -EndTime $Time  -Reason $Reason -Comment $Comment
    Write-Host "Health Service Watcher and Agent server "$Server " kept in maintenance mode"  -foregroundcolor "green"
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 200, 0, "$Server kept in maintenance mode for $TimeMin minutes")
    Else
    Write-Host $Server" not found " -foregroundcolor "red"
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, "$Server could not be found in domain")
    Catch [system.exception]
    $api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, $_.Exception.Message)
    Faizan

  • Looking for a simple tutorial to building my first responsive web site in Dreamweaver CC.

    I am looking for a simple tutorial to building my first responsive web site in Dreamweaver CC.
    I have watched the tv.adobe video 3 times and I cam not able to do the actions the author shows.
    help.
    Ken Edwards

    Responsive and simple don't go hand-in-hand.  First do some prep-work to understand the concepts.
    Responsive Web Design
    http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/
    Introduction to CSS Media Queries
    http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-queries.html
    Jump start your RWD projects with any of the Responsive Frameworks below:
    Foundation Zurb
    http://foundation.zurb.com/templates.php
    Skeleton Boilerplate
    http://www.getskeleton.com/
    Initializr (HTML5 Boilerplate, Responsive or Bootstrap)
    http://www.initializr.com/
    DMX Zone's Bootstrap FREE extension for DW
    http://www.dmxzone.com/go/21759/dmxzone-bootstrap/
    Project Seven's Page Packs (Commercial CSS Templates)
    http://www.projectseven.com/products/templates/index.htm
    Have fun!!
    Nancy O.

  • Looking for a pdf reader which meets these requirements

    I am looking for a pdf reader which meets these requirements:
    1- Open pdf starting from last page opened during last session
    2- Be able to scroll between pages vertically (not horizontally like many current ones do). Vertical scroll should be a continuous smooth scroll without doing a sudden full page pull in. Should behave as if pdf is one single very long page.
    3- Should be able to change width of page and lock it. Page should not move sideways. Page width should be remembered so when same pdf is opened, it opens in that width.
    4- A fast scroll feature. Useful for pdf's with hundreds of pages.
    5- Nice to have feature: when opening the pdf reader, it automatically opens the last pdf file on the last page read.
    I have tried all the free pdf readers in the AppStore and none met all these requirements except for two which had these issues:
    1- iRead limitation: When screen is touched for more than a second, the page is frozen (locked) and page can't be scrolled. Scrolling is done when doing quick swipes only
    2- FileApp limitation: Does not remember last page opened. Does not remember last width set. Fast scroll doesn't work properly when width is other than default.

    iAnnotate additional points
    iAnnotate works with DropBox to download and upload edited PDFs. It does all the other same things, email, USB, and iTunes etc. but it also can download PDFs from any web site.
    You can transfer hundreds if not thousands of files at one whack using the AIJ Utility on your desktop.
    If you transfer a large number of files you have to plan not to use iAnnotate a while as it has an index function that indexes all the text into a master 'dictionary' so it can do searches for data and find PDFs for you. This indexing takes hours if you transfer hundreds of moderate size PDFs at one time.
    The biggest PDF I have feed it was a Gimp manual at close to a thousand pages.
    Remember the scratch pad ram is only 256 MB in the current iPad. You can cash iAnnotate if you do something really dumb with such a large file. Other applications also grab and hold onto chunks of this ram in the iPad so it is best to force a memory reset before doing anything that is going to max out that ram.
    iAnnotate allows you to have more than one PDF open at a time and you can tab between all the open PDFs in a blink just as you would in a tabbed web browser.
    If you zoom a page larger than the width of the screen it slides around. Less than the width of the screen the page locks in the size while scrolling which is smooth between pages.
    iAnnotate is a very well made product for dealing with PDFs. Annotations display in Goodreader and in the Mac OS Preview.

  • Updated to snow leopard, now my mouse does not work I have restarted the computer and there is a box on the start up page looking for a wireless mouse which I do not have.  How do I fix this buy a wireless mouse?

    My mouse quit working shortly after installing snow leopard.
    On the log in screen it is stuck looking for a wirelesss mouse, which I do not have
    How do I get around this besides buying a wireless mouse?

    What kind of mouse do you have? USB? Have you tried to plug it in - try all the USB ports (maybe there is a problem with one). It should automatically detect it.

  • Looking for a Laser Printer which takes Paper Roll instead of seperate(A​4 size) papers

    we are looking for a Laser Printer which takes Paper Roll instead of seperate(A4 size) papers   

    I don't know of any laser printers that take a roll instead of sheets.  There are some small designjets that might have a roll feed accessory but they are inkjet printers and designed for graphics applications.
    insert signature here

  • Im completely new to Mac. Im swapping my windows laptop for macbook pro and looking for network storage solution which the Time Capsule seems to do. Is it possible to use this as NAS for my desktop Windows PC - windows 7

    Im completely new to Mac. Im swapping my windows laptop for macbook pro and looking for network storage solution which the Time Capsule seems to do. Is it possible to use this as NAS for my desktop Windows PC - windows 7

    Broadly speaking I want some sort of network storage( wireless or through my existing wifi router) that I can access files for both my windows PC and Macbook and also to access files to my iPad/ iPhone. Some sort of backup and sychronisation so that I can access certain files remotely.
    Buy a real NAS.. synology or QNAP are the standard... although companies like Netgear and Western Digital and Seagate make them as well.
    There is no problem sharing between Mac and PC now.. you do not even need a NAS to do that.. you simply share the hard disk directly. Mac talk SMB.. everything talks SMB nowadays.. so it is easy.
    ipad and iphone are not designed to use NAS.. they are designed to backup only to the cloud or itunes.. but you can load an app like file browser if you want.
    http://www.stratospherix.com/products/filebrowser/
    Remote access to the Apple TC is somewhere between difficult, to impossible from a PC.. Apple use BTMM and iCloud but the service is not offered to PC.
    A real NAS will offer HTTPS or SFTP or several other methods.. that both Mac and PC can use.
    You simply plug it into the current wireless router.. it is a network device and assessable over the network. It is not necessary to buy another router.. in fact that is a waste.

  • Looking for a good tutorial about cookies

    Hello
    I'm looking for a good tutorial ( and clear enough for newbie like me ) on how to make 1.. or 2 cookies and some tips about how to make it.
    - I need to have a cookies that record and store the user preference if he is on an english browser but wish to see the french version of my website ( assume i have a browser language detection script ) and then again turn off the language detection script of the french page if you are on an english browser ( or the other way, if you choose the other way )..
    - I need to have a cookies that record the fact than if you are a mobile, you came on the webpage ( and got redirected the first time to the mobile page ) and that if you choose to click the button " go to regular website", it somehow turn off the mobile detection script on the main page so that the user will be able to navigate the real website if he want to.
    I have absolutly no idea how to make cookie, and even with google, i get basic information how to make cookie, call them, erase them, but not how to make them work like a twin with the other script, and not what to put inside a cookies... in short i know nothing about that ... yet....
    I'm not sure if i am clear, anyway any help, or tip's will be greatly appreciated. Thanks !
    I would prefer Java or Html tutorial for cookies if possible.
    Message was edited by: Chorale0001

    Client side
    I am a novice, but not a rookies.
    I did www.episodesoft.com It is my first project that so many feature for me. Previously i was only doing the preparation for another man who was scripting, but now i'm require to do all. My studying about html/java/css were only an introduction. I'm mainly self-learning and already learned a lot on this website.
    By the way, the Cookies are for this website because right now, it detect the mobile and redirect you. It will also detect ( script ready but disabled ) the language to redirect you to the english version of the website ( currently under construction ).

  • I am a researcher looking for raw, ungrouped crash data. Specifically, I am looking for crash thread information which has yet to be grouped.

    I am a researcher looking for raw, ungrouped crash data. Specifically, I am looking for crash thread information which has yet to be grouped.

    I do not know the answer,but until you get a better answer try the links
    *http://code.google.com/p/google-breakpad/
    *http://socorro.readthedocs.org/en/latest/index.html
    *https://lists.mozilla.org/listinfo/tools-socorro

  • Looking for a simple tutorial

    where i can find a simple and essential tutorial? I would like to have only examples for each basic argoument, too
    thx

    You can start with the PL/SQL Users guide from the documentation. It includes good examples too.

  • Dynamic conversion...looking for book or tutorial

    I have a basic html website, created in Dreamweaver CS3. I
    need to build a simple site search function, but not sure where to
    start. Can someone recommend to me either reading or an online
    tutorial which could help me. The host is equipped with PHP, MySQL,
    and coldfusion. I am on a Mac running Leopard (10.5).
    I know I need to convert the site to a dynamic site, but want
    to do so without having to start over. Is there an easy way to
    convert the site to a dynamic site? Would really appreciate someone
    to let me know where to start. Thanks!

    I think you can start with this: The Essential Guide to
    Dreamweaver CS3
    with CSS, Ajax, and PHP. It's excellent!!
    http://foundationphp.com/egdwcs3/index.php
    paulkirtley escribió:
    > I have a basic html website, created in Dreamweaver CS3.
    I need to build a
    > simple site search function, but not sure where to
    start. Can someone recommend
    > to me either reading or an online tutorial which could
    help me. The host is
    > equipped with PHP, MySQL, and coldfusion. I am on a Mac
    running Leopard (10.5).
    >
    > I know I need to convert the site to a dynamic site, but
    want to do so without
    > having to start over. Is there an easy way to convert
    the site to a dynamic
    > site? Would really appreciate someone to let me know
    where to start. Thanks!
    >

Maybe you are looking for

  • Help setting up back navigation button by label name.

    Newbie back for some gems of wisdom. I am trying to get forward and back buttons to advance the user along the timeline by label name. I got the forward button to work, but can't seem to find the right code tweakage to get the back button to work. He

  • Re: Error in System Object in Portal

    Hi Experts, I have created a system and have given values for all the property category 1.WAS 2.ITS 3.Connector 1.when I do the connection test for ITS, I'm getting error saying "User mapping is not valid HTTP/S connection failed" 2.when I do the con

  • How can I get class's members while editing?

    Hi, all. I am creating Java editor. In Forte, JCreater, MS's visual studio.. most editor shows all members of the class you are editing. When you declare one method it shows the method name on the member's tree right away. How can I do this. Thank yo

  • Constraint On Views

    Dear All, Can we Implement Constraints ,like UNIQUE,PRIMARY KEY,FOREIGN KEY on a view. we are using Oracle 10g. Waiting for ur valuable replies, Muhammad Mohsin Zia

  • Undo issues with Prem CC OSX- can't lock COMMAND-Z to undo feature in keyboard shortcuts

    Hello, As per my described problem in heading, when I lock UNDO command to COMMAND-Z in Premiere CC, when I try to undo with the command my clips / edit on the timeline are shifting right. If I use UNDO from the pull down menu, the functions performs