Skip to content

Instantly share code, notes, and snippets.

defmodule Kpsz.Pressence do
use Kpsz.Web, :model
schema "pressences" do
field :state, Kpsz.PressenceState
has_one :user, Kpsz.User, foreign_key: "user_id"
belongs_to :event, Kpsz.Event
timestamps()
............
1) test updates and renders chosen resource when data is valid (Kpsz.EventControllerTest)
test/controllers/event_controller_test.exs:47
** (Ecto.ChangeError) value `"(1.23, 2.33)"` for `Kpsz.Event.location` in `update` does not match type Kpsz.Point
stacktrace:
(ecto) lib/ecto/repo/schema.ex:629: Ecto.Repo.Schema.dump_field!/6
(ecto) lib/ecto/repo/schema.ex:638: anonymous fn/6 in Ecto.Repo.Schema.dump_fields!/5
(stdlib) lists.erl:1263: :lists.foldl/3
(ecto) lib/ecto/repo/schema.ex:636: Ecto.Repo.Schema.dump_fields!/5
............
1) test updates and renders chosen resource when data is valid (Kpsz.EventControllerTest)
test/controllers/event_controller_test.exs:47
** (Ecto.ChangeError) value `"(1.23, 2.33)"` for `Kpsz.Event.location` in `update` does not match type Kpsz.Point
stacktrace:
(ecto) lib/ecto/repo/schema.ex:629: Ecto.Repo.Schema.dump_field!/6
(ecto) lib/ecto/repo/schema.ex:638: anonymous fn/6 in Ecto.Repo.Schema.dump_fields!/5
(stdlib) lists.erl:1263: :lists.foldl/3
(ecto) lib/ecto/repo/schema.ex:636: Ecto.Repo.Schema.dump_fields!/5
defmodule Kpsz.Ecto.Point do
@behaviour Ecto.Type
@moduledoc """
Representation of geological point in the database
"""
@extractor ~r/\(([\d.]+),([\d.]+)\)/
def type, do: :string

Linux

Głównie foldery;

  • /etc - pliki konfiguracyjne
  • /proc - orbaz pamięci, są tam pidy itp
  • /bin - binraki, skompilowane programyu, polecenia do uruchomienia
  • /tmp - pliki tymczasowe
  • /home || ~/ - katalog domowy

Schemat wprowadzania poleceń linuxowych

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
//Wersja A
int main(){
char input[64];
double product = 1;
#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;
#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)
#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)
{
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//Wersja L
int main(){
int** matrix;
int width = 0;
int height = 0;