- Flexbox Froggy - Fun game where you help frogs find lilypads while learning Flexbox syntax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Demo | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, labeled] | |
| jobs: | |
| demo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check access | |
| if: ${{ github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'OWNER' && !contains(github.event.*.labels.*.name, 'ci:run-tests') }} |
Agenda:
- Cromwell: Opening
- [Gem City JS] Wed, Nov 19: Home Automation and Robots using Johnny-Five with Rob Tarr
- [Dayton Web Developers] Wed, Nov 2: Brian Woodward - Going 'serverless' with JavaScript, APIs and Markup (JAM)
- [Southwest Ohio Givecamp] Fri, Oct 21: 141 Volunteers THANK YOU!!!
- Introduction to [Hacktoberfest]
- What does it mean to contribute while at DCC?
- [Progress Checker] Examples: [cromwellryan progress], [tarr progress]
- Share your progress at [Dayton Web Dev Slack]
- [Sign up]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var chatskills = require('chatskills'); | |
| var readlineSync = require('readline-sync'); | |
| // Define an alexa-app | |
| var app = chatskills.app('dragonhunt'); | |
| var dragonTypes = [ 'fire', 'ice', 'undead', 'skeleton', 'golden' ]; | |
| app.launch(function(req,res) { | |
| // Generate a random dragon. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # via http://apple.stackexchange.com/questions/136118/how-to-print-full-presenter-notes-without-slides-in-keynote | |
| global presenterNotes | |
| tell application "Keynote" | |
| activate | |
| open (choose file) | |
| tell front document | |
| set presenterNotes to presenter notes of every slide as text | |
| set the clipboard to presenterNotes | |
| do shell script "pbpaste > ~/keynote-notes.txt" | |
| end tell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Jekyll | |
| module CustomFrontmatterFilter | |
| # Returns back filtered list of posts based on custom frontmatter data types | |
| # Usage: {{ site.posts | filter_by_frontmatter:'subcategories','design' }} | |
| # => Returns all posts with the frontmatter 'subcategories' containing 'design' | |
| def filter_by_frontmatter(posts, frontmatter, type) | |
| filtered = [] | |
| for post in posts | |
| if post.data[frontmatter] | |
| filtered.push(post) if post.data[frontmatter].include? type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Terminal Cheat Sheet | |
| pwd # print working directory | |
| ls # list files in directory | |
| cd # change directory | |
| ~ # home directory | |
| .. # up one directory | |
| - # previous working directory | |
| help # get help | |
| -h # get help |
This gist is no longer in use.
- Related Setup: https://gist.github.com/hofmannsven/6814278
- Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
- Interactive Beginners Tutorial: http://try.github.io/
- Git Cheatsheet by GitHub: https://services.github.com/on-demand/downloads/github-git-cheat-sheet/
Press minus + shift + s and return to chop/fold long lines!
NewerOlder