- Set and maintain standards for Bitwise projects.
- Have a central repository where other Bitwise members can share knowledge of best practices.
- Have a reference point to start a new project or answer questions on different topics.
Click Here to contribute!
- No cussing; we're beyond that.
- Keep the requests and issues professional and relevant to the work we're doing at Bitwise.
- Treat others with the same respect you would if you were talking to them in person. Don't be a jerk.
- Have fun and share your knowledge!
- Please read all the links included:
- Take a look at our Guidebook for all your (mostly) non-code related needs!
Get set up with GitHub
- Gitflow workflow
- Maintain branches for
main
anddevelopment
- Branch off
development
for new features - Request reviews on your Pull Requests to
development
- Merge reviewed code into
development
- When milestone is complete branch off
development
into a newrelease
branch - QA the
release
branch, once stable mergerelease
branch intomain
(and tag it) and also merge back intodevelopment
- For any hot fixes, branch off
main
into a newhotfix
branch, fix issue, then merge fixes back intomain
(and tag it) and also merge intodevelopment
- Credit: https://nvie.com/posts/a-successful-git-branching-model/
- Maintain branches for
- Branching at Bitwise
- Commit Messages at Bitwise
- Using Github Projects to communicate progress
- Readme Guidelines to document projects
- EditorConfig to help with consistent code style
- Code Review process at Bitwise
- Acceptance Testing
- Bug Reporting
- Homebrew
- nvm
- Slack
- Sign into bitwiseindustries.slack.com team with your work email
- Either WebStorm(See below before you install) or Visual Studio Code
- (Optional) Install a third-party antivirus product of your choice.
- Activate Windows using a valid license key. If you don't already have one, ask HR about getting one.
- Install all available Microsoft updates, restarting your computer as necessary.
- Open PowerShell with Administrator privileges. Run
Set-ExecutionPolicy RemoteSigned
. Type Y and press Enter to confirm that you want to make this change. (If you don't perform this step, you will not be able to run any PowerShell scripts on your system.) - Install the Chocolatey package manager for Windows.
- Reopen PowerShell with Administrator privileges, if necessary. Run the install-apps-via-chocolatey.ps1 script to install a number of programs you will probably need. (Feel free to peek at this file's contents to see what it contains.)
- (Optional) From the same PowerShell window, run the command
oosu10
. Here, you can easily configure several settings to have Windows respect your privacy a little more. Just make sure you understand what each setting does before you change it. - After running
oosu10
, restart Windows (if applicable). - Install Android Studio
- Install the regular version of Visual Studio (as opposed to Visual Studio Code). Visual Studio Community Edition may be sufficient, or you may need a paid license for Visual Studio Professional, Enterprise, or similar. Either way, ask your PM (Project Manager).
- You may wish to use the Windows Subsystem for Linux.
- Ask your Project Manager if you need to install anything else.
Using Chocolatey has several advantages:
- You can install most of the software you need just by running a single script.
- You can update all of this software later by running
choco upgrade all
as Administrator. - Chocolatey will automatically skip installing browser toolbars and junk like that.
You will need to schedule time with Greg Goforth, Corey Schuman, Chris Hawkins, or Jody Hicks to gain access to the following:
- AWS is our primary platform for deployment (staging and production) so you should familiarize yourself with their JavaScript SDK and whitepapers.
- Presentations: Twice a month the software development teams in the Bitwise ecosystem meet on every other Wednesday from 4:00 pm - 5:00 pm PST to share their accomplishments, horror stories, workflow, and lessons learned with the rest of the BW community. While these meetings will generally be developer-focused, we invite anyone in the BW family to drop in and participate. You are highly encouraged to participate actively by leading a meeting on a topic of your choice. Ask Sonia Rohani, or Joel (Gyuhun Lee) to add you to the GCal event so that you get reminders and emails.
- Workshops: Once a month we will do a deep dive into a topic of interest for our workflow and/or processes. These will typically take longer than 1 hour and will be a classroom/workshop setting. One developer will lead the workshop and the goal will be to produce developers who are proficient at a skill or process that will help us in our work.
- Bitwise main online teaching tool is Frontend Masters. They have courses on all of the platforms we employ at Bitwise, and you should take advantage of as many as possible.
- If you prefer to use JetBrains' tooling, Bitwise provides us with WebStorm Suite for free. We also use Visual Studio and Visual Studio Code.
- If your job entails design work, you will need to get access to the Bitwise Adobe Photoshop license.
Getting stuck is a natural part of development and happens to the best of us. It's better to reach out than to stay silent, and we encourage you to do so. If you find yourself stuck on a task for more than 45 minutes, here are a couple of places to get help:
Try to use these suggested ways to better your problem solving skills when stuck on tasks. How to think like a programmer — lessons in problem solving
- Your team channel - When you start a project, you will be added to a private team channel. Feel free to ask your questions there! Your team lead may be able to help you through your blocker.
- bwtc-stackoverflow - Did you know we have our own Stack Overflow? Take a look, it has some great questions and answers.
- bwtc-technical-discussions - Great place for technical questions that involve some code.
While reaching out for help is very important when getting stuck, developers are expected to try and problem solve before seeking help else where. A good read on how to problem solve is listed below