Skip to content

Instantly share code, notes, and snippets.

View bertBruynooghe's full-sized avatar

Bert Bruynooghe bertBruynooghe

View GitHub Profile
@bertBruynooghe
bertBruynooghe / sassvariablescope.scss
Created February 6, 2012 20:10 — forked from dangayle/sassvariablescope.scss
Override SASS variable scope?
$mid:#66CCFF;
$dark:darken($mid, 40%);
a{
color:$mid;
&:hover{color:dark;}
}
@media only screen and (max-width: 767px) {
$mid:#22CCFF;
# RAILS_VERSION 3.2.11
require 'yaml'
require 'json'
config = ::YAML::load <<EOS
---
tasks:
instances:
tasks:
# -*- coding: UTF-8 -*-
# RAILS_VERSION 3.2.11
require 'yaml'
require 'json'
config = ::YAML::load <<EOS
---
name: Anthos Invoicing
tasks:
@bertBruynooghe
bertBruynooghe / usage_of_dotenv.md
Last active November 28, 2017 10:26
usage of .env

Usage of dotenv

Gemfile

Make sure dotenv is not included for production:

    group :development, :test do
      gem 'dotenv-rails'
    end
@bertBruynooghe
bertBruynooghe / gitlab_evaluation.md
Last active October 24, 2016 10:00
gitlab evaluation

as of August 24, 2016

Gitlab.com as one-to-one replacement for BitBucket

Improvements of BitBucket


Lean HTML

in a Rails context


Lean HTML

  • {:.fragment}readability
  • {:.fragment}ease to debug
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bertBruynooghe
bertBruynooghe / symfony_development.md
Last active February 23, 2022 10:44
symfony development setup
  • Visual Studio Code
    • intelephense: "php.suggest.basic": false "editor.quickSuggestions" : { "comments": true }

      "intelephense.files.exclude": [
         "**/.git/**",
         "**/.svn/**",
      

"/.hg/",