Scratch

From MyWiki
Revision as of 09:36, 22 August 2017 by George2 (Talk | contribs)

Jump to: navigation, search

http://www.wikigain.com/fix-macos-sierra-screen-resolution-virtualbox/


Ipmark at 2015-07-21 08:56 CET: If you install the OS over a previous legit version (like Win 8.1) the setup doesn't ask for a key.

If you install in a formatted HDD insert this key: VK7JG-NPHTM-C97JM-9MPGT-3V66T

Ipmark at 2015-07-21 09:15 CET:

The above key is for the PRO version.
For the Home version insert this one: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99
vk4502p at 2015-07-21 09:28 CET:
is this X64 based?
Ipmark at 2015-07-21 09:36 CET:
3.81 GB is for the x64 version
imadlatch at 2015-07-21 16:19 CET:
i'm excactly trying to install the OS over a previous legit version win8.1 single language
setup ask for a key
supermaltese at 2015-07-21 20:52 CET:
Hey Thumper, is it possible for you to make a Live version of Windows 10?
hhavok at 2015-07-22 22:57 CET:
Lots of issues with this one. Getting blue screen every time I install my anti virus. Tried reinstalling Windows 3 times, no Dice.
Also, it keeps installing some Republic of Gamers Realtek HD Audio Manager, while I use Creative ZxR sound card. Even when I uninstall that Realtek, it just reinstalls itself every time I restart my computer.
Not sure if that's part of Windows 10 or something else, but I don't like this torrent at all.
Will try White Death one, and if that one is fucked up as well then I'll just wait and buy Windows 10 when it's released.



http://crackednoodle.com/2013/01/blu-ray-ripping-on-fedora-18/

yum install *fmpeg-devel*

yum install gcc-c++


import java.util.Timer; import java.util.TimerTask; import java.awt.*;

public class ToDo extends Frame {

 Timer timer;
 Panel panel;
 public ToDo ( int seconds )  
  {

setBounds(100,100,100,100); setVisible(true); panel= new Panel(); add(panel);

   timer = new Timer (  ) ;
   timer.schedule ( new ToDoTask (  ) ,10, seconds*1000 ) ;
  }
  
   public void paint(Graphics g) {

//setColor(Color.BLACK);

  // g.drawText(25, 25, "asdf");
 
 }


 class ToDoTask extends TimerTask 
  {
   public void run (  )   {
                          System.out.println ( "OK, It's time to do something!" );
                          setBounds(200,200,200,200) ;
                          repaint();

                          //  timer.cancel (  ) ; //Terminate the thread
                          }
  }


 public static void main ( String[] args )   {
   System.out.println ( "Schedule something to do in 5 seconds." ) ;
   new ToDo ( 5 ) ;
   
   
   System.out.println ( "Waiting." ) ;
 }

}