Code Monkey home page Code Monkey logo

wwcsf-algos's Introduction

WomenWhoCode

CodePath group project. Bring the WWCode experience mobile.

Problem/Opportunity: Currently, our reach happens through expanding networks and our weekly Code Review. We want to be able to reach an engineer even if we don’t have a network in their area, more directly, and make it so they feel like they are apart of WWCode regardless of where they are in the world. Our goal is to reach 1 million engineers.

Product Overview: This experience will leverage existing internal data: WWCode events, event streaming, resources, internal blogs, job posts, inbound conference data. We will also provide the ability to connect with other like minded engineers through in app direct messaging and event driven groups.

We are going to find out what interests our members based on a personalization flow in order to feed them proper data and connect them with like minded members in their area and around the world. This is creating a more immediate, and direct way to connect regardless of where you are located.

Setup for Developers

  1. Make sure you have downloaded the latest version of Android Studio. It works on Linux, Windows and Mac. Download the correct version for your OS
  2. Go to the project repo and fork it by clicking "Fork"
  3. If you are working on Windows, download Git Bash for Windows to get a full Unix bash with Git functionality
  4. Clone the repo to your desktop git clone [email protected]:your_name/WomenWhoCode.git
  5. Open the project with Android Studio

Configure remotes

When a repository is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repository it was forked from. To keep track of the original repository, you should add another remote named upstream:

  1. Open terminal or git bash in your local repository and type:

    git remote add upstream https://github.com/WomenWhoCode/WomenWhoCode.git

  2. Run git remote -v to check the status, you should see something like the following:

origin https://github.com/YOUR_USERNAME/WomenWhoCode.git (fetch)

origin https://github.com/YOUR_USERNAME/WomenWhoCode.git (push)

upstream https://github.com/WomenWhoCode/WomenWhoCode.git (fetch)

upstream https://github.com/WomenWhoCode/WomenWhoCode.git (push)

  1. To update your local copy with remote changes, run the following:

    git fetch upstream

    git merge upstream/master

    This will give you an exact copy of the current remote, make sure you don't have any local changes.

Contributing and developing a feature

  1. Make sure you are in the master branch git checkout master
  2. Sync your copy git pull
  3. Create a new branch with a meaningful name git checkout -b branch_name
  4. Develop your feature on Android Studio and run it using the emulator or connecting your own Android device
  5. Clean your project from Android Studio Build/Clean project
  6. Add the files you changed git add file_name (avoid using git add .)
  7. Commit your changes git commit -m "Message briefly explaining the feature"
  8. We have small Pull Requests, try to keep one commit per feature. If you forgot to add changes, you can edit the previous commit git commit --amend
  9. Push to your repo git push origin branch-name
  10. Go into the Github repo and create a pull request explaining your changes
  11. Please add a message on the pull request notifying your changes to @WomenWhoCode/android-reviewers
  12. An @WomenWhoCode/android-reviewers will merge your PR when it's ready for merging πŸ‘

Project Reviewers

You can metion all of us using @WomenWhoCode/android-reviewers

Join in on conversations related to this project!

  • Sign Up for the Slack Group to discuss issues with fellow developers and contrbutors.*

Open Source Libraries Used

  • Android Async HTTP - Simple asynchronous HTTP requests with JSON parsing
  • Picasso - Image loading and caching library for Android
  • Calligraphy - Custom fonts in Android an OK way.
  • Material Tab Strip - An interactive indicator to navigate between the different pages of a ViewPager
  • KenBurnsView - Android library that provides an extension to ImageView that creates an immersive experience by animating its drawable using the Ken Burns Effect.
  • Android GIF Drawable - Views and Drawable for displaying animated GIFs on Android
  • Butterknife - Field and method binding for Android views which uses annotation processing to generate boilerplate code for you.
  • Glide - An image loading and caching library for Android focused on smooth scrolling
  • Bubble View - Bubble View to implement chat conversation's UI.
  • Material Spinner - Spinner with Material Design - Down to API 9
  • Material Ripple - Android L Ripple effect wrapper for Views
  • Recycler View Animators - An Android Animation library which easily add itemanimator to RecyclerView items.

Current App

current app

https://www.youtube.com/watch?v=Tt4ATUSORzk

Open Source License

The Non-Profit Open Software License version 3.0 (NPOSL-3.0)

[email protected] for any questions

WWCode reserve the right to change the open source license at anytime

wwcsf-algos's People

Contributors

ainneo avatar ananyakaushik avatar angie1015 avatar arch92 avatar codewithjulie avatar elaguerta avatar gmartinezsan avatar harinirajendran avatar hellodommy avatar ielin avatar mkm3 avatar rainy789 avatar rogue0137 avatar spriyam avatar yosolita1978 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wwcsf-algos's Issues

Add a Hashmaps.md page

Add a page to topics on Hashtables with resources and problem sets. If you have been studying for interviews and have some favorite problems and resources at hand, please help us out!

Delete note about Arrays page from README.

This issue is reserved for the WWCode Hacktoberfest Demo!

This text block is no longer relevant. Please delete it from the README:

Our next set of Zoom presentations and practice sessions (through the end of 2020) are on Arrays and Hashmaps. We are 
looking for help curating good resources and problems for these event. If you are currently interviewing or have recently 
finished a stage of interview prep, please consider sharing your favorite videos, articles, and problems on Arrays and 
Hashmaps! Here is the current state of our Arrays page. We don't have a Hashmaps page, if you would like to start it up, 
please consider taking on this issue.

Update problem sets arrays-strings.md

Edit our topic page on arrays-strings, which lives here: https://github.com/WomenWhoCode/wwcsf-algos/blob/master/topics/arrays-strings.md

Create tables for problem sets

Instead of providing links to leetcode lists, copy each problem from the lists into the /md file into tables. Provide separate tables for each difficulty level. Each problem gets a row. Provide link to problem description, solution, and link to a community generated example. Here is a template:

Easy problems

link to description solution wwc code example
problem 1 solution link to wwc solution in this repo
problem 2 solution link to wwc solution in this repo

Medium problems

link to description solution wwc code example
problem 1 solution link to wwc solution in this repo
problem 2 solution link to wwc solution in this repo

Hard problems

link to description solution wwc code example
problem 1 solution link to wwc solution in this repo
problem 2 solution link to wwc solution in this repo

Add a stacks and queues page and provide content.

Add a stacks and queues topic page to ./topics/stacks_queues.md

Resources for this issue:

Please make sure you have done the following before requesting a review:

Add TwoSum leetcode problem to topics/SortingSearching.md

This is issue is reserved for our Hacktoberfest demo.

We only have 2 Easy problems on our Sorting and Searching page. Please add this one to the Problems/Easy table in the file topics/sorting-searching.md

https://leetcode.com/problems/two-sum/

Please note that the recommended Solution is locked behind a paywall. Instead, provide a link to the solution discussion:
https://leetcode.com/problems/two-sum/discuss/?currentPage=1&orderBy=hot&query=

Add problems to trees-graphs.md.

Please edit the Problem Sets section on this markdown file: https://github.com/WomenWhoCode/wwcsf-algos/blob/master/topics/trees-graphs.md

  • Please delete the "Google kickstart" problems

  • Please add problems to the Easy, Medium, and Hard sections, so that there are three problems per section.

  • If a problem is in the wrong section (for example a Medium problem in the Easy section), please move it to the appropriate section.

Guidelines:

  • Check out these lists for potential problems to add : https://github.com/WomenWhoCode/wwcsf-algos#2e-problem-sets

  • Please provide a link to the official Leetcode problem page, instead of to the card or article. The page we want has a simple url of the form leetcode.com/problems/[problem-name]. Here is an example of the correct leetcode page. You will have to search leetcode for the problem title to find the correct page with a URL that starts with leetcode.com/problems.

  • Only post problems that are available through a free leetcode account.

Organize problems on trees-graphs.md

Please edit the Problem Sets section on this markdown file: https://github.com/WomenWhoCode/wwcsf-algos/blob/master/topics/trees-graphs.md

Add tables for Tree problems:

  • Easy Tree Problems: pick at least 3 Easy ones (some of these are not labeled easy)
  • Medium Tree Problems: Binary Tree Inorder Traversal, Populating Next Right Pointers in Each Node, Construct Binary Tree from Preorder and Inorder Traversal
  • Hard Tree Problems, Word Ladder, Lowest Common Ancestor of a Binary Tree, Binary Tree Maximum Path Sum
  • Please provide a link to the official Leetcode problem page, instead of to the card or article. For example, don't link to this page, link to this one. You will have to search leetcode for the problem title to find the correct page with a URL that starts with leetcode.com/problems.
  • Only post problems that are available through a free leetcode account.

Update trees-graphs.md Problem Set section

Please edit the Problem Sets section on this markdown file: https://github.com/WomenWhoCode/wwcsf-algos/blob/master/topics/trees-graphs.md

  • Please delete the "Google kickstart" problems

  • Please add problems to the Easy, Medium, and Hard sections, so that there are three problems per section.

  • If a problem is in the wrong section (for example a Medium problem in the Easy section), please move it to the appropriate section.

Guidelines:

  • Check out these lists for potential problems to add : https://github.com/WomenWhoCode/wwcsf-algos#2e-problem-sets

  • Please provide a link to the official Leetcode problem page, instead of to the card or article. The page we want has a simple url of the form leetcode.com/problems/[problem-name]. Here is an example of the correct leetcode page. You will have to search leetcode for the problem title to find the correct page with a URL that starts with leetcode.com/problems.

  • Only post problems that are available through a free leetcode account.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.