Skip to content

Instantly share code, notes, and snippets.

View wodCZ's full-sized avatar

Martin Janeček wodCZ

View GitHub Profile
<?php
namespace Libs\Utils;
use Kdyby\Doctrine\Entities\BaseEntity;
use Nette\ComponentModel\IContainer;
use Nette\Forms\Controls\BaseControl;
use Nette\Utils\ArrayHash;
@wodCZ
wodCZ / 01-server-config-in-git.md
Created February 11, 2016 14:47 — forked from juzna/01-server-config-in-git.md
Server Configuration in git

Server Configuration in git

With git you can have anything versioned. You're used to version your code, which is a bunch of files. Your server configuration (on Linux) is also just a bunch of files, so it can be versioned as well.

The idea is simple: create a git repository in /etc/ and commit everytime you change any configuration of your server. Written in code:

cd /etc
git init
git add .
[global]
error_log = /usr/local/etc/php/5.6/logs/php-fpm.log
daemonize = no
[www]
user = wod
group = staff
listen = 127.0.0.1:9000
<?php
use Kdyby;
use Kdyby\RabbitMq\Connection;
use Kdyby\RabbitMq\DI\RabbitMqExtension;
use Nette;
use Nette\Reflection\ClassType;
use PhpAmqpLib\Message\AMQPMessage;
use Tester;
@wodCZ
wodCZ / BooleanOrNullControl.php
Created December 17, 2015 09:58
BooleanOrNullControl for Nette framework
<?php
namespace Forms\Controls;
use Nette\Forms\Controls\RadioList;
class BooleanOrNullControl extends RadioList
{
@wodCZ
wodCZ / FillerUtil.php
Created December 16, 2015 13:08
FillerUtil
<?php
namespace Libs\Utils;
use Nette\ComponentModel\IContainer;
use Nette\Forms\Controls\BaseControl;
use Nette\Utils\Strings;
use Symfony\Component\PropertyAccess\PropertyAccess;
@wodCZ
wodCZ / force-http.tpl
Last active March 25, 2024 21:23
vestacp cert letsencrypt
server {
listen %ip%:%web_port%;
server_name %domain_idn% %alias_idn%;
location / {
rewrite ^(.*) https://%domain_idn%$1 permanent;
}
}
@wodCZ
wodCZ / BaseForm.php
Last active November 25, 2015 13:03
Form: fill defaults from object
<?php
namespace Libs\Forms;
use Nette\Forms\Controls;
use Nette\Utils\Strings;
use Symfony\Component\PropertyAccess\PropertyAccess;
class BaseForm extends Form
{
@wodCZ
wodCZ / ubuntu-php-development-environment.md
Created October 25, 2015 14:18 — forked from DaRaFF/ubuntu-php-development-environment.md
Ubuntu php development environment

#Introduction If you're a php developer on ubuntu, there comes the time where you have to install/reinstall your system. I did it already a few times and i decided to write down the steps for a typical web developer stack with php. This is for a developer machine and not for a live environment!

I hope it helps you too!

fyi @mheiniger and me started with an installer here: https://github.com/mheiniger/webdev-setup

@wodCZ
wodCZ / spinner.ajax.js
Created October 22, 2015 08:48
nette.ajax spinner
(function($, undefined) {
$.nette.ext('spinner', {
init: function () {
},
start: function () {
this.counter++;
if (this.counter === 1) {
$("html").addClass('wait');