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 <iostream> | |
#include <vector> | |
using std::cout; | |
using std::cin; | |
template <class T> | |
struct Fun { | |
const T operator()(T x) { // funkcja | |
//return -5*x*x*x+8*x*x+3*x-1; |
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
##################### | |
# Hasla: | |
# CA : cakey | |
# klient : klientkey | |
# paczka : lab142 | |
##################### | |
############################# | |
# RECZNE ZMIANY W KONFIGU | |
# |
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
import React, { MouseEventHandler } from "react"; | |
import { Modal, ModalHeader, ModalFooter, ModalBody, Button } from "reactstrap"; | |
import YouTube, { | |
YouTubeProps, | |
Options as YouTubeOptions, | |
} from "react-youtube"; | |
import Vimeo from "@u-wave/react-vimeo"; | |
import ReactDOM from "react-dom"; | |
import "./style.css"; | |
import { modalData as ModalData } from "../../interfaces/modalData"; |