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
| using System; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| using Xunit; | |
| using Xunit.Extensions; | |
| namespace Dojo | |
| { | |
| public struct Input | |
| { |
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 com.jpenzes.smawing; | |
| import com.jpenzes.smawing.utils.IFrameFactory; | |
| import com.jpenzes.smawing.utils.IObjectContainer; | |
| import com.jpenzes.smawing.utils.ObjectContainer; | |
| import com.jpenzes.smawing.utils.SDefaultFrameFactory; | |
| import javax.swing.*; | |
| public abstract class SFrame { |
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 http.cookiejar | |
| import os | |
| import urllib.parse | |
| import urllib.request | |
| import time | |
| from htmldom import htmldom | |
| from enum import Enum | |
| __author__ = 'jpenzes' |
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 core; | |
| import java.util.ArrayList; | |
| import java.util.Random; | |
| public class GeneticAlgorithm { | |
| private Random random; | |
| public GeneticAlgorithm() { |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| namespace GraphAnalyzer.RTree.FileIndex | |
| { | |
| public class BaseFile<T> | |
| { |
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
| #pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" ) // skryje okno konzole | |
| //--------------------------------------------------------------------- | |
| // Program otevre jedno hlavni okno a vykresli do nej 3D elipsoid pomocí bodù | |
| // Klavesami x, z, y se nastavuje poloha kamery, klavesou r rotace elipsoidu | |
| // Klavesami p a q se nastavuje poloha elipsoidu | |
| // Program lze ukoncit stiskem klavesy ESC. | |
| //--------------------------------------------------------------------- | |
| #include <glut.h> // hlavickovy soubor funkci GLUTu | |
| //#include <stdlib.h> |
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.awt.*; | |
| import javax.swing.JScrollPane; | |
| import javax.swing.SwingUtilities; | |
| public class WrapLayout extends FlowLayout | |
| { | |
| private Dimension preferredLayoutSize; | |
| public WrapLayout() | |
| { |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace Patterns.Observer | |
| { | |
| public interface IObserver | |
| { | |
| void Update(); |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Net.Mail; | |
| using System.Reflection; | |
| using System.Text; | |
| using SimpleLogger.Logging; |
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 core.io; | |
| import java.io.*; | |
| /** | |
| * Author: Jirka Pénzeš | |
| * Date: 4.5.12 23:55 | |
| */ | |
| public class Serializer { |