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
Initialized empty Git repository in /home/xplasil/divine/test/.git/ | |
remote: Counting objects: 68, done. | |
remote: Compressing objects: 100% (35/35), done. | |
remote: Total 68 (delta 40), reused 55 (delta 33) | |
Receiving objects: 100% (68/68), 22.31 KiB, done. | |
Resolving deltas: 100% (40/40), done. | |
error: Trying to write ref HEAD with nonexistant object c68c69faa35500e94e386b6ed382c61d3fd8e088 | |
fatal: Cannot update the ref 'HEAD'. |
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
* Česko-anglický slovník statistiky | |
kontingenční tabulka :: contingency table | |
marginální četnost :: margin total | |
směrodatná odchylka :: standard deviation {math: \sqrt{s^2}} | |
rozptyl :: variance {math: s^2 = \frac{1}{n} \sum \left(x_i - m\right)} | |
šikmost :: skewness | |
špičatost :: kurtosis |
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
#include <algorithm> | |
#include <cstdlib> | |
#include <vector> | |
#include <ctime> | |
#include <iostream> | |
using namespace std; | |
template <typename T> | |
void straightSelectionSort2(const T& begin, const T& end) |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<!-- <link rel="icon" href="design/ikonka.gif" type="image/gif" > --> | |
<link rel="stylesheet" href="style.css" media="all" type="text/css" > | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
<title>Napínané stropní systémy Roman Plášil</title> | |
<script type="text/javascript"> |
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
p = wx.Panel(self) | |
s = wx.BoxSizer(wx.VERTICAL) | |
s.Add(wx.Button(p)) | |
s.Add(wx.Button(p)) | |
p.SetSizer(s) |
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
VectorView = { | |
'path': r'src\Core\VectorView', | |
'proj': r'VectorView', | |
'new_name': 'MoNET_VectorView', | |
'cpp_include': [r'..\..\External\libpng-1.2.23', r'..\..\External\zlib'], | |
'link_include': [r'..\..\External\libpng-1.2.23\bin\visualc9'], | |
'libs': ['libpng.lib', 'zlib.lib'], | |
'exclude': ['hipng.cpp']} |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\CSharp\Options\Formatting] | |
"NewLines_Braces_AnonymousMethod"=dword:00000000 | |
"NewLines_Braces_ControlFlow"=dword:00000000 | |
"NewLines_Braces_AnonymousTypeInitializer"=dword:00000000 | |
"NewLines_Braces_ObjectInitializer"=dword:00000000 | |
"NewLines_Braces_LambdaExpressionBody"=dword:00000000 | |
"NewLines_Keywords_Else"=dword:00000000 | |
"NewLines_Keywords_Catch"=dword:00000000 |
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
(defn plesk | |
([request item] (plesk request item {})) | |
([request item kwargs] | |
(let [rnd-box (fn [word] | |
(let [rnd-gen (new Random (.hashCode word)) | |
gen-color (fn [] (+ 155 (.nextInt rnd-gen 100)))] | |
[:span {:style | |
(str "padding: " | |
(.nextFloat rnd-gen) "ex " | |
(.nextFloat rnd-gen) "ex " |
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
$("#droparea").bind("drop", function(e){ | |
files = e.dataTransfer.files; | |
e.preventDefault(); | |
$.each(files,function(index,file){ | |
var form = new FormData(); | |
form.append("myFile", file); | |
$.ajax({ | |
type: "POST", |
OlderNewer