- BLOG: What is Iceberg?
- Video: Meetup - Iceberg Architecture (Jason Hughes)
- Video: Meetup - Iceberg Architecture (Alex Merced)
- Blog: Conceptual Walkthrough of Migrating to Iceberg
- Blog: Hand-on Migration Exercise
- Blog: Maintaining Iceberg Tables
- Blog: Iceberg's Hidden Partitioning
- Blog: [Table Format Comparison (Iceberg, Hudi, Delta Lake)](https://www.dremio.com/subsurface/comparison-of-data-lake-table-formats-iceberg-
title: ExpressJS Cheatsheet 2022 date: "2022-04-09" description: "Easy reference for using express" author: "Alex Merced" category: "javascript" bannerImage: "/images/postbanner/2022/batch-streaming.png" tags:
- backend
- javascript
If you need a docker image for this purpose, this should do the job.
from the spark docker container create a bash script:
touch arctic.bash
In file copy the following with the variables with the right values:
Represents the entire browser window
action | syntax | notes |
---|
You job hunt is something that is concurrent with you building your knowledge and experience. Read the following to know what you need to have prepared to start applying for Jobs.
purpose | command |
---|---|
new app | craft new <appName> |
generate key and initial setup | craft install |
Data that is organized to meet a schema. Think tables which organize data into rows and columns.
Data is unorganized and lacks a schema. Imagine collections of html documents including text and images not organized in any consistent way.
Express can be used several different templating engines, most engines will assume by default that all your templates are in a "views" folder. To render a template you'll use the render function in side the response object in your express routes.
res.render("template.extension", {data: [1,2,3,4]})
Render will search for a template file called "template.extension" in the views folder and pass the object to the template engine to use when rendering the template.
[email protected] - 860 995 1048 - AlexMercedCoder.com
Mission: To leverage my ability to educate about and promote technology with passion and charisma into a role as a Developer Advocate where I can empower developers to use cutting edge technologies to develop the ground breaking apps of tomorrow.
Skill | Detail |
---|
/////////////////////////////////////// | |
// Writing the Index Route all three ways | |
// (Callback,.then, async/await) | |
/////////////////////////////////////// | |
// callback | |
app.get("/dogs", (req, res) => { | |
Dog.find({}, (err, data) => | |
err ? res.status(400).json(err) : res.json(data) | |
); |