- Check out a local working branch
git checkout -b branchname
- Edit your files
- Add files to commit :
git add .
- Commit your changes :
git commit -m "Add a meaningful comment"
- Push changes to origin:
git push origin branchname
- Create a pull request on github
- Review then merge PR
- Get back to your main branch :
git switch main
For two years, I've been a community member of and contributor to The Odin Project, and in my time there I have grown from a help-seeker to primarily a help-provider. TOP's curriculum features many opportunities to build games, from simple ones like Rock Paper Scissors and Tic Tac Toe, to more complex ones such as to Chess and Battleship.
As a Javascript developer, much of my learning happened in the browser environment where access to markup and styling is conveniently close at hand. As wonderful as this is for the process of game creation, I have often witnessed the tendency for inexperienced learners to fall into the anti-pattern of interacting with the DOM too freely within their game logic.
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
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
openapi: 3.1.0 | |
x-stoplight: | |
id: sjhwknh580eif | |
info: | |
title: ' OpenWeatherMap API' | |
version: '2.5' | |
summary: Get the current weather | |
description: 'Get the current weather, dialy forecast for 16 days, and a three-hour-interval forecast for 5 days for your city. Helpful stats, graphics, and this day in history charts are available for 5 days for your reference. Interactive maps show precipitation, clouds, pressure, wind around your location stations. Data avaialble in JSON, XML, or HTML format. **Note**: Thie sample Swagger file covers the `current` endpoint only from the OpenWeatherMap API. <br/><br/> **Note**: All parameters are optional, but you must select at least one parameter. Calling the API by city (using the `id` parameter) will provide the most precise location results. ' | |
contact: | |
name: Support |