This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ------------------------------------ | |
| поточна | пісок в | пісок в | |
| хвилина | 4-хв год. | 7-хв год. | |
| ------------------------------------ | |
| 0 4 7 | |
| запускаємо 2 одночасно, чакаємо 4 хвилини за 1-м год., | |
| в перому пісок закінчився, в другому лишилося 3 хв | |
| 4 0 3 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | SetNumlockState AlwaysOn | |
| SetCapsLockState AlwaysOff | |
| ;RControl::RWin | |
| ;RWin::RControl | |
| *Space::Send {Blind}{Space} | |
| ;----------------------------------- | |
| ; system | |
| ;----------------------------------- | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8" ?> | |
| <flex-config> | |
| <frames> | |
| <frame> | |
| <label>start</label> | |
| <classname>project.Application</classname> | |
| </frame> | |
| </frames> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package mmo.core.modules | |
| { | |
| public class ModuleInfo | |
| { | |
| private static var _map:Object = {}; | |
| private static var _allowCreation:Boolean = true; | |
| public static const LOGIN:ModuleInfo = createModuleInfo("login", true); | |
| public static const MAP:ModuleInfo = createModuleInfo("map", true); | |
| public static const SHOP:ModuleInfo = createModuleInfo("shop", true); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 1996 – James Gosling изобретает Java. Джава это относительно многословный, базирующийся на классах, статически типизированный язык программирования с одиночной диспетчеризацией, автоматической сборкой мусора, одним уровнем наследования реализации2 и множественным наследованием интерфейсов. Сан громко восславил Java как инновацию. | |
| 2001 – Anders Hejlsberg изобретает C#. C# это относительно многословный, базирующийся на классах, статически типизированный язык программирования с одиночной диспетчеризацией, автоматической сборкой мусора, одним уровнем наследования реализации и множественным наследованием интерфейсов. Майкрософт громко восславил C# как инновацию. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package project | |
| { | |
| public class Sounds | |
| { | |
| [Embed(source="../../resources/sounds/music1.mp3")] | |
| public static const MUSIC1:Class; | |
| [Embed(source="../../resources/sounds/music2.mp3")] | |
| public static const MUSIC2:Class; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0"?> | |
| <flex-config> | |
| <target-player>10.0.0</target-player> | |
| <use-network>true</use-network> | |
| <static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html> | |
| <head> | |
| <title>paperGame</title> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <meta name="language" content="en" /> | |
| <meta name="description" content="" /> | |
| <meta name="keywords" content="" /> | |
| <meta http-equiv="Expires" content ="0" /> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| Script takes two args: | |
| arg1: TortoiceProc command | |
| arg2: Path to file, generated by TotalCommander by special parameter %WL | |
| Script removes BOM mark and replaces linebreaks from \r\n to \n. | |
| This is required for TortoiceProc to recognize file correctly. | |
| */ | |
| //=================================================== | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.security.MessageDigest; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.util.Properties; | |
| import java.util.logging.FileHandler; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| import java.util.logging.SimpleFormatter; | |
| import java.io.BufferedWriter; | |
| import java.io.FileWriter; | |
| import java.io.IOException; |