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 / php7.conf
Created December 24, 2016 16:45
Compilation PHP 7.0.14 on BunsenLabs Hydrogen 2016-07-10
<FilesMatch ".+\.ph(p[3457]?|t|tml)$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch ".+\.phps$">
SetHandler application/x-httpd-php-source
# Deny access to raw php sources by default
# To re-enable it's recommended to enable access to the files
# only in specific virtual host or directory
Require all denied
</FilesMatch>
#!/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";
<?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
<?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
// config
$data = [
'email' => 'name@post.com',
'url' => 'http://example.com',
'ip' => '123.15.12.211'
];
@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
$host = 'localhost';
$user = 'root';
$pass = '';
$database = 'ingrid';
$file = 'ABBREV.csv';
$db = new PDO("mysql:dbname=".$database.";host=".$host, $user, $pass);
@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 {
@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 / .Xresources
Created October 9, 2020 16:46
My urxvt config
!! Colorscheme
! special
*.foreground: #93a1a1
*.background: #141c21
*.cursorColor: #afbfbf
! black
*.color0: #263640
*.color8: #4a697d