Leslie Viljoen
Leslie Viljoen
Running Autoprefixer during the deployment of our application takes more than 20 minutes. Is there anything we can do to speed it up? We are on Rails 5.2 and autoprefixer-rails-9.7.4...
Hi! This output doesn't seem that useful, but I don't know what else to include. I can't see anything on your website explaining where any other logs are located. I'm...
I do the following to compile a tree of sass files in a Rails project: ``` compressed_body = ::Sass::Engine.for_file(source_file, { cache: false, read_cache: false, style: :compressed, full_exception: true, load_paths: [engine_runtime_sass_path,...
HTTParty::Response sometimes looks nil but isn't. This makes for some interesting consequences and strange code in order to deal with them: [1] pry(#Salesforce::Rest)> response => nil [2] pry(#Salesforce::Rest)> response.code =>...
In our project we are not setting `user_weight` manually anywhere that I can see. But if I run this I can see a weight of mostly 1's and 2's: `select...
Thanks for doing this, it makes installing these dictionaries way easier! If someone else out there once had other versions of Postgres installed, `pg_config` can provide paths to the wrong...
This regex is not anchored: ``` if (word.match(/(?!FJO|[HLMNS]Y.|RY[EO]|SQU|(F[LR]?|[HL]|MN?|N|RH?|S[CHKLMNPTVW]?|X(YL)?)[AEIOU])[FHLMNRSX][A-Z]/)) { return "an"; } ``` It looks to me like this was intended: ``` if (word.match(/^(?!FJO|[HLMNS]Y.|RY[EO]|SQU|(F[LR]?|[HL]|MN?|N|RH?|S[CHKLMNPTVW]?|X(YL)?)[AEIOU])[FHLMNRSX][A-Z]/)) { return "an"; } ``` As...