This file contains 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
-------------------------------------------------------------------- | |
-- CREDIT : FatalEntity | |
-------------------------------------------------------------------- | |
local AddOn = CreateFrame("Frame") | |
local OnEvent = function(self, event, ...) self[event](self, event, ...) end | |
AddOn:SetScript("OnEvent", OnEvent) | |
------------------------------------------------------------------------ | |
-- Auto SELL JUNK |
This file contains 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
/** | |
* Created by IntelliJ IDEA. | |
* User: Milan | |
* Date: Nov 30, 2009 | |
* Time: 7:19:35 PM | |
*/ | |
import java.util.*; | |
import static java.lang.Character.*; | |
import static java.lang.Math.*; |
This file contains 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
\documentclass{beamer} | |
\mode<presentation> { | |
\usetheme{Berlin} | |
\setbeamercovered{transparent} | |
} | |
\usepackage[czech]{babel} | |
\usepackage[utf8]{inputenc} | |
\usepackage{times} |
This file contains 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
/** | |
* Created by IntelliJ IDEA. | |
* User: Milan | |
* Date: Mar 25, 2010 | |
* Time: 2:51:22 PM | |
*/ | |
import java.text.MessageFormat; | |
public class Efektivita { | |
public static int[][] vysledky; |
This file contains 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
/** | |
* Created by IntelliJ IDEA. | |
* User: Milan Vit | |
* Date: Mar 25, 2010 | |
* Time: 2:51:22 PM | |
*/ | |
import java.text.MessageFormat; | |
class Efektivita { |
This file contains 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
/** | |
* Originalni pouziti pretezovani metod | |
*/ | |
/** | |
* Zjisti od uzivatele nazev souboru, pak nacte soubor | |
* | |
* @return nactene pole | |
*/ | |
public static int[] nacistPole () { |
This file contains 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
/** | |
* Created by IntelliJ IDEA. | |
* User: Milan | |
* Date: Apr 22, 2010 | |
* Time: 11:21:57 AM | |
*/ | |
import java.io.*; | |
import java.text.MessageFormat; | |
import java.util.Calendar; |
This file contains 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
hour = ((calendar.get (Calendar.AM_PM) == 0) ? | |
// Forenoon | |
(calendar.get (Calendar.HOUR) < 10) ? | |
"0" + Integer.toString (calendar.get (Calendar.HOUR)) : | |
Integer.toString (calendar.get (Calendar.HOUR)) : | |
// Afternoon | |
Integer.toString (calendar.get (Calendar.HOUR) + 12)); |
This file contains 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
/** | |
* Created by IntelliJ IDEA. | |
* User: Milan Vít (Cellane) | |
* Date: May 12, 2010 | |
* Time: 2:16:44 PM | |
*/ | |
import java.text.MessageFormat; | |
public class MatrixDeterminant { |
This file contains 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
[mstr replaceOccurrencesOfString: search | |
withString: replace | |
options: nil | |
range: NSMakeRange (0, [mstr length])]; |
OlderNewer