A dashboard-style admin interface built using CSS Grid, with a Flexbox fallback for older browsers.
  
    
      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
    
  
  
    
  | import { NgModule } from '@angular/core'; | |
| import { ApolloModule, APOLLO_OPTIONS } from 'apollo-angular'; | |
| import { HttpLinkModule, HttpLink } from 'apollo-angular-link-http'; | |
| import { InMemoryCache } from 'apollo-cache-inmemory'; | |
| import { WebSocketLink } from 'apollo-link-ws'; | |
| import { ApolloLink, split } from 'apollo-link'; | |
| import { getMainDefinition } from 'apollo-utilities'; | |
| import { environment } from '../environments/environment'; | |
| export function createApollo(httpLink: HttpLink) { | 
I hereby claim:
- I am beeman on github.
- I am beeman (https://keybase.io/beeman) on keybase.
- I have a public key ASAetPGApa0eMeL2187bJfq8fXAU3yiZDVQfAekD6Rh8hQo
To claim this, I am signing this object:
  
    
      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
    
  
  
    
  | #Generated by Kickstart Configurator | |
| #platform=x86 | |
| # Fetch content from here | |
| url –url http://nl.archive.ubuntu.com/ubuntu/ | |
| #System language | |
| lang en_US.UTF-8 | |
| #Language modules to install | 
  
    
      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
    
  
  
    
  | { | |
| "basics": { | |
| "name": "Bram Borggreve", | |
| "label": "Senior Software Engineer - Founder at Code Your Future Colombia - Co-Founder at Trilon - StackBlitz Team", | |
| "picture": "", | |
| "email": "[email protected]", | |
| "phone": "+15409233626", | |
| "website": "https://colmena.io", | |
| "summary": "I am Bram Borggreve, a Dutch software engineer. At the age of 35 I sold my house, gave away my stuff and started living abroad. I have since spent time in more than 15 countries!", | |
| "location": { | 
  
    
      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
    
  
  
    
  | // ******************************************************************* // | |
| // *** Make sure you install the package 'bootstrap-scss' from npm *** // | |
| // ******************************************************************* // | |
| // ******************************************************* // | |
| // *** Functions and variables need to be loaded first *** // | |
| // ******************************************************* // | |
| @import "~bootstrap-scss/functions"; | |
| @import "~bootstrap-scss/variables"; | 
Shout out on Twitter that you want to mentor and ask for retweets. Alternatively, get in touch with a person that is already mentoring students as they generally know more people that are interested.
Get to know each other during introduction call. You can talk about what the student knows, and what goals they have that you can help them with.
  
    
      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
    
  
  
    
  | scalar JSON | |
| # input type | |
| input PublishInput { | |
| type: String! | |
| scope: String | |
| payload: JSON | |
| } | |
| input SubscribeInput { | |
| type: String | 
  
    
      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
    
  
  
    
  | FROM node:10-alpine | |
| RUN mkdir -p /app/dist | |
| WORKDIR /app | |
| COPY ./dist /app/dist | |
| EXPOSE 8080 | |
| CMD [ "node", "dist/server" ] | 
Angular Console
- Once a project running ng serve (for instance), the Finder/IDE's should always be available.
- Add option to Open in Terminal (iTerm2, Terminal, Konsole, etc.).
- Inline terminal for quick commands like a git commit.
- Use a GraphQL Subscription for command output.
- Allow running multiple commands at the same time.