- 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 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
Application.ensure_all_started(:hound) | |
ExUnit.start | |
Mix.Task.run "ecto.create", ~w(-r PatronLeague.Repo --quiet) | |
Mix.Task.run "ecto.migrate", ~w(-r PatronLeague.Repo --quiet) | |
Ecto.Adapters.SQL.begin_test_transaction(PatronLeague.Repo) | |
defmodule ApiHelper do | |
use ExUnit.Case, async: false | |
use PatronLeague.ConnCase |
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
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 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 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> | |
int NWD(int x, int y) { | |
int z; | |
while (y != 0) { | |
z = x % y; | |
x = y; | |
y = z; |
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
package com.example.wk.projektkoncowywiolettakurek.Classes; | |
import android.app.ProgressDialog; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.os.AsyncTask; | |
import android.util.Log; | |
import com.example.wk.projektkoncowywiolettakurek.Collages.CollageActivity; |