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
//mux_2_1_1_bit_logic.v | |
module mux_2_1_1_bit_logic (x, y, s, m); | |
input x, y, s; | |
output m; | |
assign m = (~s & x) | (s & y); | |
endmodule | |
//######################### | |
//mux_2_1_1_bit.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
PIERWSZE! | |
#!/usr/bin/ruby | |
puts "Jak masz na imie?" | |
name = gets | |
puts "ile masz lat?" | |
age = gets.chomp | |
year = 2017 - age.to_i | |
puts "Daniel urodzil sie w roku %d" % [year] |
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 "stm32f10x.h" | |
void GPIO_Config(void); | |
void RCC_Config(void); | |
void NVIC_Config(void); | |
int main(void) | |
//konfiguracja systemu | |
{ |
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
CEZ2 | |
funkcjie finansowe | |
IRR - wewnętrzna stopa zwrotu | |
NPV - wartość bieżąca netto | |
MDURATION | |
DURATION | |
FUNKCJE STATYSTYCZNE | |
KORELACA -> WSP. KORELACJA |
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
/* | |
RF_Sniffer | |
Hacked from http://code.google.com/p/rc-switch/ | |
by @justy to provide a handy RF code sniffer | |
*/ | |
#include "RCSwitch.h" | |
#include <stdlib.h> |