- nylas/N1 💌 An extensible desktop mail app built on the modern web.
- black-screen/black-screen A terminal emulator for the 21st century.
- shockone/black-screen A terminal emulator for the 21st century.
- ptmt/react-native-macos React Native for macOS
- docker/kitematic Visual Docker Container Management on Mac & Windows
- kitematic/kitematic Visual Docker Container Management on Mac & Windows
- davezuko/wirk-starter Get started with React, Redux, and React-Router!
- TelescopeJS/Telescope 🔭 An open-source social news app built with Meteor & React
- coryhouse/react-slingshot React + Redux starter kit / boile
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: Publish package to NPM | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| release-type: | |
| description: 'Release type (one of): patch, minor, major, prepatch, preminor, premajor, prerelease' | |
| required: true | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest |
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
| | Feature/Aspect | GraphQL | RESTful API | | |
| |--------------------|------------------------------------------|--------------------------------------------| | |
| | Data Fetching | Client specifies exactly what it needs | Fixed responses from predefined endpoints | | |
| | Schema | Strongly typed schema | No enforced schema | | |
| | Endpoints | Single endpoint | Multiple endpoints | | |
| | Real-Time Support | Built-in subscriptions | Requires additional protocols like WebSockets | | |
| | Caching | More complex, requires custom solutions | Native HTTP caching (ETags, Cache-Control) | | |
| | Documentation | Self-documenting via introspection | Separate documentation needed | | |
| | Flexibility | High, client-driven queries | Lower, server-driven responses | | |
| | Setup Complexity | |
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
| Technical Questions | |
| What is your experience with cloud technologies (e.g., AWS, Azure, Google Cloud)? How have you used these in past projects? | |
| Answer: | |
| "I have extensive experience with AWS, where I have utilized services like EC2, S3, Lambda, and RDS. For example, in my previous role at [Company], I led a project to migrate our on-premise infrastructure to AWS, which resulted in a 30% cost reduction and improved scalability. We used CloudFormation for infrastructure as code, which streamlined our deployment process and ensured consistency across environments." | |
| Can you discuss your experience with microservices architecture? What are the benefits and challenges you've encountered? | |
| Answer: | |
| "I have implemented microservices architecture in multiple projects. The benefits include improved scalability, better fault isolation, and more flexible deployments. However, the challenges involve managing inter-service communication, data consistency, and increased complexity in deployment. At [Company], we used Kuberne |
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
| Next.js is a popular React framework that provides powerful features for building modern web applications. Here are some of the top features and benefits of using Next.js: | |
| 1. Server-Side Rendering (SSR) | |
| Description: Next.js allows you to render pages on the server at runtime, providing better performance and SEO benefits compared to client-side rendering. | |
| Benefit: Faster initial page loads and improved search engine indexing. | |
| 2. Static Site Generation (SSG) | |
| Description: Next.js can generate static HTML pages at build time, which can be served with virtually no latency. | |
| Benefit: Extremely fast page loads and the ability to serve content from a CDN. |
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
| /** | |
| * Custom Hook to get list of all Collections | |
| * @param {Object} firebase.collection - Collection function in firebase provides access to collection in db | |
| * @param {Object} collectionPath - Contains details about what to query, one of the items is collectionPath: Path to collection or doc in firebase ex: COLLECTION_NAME/DOC_ID | |
| * @param {String} locationHash - History location hash value of current url e.g. "#HASH_VALUE" | |
| * | |
| * @example | |
| * // pass collection path e.g. collectionName/docName/collectionName | |
| * // initial data if needed | |
| * // Firebase class instant |
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
| # Global build commands | |
| [build] | |
| command = "gatsby build" | |
| publish = "public/" | |
| # Installed Netlify plugins | |
| [[plugins]] | |
| package = "netlify-plugin-gatsby-cache" | |
| [[plugins]] |
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
| # Javascript Node CircleCI 2.0 configuration file | |
| # Check https://circleci.com/docs/2.0/ for more details | |
| version: 2 | |
| jobs: | |
| build: | |
| docker: | |
| - image: circleci/node:dubnium | |
| steps: |
| HEADER | EMPHASIS | HORIZONTAL_LINE | LIST | TABLE
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
| #add 'node_modules' to .gitignore file | |
| git rm -r --cached node_modules | |
| git commit -m 'Remove the now ignored directory node_modules' | |
| git push origin master |
NewerOlder
