Skip to content

Instantly share code, notes, and snippets.

View gustawdaniel's full-sized avatar
✒️
typing...

Daniel Gustaw gustawdaniel

✒️
typing...
View GitHub Profile
@gustawdaniel
gustawdaniel / app.ts
Last active February 4, 2021 02:58
process_nbp_chf_1984_2020.ts
import fs from 'fs'
interface YearData {
[key: string]: {
col: number,
div: number,
values: { [key: string]: number }[]
}
}
@gustawdaniel
gustawdaniel / .Xresources
Created October 9, 2020 16:46
My urxvt config
!! Colorscheme
! special
*.foreground: #93a1a1
*.background: #141c21
*.cursorColor: #afbfbf
! black
*.color0: #263640
*.color8: #4a697d
@gustawdaniel
gustawdaniel / config
Created October 9, 2020 15:51
My i3-gasp config
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
@gustawdaniel
gustawdaniel / index.html
Created March 3, 2018 15:38
Dynamic CSS modification
<html>
<body>
<style class="style"></style>
<pre></pre>
<script>
let style = `
body {
<?php
$host = 'localhost';
$user = 'root';
$pass = '';
$database = 'ingrid';
$file = 'ABBREV.csv';
$db = new PDO("mysql:dbname=".$database.";host=".$host, $user, $pass);
@gustawdaniel
gustawdaniel / README.md
Created May 19, 2017 21:28
Presentation of sending multiple files in POST

Firstly install httpie

sudo apt-get install httpie

Next in firs console run server

php -S 0.0.0.0:8000

In second consoel run sender

<?php
// config
$data = [
'email' => 'name@post.com',
'url' => 'http://example.com',
'ip' => '123.15.12.211'
];
<?php
function divide($divider, $dividend) {
if ($divider == 0){
throw new InvalidArgumentException("Divide by zero error");
}
if ($divider < 0){
throw new OutOfRangeException ("Divide is lover then zero");
}
<?php
// definicje funkcji
// funkcja przyjmuje ścieżkę i czas w sekundach dla którego
// chemy usunąć pliki stworzone przed tym czasem
function clear($path,$time)
{
// listujemy wszystki pliki z danej lokaci
#!/usr/bin/env perl
use warnings;
use strict;
use HTML::TagParser;
my $url = 'http://blog.gustawdaniel.pl';
my @tags = ("h1 h2 h3 h4 li p","pre");
print "| text | code | title \n";