pete higgins
pete higgins
Followup to: * https://github.com/nestjs/nest/issues/7840 * https://github.com/apollographql/apollo-server/issues/5613 ### Current behavior Following the [NestJS Hot Reload guide](https://docs.nestjs.com/recipes/hot-reload) does not work with Apollo. After making an update to a GraphQL resolver, the server...
Followup to our twitter conversation earlier today: https://twitter.com/pete_higgins/status/747861010359402496 I am switching a rails app from using sass-rails to sassc-rails and looking for differences in the compiled CSS between the two....
There is a config flag `owner` defined in the attributes file: https://github.com/chef-cookbooks/audit/blob/master/attributes/default.rb#L48 It does not appear to be referenced anywhere. Both the Automate and ChefServerAutomate reporters reference an owner, but...
There is a config flag `run_time_limit` defined in the attributes file: https://github.com/chef-cookbooks/audit/blob/master/attributes/default.rb#L95 The value is referenced here, and then passed to `Reporter::ChefAutomate`: https://github.com/chef-cookbooks/audit/blob/master/files/default/handler/audit_report.rb#L261 `Reporter::ChefAutomate` sets an instance variable with that...
There is a config flag `raise_if_unreachable` defined in the attributes file: https://github.com/chef-cookbooks/audit/blob/master/attributes/default.rb#L52 The only other reference to that string I can find is this instance variable reference: https://github.com/chef-cookbooks/audit/blob/master/libraries/helper.rb#L64 That instance...
Instead of "bundle exec rspec spec", I think it's more user-friendly to use rspec's built-in rake SpecTask detailed here: http://rspec.info/documentation/tools/rake.html
Hello, I recently started using Calibre in Ubuntu to access Pocket. I use LastPass to generate passwords, and when I had signed up for Pocket I used my default settings:...
If I have a spec like this: ``` $ cat test_spec.rb describe "test case" do it "diffs its arguments" do expect("foo\n").to eq("foo") end end ``` When I run it I...
Differ currently disregards any trailing newlines when making a diff of two strings. This has two main consequences I can find. - If two strings differ and one has a...