Harry Whelchel

Results 20 comments of Harry Whelchel

Gotcha I hear you. Right now we have two post types: questions and wins. So to your point, I don't think Questions works as a model name. Posts I think...

Maybe the button could go above the posts right adjusted like the blue "Add another submission" button? Repositioning the button could definitely help, that said, I think the word choice...

Can we get 2.7 support? I'd like to use the facepalm emoji

This is the recommended solution by the bootstrap folks ```js import bsCustomFileInput from 'bs-custom-file-input'; $(document).ready(function () { bsCustomFileInput.init(); }) ```

https://www.npmjs.com/package/bs-custom-file-input

I did as well. I'm subscribed to rails on Code Triage and each doc request I received was for a `:nodoc:` method internal to the Rails API. Is this a...

@bdougie awesome, I just made a sample project: https://github.com/hwhelchel/netlify-middleman-test I've got it connected to netlify [here](https://app.netlify.com/sites/decorator-duck-85877)

@bdougie thanks for digging into this. I've submitted the support request.

Added this function ``` def get_failed_meeting_names(): failed_meeting_names = set() error_directory = 'downloads-errors' error_folders = glob.glob(os.path.join(error_directory, '*')) for folder in error_folders: folder_name = os.path.basename(folder) failed_meeting_names.add(folder_name) return failed_meeting_names ``` Added this to...