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
  • 04:30 (UTC +01:00)
View GitHub Profile
sleep 3
git clone $REPO build-$ID
cd build-$ID
git checkout $SHA
flutter build apk -v
apiVersion: v1
kind: Service
metadata:
name: yottakekkit
labels:
app: yottakekkit
spec:
ports:
- port: 25565
nodePort: 30565
apiVersion: v1
kind: Service
metadata:
name: spigot
labels:
app: spigot
spec:
ports:
- port: 25565
nodePort: 30565
{
"functions": [
{
"key": "math.add",
"name": "add",
"code": "out = a + b",
"dependencies": {
"@types/node": "^12.0.10"
},
"arguments": [
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "SentimentDemo",
"description": "Uses the Cognitive Services Text Analytics Sentiment API to determine whether text is positive or negative"
},
"host": "westus.api.cognitive.microsoft.com",
"basePath": "/",
"schemes": [
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv-0
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 10Gi
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv-1
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 100Gi
/**
* Marlin 3D Printer Firmware
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
@matisiekpl
matisiekpl / main.cpp
Created March 23, 2020 13:48
IT school assignment for idiots
#include <iostream>
#include <fstream>
#include <string>
#include <math.h>
#include <limits>
using namespace std;
int octal_to_decimal(int octal) {
int decimal_number = 0, i = 0, rem;
@matisiekpl
matisiekpl / main.cpp
Created April 16, 2020 07:44
C++ Algorithm Implementation Review - developed by Przemek Sosna
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);