Skip to content

Instantly share code, notes, and snippets.

View Mativve's full-sized avatar
⌨️
Coding is my life.

Mateusz Świder Mativve

⌨️
Coding is my life.
View GitHub Profile
@Mativve
Mativve / index.html
Created April 1, 2020 05:37
It's part of filesystem in Electron
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
</head>
<body>
@Mativve
Mativve / watermarked.php
Created January 15, 2020 09:14
Wordpress Watermark system (use Regenerate Thumbnail after apply)
<?php
//
// Source: https://wordpress.org/support/article/debugging-in-wordpress/
//
function register_watermarked_size() {
add_theme_support( 'post-thumbnails' );
add_image_size( 'watermarked', 550, 550, true );
}