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
<system.serviceModel> | |
<bindings> | |
<webHttpBinding> | |
<binding | |
xdt:Locator="Condition(@name='webHttpBindingWithJson')"> | |
<security | |
mode="Transport" | |
xdt:Transform="SetAttributes(mode)" /> | |
</binding> | |
</webHttpBinding> |
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
\begin{tabularx}{\textwidth}{ l | X | X | X | X | X } | |
\textbf{Projekt} & \multicolumn{5}{ l }{\textbf{[project name]}} \\ | |
\hline\hline | |
Tytuł& \multicolumn{5}{ l }{[document title]} \\ | |
\hline | |
Temat & \multicolumn{5}{ l }{[document subject]} \\ | |
\hline | |
Autorzy & \multicolumn{5}{ l }{[authors]} \\ | |
\hline | |
File & \multicolumn{5}{ l }{[file]} \\ |
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
@unpublished{DDJGRAPHSIM, | |
author = "T.Janiszewski, K.Dzitkowski, J.Dutkowski", | |
title = "Algorytmy wyznaczania podobieństwa grafów - Specyfikacja Techniczna", | |
year = "2013" | |
month = Oct | |
note = "Praca w ramach przedmiotu TAiO", | |
} |
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
#!/bin/bash | |
#Update repositories list | |
sudo apt-get update | |
#Completely remove boost | |
sudo apt-get -y --purge remove libboost-all-dev libboost-doc libboost-dev | |
sudo rm -f /usr/lib/libboost_* | |
#Install required packages |
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
## Password less ssh | |
1. Create new keyfile `ssh-keygen -t rsa -C "[email protected]"` | |
2. Push it to remote server `cat ~/.ssh/<name_of_your_public_key> | ssh <user@host> "mkdir ~/.ssh; cat >> ~/.ssh/authorized_keys"` | |
3. Add new key to keyvalut `ssh-add id_rsa` if you get error that `Could not open a connection to your authentication agent.` you need to run `ssh-agent bash` and then `ssh-add id_rsa` but this will stay until you log out. So better option is to create config | |
`vim ~/.ssh/config` | |
and fill it with following template | |
Host <host 1> | |
HostName <host_name_or_ip> | |
User <user> |
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
[push] | |
default = current | |
[merge] | |
tool = meld | |
[alias] | |
cp = cherry-pick | |
st = status -s | |
cl = clone | |
ci = commit | |
co = checkout |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#include <cuda.h> | |
#define BLOCKS 10 | |
#define THREADS 100 | |
#define ELEMENTS_COUNT (BLOCKS*THREADS) | |
#define DATA_SIZE (ELEMENTS_COUNT * sizeof(storeElement)) | |
#define COMPRESSED_ELEMENT_SIZE 10 |
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
_ __ ___ __ _ | | __ ___ | |
| '_ ` _ \ / _` || |/ // _ \ | |
| | | | | || (_| || <| __/ | |
|_| |_| |_| \__,_||_|\_\\___| | |
_ | |
| | ___ __ __ ___ | |
| | / _ \\ \ / // _ \ | |
| || (_) |\ V /| __/ | |
|_| \___/ \_/ \___| |
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
1. Projekt wg PMBOK: | |
* ✓ **Powinien mieć ograniczony czas trwania** | |
* ✓ **Tworzyć unikalne produkty i/lub usługi** | |
* Może być realizowany wielokrotnie np. produkcja seria monitorów to seria projektów o identycznych wymaganiach | |
* Jest zarządzany przez sponsora projektu | |
* Jest zarządzany przez przewodniczącego komitetu sterującego | |
2. Zmiana w zakresie projektu wg PMBOK, w trakcie trwania projektu: | |
* Nigdy nie powinna występować | |
* ✓ **Jest dozwolona** |
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
repositories.mavenCentral() | |
configurations { wsdl } | |
dependencies { | |
wsdl 'org.apache.axis:axis:1.4' | |
wsdl 'commons-logging:commons-logging:1.1.1' | |
wsdl 'javax.xml:jaxrpc:1.1' | |
wsdl 'commons-discovery:commons-discovery:0.2' | |
wsdl 'javax.xml.soap:saaj-api:1.3.5' |
OlderNewer