Skip to content

Instantly share code, notes, and snippets.

View Flashrow's full-sized avatar

Łukasz Goleniec Flashrow

View GitHub Profile
google.com, pub-9630376407798380, DIRECT, f08c47fec0942fa0
@Flashrow
Flashrow / gist:dde3bba2d3524de2a61dc2c1dfe789e2
Created July 10, 2025 16:33
Drink Cooling Calculator Privacy Policy
Privacy Policy for Drink Cooling Calculator
Effective Date: July 10, 2024
Thank you for using the Drink Cooling Calculator application. Your privacy is important to us. This Privacy Policy explains what information is (and is not) collected and how it is used.
Data Collection and Use
The Drink Cooling Calculator application is designed with your privacy in mind.
We do not collect, store, or share any personal data or personally identifiable information.
@Flashrow
Flashrow / gist:1c8451bbe7335f7ac2189ad4385eeb39
Last active November 30, 2017 20:54
Metoda trapezów C++
#include <iostream>
#include <math.h>
#include <conio.h>
#include <stdlib.h>
#include <stdio.h>
using namespace std;
double CalkaSin(double x1,double x2);
double TrapezSin(double x1, double x2, int n);