Skip to content

Instantly share code, notes, and snippets.

View smonff's full-sized avatar

Sébastien Feugère smonff

View GitHub Profile
@smonff
smonff / recruiter_response.md
Last active April 1, 2016 13:10 — forked from dougireton/recruiter_response.md
I've started responding to recruiters with this list of requirements

Company Requirements

I'm definitely not looking for work. However to provide some helpful guidance for hiring like-minded engineers, I would only consider working for a company if it met these requirements:

  1. Concrete, measurable plan to increase the number of women and minorities in engineering roles.
  2. I would only be willing to interview if there were women/minorities in the interview pool for this position.
  3. Commitment to using and contributing to open source.
  4. Collaborative, friendly atmosphere where pair programming is encouraged.
  5. Meaningful work with clear linkage between work and company goals.
  6. Demonstrated commitment to ethical business practices, e.g. B corp certification.
@smonff
smonff / fix-wordpress-permissions.sh
Created January 23, 2017 17:49 — forked from Adirael/fix-wordpress-permissions.sh
Fix wordpress file permissions
#!/bin/bash
#
# This script configures WordPress file permissions based on recommendations
# from http://codex.wordpress.org/Hardening_WordPress#File_permissions
#
# Author: Michael Conigliaro <mike [at] conigliaro [dot] org>
#
WP_OWNER=www-data # <-- wordpress owner
WP_GROUP=www-data # <-- wordpress group
WP_ROOT=$1 # <-- wordpress root directory
@smonff
smonff / keybase.md
Created April 1, 2019 21:18
Keybase

Keybase proof

I hereby claim:

  • I am smonff on github.
  • I am smonff (https://keybase.io/smonff) on keybase.
  • I have a public key ASCQT5EfYHLpLVAS9P_jYpAIuCVpdfyBrMfAoUKsk5s1Xgo

To claim this, I am signing this object:

@smonff
smonff / mounts2json.pl
Last active July 21, 2021 13:55
/proc/mounts to JSON with perlcore only
#!/usr/bin/perl
use strict;
use warnings;
use diagnostics;
use JSON::PP;
my @only = qw(ext4);
my @mounts = ();
@smonff
smonff / natural.pl
Last active July 23, 2022 07:49
Natural language example
my $is_easy_to_read = $self->evaluate_readability( $pattern );
$self->explain_meaning unless $is_easy_to_read;