Ready for the new challenge.

Hi,
I've been a bit down on me luck recently and have lost me job - Well the lads had a bit of a whip round so am not short of a few bob you know. Any way as I've got a bit of time on me hands I thought I'd give this java stuff a go. Anyhow, I've managed to follow the tutorials and me son gave us a bit of an hand like you know, gettin started and that, and now, I can do a few of me own programmes, yeah not bad eh? So, I've like managed to get the thing to werk. Yeah, am not bad like, even though nottin much happens, just this black panel that blinks and then says sometin like > * (blink)
25
and then goes back to the sdk thing - early days like as I say I'm gettin the hang of it now. I think I'll be right good in a couple of days or so.
So, whats the chance of one you top java lads givin us a job then?

Im thinking of moveing into a new Barrat Tomb and I need someone to decorate, I was thinking of a "the book of the dead" theme, definetly no chintz. How are you at Hieroglyphs, I would get one of my shabtis to do it but they've been getting a bit out of hand lately.

Similar Messages

  • What would the pricing be for adobe web hosting for me; I all ready have CS3 creative suite, an existing plan for the new Photoshop and Lightroom 5. But I need also to use Muse?

    What would the pricing be for adobe web hosting for me; I all ready have CS3 creative suite, an existing plan for the new Photoshop and Lightroom 5. But I need also to use Muse?

    Hello Fpless,
    For more information regarding your request, I would advise you to please get in touch with our Sales Team by phone.
    Phone number: 802 06016 (dial from Denmark)
    Thank you.
    Arnaud.

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • Can I use iphone 4s USB cable to recharge for the new ipad

    Can I use iphone 4s USB cable to recharge for the new ipad

    The iPod, iPad & iPhone cables are identical, however, the chargers are not.
    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
     Cheers, Tom

  • 7200 rpm vs. 5400 rpm for the new MacBook Pro?

    Hi there,
    I'm ready to buy one of the new MacBook Pros. I was going to go for the 15" 2.0 GH. There's one thing that's difficult to decide. Should I go for the 7200 rpm HD upgrade?
    In principle it would seem that the default 5400 rpm HD would act as a bottleneck for the new and powerful CPUs. I heard some people say, though, that the 5400 rpm HDs are fast enough and that I would not notice any difference. Therefore, spending the extra money on a faster HD would be a waste.
    There is also the concern about battery life. Would a 7200 rpm HD reduce the battery time considerably vs. a 5400 HD?
    Since this would be my work computer, I would not want to sacrifice performance. So, if there is no significant difference in battery life and a considerable gain in performance, I would definitely go for the 7200 rpm option.
    What is your experience and/or opinion? I'm anxiously waiting for your response so that I can go ahead and enjoy the new Mac Book Pro.
    JM

    Thanks for your prompt response japamac. Interesting results. I wonder whether the results for performance, battery usage and temperature for the 7200 rpm that comes as an option in the Apple store would be similar to the ones you got for the 7200 rpm HD you used in your test.
    One question, since the difference is quite remarkable in the synthetic tests for "Media Center", I'm curious to know what real life applications would that relate to.
    Thanks again for your help.
    JM

  • Do I need a different SIM Card for the new iPhone?

    Do I need a different SIM Card for the new iPhone?

    The iPhone 5 will come with a new SIM Card in the iPhone ready for you to activate. If you want to make things a bit more difficult, you can cut a Micro SIM to the Nano Sim size with scissors. Of if you have any problems with your iPhone 5 and its SIM Card you can get a new one from your Carrier. But, again the new iPhone 5 will come with a new one for you.

  • Linux is not ready for the desktop - Mandriva devs

    I just read this in the latest DistroWatch Weekly:
    You wouldn't expect something like this to happen at any time, let alone on the eve of Mandriva Linux 2007 release. Last week, two Mandriva developers went on record saying that "Linux is not ready for the desktop". In a web log post entitled Why I'll never use Linux for my main desktop, Vincent Danen concluded: "This kind of thing is precisely why, for me, Linux belongs on the server. Now if those kernel-developing idiots would get their act together and give us a 2.6 kernel that was a) stable and b) supported for more than a week, then I'd really be pleased." Another Mandriva developer, Fabrice Facorat, agreed. In a post called Linux ready for Desktop? Of course not!, he had this to say: "For me when you have control over the environment and the hardware, Linux is ready: think servers, workstations, thin clients, kiosks. However when you have no control on the hardware, Linux is not ready because it somewhat lacks flexibility."
    There you have it, right from the horse's mouth! From two guys who have been working for a Linux company, developing a popular desktop Linux distribution, for years! Yes, that's right, Mandriva Linux is not ready for your desktop! Don't waste your money buying it!
    One really has to wonder about the future of a company which happily asks Gaël Duval to leave, yet is quite pleased to keep developers who publicly hint that they consider Linus Torvalds, Alan Cox and other kernel developers "idiots"! A perfect pre-release PR, non?
    No comments... I just cannot find any words.  :shock:   :?

    ughhhh. Mandrake have always sucked at marketing, they do themselves no favours. IMHO, they're becoming more and more irrelevant with each release. Once upon a time I might have reccomended mandrake to a newbie, but certainly not now. They've got great assets and a good base. The *potential* to become a good distro. But each release, stupid bugs make it through, and the improvements seem negligable.
    Once of their better features is their huge repository of packages -- which is horrendously poorly advertised. You'll find nowhere in the GUI's or desktop a place to access their 'contrib' repo which is the equivalent of our extra, and contains a huge amount of packages. Also an important point for mandriva has been mandrakeusers.org/mandrivausers.org, which has been a huge community offering great support for newbies to mandrake, rather than directing them into the expensive mess that is known as the mandriva club. Mandriva have totally ignored this resource, and have made no attempt to support this board, upon which you'll find, I have quite a reasonable post count from back in my early days of Linux (mandriva 8.2 was first distro), and continuing on to now. It also exemplifies their (lack of) decent customer support.
    The distro has had countless irritating bugs which pervaded through releases, and all sorts of utterly stupid ones that should never have made it through the testing process. They do little to help themselves with this. I've reported countless bugs, and all of them have been ignored for months. On their last release, they included the old rt2500 module, which at the time, hard locked SMP machines, and made my mandriva unbootable as it was loaded on boot. I filed a bug, marked it as high priority and it was utterly ignored for more than 6 months, so much so I had forgotten about it. Other bugs and emails have suffered a similar fate.
    It's GUI tools, have become a complete mess, for example wireless, in 2006 release, was absolutely horrendous to configure, and had no support for WPA -- wpa_supplicant wasnt even on the CD's so people could configure it manually.
    It's good to see they're finally ditching their old desktop theme, which they dragged on for far too long. It's always been absolutely hideous.
    Their business model emphasises the 'club' far too much, making it difficult to even find a download on their site for the standard version, which has "Free" tacked all over it, as if to try and make you feel like a cheapskate. Doesnt help how they change their release cycle frequently either.
    The stupidity of Mandriva just confounds me. PR like this does nothing to help them. They criticise the developers for not providing a 2.6 kernel that is stable. Maybe mandriva should look in their own backyard, and offer a distro that's remotely stable. Last time I used it, it had a horrendously old udev, hotplug, and a very slow hardware detection system. It still used bootsplash, which has been unmaintained for over two years, and included supermount, which Con Kolivas has disowned and again, has abandoned for years. They're hardly doing themselves favours patching their kernels with this out of date crap. Nor do they update them, I dont see mandriva offering updates to newer ones, which would no doubt fix many of the reported issues.
    Alternatively they could do what other distros do and pitch in and help. Many of the kernel developers are also employees of other vendors, or have an important part in other distros, such as Daniel Drake and Robert Love. It'd be great for mandrake if they employed a kernel developer, because it's clear THEY are the ones who are the idiots.
    I have no idea how they made it out of their bankrupcy, with the lacklustre state of their miserable distro, I think their days are numbered, unless they do something to change around their image and fix their product.
    ok, im done.
    James

  • I'm trying to upgrade my iCloud storage for the new price.

    I'm trying to upgrade my iCloud storage for the new price, but it doesn't gives me the option of 20G for $0.99 a month.
    How can I get 20g for $0.99 a month?
    Thanks!

    Katherine,
    have you read the message in the panel? Something is wrong with your credit card. Perhaps you have to enter a new date of expiration.
    In the small print it says, there is still a purchase, that needs paying,"Ugly Heart" with an amount of R 9.99. And "We were unable to authorise your credit card for this purchase".  You will first have to update your Billing Information before you can proceed to make a new purchase for upgraded storage.  Click "Account Details" in the iCloud panel.
    -- Léonie
    If you cannot fix the account from the iCloud panel, open iTunes and sign into the "Store" menu, Then use the "Store > View account" item there to check for problems with your Billing Information.

  • If I wanted to exchange my iPhone 5 for the new iPhone 6 (no additional cost after $199 gift card from selling iPhone 5) do I have to pre-order online or do I just have to show up at a Verizon store Sept 19th?

    If I wanted to exchange my iPhone 5 for the new iPhone 6 (no additional cost after $199 gift card from selling iPhone 5) can I pre-order online now or do I just have to show up at a Verizon store Sept 19th?

        scodaddy, that is a wonderful question. We are super excited about the new iPhone. You can always pre-order your new iPhone online and then start the mail in rebate by following this link: http://bit.ly/GGnDDC Or you can always go into the store location and do it all in store on the 19th when the phone is launched. That would depend on if the store has them in stock when you go in. I hope that this was able to address your concern.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

  • Error while generating CW kin for the new BG created for Taiwan

    HiAll,
    Please provide your help to resolve this issue,
    Iam getting error while generating CW kin for the new BG created for Taiwan, China.
    Error : Value TW is not a Valid context for the Descriptive Flexfield Person Developer DF.
    Please let me know, is there any step missed to create CW kins for new BG's.
    Thanks-
    Sowmya.
    Edited by: user13419037 on Jul 2, 2012 3:41 AM

    Hello ,
    Your solution can be solved by enabling the displayed check Box in Location Address DFF
    Thanks
    Bindu

  • Can I return my iPad2 for the new iPad

    My parents bought me the new ipad2 in January and they also pay for the one year guarantee. The iPad 2 is brand new in good condition. Now, can I return my ipad2 for the new iPad without paying?

    No, unless the store you bought it from has a very generous return policy - the Apple Store official policy is 14 days. The one year warranty is on defects in the product, not for upgrading. You can sell your iPad and use the funds to buy a new one, but you will likely sell for less than you paid.

  • Hi have just purchased iphone 4s . my itunes on my mac is currently 10.4 . 10.5 is needed for the new iphone but when i download it and click on install the itunes about still says 10.4 . have tried to update through itunes but it says there is no softwar

    hi have just purchased iphone 4s . my itunes on my mac is currently 10.4 . 10.5 is needed for the new iphone but when i download it and click on install the itunes about still says 10.4 . have tried to update through itunes but it says there is no software available for me . please help . mr frustrated

    If your computer is running an OS X prior to Snow Leopard 10.6,
    the answer (if it is an Intel-based Mac; not old PowerPC model)
    would be to buy the retail Snow Leopard 10.6 DVD from Apple
    for about $20, and install it. Then update that to 10.6.8 by using
    the installed Snow Leopard online to get Combo Update v1.1 for
    Snow Leopard 10.6.8. After that is installed & updated, run the
    system's Software Update again, to see what else is available to
    that system.
    Later systems can then be looked into at Mac App Store, once
    the computer is running Snow Leopard 10.6.8.
    And if your computer is a Power PC (G4/G5, etc) and has no
    Core2Duo kind of CPU -- See "About this Mac" in apple menu
    to disclose the general info about your Mac. Also you can see
    even more by clicking on "More Info" when looking in there...
    If it isn't an Intel-based Mac, it can't run a system past 10.5.8.
    Hopefully this helps.
    Good luck & happy computing!

  • I have just getting a new phone and I have forgot my password an Apple ID what I made new for the new phone now I cannot get on it because asking for id and password what should I do help plz thank u

    I have just getting a new phone and I have forgot my password an Apple ID what I made new for the new phone now I cannot get on it because asking for id and password what should I do help plz thank u

    Try
    https://iforgot.apple.com

  • My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTune.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTunes.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    Hi..
    here can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?
    Not possible. You need to update to v10.6.8
    Click your Apple menu > Software Update
    Or update using the this download > Mac OS X 10.6.8 Update Combo
    Then restart your Mac.

  • Can i change my old iphone 5 for the new one even though i bought the old one around november?

    I bought my iphone 5 unlocked from a retail apple store around november of 2012. I have had it on simple mobile but i only get edge. I was thinking if i could go with tmobile and get a better speed with this iphone? And if not, if there is a way to change my iphone 5 for the new one for no cost or atleast a low one?

    No. Your "problem" isn't covered by the warranty. It's not malfunctioning. It's working exactly as it was designed to. Sell your phone and use the proceeds to buy a new one.
    You can't get a replacement from your car just because the newer models off the line are being built with a feature yours didn't come with.

Maybe you are looking for

  • What is the best way to manage my hard drive?

    Background - I have a 13" MacBook Pro with 250GB hard drive and recently I have had to delete or migrate files to external HDs to gain space. I spent last night doing just that. I also have two EHDs - a 2TB My Passport and a 3TB Seagate GoFlex Home W

  • SQL Server 2012 Express - Could not load the file or assembly 'Microsoft.VisualStudio.OLE.Interop

    Windows 7 Home Premium, SP1 64-bit I just installed SQL Server 2012 express - Express with Advanced Services (contains the database engine, Express Tools, Reporting Services, and Full Text Search), file name -  SQLEXPRADV_x64_ENU. Opening SQL Server

  • Some videos show up widescreen while some don't...???

    I would love a defintive answer to this one. I have my ATV hooked upto my TV that puts out 1080i. I've ripped all my movies at 640x480. Some show up full screen while others show up with bars on the sides. Is this because some movies are formatted fo

  • Performance effect of hierarchy in the query

    HI Expert, We can filter value successfully in the 0COSTCENTER field in the query, 0COSTCENTER as a row and the hierarchy is active, but when the hierarchy is inactive the query get freeze when we filter value. We tried to replicate the issue on othe

  • Purchasing iSkin eVo2 Click Wheel Caps in the UK...?

    Hello folks, Resident Furball here with a quick query. Apologies for posting in multiple locations, but I'm seeking an answer from the entire demographic of Pod users for this, given that it's something of an abstract query, and I need to play the nu