When I'm not working I enjoy healthy living. Activities include cooking 🧑🏻🍳, yoga 🧘🏻, basketball ⛹🏻, and weight lifting. However, anything health is welcome!
I also enjoy hanging out with my dog 🐩 Penny, drinking coffee ☕ with friends, and helping people become the best versions of themselves.
What is Elastic Cloud Compute(EC2)?
How to scale
Vertical scaling
What is CloudFront?
A global CDN
What is Elastic Load Balancing(ELB)?
How to scale
Load Balancer Security Groups(SG)
Second SG allows from the load balancer, with source specified.
Supports TCP(Layer 4), HTP & HTTPS(Layer 7) Health checks are TCCP or HTTP based Fixed hostname
xxx.region.elb.amazonaws.com
What to know as a AWS Certified Solutions Architect?
A summary of the knowledge required to become a certified Solution Architect from AWS.
chmod 0400
uptime
.Load Balancer Security Groups(SG)
Second SG allows from the load balancer, with source specified.
How is Google Sheets useful?
How to deal with burnout?
How is Google Sheets useful?
Top five tips for a PO
Top five tips for a PO
What is SSH?
What is SSH?
Secure Shell
How to start with one task
Organize the team to outline the tasks to do within the upcoming 2 weeks.
How to sprint plan
Organize the team to outline the tasks to do within the upcoming 2 weeks.
What is Google Data Studio?
Used for displaying data in ways more comprehensible. Bar, line, burndown, geographics, the sky is the limit.
How to get fired as a developer
Communication
A Product Owner
Communication
A Product Owner
Product Owner is a professional responsible for setting, prioritizing, and accepting the work generated by a team in order to ensure the most valuable and proper functionality of the product.
As Product Owner, you will gather feature requests, schedule releases and coordinates sprints. You should be able to identify user needs, help a customer understand a business value and work with cross-functional teams to manage product releases.
Your effort is important for the company as you will need to deliver product not just according to users, but the product that helps make our company vision reality.
Electron is an open-source software framework developed and maintained by GitHub. It allows for the development of desktop GUI applications using web technologies: it combines the Chromium rendering engine and the Node.js runtime.
Electron is an open source framework for building desktop applications.
If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application.
Hot reload on changes
Jekyll is a simple, blog-aware, static site generator for personal, project, or organization sites. Written in Ruby by Tom Preston-Werner, GitHub's co-founder, it is distributed under the open source MIT license
gem install bundler jekyll
jekyll new my-awesome-site
cd my-awesome-site
bundle exec jekyll serve
Hot reload on changes
bundle exec jekyll serve --livereload
Originally hired to be the mobile lead, I was promoted to solutions architect within 6 months.
Node.js is an open-source, cross-platform, JavaScript runtime environment that executes JavaScript code outside a web browser. Node.js lets developers use JavaScript to write command line tools and for server-side scripting—running scripts server-side to produce dynamic web page content before the page is sent to the user's web browser. Consequently, Node.js represents a 'JavaScript everywhere' paradigm, unifying web-application development around a single programming language, rather than different languages for server- and client-side scripts.
Though .js is the standard filename extension for JavaScript code, the name 'Node.js' doesn't refer to a particular file in this context and is merely the name of the product. Node.js has an event-driven architecture capable of asynchronous I/O. These design choices aim to optimize throughput and scalability in web applications with many input/output operations, as well as for real-time Web applications (e.g., real-time communication programs and browser games).
The Node.js distributed development project was previously governed by the Node.js Foundation, and has now merged with the JS Foundation to form the OpenJS Foundation, which is facilitated by the Linux Foundation's Collaborative Projects program.
Corporate users of Node.js software include GoDaddy, Groupon, IBM, LinkedIn, Microsoft, Netflix, PayPal, Rakuten, SAP, Voxer, Walmart, and Yahoo!.
livereload: true
title: PrimeTimeTran
email: datloiboi@gmail.com
url: https://github.com/PrimeTimeTran
description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
keywords: "Node.Js, React.JS, ReactJS, React, React Native, Ruby on Rails"
skills: "Tech Lead - Mobile Lead - Solutions Architect"
meta_author: Tran Loi
function hello(name) {
}
Flask is a micro web framework written in Python. It is classified as a microframework because it does not require particular tools or libraries. It has no database abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions.
.env
// .env
const SheetAPIKey = **********
// App.js
const url = `https://sheets.googleapis.com/v4/spreadsheets/1WtQp4hxNwaIoceW4BhDjkY4ttqR9pTWWuHCagmF3ER8/values/Form%20Responses%201?key=${SheetAPIKey}`
// POST
{
"values": [
[
"Column 1",
"Column 2",
"Column 3",
]
]
}
Use this area of the page to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.
PostgreSQL is a powerful, open source object-relational database system that uses and extends the SQL language combined with many features that safely store and scale the most complicated data workloads. The origins of PostgreSQL date back to 1986 as part of the POSTGRES project at the University of California at Berkeley and has more than 30 years of active development on the core platform.
PostgreSQL has earned a strong reputation for its proven architecture, reliability, data integrity, robust feature set, extensibility, and the dedication of the open source community behind the software to consistently deliver performant and innovative solutions. PostgreSQL runs on all major operating systems, has been ACID-compliant since 2001, and has powerful add-ons such as the popular PostGIS geospatial database extender. It is no surprise that PostgreSQL has become the open source relational database of choice for many people and organisations.
Getting started with using PostgreSQL has never been easier - pick a project you want to build, and let PostgreSQL safely and robustly store your data.
Ruby on Rails, or Rails, is a server-side web application framework written in Ruby. Rails is a model–view–controller (MVC) framework, providing default structures for a database, a web service, and web pages. It encourages and facilitates the use of web standards such as JSON or XML for data transfer and HTML, CSS and JavaScript for user interfacing. In addition to MVC, Rails emphasizes the use of other well-known software engineering patterns and paradigms, including convention over configuration (CoC), don't repeat yourself (DRY), and the active record pattern.[4]
Ruby on Rails' emergence in 2005 greatly influenced web app development, through innovative features such as seamless database table creations, migrations, and scaffolding of views to enable rapid application development. Ruby on Rails' influence on other web frameworks remains apparent today, with many frameworks in other languages borrowing its ideas, including Django in Python, Catalyst in Perl, Laravel and CakePHP in PHP, Phoenix in Elixir, Play in Scala, and Sails.js in Node.js.