Which DVDs are good for storing projects.

I tried to burn a family video project (iDVD) on a blank (newly purchased) Verbatim DVD-R (MCC03RG20 discs made by Mitsubishi Chemicals and branded for Verbatim). This is the message I got: "Unable to burn project. (The device failed to calibrate the laser power level for this media.)"
Then I could burn the same project on a plain Sony DVD-R. And it worked.
I am trying to burn my family movies on good quality disk that is why I bought the Verbatim disks. But it seems they are not good???? Please help!!!
I also burn 1 copy of my projects on Verbatim Gold Archive DVD-Rs for long term storage. These are burning as well.
What is wrong with my "plain" Verbatim disks. I want to use these for every day viewing so my kids can load them in the player, lose them etc. That is why I bought these cheaper versions for the everyday use.
Thank you so much for any advise,
Ildiko

So I assume nothing wrong with my plain Verbatim but maybe my Superdrive is dirty. But why would it burn other brand DVDs?
Taiyo Yuden DVDs have a 100-year data integrity guarantee. Made in Japan, not China.
I have found DVD+R to be more reliable than DVD-R. The only disadvantage to DVD+R is that DVD players manufacture before 2003 may not play them.
DVD+R disks are better than DVD-R disks because of the increased error correction technique used for the newer +R type.
I would recommend Taiyo Yuden DVD+Rs. I get excellent results using iMovie 06 with iDVD 09, (and sometimes iMovie 09).
This may be the best media if money is no object.
MAM-A DVD+R 4.7GB. Mitsui Gold Archive DVD
Gold archive recordables are high performance discs featuring gold-on-gold construction, which provides longevity and maximum resistance to environmental degregation.

Similar Messages

  • Which DVD are good  for burning

    I tried many different dvd/cd for burning movies and music, but they are not all working very well.
    Does somebody knows which dvd are good for burning movies and music.

    Hi Sue,
    Thanks for your answer. I bought them also before, but it seems that not all working very good.
    I burned dvd's and play them on my Home theather. Beginning good, later it gave reading problems. What I also know is: Dvd players from 40 euro's works better then one from 1600 euro's.
    I shall buy the -R this week and hopefully the work better.
    Ray

  • Which headphones are good for gaming ?

    i am thinking of buying gaming headphones . which ones are the best for a macbook pro ?

    If you want to do any serious gaming, get a desktop PC. Preferrably build your own (saves a lot of money).
    Alienware laptops are over-priced and over-hyped. For that much money, you could build a beast gaming rig. 
    There are some tutorials online by this awesome guy that should help you get started!
    Geek Squad Customer Service Agent - Store 101
    While I am an employee, all my posts are my own opinions and do not represent that of Best Buy in any way.

  • Vector (good for storing) and arrays(good for numerical sums, multiplying)

    Hi guys, I am trying to use vectors because I need a variable lenght and store 2D arrays in one coordenate of a vector. That is why I am using vector instead arrays. I can turn the type of variable using "Integer" (instead of "int" as arrays), "Double" (instead of "double") and so on. The problem is that it doesn't allow me to operate, it is very good for storing, but I need to be able to operate, multiplying, sum, etc the elements there are in the coordenates. And I think it is not possible.
    What u think about it? I can only store stuff ion a vector, I cannot operate. Besides I cant turn a data from "Double" to "double", I can either use arrays OR vectors, but not both of them at the same time.
    You think i am wrong?, because I mean in that case, Java is not very useful to do this numerical problem.
    Thanks.
    This is only a class of the program I am doing.
    import java.util.*;
    class SolveDomain {
         int newton_iter = 0, m = 0, work_count = 0;
         double t = 0, dx, dy, dt, start_t=0;
         double[][] v;
    Details obDetails = new Details();
         public double[][] solveDomainMethod(Double vAxn, Double vAyn, Double vBxn, Double vByn, Integer nxn, Integer nyn, double dt, Double error1n, Double error2n, double end_tn, int stepsn, Integer kcn, Double u_n[][], Double v_n[][], Double bc1, Double bc2, Double bc3, Double bc4, double u[][]) {       
         double dx2, dy2, err = 1000000;
         v = new double[nxn+1][nyn+1];
         DoublevAxn, Double vAyn, Double vBxn, Double vByn, Integer nxn, Integer nyn, double dt, Double error1n, Double error2n, double end_tn, int stepsn, Integer kcn, double u_n[][], double v_n[][], Double bc1, Double bc2, Double bc3, Double bc4;
    double k[][] = new double [nxn+1][nyn+1]; double kp[][] = new double [nxn+1][nyn+1];
    double kpp[][] = new double [nxn+1][nyn+1]; double dudx[][] = new double [nxn+1][nyn+1];
    double dudy[][] = new double [nxn+1][nyn+1]; double d2udx2[][] = new double [nxn+1][nyn+1];
    double d2udy2[][] = new double [nxn+1][nyn+1]; double dudt[][] = new double [nxn+1][nyn+1];
    double a[][] = new double [nxn+1][nyn+1]; double b[][] = new double [nxn+1][nyn+1];
    double c[][] = new double [nxn+1][nyn+1]; double d[][] = new double [nxn+1][nyn+1];
    double F[][] = new double [nxn+1][nyn+1]; double A[][] = new double [nxn+1][nyn+1];
    double B[][] = new double [nxn+1][nyn+1]; double C[][] = new double [nxn+1][nyn+1];
    double D[][] = new double [nxn+1][nyn+1]; double E[][] = new double [nxn+1][nyn+1];
    double s[][] = new double[nxn+1][nyn+1];
              KDerivatives1 obK1 = new KDerivatives1();
              KDerivatives2 obK2 = new KDerivatives2();
    UDerivatives obU = new UDerivatives();
              CalcPdeCoefficients obPde = new CalcPdeCoefficients();
              CalcFdCoefficients obFd = new CalcFdCoefficients();
              Gs obGs = new Gs();
    dx = obDetails.seg(vBxn, vAxn, nxn);
    dy = obDetails.seg(vByn, vAyn, nyn);
    dx2 = dx*dx;
    dy2 = dy*dy;
    if (bc1 != -999999999) obDetails.initialiceBCDomainL(dx, dy, vAxn, vAyn, bc1, u);
    if (bc2 != -999999999) obDetails.initialiceBCDomainU(dx, dy, vAxn, vAyn, bc2, u);
    if (bc3 != -999999999) obDetails.initialiceBCDomainR(dx, dy, vAxn, vAyn, bc3, u);
    if (bc4 != -999999999) obDetails.initialiceBCDomainD(dx, dy, vAxn, vAyn, bc4, u);
    obDetails.source(dx, dy, vAxn, vAyn, s);
    do {
    ++ newton_iter;
    if (kcn == 1) { 
              obK1.calc_k(u, k);
         obK1.calc_kp(u, kp);
         obK1.calc_kpp(u, kpp);
              } else {
                   obK2.calc_k(u, k);
              obK2.calc_kp(u, kp);
              obK2.calc_kpp(u, kpp);
                   obU.calc_dudx(u, dx, dudx);
              obU.calc_dudy(u, dy, dudy);
                   obU.calc_d2udx2(u, dx2, d2udx2);
                   obU.calc_d2udy2(u, dy2, d2udy2);
              obU.calc_dudt(u, u_n, dt, dudt);
              obPde.calcPdeCoefficientsa(k, a);
              obPde.calcPdeCoefficientsb(kp, dudx, b);
              obPde.calcPdeCoefficientsc(kp, dudy, c);
              obPde.calcPdeCoefficientsd(kp, kpp, dudx, dudy, d2udx2, d2udy2, d);
              obPde.calcPdeCoefficientsF(k, kp, dudx, dudy, d2udx2, d2udy2, dudt, s, F);
              obFd.calcFdCoefficientsA(a, b, dx, dx2, A);
              obFd.calcFdCoefficientsB(a, b, dx, dx2, B);
              obFd.calcFdCoefficientsC(a, c, dy, dy2, C);
              obFd.calcFdCoefficientsD(a, c, dy, dy2, D);
              obFd.calcFdCoefficientsE(a, d, dx2, dy2, dt, E);
              obGs.gsMethod(v_n, A, B, C, D, E, F, dt, error2n, v);
              m = m + obGs.iter;
              for (int i=1; i < u.length - 1;i++ ) {
                   for (int j=1; j < u[0].length - 1 ;j++ ) {
         u[i][j] = u[i][j] + v[i][j];
    err = 0;
              for (int i=0; i < u.length ;i++ ) {
                   for (int j=0; j < u[0].length ;j++ ) {
                   err = err + Math.pow(v[i][j],2);
              err = Math.sqrt(err);
    while (err > error1n);
         return u;           
    public double[][] rectangleDomainF (Vector vAxvector, Vector vAyvector, Vector vBxvector, Vector vByvector, Vector nxvector, Vector nyvector, Vector error1vector, Vector error2vector, double end_t, int steps, Vector kcvector, double numberdomains, Vector bc1vector, Vector bc2vector, Vector bc3vector, Vector bc4vector) {
                   double u[][] = new double[u.length][u[0].length];
                   double dt = obDetails.seg(end_t, start_t, steps);
                   Vector uvector = new Vector();
                   Vector vvector = new Vector();
         do
    ++work_count;
              t = work_count * dt;
    for (int k = 0; k < numberdomains ; k++) {
         solveDomainMethod((Double)vAxvector.elementAt(k), (Double)vAyvector.elementAt(k), (Double)vBxvector.elementAt(k), (Double)vByvector.elementAt(k), (Integer)nxvector.elementAt(k), (Integer)nyvector.elementAt(k), dt, (Double)error1vector.elementAt(k), (Double)error2vector.elementAt(k), end_t, steps, (Integer)kcvector.elementAt(k), (Double [][]) uvector.elementAt(k), (Double [][]) vvector.elementAt(k), (Double)bc1vector.elementAt(k), (Double)bc2vector.elementAt(k), (Double)bc3vector.elementAt(k), (Double)bc4vector.elementAt(k), u);
                                                           uvector.insertElementAt(u, k);
              vvector.insertElementAt(v, k);
    while (t < end_t);
    return u;

    The only way to, for instance, multiply a Double object by another Double object is to convert them back to primitives, multiply them, and create a new Double instance:
    public Double multiply(Double lhs, Double rhs) {
       return new Double( lhs.doubleValue() * rhs.doubleValue() );
    }This is just an overhead that you have to accept if you want to use collections with primitive type data.
    Coming soon in 1.5 (which is in Beta now and available for download in the usual places) a new feature called auto-boxing will do a lot of this automatically for you. You need to be aware that it's doing exactly the same operations with the same performance overhead; but it does save a lot of typing.
    Thus in 1.5 the above becomes:
    public Double multiply(Double lhs, Double rhs) {
       // Under the hood this is IDENTICAL to the above example
       return lhs * rhs;
    }Now, addressing your post directly:
    Besides I cant turn a data from "Double" to "double"
    Yes you can, as in the first example, the doubleValue() method converts a Double object to a double primitive.
    Java is not very useful to do this numerical problem.
    If you need math performance, you need to use primitives, yes. Yes, that will preclude the use of collections.
    Dave.

  • Guide me as a developer of iOS and also and active online game player of games like PWI, which macBook is good for me pro or air or other if any ?

    Hi,
    I am now to macBooks and dont know which one is good for me.
    Please guide me which one I have to buy.
    Regards,
    Aalok Parikh
    From India

    The retina display MacBook Pros are very lightweight, so you won't really notice a weight difference between a 15" or 13" one. If you can afford it, get the 15" notebook.
    Purchase the most powerful configuration you can afford.  If you can afford it, get the larger SSD - but, you can always get a portable external hard drive that you can take with you if you find the internal drive is too small.
    ~Lyssa

  • How do I upload to Facebook in High Resolution using my iPhone. Do I need an app? Which ones are best for the job? (I know how to do it on a PC :) )

    How do I upload photos to Facebook in High Resolution using my iPhone. Do I need an app? Which ones are best for the job? (I know how to do it on a PC )

    100pat wrote:
    Thanks, I can do it fine from my Windows desktop PC, I just want to know how to do it from an iPhone4
    Like I said before ask facebook or look at their support site to see if that is even a feature.

  • Edge and Next are good for the corporations but are they good for the consumer?

    Ok so I have never paid full price upfront for a phone!  Ever since my first phone from VoiceStream I have opted for what ever phone was "free" because way back then (I blush as I type) I actually thought the phone was "free!!!" Ah, to be naive again!! But as we all know the phones never were nor will they ever be free. 
    However I say programs like Verizon's Edge and AT&T's Next are good for the corporation if they weren't they would not exist.  The first reason I say this is because Edge and Next allow the cellular service provider to easily recoup the entire cost of the phone in a clear way unlike with subsidized phones that muddy the profit water.  For example, the Verizon 64GB iPhone 5s retails for $849.99, currently with a two year contract you pay $399.99 for that 64GB iPhone 5s.  The EFT for that phone is $350 (minus $10 per month of post paid service).  If you on the 15th the day after you got your phone you paid the EFT but kept service you only paid $749.99 for that $849.99.  Sure you still pay for service but you can leave when ever and Verizon cannot say hey you owe us $100 more for you phone.  Its yours and they can't take it back and the only way Verizon will get that $100 back is though another customer  that subsidized a much lower cost phone that at the completion of that contract Verizon will  more than recoup the cost of that lower priced unit. To top that off you could turn around and sell the phone for $800 go back to Verizon or another provider buy a $450 phone and break even.  I'm not suggesting that people do that or that it may prove to be a big hassle for some that went through all the trouble.  Its just a point to show that subsidized phones make the profits less clear for the service provider to see at first glance.
    Second reason these programs are good for the corporation is they allow the service providers to get a better grasp on the true cost of maintaining their networks and providing us the consumer access to their networks.  Third reason it good for the corporation is the people that feel the need to upgrade every six months to a year are required to pay at least 50% of the retail cost of the phone at the same time they must surrender that device in exchange for the new device.  So the service provider then has the phone refurbished certified to be in "like new condition" and sell it again potentially making more than retail cost when the profits of both sales of the same handset are factored together. 
    That being said what will the impact of programs like Edge and Next have on cost of future cellular service plans and smartphones?  Over time will the service provider give us the best per line access fee (not likely but maybe)? Or will people upgrading their smartphones at faster intervals cause the cost of the smartphones to drop over time? What are your thoughts?

    Go to the link I provided and click on "Check upgrade eligibility"

  • Which archivelogs are required for restoring database

    I'm moving to RMAN direct to tape backups (via Netbackup). I'm hoping someone can clarify for me which archivelogs are needed for restoring/recovering a RMAN "hot" backup.
    I will have two tape pools with different retention periods:
    - standard (kept for 2 months)
    - long term (kept for 7 years)
    I plan to backup as follows:
    - archivelogs every 15 mins direct to the standard pool
    - daily backups to the standard pool
    - monthend backups to the long term pool
    Month ends will either be a full or a full plus a cumulative (level 2) (depending on the weekday that month end falls on).
    The bit I'm concerned about is archivelogs. After 2 months they will be expired on tape. But do I need archive logs in order to restore the month end backups?
    At the moment I record the SCN before the backup begins and after it finishes (retrieved via select first_change# first_scn from v$log where status = 'CURRENT'). Before recording the post-backup SCN, I force a logfile switch.
    For clones, I always restore to the post-backup SCN that I previously recorded (rather than using the tag I associated with the backup).
    So a few questions related to restoring after the 2 month window:
    - do I need the archivelogs created during the timespan of the backup ran in order to restore to the post-backup SCN?
    - If so, is just backing up these archivelogs (to the long term pool) by specifying the range of pre-backup SCN to post-backup SCN sufficient or are additional archivelogs likely to be required?
    - if I restore the database and don't specify an SCN but just specify the tag used at the time of the backup, will archive logs be required at all? In this case what would be the state of the restored database - would it be as it was at the beginning or at the end of the backup?

    Hi user4835675,
    do I need the archivelogs created during the timespan of the backup ran in order to restore to the post-backup SCN?Yes.
    If so, is just backing up these archivelogs (to the long term pool) by specifying the range of pre-backup SCN to post-backup SCN sufficient or are additional
    archivelogs likely to be required?Can you do a skip of the daily backup schedule duing the monthend backups run and run the "archivelogs every 15 mins" job to the long term pool?
    Or temporarily stop the "archivelogs every 15 mins" job during the monthend job and run the monthend backup with the "backup database plus archivelog" clause?
    if I restore the database and don't specify an SCN but just specify the tag used at the time of the backup, will archive logs be required at all?Yes, you need archivelogs to recover the datafiles to a consistent state.
    In this case what would be the state of the restored database - would it be as it was at the beginning or at the end of the backup?You can only restore to a point in time which past the end of the backup.
    Rgds,
    Tycho

  • Which topics are required for CRM consultants from BW consultants

    hi experts,
    In which scenario BW consultants will hepfull to the CRM consultants, It means what type information they will require from BW consultants.
    In BW which topics are usefull for CRM consultants.
    thanks & regards
    venkat

    Dear Desu siva anjith,
    you just understand how to prepare reports and how these reports are related to crm.....
    learn what u  need in crm.....
    shaik..

  • HT1689 which ipad is good for Panama att or verizon

    which ipad is good for Panama att or verizon ?

    AT&T by far.
    GSM dominates the overall worldwide market by a significant margin.
    Check AT&T's website for how many GSM network "partners" they have throughout the world compared to Verizon.
    Copied from AT&T's website.
    Stay connected while traveling to more than 220 countries and on more than 140 cruise ships, and access email and the Internet in more than 195 countries.
    I believe Verizon has 35 countries.

  • I have macbook 5.2 and i am using Mac OS 10.5.8 . which one is good for me to upgrade and how to do that..plz help me

    i have macbook 5.2 and i am using Mac OS 10.5.8 . which one is good for me to upgrade and how to do that..plz help me

    You have a 13" Early or Mid 2009 MacBook. Either one can run OS X Mavericks with enough RAM, 2 GB minimum. But first you will need to update to OS X Snow Leopard 10.6.8 so that you have the Mac App Store installed on your MacBook
    Buy this from apple;
    http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    Then download and update with this update combo;
    OS X Snow Leopard 10.6.8 v1.1 update combo
    http://support.apple.com/kb/DL1399
    After this you will have the Mac App Store on your MacBook and you should be able to download and install OS X Mavericks for free!
    Your MacBook must meet these minimum tech specs to run Mavericks;
    http://support.apple.com/kb/HT5842

  • Which upgrades are relevant for me?

    Hi all.
    I am going to order the new iMac 21,5" 2.9 GHz and I need some help figuring out which upgrades are relevant for me.
    I am going to use the iMac for the following:
    - Webdesign (my profession)
    - Photoshop and perhaps other Adobe applications
    - Lots and lots of multitasking and many tabs in browsers
    - Screen Flow application (screen recording software)
    - Dual boot with Windows 7
    - Time Capsule backups
    - Gaming (Sims 3 primarily - in Windows 7)
    I want it to be "future proof", but since hyperthreading isn't widely used in applications yet and people write that the majority of people never go beyond 4GB of RAM i'm onsure whether I should upgrade the CPU and RAM.
    Also, since the iMac 21,5" is not user-upgradeable after you get it, I want to make sure that I don't end up having a slow computer that I wish I would have made better/faster. I just want it to function fast and smooth. Today I have a MBP 15" medio 2009, 2.66 Ghz Intel Core 2 Duo, 4GB RAM, which I think performs overall well but is a bit slow sometimes.
    The only upgrade I seem sure of for now is the 1TB Fusion Drive.
    Thanks in advance!

    Although I am sure you have seen all this ... this is the formal description of that machine. Apple (United Kingdom) - iMac - Technical Specifications
    I cannot answer you questions about the specific tasks you plan to use it for; they are simply outside of my knowledge base, but you do raise points about being 'future proof', as you describe it, and I am afraid Apple is no more future proof than any other computer.  It is a fact that the sales of Apple machines rely on upgrading at periodic intervals, often using upgrades that were designed and known about two years before.   That, I'm afraid, is business.
    As far as the RAM is concerned you will have to decide between 8 GB and 16 GB when you order it as it cannot be RAM increased afterwards.   (The 27" can, I understand.
    Very much based on talk within the forums but I hope this is of some help to you.

  • Which tables are used for Quality Efficiency calculation of OEE report ?

    Hello,
    We're confirming OEE report behavior.
    I'd like to know OEE report and ME table specification.
    Which tables are used for Quality Efficiency calculation of OEE report ?
    According to I know, the definition of Quality Efficiency is (complete qty) / (start qty).
    For this calculation, does OEE report just use qty_started and qty_completed of PRODUCTION_LOG table?
    If any other tables/columns/logic are implemented, your information is appreciated.
    Best Regards,
    Takahiro Uesugi

    hi
    Go to BSIS & BSAS
    BKPF
    SKA1
    SKAT
    SKB1
    Regards
    Roobal

  • Which packages are required for make?

    I'd like to compile athcool and grabbed the source, but for the life of me, can't figure out which packages are needed for make.

    Thanks for the suggestion.  I got errors:
    # pacman -S base-devel
    base-devel package not found, searching for group...
    :: group base-devel (including ignored packages):
    diffutils ed gcc libtool m4 patch pkgconfig
    :: Install whole content? [Y/n] y
    :: group base-devel (including ignored packages):
    autoconf automake make
    :: Install whole content? [Y/n] y
    :: group base-devel (including ignored packages):
    autoconf automake bin86 bison ed fakeroot flex gcc libtool m4
    make patch pkgconfig
    :: Install whole content? [Y/n] y
    warning: diffutils-2.8.1-5 is up to date -- reinstalling
    warning: gcc-4.3.2-2 is up to date -- reinstalling
    warning: pkgconfig-0.23-1 is up to date -- reinstalling
    warning: automake-1.10.2-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (14): diffutils-2.8.1-5 ed-1.1-2 gcc-4.3.2-2 libtool-2.2.6a-1
    m4-1.4.12-1 patch-2.5.9-1 pkgconfig-0.23-1 autoconf-2.63-1
    automake-1.10.2-1 make-3.81-3 bin86-0.16.17-3 bison-2.4.1-1
    fakeroot-1.12.1-1 flex-2.5.35-1
    Total Download Size: 1.59 MB
    Total Installed Size: 78.50 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core-testing...
    diffutils-2.8.1-5-i686 191.5K 65.8K/s 00:00:03 [#####################] 100%
    ed-1.1-2-i686 45.7K 63.6K/s 00:00:01 [#####################] 100%
    libtool-2.2.6a-1-i686 578.7K 121.0K/s 00:00:05 [#####################] 100%
    patch-2.5.9-1-i686 54.3K 67.9K/s 00:00:01 [#####################] 100%
    pkgconfig-0.23-1-i686 49.9K 62.7K/s 00:00:01 [#####################] 100%
    :: Retrieving packages from core...
    bin86-0.16.17-3-i686 54.5K 210.0K/s 00:00:00 [#####################] 100%
    bison-2.4.1-1-i686 427.0K 52.3K/s 00:00:08 [#####################] 100%
    fakeroot-1.12.1-1-i686 52.7K 99.6K/s 00:00:01 [#####################] 100%
    flex-2.5.35-1-i686 176.0K 57.1K/s 00:00:03 [#####################] 100%
    checking package integrity...
    (14/14) checking for file conflicts [#####################] 100%
    error: could not prepare transaction
    error: failed to commit transaction (conflicting files)
    /usr/info/dir exists in both 'diffutils' and 'make'
    make: /usr/info/dir exists in filesystem
    Errors occurred, no packages were upgraded.
    Last edited by graysky (2009-02-17 01:44:04)

  • Which privileges are required for sql tuning advisor

    Hi,
    Oracle 10g
    1> I want to know which privileges are required for running sql tuning advisor...
    2> Some queries are taking long time.. if i run sql tuning advisor..shud i first try it out on development database or directly on prod database
    Regards

    1> I want to know which privileges are required for running sql tuning advisor...
    As SQL tuning advisor relies on the advisor framework, so all tuning task interfaces (XXX_TUNING_TASK) require privilege ADVISOR.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sqltun.htm#CACDFEBH
    Some queries are taking long time.. if i run sql tuning advisor..shud i first try it out on development database or directly on prod databaseDo you mean the implementation?
    Adith

Maybe you are looking for

  • ITunes recognizes iPod but not music

    Since I downloaded iTunes 7.3.0.54, it recognizes my iPod but does not show any music. However, it shows that the iPod disk space is 3/4 full but it's classified as "other data." Is there any other way to get that music to appear? I'm trying to avoid

  • Banner (rotative)...ANY HELP WILL BE REWARDED!!!!

    Hello you guys, I’m working on the development of a rotative banner, for someone that doesn’t know what it is…is a banner (in several web pages you can find one) that change the image present in it once on a while (every certain time), and each one o

  • Windows Server 2008 SP2 randomly reboots due to lsass.exe failed with status code 255

    Hello, Any help on this issue would be greatly appreciated.  I have an older Windows Server 2008 SP2 (I don't believe it is R2) (running SQL Server 2008 and SSRS 2008 on the machine) that is crashing randomly during business hours.  Looking into the

  • How do I get to a command line before X starts? I screwed up.

    I installed some drivers improperly, and now as I start up my system, it goes to X, which dies. How do I get to an Ubuntu like "recovery mode"? Where I can use a terminal to uninstall the package?

  • Textnode: does not show special charaters correctly

    To use special characters in Shake 4.1 u have to use hex-codes. This works with the font Utopia. If I need a "ä" (auml) I need type in the following: \xE4 which gives me the correct sign - in Utopia! If I change the font to Verdana, 0/00 (permille ?)