Skip to content

Instantly share code, notes, and snippets.

View matisiekpl's full-sized avatar

Mateusz Woźniak matisiekpl

  • Akademia Górniczo-Hutnicza w Krakowie
  • Rzeszów, Poland
  • 06:50 (UTC +02:00)
View GitHub Profile
! task1
conf t
int vlan1
ip address 200.200.200.1 255.255.255.0
no sh
! task2
conf t
vlan 20
exit
-- 1. Napisz funkcję uzupełnijWybory, która przyjmuje idZamówienia. Funkcja ma uzupełnić te dni (w tabeli wybory), dla których nie
-- zostało wybrane jeszcze danie. Ma do niego wpisać danie o największej kaloryczności, które jest dostępne w tym dniu i w tej
-- diecie.
create or replace function uzupelnijWybory(in idZamowienia integer)
returns void
as
$$
declare
# Napisane przez: Mateusz Woźniak (20 kwi 2021)
# Program to działający silnik renderowania 3d, który używa tylko podobieństwa trójkątów
import threading
from tkinter import Tk, Canvas, Frame, BOTH
# Delaracja obiektu w 3d
pyramid = [
[-500, -500, 1000],
[500, -500, 1000],
ffprobe version 4.4.1 Copyright (c) 2007-2021 the FFmpeg developers
built with Apple clang version 13.0.0 (clang-1300.0.29.3)
configuration: --prefix=/usr/local/Cellar/ffmpeg/4.4.1_2 --enable-shared --enable-pthreads --enable-version3 --cc=clang --host-cflags= --host-ldflags= --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libbluray --enable-libdav1d --enable-libmp3lame --enable-libopus --enable-librav1e --enable-librubberband --enable-libsnappy --enable-libsrt --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libspeex --enable-libsoxr --enable-libzmq --enable-libzimg --disable-libjack --disable-indev=jack --enable-avresample --enable-videotoolbox
libavutil 56. 70.100 / 56. 70.
{
"pierwszy": 9
}
@matisiekpl
matisiekpl / privacy.md
Created February 26, 2021 21:50
Mi Fit privacy policy

Privacy Policy

Mateusz Woźniak built the Mi Fit to GPX app as a Commercial app. This SERVICE is provided by Mateusz Woźniak and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Mi Fit to GPX unless otherwise defined in this Privacy Policy.

{
"rules": [
{
"description": "Insert (Ctrl) [+Terminal Emulators]",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^org\\.virtualbox\\.app\\.VirtualBoxVM$",
@matisiekpl
matisiekpl / Dockerfile
Created August 19, 2020 08:43
Pdf Generator
FROM node:11
RUN echo 'kernel.unprivileged_userns_clone=1' > /etc/sysctl.d/userns.conf
# Install headless Chrome
RUN apt-get update \
&& apt-get install -y wget gnupg ca-certificates \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
# We install Chrome to get all the OS level dependencies, but Chrome itself
# is not actually used as it's packaged in the node puppeteer library.
@matisiekpl
matisiekpl / zadanie1.vba
Last active June 9, 2020 16:25
Zadanie z VBA
Public Sub zad1()
Dim a As Integer
Dim b As Integer
a = InputBox("Podaj długość boku A")
b = InputBox("Podaj długość boku B")
Dim obw As Integer
obw = 2 * (a + b)
If obw = 50 Then
MsgBox ("Obwód jest równy 50")
Else
nothing