Skip to content

Instantly share code, notes, and snippets.

View joxerg's full-sized avatar
🏛️
Less will always be more

Jose RG joxerg

🏛️
Less will always be more
View GitHub Profile
@apankrat
apankrat / readme.txt
Last active August 30, 2021 02:45
μGiffer 0.9.10 (preview)
-- μGiffer / preview release --
https://iobureau.com/files/uGiffer-0.9.12.zip (213576 bytes)
------------------------> 32-bit/uGiffer.exe (111488 bytes)
------------------------> 64-bit/uGiffer.exe (123264 bytes)
Both exe files carry an EV signature of IO Bureau SA.
For details see here -> https://iobureau.com/ugiffer
@ThomasLeister
ThomasLeister / cloud-ubuntu-netplan-secondary-ip-static.md
Created May 25, 2018 08:30
Ubuntu netplan config for secondary ip address

In case there's already a DHCP config for netplan for the private IP address:

File: /etc/netplan/50-cloud-init.yaml

Contents:

# This file is generated from information provided by
# the datasource.  Changes to it will not persist across an instance.
# To disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
@robincornett
robincornett / front-page.php
Last active September 7, 2017 20:51
Masonry layout for custom front page (using widgets), as seen on smtwo.org
<?php
//* Front page for smtwo
add_action( 'genesis_meta', 'rgc_fp_meta' );
function rgc_fp_meta() {
if (is_active_sidebar( 'home-main') ) {
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'rgc_home_loop' );
}