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
POST /BoxServer/rest/status/disk/full HTTP/1.1 | |
Host: 210.22.124.194:9080 | |
Accept: */* | |
Accept-Encoding: gzip, deflate | |
Content-Length: 52 | |
Content-Type: application/x-www-form-urlencoded; charset=utf-8 | |
Accept-Language: en;q=1, fr;q=0.9, de;q=0.8, zh-Hans;q=0.7, zh-Hant;q=0.6, ja;q=0.5 | |
Connection: keep-alive | |
User-Agent: snowbox/1.0 (iPad; iOS 7.1.1; Scale/2.00) |
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
$("#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", |
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
(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 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
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 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
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 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
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 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 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 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
#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 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
* Č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 |