- zarzadzanie uzytkownikami
- przydzielanie praw
- dodawanie
- usuwanie
- crud
- zarzadzanie wydarzeniami (crud)
- zdjecia z wydarzenia (osoby biorace udzial i organizator)
- wielostopniowe dodawanie uzytkownikow
- nic nie wiadomo
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
defmodule TwitchSniper.GiveawayManager do | |
use GenServer | |
require Logger | |
def start_link do | |
GenServer.start_link(__MODULE__, :ok, name: __MODULE__) | |
end | |
def new_giveaway(item) do | |
GenServer.cast(__MODULE__, {:new_item, item}) |
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
var Editor = function(el){ | |
this.element = el; | |
this.cursors = []; | |
this.lines = []; | |
this.creatLine = function (linenum){ | |
var that = this; | |
var el = document.creatElement("p") | |
el.adEvenListener("click",function(){ | |
//that to ten obiekt | |
},true); |
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
var Editor = function(el){ | |
this.element = el | |
this.cursors = [] | |
this.lines = [] | |
} | |
Editor.prototype.creatLine = function (linenum){ | |
var that = this | |
var el = document.createElement("p") | |
el.addEventListener("click",function(){ | |
that.lines.push(el) |
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
FROM jenkins | |
# if we want to install via apt | |
USER root | |
RUN curl -L https://get.docker.com/builds/Linux/x86_64/docker-1.10.3 > /usr/bin/docker && chmod +x /usr/bin/docker | |
#Install the stuff you need | |
#USER jenkins |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
//Wersja L | |
int main(){ | |
int** matrix; | |
int width = 0; | |
int height = 0; |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
//Wersja L | |
int main(){ | |
int** matrix; | |
int width = 0; | |
int height = 0; |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#define li 100 //liczba iteracji do szeregu | |
//tablicowanie fcji sin w <a,b> - szereg + fcja biblioteczna | |
//definicja funkcji szereg x - parametr formalny | |
double szereg(double x) | |
{ |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#define IT_COUNT 51 | |
#define li 100 //liczba iteracji do szeregu | |
//tablicowanie fcji sin w <a,b> - szereg + fcja biblioteczna | |
//definicja funkcji szereg x - parametr formalny | |
double szereg(double x) |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#define IT_COUNT 1001 | |
//tablicowanie fcji sin w <a,b> - szereg + fcja biblioteczna | |
//definicja funkcji szereg x - parametr formalny | |
double szereg_rek(double x, double it){ | |
if( it >= IT_COUNT) | |
return x; |