This is test
This is the multi-page printable view of this section. Click here to print.
Workshops
- 1: Workshop
- 1.1: GCP
- 1.2: Static Web Site
- 1.3: Google Sheet Python
- 1.4: Go-Workshop
- 1.4.1: Pre requisite
- 1.5: Gitlab
- 1.6: Grafana
- 1.6.1: Google sheet grafana
- 1.6.2: Setup
- 1.7: Python
- 2: Information
- 2.1: Plan
- 2.2: Mac File Location
- 2.3: Bookmarks
- 2.3.1: Chrome
- 2.3.2: Chrome Personal
- 2.3.3: Safari
- 3: Getting Started
- 3.1: Mac/unix
- 3.2: Python
- 3.3: Hugo
- 3.3.1: Hugo Learn
- 3.3.2: Resources
- 3.4: Terraform
- 3.4.1: Resources
- 3.5: Git
- 3.5.1: Getting Started
- 3.5.2: Git Clone
- 3.5.3: Gitignore
- 3.5.4: Working With Git
- 3.5.5: Multiple Accounts
- 3.6: GCP Function
- 3.6.1: Setup
- 3.6.2: Deploy Function
- 3.7: Go
- 3.7.1: Getting Start
- 3.7.2: Create a Go module
- 4: Code Snippets
- 4.1: main
1 - Workshop
Workshop is the place where I will store more meaningful journey of making something. At the end of each workshop, there will be something meaningful.
AWS Amplify: https://www.youtube.com/watch?v=g4qKydnd0vU&list=PLmexTtcbIn_hvPcUm3oAufCtH7dwNAC-g
Google Firebase: Azure Webpage
1.1 - GCP
1.2 - Static Web Site
GitLab static Page with custom domain is not working consistently.
There are few other options, AWS or GCP. Let’s start with AWS.
1.3 - Google Sheet Python
This is workshop is based on:
- https://docs.gspread.org/en/latest/index.html#
- https://lcalcagni.medium.com/how-to-manipulate-google-spreadsheets-using-python-b15657e6ed0d
- https://www.youtube.com/watch?v=sVURhxyc6jE
In this workshop, I will explain how can we manipulate google sheets using Python.
- Step 1: Sign up for a google account
- Step 2: Create a Google Service Account
- 2.1 Create a new project on Google Cloud Platform
- 2.2 Enable the required APIs
- 2.3 Manage Google Sheets API credentials
- Step 3: Share your Google Sheet with your Service Account
- Step 4: Manipulate your Google Sheet with Python
1.3.1 - Create Google Service Account
Step 1: Create a Google Service Account
First, we will have to create a Service Account. This account will be used to make authorized API calls to Google Cloud Services. It is important to mention that to create a Service Account it is required to have a Google account first.
1.4 - Go-Workshop
The goal of this workshop is to create step by step application in go.
The workshop will start with basic functionality of go language. Gradually, it will get more intermediate and then advanced.
1.4.1 - Pre requisite
1.5 - Gitlab
1.5.1 - Setup
1.5.2 - Pipeline
1.6 - Grafana
Let’s setup grafana
1.6.1 - Google sheet grafana
Configuring the Google Sheets data source
The Google Sheets data source is using the Google Sheet API to access spreadsheets. The data source supports two ways of authenticating against the Google Sheets API. API Key auth is used to access public spreadsheets, and Google JWT File auth using a service account is used to access private files.
API Key
If a spreadsheet is shared publicly on the Internet, it can be accessed in the Google Sheets data source using API Key auth. When accessing public spreadsheets using the Google Sheets API, the request doesn’t need to be authorized, but does need to be accompanied by an identifier, such as an API key.
To generate an API Key, follow the steps in the Google Sheets data source configuration page.
If you want to know how to share a file or folder, read about that in the official Google drive documentation.
Google JWT File
Whenever access to private spreadsheets is necessary, service account auth using a Google JWT File should be used. A Google service account is an account that belongs to a project within an account or organization instead of to an individual end user. Your application calls Google APIs on behalf of the service account, so users aren’t directly involved.
The project that the service account is associated with needs to be granted access to the Google Sheets API and the Google Drive API.
The Google Sheets data source uses the scope https://www.googleapis.com/auth/spreadsheets.readonly
to get read-only access to spreadsheets. It also uses the scope https://www.googleapis.com/auth/drive.metadata.readonly
to list all spreadsheets that the service account has access to in Google Drive.
To create a service account, generate a Google JWT file and enable the APIs. For more detailed instructions, refer to the steps documented for the Google Sheets data source in the “Add a data source” page in Grafana.
Sharing
By default, the service account doesn’t have access to any spreadsheets within the account/organization that it is associated with. To grant the service account access to files and/or folders in Google Drive, you need to share the file/folder with the service account’s email address. The email is specified in the Google JWT File. If you want to know how to share a file or folder, please refer to the official Google drive documentation.
:warning: Beware that once a file/folder is shared with the service account, all users in Grafana will be able to see the spreadsheet/spreadsheets.
Configure a GCE Default Service Account
When Grafana is running on a Google Compute Engine (GCE) virtual machine, Grafana can automatically retrieve default credentials from the metadata server. As a result, there is no need to generate a private key file for the service account. You also do not need to upload the file to Grafana. The following preconditions must be met before Grafana can retrieve default credentials.
- You must create a Service Account for use by the GCE virtual machine. For more information, refer to Create new service account.
- Verify that the GCE virtual machine instance is running as the service account that you created. For more information, refer to setting up an instance to run as a service account.
- Allow access to the specified API scope (
"https://www.googleapis.com/auth/spreadsheets.readonly"
).
For more information about creating and enabling service accounts for GCE instances, refer to enabling service accounts for instances in Google documentation.
1.6.2 - Setup
In this workshop we will explorer grafan.
The first step is to setup a grafana instance and create a dashboard with some data.
Let’s start very simple:
- The first step is to create an account
- we will use the free account at https://www.grafana.com
- Create an account using google account
- Install/Connect data source - google sheet
- Follow the isntuction here: https://github.com/grafana/google-sheets-datasource/blob/main/src/docs/configuration.md
- Click this link and it will walk through a google project creation and enable API:
https://www.googleapis.com/auth/spreadsheets.readonly
Apparently, we neeed to have a good project setup in GCP to use in in grafan. Let’s set that up:
https://www.youtube.com/watch?v=GnWZsHjM5To
TODO:
- Create a GCP account
- Create a GCP project
- Create a GCP Service Account to understand service account use cases
1.7 - Python
2 - Information
Often there are some information that I need to find and usually do google. Some example are, what location different information is stored in mac. In this section, I will keep the information that can come handy later.
2.1 - Plan
This is the place for planning, to do , status, etc.
- I would like to create an application like http://sentrypconline.com/
- I would like to create an application like https://domain-monitor.io
- I would like to create e2e AI engine that will help determine what action to take for email
Personal Python/Go library or application:
Hotel:
- Create set of scripts that will move files related to hotel to right location
- One clink report creating for income expenses for each hotel with pipot table google
Personal:
- Whatsapp message to db to UI with great searching
2.2 - Mac File Location
name | location |
---|---|
Safari Bookmarks | ~/Library/Safari/Bookmarks.plist |
Safari Bookmarks | ~/Library/Safari/Bookmarks.plist |
Safari History | ~/Library/Safari/History.db |
Chrome Bookmarks | ~/Library/Application\ Support/Google/Chrome/Default/Bookmarks |
Chrome History | ~/Library/Application\ Support/Google/Chrome/Default/History |
Firefox Bookmarks | `` |
Google Profile | ~/Library/Application\ Support/Google/Chrome |
Photo Location | ~/Pictures/Photos\ Library.photoslibrary/originals |
2.3 - Bookmarks
2.3.1 - Chrome
Bookmarks
Bookmarks Bar
2023
- 9 Box Talent Review: Complete Guide with Uses, Limitations and Alternate Approach - SlideModel
- A Step-by-Step Guide to Building and Deploying Google Cloud Functions | AHEAD
- Agile design processes and guidelines | Atlassian
- API Monitoring | The Exploratory - YouTube
- Application Access & Onboarding - Ecosystem - Magic Leap
- AR Code, Augmented Reality QR Codes
- ArgoCD CPS Service and CPS Cluster Creation Documentation - Google Docs
- Aviatrix | Secure Cloud Networking
- AWS RDS SQL Server migration using native backups
- AWS S3 - Cyderes Documentation
- Bell Schedules - Pine Lake Middle School
- Bell Schedules - Skyline High School
- ChatGPT
- Cloud Front | Magic Leap
- Cloud Run: Container to production in seconds | Google Cloud
- Complete Guide to Architecture Diagrams - Edraw
- Computer Programmer Skills: Definition and Examples | Indeed.com
- Connect to Cloud SQL from an Application in Kubernetes Engine | Google Cloud Skills Boost
- Connected Services / service-template-go · GitLab
- Create a kubeconfig for Amazon EKS - Amazon EKS
- Current SRE Responsibilities: Lucidchart
- Demystifying Istio and Anthos Service Mesh on GKE | by Arun Ananthampalayam | Medium
- Design Options - Device to Central ML Cloud Telemetry - Google Docs
- Device Signer
- DevOps with GitLab CI Course - Build Pipelines and Deploy to AWS - YouTube
- EC2-Classic Networking is Retiring – Here’s How to Prepare | AWS News Blog
- Excalidraw
- Explore - Loki - Grafana
- Featured Apps
- GitHub - magicleap/arcloud
- Gmail
- Google Cloud Developer Cheat Sheet
- Google Cloud Platform Services And Tools For Beginners
- Herald - Observability
- Home - Confluence
- How The Home Depot uses a managed service for Prometheus | Google Cloud Blog
- How to update Git submodules
- How to write a case study — examples, templates, and tools | Adobe
- How-to Guides | Identity Platform Documentation | Google Cloud
- IdeaBoardz - Brainstorm, Retrospect, Collaborate
- Immersive Web Developer Home
- Importing and exporting SQL Server databases using native backup and restore - Amazon Relational Database Service
- ISO 27001 Change Management Policy | Medium
- Lab 5 - Backup and Restore :: RDS MySQL Immersion Day Labs
- Lighthouse Mentor Program - People Hub - Confluence
- Magic Leap - My Applications
- Magic Leap · GitHub
- Magic Leap 2 Developer Forums
- Magic Leap Help Central - Jira Service Management
- Markov Chain
- Markov Chains in NLP - GeeksforGeeks
- Migrate your Classic Load Balancer - Elastic Load Balancing
- ml1-flash.magicleap.cloud/one-click
- ML2 Apps overview - Ecosystem - Confluence
- ML2 SaaS Development Proposal - Google Docs
- Modular Docs - Mojo🔥
- Mojo 🔥: Programming language for all of AI
- Multi-Cloud Monitoring and Alerting with Prometheus and Grafana
- MVDream: Creating Lifelike 3D Models from Words
- Open Source - Ecosystem - Magic Leap
- Playbooks - Site Reliability & Core Engineering - Magic Leap
- Product Documentation - Confluence
- Projects - Jira
- Quick start
- Quickstart — Boto3 Docs 1.24.37 documentation
- Requirements Brief - ML1 end of life notification - Google Docs
- Resources to get started with GitLab | GitLab
- Shared version of Magic Leap - TIDD - CPS - Google Docs
- Solutions Application Roadmap - Solutions Development - Confluence
- Spaces - Confluence
- Subscriptions | Google Cloud Skills Boost
- Terragrunt vs. Terraform - Comparison & When to Use
- The Anatomy of an Amazon 6-pager. A deep dive into writing detailed… | by Jesse Freeman | The Writing Cooperative
- Top 8 diagramming tools for software architecture | by IcePanel | Medium
- Training - Jira
- Training Outline - SRE - Site Reliability & Core Engineering - Magic Leap
- Unity Development for Magic Leap 2 - Unity Learn
- Using Gitlab CI/CD to deploy Terraform Configurations in AWS | by Bmwitcher | Medium
- Vertex AI | Google Cloud
- Welcome - NATS Docs
- What is Amazon CloudFront? - Amazon CloudFront
- Xembly | An automated Chief of Staff for every worker -
- Solutions Development - Confluence
- [SRE-2395] FinOps Timeline - Jira
- Expresso by Magic Leap
- Ingest Cloud Assets from AWS • Cortex XDR Pro Administrator Guide • Reader • Palo Alto Networks documentation portal
- Ultimate Guide to Terraform: From Beginner to Expert — Zero to Devops
- Rundeck Runbook Automation
- [SRE-1111] Need to transfer htr-alph-x vms to a different zone - Jira
- A Step-by-Step Guide to Building and Deploying Google Cloud Functions | AHEAD
APN
- AWS Partner Network - Checklist
- AWS Foundational Technical Review
- Become an AWS Partner | AWS Partner Network
- AWS Foundational Technical Review
Codes
- About SmartKey
- AWS Account Onboarding - AWS
- Concourse
- doc / customer-doc · GitLab
- enterprise · GitLab
- enterprise / helm-charts / arcloud-bundle · GitLab
- enterprise / local-cluster · GitLab
- Flask | Read the Docs
- Infrastructure · GitLab
- Infrastructure / hosted-dns-zones · GitLab
- Infrastructure / incident-management · GitLab
- infrastructure/environment/cost_centers.tf · production · Infrastructure / GCP / olympus · GitLab
- louislam (Louis Lam) · GitHub
- ml1 · GitLab
- Prerequisites - Magicleap Cloud
- Python Beginners — Python Beginners documentation
- Samples · GitLab
- solutions-services · GitLab
- status:open · Gerrit Code Review
- Tutorials — pandas 0.15.2 documentation
- AWS Account Onboarding - AWS
CurerntTabs
- .gitlab-ci.yml · production · Infrastructure / incident-management · GitLab
- AWS Billing Costs - Grafana
- Documents
- Explore - Loki - Grafana
- Explore - Loki - Grafana
- Explore - Loki - Grafana
- Explore - Loki - Grafana
- Kibana
- Kibana
- Kibana
- Kibana
- My Apps Dashboard | Magic Leap
- Open Source - Ecosystem - Magic Leap
- Open Source - Ecosystem - Magic Leap
- Technology Roster - Ecosystem - Magic Leap
- AWS Billing Costs - Grafana
Dashboard
- 10 Best New Relic Alternatives in 2023 | Better Stack Community
- ATF Internal CI/CD (not to be confused with ML build CI/CD) - QA-Automation - Confluence
- CPS - Build Image
- FileStore Dashboard - Kibana
- Home - Grafana
- Home - Grafana - build and Release
- Home - Grafana - Tech Stop
- How to Integrate Google BigQuery Into Grafana - Zebra BI
- SLO Overview - Grafana
- Top New Relic Competitors & Alternatives 2023 | Gartner Peer Insights
- ATF Internal CI/CD (not to be confused with ML build CI/CD) - QA-Automation - Confluence
DNS
- (2) How Does the DNS Process Work? | LinkedIn
- 10 Best DNS Monitoring Tools in 2023 | Better Stack Community
- Business process guide corporate domain & DNS management
- DNS Server | DNS Server Monitoring, DNS Server Performance Monitoring: Site24x7
- DNS Technical architecture and Security - laredoute.io
- Domains and DNS :: DigitalOcean Documentation
- How internet traffic is routed to your website or web application - Amazon Route 53
- How to Set Up a Domain to use Liquid Web's Name Servers - Liquid Web
- Network Tools: DNS,IP,Email
- Simplify DNS management in a multi-account environment with Route 53 Resolver | AWS Security Blog
- The Comprehensive Guide to DNS Monitoring
- The F5 Intelligent DNS Scale Reference Architecture | F5
- What Is A Name Server? – Forbes Advisor
- What is DNS Hierarchy Architecture with Examples (Explained)
- 10 Best DNS Monitoring Tools in 2023 | Better Stack Community
FinOps
- Cloud Custodian
- FinOps - Tags - Google Docs
- Harness | The Modern Software Delivery Platform - CI, CD, Feature Flags, Cloud Costs & more
- MLOps Principles
- Multi-Cloud Cost Control is Easier with a Unified View - Apptio
- FinOps - Glossary of terms (Proposal) - Google Docs
- Manage resources – magicleap.com – Google Cloud console
- Magic Leap - Calendar - Week of November 6, 2023
- Guide to Configure C8 Cluster - Google Docs
- GitLab members - Production Engineering - Confluence
- How to Install NPM and Node.js on Windows and Mac Devices?
- Build optimized websites quickly, focus on your content | Docusaurus
- AWS Workshops
- FinOps - Tags - Google Docs
GGroup
- dchu_org_fte - Google Groups
- EAP Support - Google Groups
- Guild GCP - Google Groups
- HW_leadership - Google Groups
- SW Leadership Team - Google Groups
- EAP Support - Google Groups
GoogleDocs
- Cloud SW Technology Council Consolidated Architecture - Google Slides
- Customer Deployment Product Definition Team - Google Slides
- End User Digest: 3 New Messages - aislam@magicleap.com - Magic Leap Mail
- GitHub - captn3m0/google-sre-ebook: Google SRE Book Generator (EPUB/MOBI/PDF).
- Health BU - Spatial Health Framework - Google Slides
- Kubernetes + Harbor | Kubernetes and Harbor
- Magic Leap - TIDD - CPS - Google Docs
- MLWorld Transition - Google Docs
- Security Design Review - Turn Credentials - Google Docs
- Senior SRE Job Description - Google Docs
- Spatial Health Framework Architecture - Initial Draft - Google Docs
- Customer Deployment Product Definition Team - Google Slides
Jira
Jump
- Amigo-web-portal
- getting_started.md · dev · solutions-services / solutions-services-style-and-workflow · GitLab
- How to Share VPN from Your MacBook to Connect your ML1 - Google Docs
- Jump - Architecture - Google Slides
- jump_quick_start.md · dev · solutions-services / solutions-services-style-and-workflow · GitLab
- laguna-jump / Applications - Argo CD
- Mimesys / connectxrsdk · GitLab
- Phase 3 Backend - June, Online Whiteboard for Visual Collaboration
- README.md · dev · solutions-services / solutions-services-style-and-workflow · GitLab
- Setting up a game server using Nakama on Google Compute Engine, part 1 · SteveStreeting.com
- Solutions Reference Apps Update Peggy/SLT - Google Slides
- solutions-services / amigo-server · GitLab
- solutions-services / com.magicleap.amigo · GitLab
- swagger/bot-api.yaml · master · John Hoffman / amigo-restapi-prototypes · GitLab
- What is an SSL certificate? | How to get a free SSL certificate | Cloudflare
- getting_started.md · dev · solutions-services / solutions-services-style-and-workflow · GitLab
LastSession
- [IC-356] Incident Response - Review and update existing SRCE process - Jira
- [IES-431] Gather information about ML1 services (code, architecture, tools, SME, etc) - Jira
- [JIRA] Updates for IES-444: Onboard PE Software Engineer #1 - aislam@magicleap.com - Magic Leap Mail
- Availability Management - Site Reliability & Core Engineering - Magic Leap
- Boards - Jira
- Commits · development · enterprise / ml1 / enterprise-api · GitLab
- Create JIRA project: TSS Production Engineering - TECH STOP - Jira Service Management
- Deploying Identity API - Ecosystem - Magic Leap
- enterprise / ml1 / enterprise-api · GitLab
- Incident Reponse Process - Google Docs
- Incidents - PagerDuty
- Index · Ssh · Help · GitLab
- InfoSec Enterprise Security and Automation - Agile Board - Jira
- InfoSec Governance and Compliance - Agile Board - Jira
- Magic Leap
- Magic Leap - Calendar - Week of October 4, 2021
- Magic Leap - My Applications
- Magic Leap Production Engineering Roadmap for ML1.xlsx - Google Sheets
- Meeting Preparation - Google Docs
- mlcloud / id-portal-web — Bitbucket
- mlcloud / identity-auth-web — Bitbucket
- Multi Org Usage | Datadog
- My Drive - Google Drive
- Product Engineering Team CHARTER .xlsx - Google Sheets
- Production Engineering - Google Drive
- Projects · Dashboard · GitLab
- Requests - Jira Service Management
- SSH Keys · User Settings · GitLab
- Telehealth/JUMP Integration - Healthcare - Magic Leap
- Your applications
- [IES-431] Gather information about ML1 services (code, architecture, tools, SME, etc) - Jira
ML1
CPS
- connected_services - OpenGrok cross reference for /connected_services/
- Connected Platform Cloud Developer New Hire Guide - Google Docs
- Local Cloud - Google Docs
- Connected Platform Cloud Developer New Hire Guide - Google Docs
- [CHAT-3171] Can't start meeting (ML1/ML19). Servers down? - Jira
- Apex Assets - Ecosystem - Magic Leap
- App Signing | Magic Leap
- Application Certificates - Google Docs
- Architecture ML1 - Software - Magic Leap
- Cert tracking - Google Sheets
- certs - OpenGrok cross reference for /ml-t186-n-dev/nova/build/certs/
- Cloud Guide (Run Book) - Google Docs
- Cloudtrail - CYDERES Documentation
- connected-platform/cps_integration_test_framework: A Node.js based integration framework for Connected Platform Services
- Content — Creator.magicleap.com — Contentful
- CPS Service Criticality - Google Docs
- CPS/Signing AWS Network Layout: Lucidchart
- CPS/Signing GCP Migration - Google Docs
- Creator Platform / csr-signer-server · GitLab
- Decrypting Bug Report - Developer Relations - Magic Leap
- Device Manager: Install Profile on Device – Care | Magic Leap
- Device Telemetry Data and Privacy Settings - Google Sheets
- Ecosystem Product - Ecosystem - Magic Leap
- Enterprise Platform - Google Sheets
- Flashing OTP - Google Docs
- GitHub - kdrag0n/android-webinstall: Easy-to-use web installer for Android-based operating systems
- Google Cloud announces new regions | Google Cloud Blog
- Home - Virtual Vision (V2) #رواد_الكلاود
- How JavaScript works: Implementation of gRPC in a Nodejs application | by Victor Jonah | SessionStack Blog
- Infrastructure / GitLab / gitlab-templates · GitLab
- ISV-0.98.30 Cherry-pick Sheet - Google Sheets
- LaunchDarkly Sign in
- Logging Strategy - Site Reliability & Core Engineering - Magic Leap
- MDM-OTA-Internal-Pilot-Ph1 - Google Docs
- ml-cpsv2-st-kaku-cps / Applications - Argo CD
- ML1 device signer meeting notes (8/8/22) - Google Docs
- MLDB, Fastboot, and nVIDIA Flashing Setup - Software - Magic Leap
- Monitoring and Event Management - Site Reliability & Core Engineering - Magic Leap
- Nagios - The Industry Standard In IT Infrastructure Monitoring
- Passable World Client - Software - Magic Leap
- PiSignage - YouTube
- Quality Review (monthly) - Google Drive
- Repos · Gerrit Code Review
- The Difference Between Root Certificates and Intermediate Certificates
- Twilio Cloud Communications | Web Service API for building Voice and SMS Applications
- Using the Bitbucket API
- Apex Assets - Ecosystem - Magic Leap
ML2
MDM
- My Workspace ONE
- Favorites | Intelligent Hub
- VMware Workspace ONE
- VMware Workspace One - Product Team - Confluence
- Workspace ONE
- AirWatch Dev Environment
- AirWatch - Prod
- VMware Workspace ONE UEM Console Documentation
- Favorites | Intelligent Hub
- [PRODUCT-8026] AR Cloud SaaS (Software as a Service) - Jira
- [PRODUCT-8237] AR Cloud: Define and develop a generic SaaS infrastructure and process - Jira
- [SCS-2632] Developer Portal API/Web - JIRA Ticket Submission - Jira
- [WORKING DOC] Prod Mktg Draft 0 ML2 SW Phased Rollout - Google Sheets
- Access Certification Process - Sath.com
- android-enterprise-deployment-guide.pdf
- Android-Enterprise-Migration-Bluebook_2019.pdf
- AWS Management and Governance Tools Workshop :: AWS Management and Governance Tools Workshop
- Create an OS Upgrade File-Action, Android
- Department Profiles - Confluence
- Deployment guide to manage Android devices in Microsoft Intune | Microsoft Learn
- Early Access Portal
- Enterprise Cloud Activation Architecture - Google Docs
- FAQ's - Google Sheets
- Full OTA Images for Nexus and Pixel Devices | Google Play services | Google Developers
- Google Online Security Blog: Improving software supply chain security with tamper-proof builds
- How to RUN a Design Thinking Workshop [2022 Guide] | Konrad®
- Inbox - aislam@magicleap.com - Magic Leap Mail
- Localization Service - High Level Architecture: Lucidchart
- Localization Service List - Google Sheets
- Magic Leap 2 Ramp - Confluence
- Magic Tracker
- MDM Deployment: Explanation, a Checklist & How-to Guide
- ML2 CPS High-level Architecture - Google Docs
- ML2 Device + OS Licensing Requirements - Product Team - Confluence
- ML2 OOBE & Device Enrollment-Instructions(External) - Google Docs
- ML2 Overview | MagicLeap Developer Documentation
- ML2 Secure Boot Architecture - Google Docs
- ML2 Server-side Component Strategy - Google Docs
- ML2 Server-side Component Strategy - Google Docs
- NVIDIA Omniverse Documentation
- OTA (Over the Air) SW Update - Google Slides
- PE Incidents - PE Incidents - Agile Board - Jira
- Postman API Platform
- Reducing OTA Size | Android Open Source Project
- Reinventing Retail: Lowe's Builds Digital Twins of Stores to Deliver Enhanced Shopping Experiences - YouTube
- Steps to enroll device with VMWare - Google Docs
- Top topics - Magic Leap 2 Developer Forums
- Welcome To The Corporate DevOps Engineering Home Page - Corporate DevOps Engineering - Magic Leap
- What is Workspace ONE? | Modern Anywhere Workforce Platform | VMware
- Zero-touch enrollment for IT admins - Android Enterprise Help
- [PRODUCT-8237] AR Cloud: Define and develop a generic SaaS infrastructure and process - Jira
ML3
MLH
- Amazon Web Services Sign-In
- Microsoft Office Home
- ML Horizons - Home
- Sign In - Zoom
- System Dashboard - Magic Leap Horizons Jira
- Microsoft Office Home
PE
- adr.github.io
- Code Search
- Guide to Platform Engineering: Everyone’s Doing It, Should You Be Too? | LaunchDarkly
- Home - Grafana
- InfoSec Enterprise Security and Automation - Agile Board - Jira
- Kibana bug report
- Magic Leap Cloud Services - Overview (WIP) - Google Slides
- Platform Engineering for better Software Delivery | Cycloid
- SRE vs. Platform Engineering | Ambassador Labs
- Whitepaper: State of Platform Engineering Report Volume 1 | Humanitec
- Code Search
Personal
- Average Sales Price of Houses Sold for the United States (ASPUS) | FRED | St. Louis Fed
- 30-Year Mortgage Rates Hovering Near 3-Week Low
R8
- [SPR: Crash Collect & Analyze] Issue navigator - Jira
- Grafana
- ML2 - AR Cloud - Telemetry and Crash Reports - Software - Confluence
- OpenXR Overview - The Khronos Group Inc
- Production Engineering Jobs - Systems Engineering | Meta Careers
- SignTool.exe (Sign Tool) - .NET Framework | Microsoft Learn
- PE Tasks - Roadmap - Jira
- Inbox - aislam@magicleap.com - Magic Leap Mail
- Restore access to Kibana Production - TECH STOP - Jira Service Management
- Crash Reports - R8 - Google Slides
- ML 2 - Device Telemetry - Growth Team - Google Slides
- Product Epic Readiness - Agile board - Jira
- Grafana
RandomLinks
- 3. Planning a Kubeflow Installation - Kubeflow Operations Guide [Book]
- App Services - Cloud - Ecosystem - Magic Leap
- Argo CD - Declarative GitOps CD for Kubernetes
- Bringing eBPF and Cilium to Google Kubernetes Engine | Google Cloud Blog
- Container-native load balancing through standalone zonal NEGs
- GitHub - pion/ion-sfu: Pure Go WebRTC SFU
- Gitpod - Always ready to code
- Google - Site Reliability Engineering
- Google announces Cilium & eBPF as the new networking dataplane for GKE — Cilium
- Home - Telepresence
- Keyword reference for the .gitlab-ci.yml file | GitLab
- Kubeflow for Machine Learning [Book]
- Kubeflow Overview | Kubeflow
- Open Policy Agent
- Pipeline architecture | GitLab
- SADA | Cloud Technology Services | Google Cloud Premier Partner
- Sidecar container lifecycle changes in Kubernetes 1.18 · Banzai Cloud
- Taqtile Manifest® - Spatial Computing and AR Platform for Remote Assistance and Digital Work Instruction
- TURN server | WebRTC
- App Services - Cloud - Ecosystem - Magic Leap
Rocket
- [DRAFT] Product Requirements - Site Reliability & Core Engineering - Magic Leap
- Apex and Terraform: The easiest way to manage AWS Lambda functions – I Failed the Turing Test
- Bitbucket Pipelines Setup - Site Reliability & Core Engineering - Magic Leap
- Colonize a Developer AWS Account - Site Reliability & Core Engineering - Magic Leap
- GitHub - apex/apex: Old apex/apex
- Infrastructure / Rocket / rocket · GitLab
- Launchpad Documentation - Site Reliability & Core Engineering - Magic Leap
- Migrate from ECR to Harbor - registry.magicleap.io - Site Reliability & Core Engineering - Magic Leap
- New Swapex Project Creation - Site Reliability & Core Engineering - Magic Leap
- Rocket - Site Reliability & Core Engineering - Magic Leap
- SRE Onboarding Introduction - Site Reliability & Core Engineering - Magic Leap
- Start a project with Rocket and Google Cloud Platform - Site Reliability & Core Engineering - Magic Leap
- Terraform - Site Reliability & Core Engineering - Magic Leap
- Broken on new M1 Mac · Issue #219 · warrensbox/terraform-switcher · GitHub
- Apex and Terraform: The easiest way to manage AWS Lambda functions – I Failed the Turing Test
temp
- AppViewX Platform - AppViewX
- Argo CD: What It Is And Why It Should Be Part of Your Redis CI/CD Pipeline | The Home of Redis Developers
- azure-docs/how-to-set-up-appliance-vmware.md at main · MicrosoftDocs/azure-docs · GitHub
- Burnalong | Home
- Cloud FinOps Executive Report for Magic Leap - Google Docs
- Cloud FinOps Experience Lab for Magic Leap
- Convert CSV Columns to Rows - Online CSV Tools
- Cortex XDR APK for Android Download
- Customer Success - Confluence
- Elasticsearch to BigQuery: 2 Easy Methods
- Epoch Converter - Unix Timestamp Converter
- Exposing HTTP API Gateway Via AWS CloudFront | SkildOps
- Fortanix - Security, wherever your data is… | Fortanix
- GitHub - duo-labs/cloudmapper: CloudMapper helps you analyze your Amazon Web Services (AWS) environments.
- GitHub - elasticsearch-dump/elasticsearch-dump: Import and export tools for elasticsearch
- GitHub - trzy/ChatARKit: Using ChatGPT to create AR experiences with natural language.
- Histograms and heatmaps | Grafana documentation
- How to empty an S3 bucket using AWS CLI | Towards the Cloud
- Install
- Introduction :: Amazon EKS Workshop
- Learning Paths | Google Cloud Skills Boost
- nats_acl - OpenGrok cross reference for /connected_services/infrastructure/environment/nats_acl/
- OIDC vs SANL
- Packages - artifactory.magicleap.com
- Pi TechTalks - Perception & Immersion - Confluence
- Potential Cloud Services Roadmap - Google Sheets
- R7 Workshop - Meetings - Google Sheets
- SLICK: Adopting SLOs for improved reliability - Engineering at Meta
- Software Architecture & Design Introduction
- SW Platform Architecture Forum - Software - Magic Leap
- swquality.magicleap.com
- System Architecture - Detailed Explanation - InterviewBit
- The DevOps Tools Lifecycle Mesh for 2021 | Harness
- The Three DynamoDB Limits You Need to Know | DeBrie Advisory
- Ultimate Google Cloud Certifications: All in one Bundle (6) | Udemy
- Ultimate list of DevOps tools for 2023 | Opsera
- Understanding Argo CD: Kubernetes GitOps Made Simple
- Using Let's Encrypt for internal servers - Philipp's Tech Blog
- What Is DevOps? Complete Guide to Best Practices - Orange Matter
- Argo CD: What It Is And Why It Should Be Part of Your Redis CI/CD Pipeline | The Home of Redis Developers
Useful Links
- 5 Top Metaverse Tokens to Watch
- About eBPF
- About the Cloud SQL Auth proxy | Cloud SQL for MySQL | Google Cloud
- Aha!
- Architecture Layers | Enterprise Architecture
- Asraful and Mark, Online Whiteboard for Visual Collaboration
- AWS Audit Manager – Continuously audit your AWS usage to simplify how you assess risk and compliance – Amazon Web Services
- B. What is the stack or layers of Enterprise Architecture? - EA 874 - Enterprise Information Technology
- Chronicle Security - Chronicle, VirusTotal, Uppercase Cyber Security
- Cloud IAP enables context-aware access to VMs via SSH and RDP without bastion hosts | Google Cloud Blog
- Concourse CI
- Developer Flashing Guide | Magic Leap
- Device Manager Overview – Care | Magic Leap
- enterprise console
- explainshell.com - ssh -L -N -f -l
- GitHub - ansible/awx: AWX Project
- GitHub - apex/up: Deploy infinitely scalable serverless apps, apis, and sites in seconds to AWS.
- GitHub - aquasecurity/cloudsploit: Cloud Security Posture Management (CSPM)
- GitHub - KubeOperator/webkubectl: Run kubectl command in Web Browser.
- GitLab
- infrastructure/environment/ips.tf · staging · Infrastructure / datasources · GitLab
- Introduction · macOS Setup Guide
- Job Dashboard | Greenhouse
- Kubernetes + Harbor | Kubernetes and Harbor
- Leap Forward - Growth Criteria - V1 1019 - Google Sheets
- Lucid Chart
- Magic Leap
- Managing Helm charts | Artifact Registry documentation | Google Cloud
- Managing Resources for Containers | Kubernetes
- Overview - NATS Docs
- R1 Release Tour - Google Sheets
- RE:[CASE 9957749851] Take Ownership of Account - aislam@magicleap.com - Magic Leap Mail
- Search 3 | Log Search | Sumo Logic
- Search 7 | Log Search | Sumo Logic
- SRCE Hiring - Site Reliability & Core Engineering - Magic Leap
- Swagger Editor
- Technology Radar | An opinionated guide to technology frontiers | Thoughtworks
- Using Envoy Proxy to load-balance gRPC services on GKE
- Virtual real estate plot sells for record $2.4 million | Reuters
- Webkubectl - Running Kubectl commands from your web browser - Civo.com
- What is my IP address? — ifconfig.co
- Zsh · macOS Setup Guide
- About eBPF
week1
- 2022 SEPT Concur Travel Request Process - Engage & Educate - Google Slides
- ADP
- Ariba Training Guides - Purchasing - Confluence
- Cloudcraft – Draw AWS diagrams
- Dictionary of Magic Leap Terms - Dictionary of Magic Leap Terms - Magic Leap
- Gmail
- Help Central - Google Drive
- IAM – IAM & Admin – ml-public-services-… – Google Cloud Platform
- Life Mart
- ML Infrastructure
- ML Office Map
- ML-Tickets
- ML-Wiki
- My Dashboard | Greenhouse
- Optical Engineering / crayte · GitLab
- Sign in to Concur | Concur Solutions
- Site Reliability & Core Engineering (SRCE) - Site Reliability & Core Engineering - Magic Leap
- SuccessFactors: Home
- tech shop
- Enrollment - YourCare360
- Amazon_Route_53_Domain_Registration_Pricing_20140731.pdf
- Hugging Face – The AI community building the future.
- ADP
- Kubernetes Upgrade Process - Google Docs
2.3.2 - Chrome Personal
Bookmarks
Bookmarks Bar
- All bookmarks
AA
Articles
- Books | Bill Gates
- Decision log using Jira and Automation — the Holy Grail of documenting decisions?
- Digitally Sign a Microsoft Word Document | PIV Usage Guides
- Wordpress on AWS using Terraform and Ansible - Marcelo Schirbel Gomes - Medium
- Decision log using Jira and Automation — the Holy Grail of documenting decisions?
Consolidation
- | Format
- .NET - Powerful Open Source Development
- 1 - Data Storage for Modern High-Performance Business Applications
- 1. Critical Points
- 1. Introduction — edX Installation 1.0.0 documentation
- 10 awkward friendships you probably have — we all have a #9.
- 10 easy steps to become export-import agent/broker and start CASHING
- 100 Email Hacks
- 12 Binder Clips Life Hacks - YouTube
- 13 Things to Remember When Life Gets Rough
- 19 Inspirational Quotes From Nelson Mandela - Forbes
- 2005 Acura MDX SUV Touring Navigation DVD Sunroof
- 2015 Economic Calendar
- 2017 Halloween Happenings, Pumpkin Patches and Fall Fun (NEW EVENTS) | Macaroni Kid
- 25 Killer Websites that Make You Cleverer
- 25 of our favorite Mac apps (2018 Edition)
- 25-year wait for Sound Transit to finish light rail? Here’s why | The Seattle Times
- 283 Free Resume Templates :: Microsoft Word Examples
- 34 Pictures To See Which Muscle You’re Stretching – nadin4eblog
- 35 Agile Development Best Practices | Effective Software Design
- 4 signs it's time to sell a stock
- 4 Tips for Shooting Drop Dead Gorgeous Waterfalls - Digital Photography School
- 4 Ways To Predict Market Performance
- 5 Things I Wish I’d Known Before Becoming an Expat in Australia
- 5 Ways to Remotely Access Apple Mac OS X from Windows
- 50+ Open Source Tools for Big Data | DATA SCIENCE REPORT - TODAY!
- 6 Areas of Your Company That Need Export Training
- 6 LEADERSHIP STYLES, AND WHEN YOU SHOULD USE THEM
- 6.006: Introduction to Algorithms - Massachusetts Institute of Technology
- 66 job interview questions for data scientists - Data Science Central
- 7 Apps to Help You Achieve Your Goals and Build New Habits
- A Beginner's Tutorial for Understanding and Implementing ASP.NET Web API - CodeProject
- A better way to get the big picture •Vervago
- A Daddy’s Letter to his Little Girl About Her Future Husband
- A Different Gates Is Returning to Microsoft - NYTimes.com
- A pattern language for microservices
- ABC Radio - 89.2 FM Dhaka - Listen Online
- ABCya.com | Kids Educational Computer Games & Activities
- About the Flight Status Application
- Access your credit report — OAIC
- Accessing your credit report| Office of the Australian Information Commissioner - OAIC
- Account - King County Library System
- ACID versus BASE for database transactions
- ACT Real Estate Market Trends Report | allhomes
- Action Plans - Project Management Tools from MindTools.com
- Add-ons - AppHarbor
- Agile Atlas | Metrics for a Scrum Team
- Agile Metrics: It’s Not All That Complicated
- Agile Project Reporting and Metrics - Scrum Alliance
- Alexa Trivia Skill Tutorial - Amazon Apps & Games Developer Portal
- alexa-avs-raspberry-pi/README.md at master · amzn/alexa-avs-raspberry-pi · GitHub
- Algorithm Tutorials
- Amazon Web Services Sign-In
- Amazon Web Services Sign-In
- Amazon.com | Rechargeable Digital Luggage Scale w/ 2600mAh Portable Charger & LED Flashlight | Luggage Scales
- An Introduction to Domain Driven Design
- An Introduction to Entity Framework for Absolute Beginners - CodeProject
- Angular 2 authentication with Auth0 and NodeJS @toddmotto
- AngularJS: Tutorial: 0 - Bootstrapping
- ANTIFONI Work lamp - IKEA
- Apache Mesos
- Apache Spark™ - Lightning-Fast Cluster Computing
- Apple - Find Out How - Mac Basics
- Apple Developer Technologies Overview - Apple Developer
- Application and Design Patterns
- Apps
- Architecture Methods - ITANA - Internet2 Wiki
- Arduino - Home
- Articles and Tutorials
- ArticleS.UncleBob.PrinciplesOfOod
- ASP.NET MVC 4 | The ASP.NET Site
- ASP.NET Web API
- Assessment: Are You in Danger of Becoming Obsolete?
- Assets in IP Location AWS
- Australian Taxation Office Homepage
- AWS Certified Solutions Architect - Associate 2017 | Udemy
- A Guide to the Different Chores You Can Give Kids at Various Ages
- Bangladesh | United States Trade Representative
- Bangladesh Association Of North Texas
- Barn Door Hardware | Buy Online from the Original Hardware Company
- Battery Health | Automatic Labs
- bdnews24.com | First with the news 24/7
- Bellboy
- benpiper/puppet-fundamentals-lab · GitHub
- Best practices for deploying passwords and other sensitive data to ASP.NET and Azure App Service | The ASP.NET Site
- Best Schools in Washington - WA School Rankings
- Best VPNs for Torrenting & P2P Filesharing & Which to Avoid
- Big Data University
- Big-O Algorithm Complexity Cheat Sheet
- Bill Gates Picked These Books as the Best of 2016 | TIME
- Binary search tree - Wikipedia, the free encyclopedia
- Blog | Documenting Architecture Decisions | Relevance
- bookmarks management - Google Docs
- Books & E-Books - Electrical Engineering - Research Guides at University of Washington Libraries
- Books24x7
- Brackets - The Free, Open Source Code Editor for the Web
- Brussels, Belgium | Solvay
- Build a Raspberry Pi-Powered DIY Amazon Echo
- Build a WordPress Website
- Build Amazing Native Apps and Progressive Web Apps with Ionic Framework and Angular
- Build User Authentication with Node.js, Express, Passport, and Orchestrate - CenturyLink Cloud Developer Center
- Build Your Custom System | SimpliSafe Home Security Systems
- Building Microservices Using an API Gateway | NGINX
- Building Web Apps with ASP.NET Jump Start: (01) What's New in ASP.NET 4.5 | Building Web Apps with ASP.NET Jump Start | Channel 9
- Business Plan Goals & Objectives
- Buy Your Personal Internet Modem
- Buying_property
- C Programming - Wikibooks, open books for an open world
- C Programming For Dummies: DataStructures
- c# - How do you serialize a string as CDATA using XmlSerializer? - Stack Overflow
- C++ FAQ
- C++ program on determining triangle
- C++ String Examples
- C++ Tutorial: Binary Tree - 2014
- Calico
- Call Rates | TollFreeForwarding.com
- Cell Phone Repair iPhone Repair iPad Galaxy Note | One Hour Device Repair Redmond, WA
- Change Your Name in Texas - wikiHow
- Chapter 1: Service Oriented Architecture (SOA)
- Chapter 8. Developing a Strategic Plan | Section 5. Developing an Action Plan | Main Section | Community Tool Box
- Cheap cell phone plans | Lycamobile
- Children's Storybooks Online - Stories for Kids of All Ages
- CircleCi Alternatives and Competitors | G2 Crowd
- Cloud Application Platform | Heroku
- Cloud Foundry | The Industry Standard For Cloud Applications
- Cloud Foundry - Wikipedia, the free encyclopedia
- Code flow for ORIS - Google Docs
- Codementor
- Coinbase - Buy/Sell Digital Currency
- Collaborate & Create Amazing Graphic Design for Free
- Community | Django
- Comparison Between Pubcookie and Shibboleth Features - IAM - UW Information Technology Wiki
- Compatibility overview
- Computers & Math 4 Kids – Redmond's Technology Learning Center for Kids
- ConceptDraw Samples | Computer and networks - AWS architecture
- Consular Electronic Application Center
- Consumer-Driven Contracts: A Service Evolution Pattern
- Convert cURL command syntax to Python requests, Node.js code
- Corn Futures Quotes - CME Group
- Coursera.org
- CoWatch: The Most Affordable High-End Smartwatch | Indiegogo
- CPB Operations
- CPlusPlus | Mac OS X Setup Guide
- cplusplus.com - The C++ Resources Network
- Create your own whiteboard videos | VideoScribe
- Creating a SimpliSafe API | LeftoverCode.info
- Creating Universal Windows Apps with React Native - Developer Blog
- Creekside - Issaquah Connect
- Creekside Elem: 2019-2020 Kids U Enirchment Pass | YMCA of Greater Seattle
- Creekside PTSA
- Creekside
- Criminal History Records - Washington State Patrol
- Croscill® Barron Bath Ensemble in Light Blue - Bed Bath & Beyond
- Cubii Under Desk Elliptical
- Cybex Exim Solutions Pvt Ltd: Overview | LinkedIn
- Dashboard - PCF
- Dashboard | Pluralsight
- Dashboards | Splunk 6.3.3
- Data Science Curriculum from Microsoft | edX
- Data Structure Visualization
- davidgruhin · GitHub
- DAWG - Developer Architecture Working Group (DAWG) - UW Information Technology Wiki
- Denial of Service Attack Mitigation on AWS – AWS Answers
- Design Document - Download MS Word Template
- Design Patterns - Wikipedia, the free encyclopedia
- Design Patterns in Java Tutorial
- Developer Connection - Developer Connection - UW Information Technology Wiki
- Developer Economics: State of Developer Nation Q1 2016 - Developer Economics
- Developing And Deploying An Angular 2 Application With Visual Studio 2015 - CodeProject
- Device(002nznk)
- DevOps Topologies
- Dive Into Python
- Do jobs run in families? | Blog | Research at Facebook
- documentation: AWS Sign-in URLs - Google Docs
- DoorDash Food Delivery | Pick Your Restaurant
- Editing wp-config.php « WordPress Codex
- edX-DEV212x-Intro-to-DevOps/edX-DEV212x-Lab3.md at master · MicrosoftLearning/edX-DEV212x-Intro-to-DevOps · GitHub
- ELK
- EllisLab
- Elon. Evolution - CNNMoney
- Emberlight socket turns any light into WiFi connected smart light bulb – emberlight
- Employee & Student Permits | Transportation Services
- Emulating a Raspberry Pi on Virtualbox – DBA Kevlar
- Enterprise Architecture Training Course | Microsoft Virtual Academy
- Enterprise Architecture
- eProthomAlo
- ESDWAGOV - Worker Adjustment and Retraining Notification (WARN)
- Estimate Home Renovation & Repair Costs - HomeAdvisor
- Etax Tax Return 2017: Online tax returns are easy at Etax.com.au
- Ethereum Project
- Etsy.com
- EV3 Tutorial — STEMcentric
- FAQs Non U.S. Residents Wanting to Incorporate in U.S.A.
- Favorites
- Federal government of the United States - Wikipedia
- Felix's Node.js Convincing the boss guide
- Field Nation Connects Leading Businesses with On-Site, On-Demand Labor
- Finding Duplicate Files with Python | Python Central
- Finding your bookmarks – TeamSync Bookmarks
- Fixtures for the ICC World Twenty20 India 2016
- Follow Stocks & Analysts - Estimize.com
- Form an LLC in Washington | How to Start an LLC
- Four Ways to a Practical Code Review
- Free ebooks from Microsoft Press
- Free stock photos · Pexels
- Freedom of Information Act | U.S. Customs and Border Protection
- Frisco Independent School District
- From Apple and Alibaba to Salesforce and Splunk: A guide to tech giants with outposts in Seattle - GeekWire
- Fun Stuff - Google Docs
- GeeksforGeeks | A computer science portal for geeks
- Getting Started with Elasticsearch | Elastic
- Getting Started with Git in Visual Studio and Team Foundation Service - Microsoft Application Lifecycle Management - Site Home - MSDN Blogs
- Getting Started with the Alexa Skills Kit - Amazon Apps & Games Developer Portal
- gianarb/awesome-angularjs: A list of awesome AngularJs services, directives, utilities and resources.
- Gift Ideas – Arduino Store USA
- GitHub - alvinhochun/chrome-bookmark-search: The nice simple Bookmark Search extension for Chrome.
- GitHub - checkcheckzz/system-design-interview: System design interview for IT companies
- GitHub - jwasham/coding-interview-university
- GitHub - meganz/MEGAsync: Easy automated syncing between your computers and your MEGA Cloud Drive
- GitHub - Microsoft/PartsUnlimited: Sample for DevOps Scenarios
- GitHub - MicrosoftLearning/edX-DEV212x-Intro-to-DevOps: The repository for the edX course: Introduction to DevOps.
- GitHub - reza-rahim/microservice
- GitHub - SavageLearning/Machete: A web application for managing a day laborer referral organization. Built using .NET4, Entity Framework, MVC5 + C# + Razor + jQuery + Datatables (datatables.net).
- Global Data Consistency, Transactions, Microservices and Spring Boot / Tomcat / Jetty - The Kitchen in the Zoo
- Google Calendar
- Google Maps
- Google Slides
- Google Unit test
- Google's Python Class - Educational Materials — Google Developers
- Great Meals Businesses
- Groups Web Service REST API - IAM - UW Information Technology Wiki
- HAProxy
- Hard Rubberized Case Keyboard Cover for MacBook Pro 13 Air 13 11 Pro 15 Retina | eBay
- Hepatitis B Foundation
- Hire Freelancers & Find Freelance Jobs Online - Freelancer.com
- HiredInTech's Training Camp for Coding Interviews
- Home | Impinj
- Home | Transportation Services
- Horace Mann Elementary School | Child Care | Bellevue Family YMCA | Bellevue, WA
- How Ansible Works | Ansible.com
- How do I programmatically get the list of MS Access tables within an SSIS package? - Stack Overflow
- How Much Do I Need To Retire? - Fidelity
- How much does it cost to form an LLC in Washington State? | LLC University®
- How Pebble Is Killing It on Kickstarter
- How to Build Amazing User Interfaces With React - DZone Web Dev
- How to build your interative radar | ThoughtWorks
- .NET - Powerful Open Source Development