SlideShare a Scribd company logo
BUILDING A STARTUP STACK
WITH ANGULARJS
Copyright 2013 rangle.io and NickVanWeerdenburg
Saturday, 28 September, 13
Saturday, 28 September, 13
Saturday, 28 September, 13
BUILDING A STARTUP STACK
WITH ANGULAR JS
Copyright 2013 rangle.io and NickVanWeerdenburg
Saturday, 28 September, 13
BUILDING A STARTUP STACK
WITH ANGULARJS HTML 5
Copyright 2013 rangle.io and NickVanWeerdenburg
Saturday, 28 September, 13
BUILDING A STARTUP STACK
WITH ANGULARJS
Copyright 2013 rangle.io and NickVanWeerdenburg
Saturday, 28 September, 13
Saturday, 28 September, 13
The MEAN Stack
Web dev framework for NodeJS
Superheroic frontend framework
Event-based concurrency environment
Saturday, 28 September, 13
KEY POINT
Build an app with a
SPA framework and
a JSON datastore,
and PHP (or Rails)
become a poor fit
for most business
cases.
In 2005 50% of any web app
was JavaScript
In 2013, 70%+ is JavaScript
Last Basecamp: 5K Ruby, 5K
Coffeescript, plus HTML
and CSS
Modern DBs like Couch
and MongoDB speak
JavaScript
/PHP|RAILS/ REALITY
Saturday, 28 September, 13
SERVER-CENTRIC WEB
APPLICATION
SQL
DB
data services
authentication
integration
payment
gateways
client
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
HTML
dynamic page
elements
data
query,
format,
layout
Saturday, 28 September, 13
data
query,
format,
layout
SQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
data
query
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services client
HTML
templating
and
routing
authentication
integration
payment
gateways
Saturday, 28 September, 13
data
query,
format,
layout
SQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
data
query
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services client
HTML
templating
and
routing
authentication
integration
payment
gateways
Saturday, 28 September, 13
data
query,
format,
layout
SQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
data
query
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services client
HTML
authentication
integration
payment
gateways
Saturday, 28 September, 13
data
query,
format,
layout
SQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
data
query
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services client
authentication
integration
payment
gateways
Saturday, 28 September, 13
data
query,
format,
layout
SQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
data
query
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services
authentication
integration
payment
gateways
Saturday, 28 September, 13
data
query,
format,
layout
SQL
DB
noSQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
data
query
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services
authentication
integration
payment
gateways
Saturday, 28 September, 13
SQL
DB
noSQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
data
query
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services
authentication
integration
payment
gateways
Saturday, 28 September, 13
SQL
DB
noSQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services
authentication
integration
payment
gateways
Saturday, 28 September, 13
SQL
DB
noSQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
data services
authentication
integration
payment
gateways
data
query
Saturday, 28 September, 13
SQL
DB
noSQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
services
authentication
integration
payment
gateways
data
query
Saturday, 28 September, 13
SQL
DB
noSQL
DB
BROWSER-CENTRIC WEB
APPLICATION
services
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
authentication
integration
payment
gateways
data
query
Saturday, 28 September, 13
BROWSER-CENTRIC +
SERVICES
noSQL
DB
services
data
queryauthentication
integration
payment
gateways
templating
and
routing
h
t
t
p
q
u
e
r
y JavaScript
HTML
dynamic page
elements
Thin-Server
Computing
Saturday, 28 September, 13
THE NEW STACK: NOT JUST
BUZZ
All 3 tiers have changed!
Client -> Browser-Centric MV* JS
Server -> Thin-Server, REST, Event
Database -> Document, web-centric
Saturday, 28 September, 13
Saturday, 28 September, 13
http://www.bennadel.com/blog/2439-My-Experience-With-AngularJS-The-Super-heroic-
JavaScript-MVW-Framework.htm
Saturday, 28 September, 13
THE SOLUTION?
Seed projects are sprouting like weeds.They all suck.
Saturday, 28 September, 13
INTRODUCING...
Saturday, 28 September, 13
THE META-STACK
Best-Practice, Canonical Stack Building From First
Principles
Saturday, 28 September, 13
MEAN Process Stack
Web dev framework for NodeJS
Superheroic frontend framework
Event-based concurrency environment
Recipes, Not Seeds
Saturday, 28 September, 13
CREATINGYOUR DEFAULT
PROJECT STACK
AngularJS + REST + API Server + MongoDB
for a project called tim
Saturday, 28 September, 13
CHECKLIST
nodejistu account created
mongolab account created or mongodb installed
locally
node, npm, yo, bower at the right versions
git installed
Saturday, 28 September, 13
THE STARTING STACK
Node 0.10.5
NPM
Yeoman
Bower
Yo
Grunt
Mongo
Git
Sublime Text 2 and Webstorm
Saturday, 28 September, 13
NPM PACKAGES
Update package.json:
mongoose
winston
run “npm install”
Future one-off packages:
npm install mongoose --save
Saturday, 28 September, 13
cd tim && express -s -c less
(ignore destination not empty)
STEP 1: EXPRESS
express --help
-s --sessions
-e --ejs (defaults to jade)
-j --jshtml (defaults to jade)
-c --css (less|stylus) (defaults to plain css)
Saturday, 28 September, 13
npm install, node app
BASIC EXPRESS PROJECT
npm install
node app
“open http://localhost:
3000” to view
Saturday, 28 September, 13
HTTP://LOCALHOST:3000
EXPRESS IS RUNNING
Saturday, 28 September, 13
Y to overwrite .gitignore
STEP 2:YO ANGULAR
mv package.json package.json.express
yo angular
Y for Bootstrap, N for Compass, Return for 3 options (arrows
and space to unselect)
Saturday, 28 September, 13
NOTE: This isn’t using Express yet
TEST ANGULAR
grunt server
browser should popup to default
modify LiveReload port in
Gruntfile.js if error regarding
35729 port
grunt test
run unit tests
Saturday, 28 September, 13
app/ will be static public folder
INTEGRATE ANGULAR &
NODE
merge package.json files and
rm package.json.express
optional: rm app/favicon.ico
this is yeoman icon-
removing it defaults app
to express icon
Saturday, 28 September, 13
mv public/stylesheets app/styles
rm -Rf public
vi app.js # see next slide
MERGE PUBLIC TO APP
Saturday, 28 September, 13
replace ‘public’ with ‘app’ in two places,
(also update your cookieParser)
EDIT APP.JS TO POINT TO APP/
Saturday, 28 September, 13
Precedence is key for Express- it’s an
HTTP pipeline
EXPRESS APP.JS
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(express.cookieParser('rangle your secret here'));
app.use(express.session());
// app.use(app.router);
// ...OR move after use express.static OR comment out ‘/’ route
app.use(require('less-middleware')({ src: __dirname + '/app' }));
app.use(express.static(path.join(__dirname, 'app')));
// NOTE: with app.router comment out express.static is first
// route handler and gets priority over app.get below.
// development only
if ('development' == app.get('env')) {
app.use(express.errorHandler());
}
// NOTE: if app,route isn’t set explicitly above the first route
// definition automatically loads it. Since this is after use
// express.static the Angular app/ directory has precedence
app.get('/', routes.index);
app.get('/users', user.list);
add cookieParser secret
replace “public” with
“app”
comment out ‘/’ node to
route to enable Angular to
load via static mounting of
app OR make sure static
mount has precedence
over router.
Saturday, 28 September, 13
ANGULAR TIP: having the right API is
essential to easy Angular dev
BUILD SIMPLE API
npm install winston mongoose passport passport-local --
save
mkdir lib
touch lib/{log.js,db.js,user.js}
mkdir loadfiles
touch loadfiles/{users.csv,projects.csv,time.csv}
Saturday, 28 September, 13
TIP rapidly create simple seed csv data
SOME QUICK SEED DATA
users.csv
user_id,username,email,password,role
1,nick,nick@rangle.io,cm,admin
2,bob,bob@rangle.io,cm,user
tasks.csv
project_id,task,description
1,build tim, build tim incrementally with github,16
2,add blogging to rangle.io,finish deploy anglePress,2
projects.csv
project_id,name,description
1,tim,a great time tracker
2,anglePress,a crazy AngularJS blog
3,rangle.io,my website
Saturday, 28 September, 13
TIP add --drop if you want to drop prior data
IMPORT INITIAL DATA
mongoimport -d tim -c users --type csv --headerline users.csv
mongoimport -d tim -c projects --type csv --headerline
projects.csv
mongoimport -d tim -c tasks --type csv --headerline tasks.csv
Saturday, 28 September, 13
curl http://localhost:3000/users
API TESTING WITH CURL
a quick test returns our
user data
curl http://.../users/1 fails
due to missing routing
Saturday, 28 September, 13
ANGULAR TIP the app routing will be fairly
similar to this
NOW ROUTE OTHER API
CALLS
Add the following to app.js:
app.get('/projects/:id', project.get);
app.post('/projects', project.post);
app.del('/projects', project.del);
Saturday, 28 September, 13
ANGULAR TIP add -i at beginning to see
headers
TESTING API
curl http://127.0.0.1:3000/users/1
curl -d “user_id=5&username=joe&password=fresh”
http://127.0.0.1:3000/users
curl -X DELETE http://127.0.0.1:3000/users/5
Saturday, 28 September, 13
TIP focus on jasmine-node for API server
JASMINE-NODE
Jasmine for node by Misko Hevery
https://github.com/mhevery/jasmine-node
NOT Angular testing but for API and library code
npm install -g jasmine-node
put test in spec/ directory
jasmine-node --verbose --autotest spec/
Saturday, 28 September, 13
ANGULAR TIP refactor your file structure
like you do your code
RECAP
We’ve created the simplest Mongo + Node + Express +
AngularJS project structure possible
This will need to be refactored as the project grows
We’ve tested each stage
We are testing the API layer independent of AngularJS
Saturday, 28 September, 13
THE STACK SUMMARY
Saturday, 28 September, 13
THE MEAN STACK
Core Stack
Node for the application server
Npm for the package management
MongoDB for the database
Process
yo for scaffolding
bower for client-side package management (e.g. jQuery, Angular, d3, underscore)
grunt (for build management and automation)
Saturday, 28 September, 13
THE SERVER STACK
Express for the web framework
Passport for authentication
Winston for logging
Mongoose for the MongoDB acess
Request for calling other REST APIs
Underscore for JSON wrangling
Saturday, 28 September, 13
THE ANGULARJS STACK
AngularJS
Bootstrap
Angular-UI
Angular-Grid
underscore.js
d3.js
AVOID jQuery where possible, wrap in directives when needed
Saturday, 28 September, 13
CONNECTING NODE TO ANGULAR
test the API with curl first!
version your API if 3rd party integrations, or rapid
development for SaaS
return clear meaningful API codes
implement a $http interceptor for 401 (unauthorized
codes) and prompt user to log in, and then retry the
original call (see book recommendations at end)
secure the API server-side - then it doesn’t matter what
shennanigans a user does in the browser
If you have really strong security needs, get an API review
Saturday, 28 September, 13
TWO ESSENTIAL BOOKS
Saturday, 28 September, 13
RELATED RESOURCES
Free eBook: Configuring the MEAN Stack for
Development
Free eBook: Building a Startup Stack with
AngularJS
To receive these when out next month, simply
register on our mailing list ( bottom of http://rangle.io
homepage, or email me at nick@rangle.io )
Saturday, 28 September, 13
Saturday, 28 September, 13
RELATED EVENTS
Wed. Oct. 9 7pm MongoDB Meetup: Building
Reporting Services Using REST and Node
for Web Applications Using MongoDB
http://www.meetup.com/Toronto-MongoDB-User-Group/events/140966402/
Wed. Oct. 16 7pm PhoneGap Meetup: Using
AngularJS + PhoneGap to Rapidly Create
Cross-Platform, Responsive Web Apps
http://www.meetup.com/PhoneGap-Toronto/events/140441122/
Wed. Oct. 23 - Thurs. Oct 24: Building a Startup
Stack with AngularJS (2 day class)
http://guestlistapp.com/events/192018
Nov. 2013 - Toronto CTO 1-Day Conference
http://www.linkedin.com/groups?gid=5164389 “StackFest 2013”
Saturday, 28 September, 13
THANKYOU!
NickVan Weerdenburg
nick@rangle.io
twitter: @rangleio
http://rangle.io
Saturday, 28 September, 13

More Related Content

What's hot (20)

PDF
Backbone.js
Omnia Helmi
 
PPTX
Django + Vue, JavaScript de 3ª generación para modernizar Django
Javier Abadía
 
PDF
Building a js widget
Tudor Barbu
 
PDF
Modern Web Application Development Workflow - EclipseCon Europe 2014
Stéphane Bégaudeau
 
PDF
AngularJS best-practices
Henry Tao
 
PPTX
Introduction to Angularjs
Manish Shekhawat
 
PPTX
Vue business first
Vitalii Ratyshnyi
 
PPTX
How to Build SPA with Vue Router 2.0
Takuya Tejima
 
PDF
Introduction to AngularJS
Jussi Pohjolainen
 
PPTX
AngularJs
syam kumar kk
 
PDF
Workshop 12: AngularJS Parte I
Visual Engineering
 
PDF
09 - express nodes on the right angle - vitaliy basyuk - it event 2013 (5)
Igor Bronovskyy
 
PDF
An introduction to Vue.js
Javier Lafora Rey
 
PDF
AngularJS - What is it & Why is it awesome ? (with demos)
Gary Arora
 
ODP
An Introduction to Vuejs
Paddy Lock
 
PDF
AngularJS Basic Training
Cornel Stefanache
 
PPTX
Testing frontends with nightwatch & saucelabs
Tudor Barbu
 
PDF
Enjoy the vue.js
TechExeter
 
PDF
Workshop 16: EmberJS Parte I
Visual Engineering
 
PDF
Using ReactJS in AngularJS
Boris Dinkevich
 
Backbone.js
Omnia Helmi
 
Django + Vue, JavaScript de 3ª generación para modernizar Django
Javier Abadía
 
Building a js widget
Tudor Barbu
 
Modern Web Application Development Workflow - EclipseCon Europe 2014
Stéphane Bégaudeau
 
AngularJS best-practices
Henry Tao
 
Introduction to Angularjs
Manish Shekhawat
 
Vue business first
Vitalii Ratyshnyi
 
How to Build SPA with Vue Router 2.0
Takuya Tejima
 
Introduction to AngularJS
Jussi Pohjolainen
 
AngularJs
syam kumar kk
 
Workshop 12: AngularJS Parte I
Visual Engineering
 
09 - express nodes on the right angle - vitaliy basyuk - it event 2013 (5)
Igor Bronovskyy
 
An introduction to Vue.js
Javier Lafora Rey
 
AngularJS - What is it & Why is it awesome ? (with demos)
Gary Arora
 
An Introduction to Vuejs
Paddy Lock
 
AngularJS Basic Training
Cornel Stefanache
 
Testing frontends with nightwatch & saucelabs
Tudor Barbu
 
Enjoy the vue.js
TechExeter
 
Workshop 16: EmberJS Parte I
Visual Engineering
 
Using ReactJS in AngularJS
Boris Dinkevich
 

Similar to Building a Startup Stack with AngularJS (20)

PDF
AngularJS in Production (CTO Forum)
Alex Ross
 
PPT
Top java script frameworks ppt
Omkarsoft Bangalore
 
PDF
Web Development with AngularJS, NodeJS and ExpressJS
João Rocha da Silva
 
PDF
MEAN Stack WeNode Barcelona Workshop
Valeri Karpov
 
PPT
Node js
Chirag Parmar
 
PPTX
MIKE Stack Introduction - MongoDB, io.js, KendoUI, and Express
Charlie Key
 
PDF
MongoDB, Node.js And You: PART II
Mitch Pirtle
 
PPTX
Starting from Scratch with the MEAN Stack
MongoDB
 
PDF
AngularJS Project Setup step-by- step guide - RapidValue Solutions
RapidValue
 
KEY
Practical Use of MongoDB for Node.js
async_io
 
PDF
Front End Development for Back End Java Developers - Jfokus 2020
Matt Raible
 
PDF
Node.js - async for the rest of us.
Mike Brevoort
 
PDF
Build Web Apps using Node.js
davidchubbs
 
PPTX
Mean PPT
Harendra Singh Bisht
 
PDF
Beginning MEAN Stack
Rob Davarnia
 
PDF
Developing Backbonejs Applications Early Release Addy Osmani
littelenkali
 
PDF
Getting MEAN with Mongo Express Angular and Node 1st Edition Simon Holmes
sherajqublan
 
PPTX
Zero to Hipster with the M.I.K.E. Stack
Jen Looper
 
PDF
Instant download Developing Backbone js Applications Addy Osmani pdf all chapter
dinetvenitja
 
PPTX
Angular js full stack development
Darius Riggins
 
AngularJS in Production (CTO Forum)
Alex Ross
 
Top java script frameworks ppt
Omkarsoft Bangalore
 
Web Development with AngularJS, NodeJS and ExpressJS
João Rocha da Silva
 
MEAN Stack WeNode Barcelona Workshop
Valeri Karpov
 
Node js
Chirag Parmar
 
MIKE Stack Introduction - MongoDB, io.js, KendoUI, and Express
Charlie Key
 
MongoDB, Node.js And You: PART II
Mitch Pirtle
 
Starting from Scratch with the MEAN Stack
MongoDB
 
AngularJS Project Setup step-by- step guide - RapidValue Solutions
RapidValue
 
Practical Use of MongoDB for Node.js
async_io
 
Front End Development for Back End Java Developers - Jfokus 2020
Matt Raible
 
Node.js - async for the rest of us.
Mike Brevoort
 
Build Web Apps using Node.js
davidchubbs
 
Beginning MEAN Stack
Rob Davarnia
 
Developing Backbonejs Applications Early Release Addy Osmani
littelenkali
 
Getting MEAN with Mongo Express Angular and Node 1st Edition Simon Holmes
sherajqublan
 
Zero to Hipster with the M.I.K.E. Stack
Jen Looper
 
Instant download Developing Backbone js Applications Addy Osmani pdf all chapter
dinetvenitja
 
Angular js full stack development
Darius Riggins
 
Ad

More from FITC (20)

PPTX
Cut it up
FITC
 
PDF
Designing for Digital Health
FITC
 
PDF
Profiling JavaScript Performance
FITC
 
PPTX
Surviving Your Tech Stack
FITC
 
PDF
How to Pitch Your First AR Project
FITC
 
PDF
Start by Understanding the Problem, Not by Delivering the Answer
FITC
 
PDF
Cocaine to Carrots: The Art of Telling Someone Else’s Story
FITC
 
PDF
Everyday Innovation
FITC
 
PDF
HyperLight Websites
FITC
 
PDF
Everything is Terrifying
FITC
 
PDF
Post-Earth Visions: Designing for Space and the Future Human
FITC
 
PDF
The Rise of the Creative Social Influencer (and How to Become One)
FITC
 
PDF
East of the Rockies: Developing an AR Game
FITC
 
PDF
Creating a Proactive Healthcare System
FITC
 
PDF
World Transformation: The Secret Agenda of Product Design
FITC
 
PDF
The Power of Now
FITC
 
PDF
High Performance PWAs
FITC
 
PDF
Rise of the JAMstack
FITC
 
PDF
From Closed to Open: A Journey of Self Discovery
FITC
 
PDF
Projects Ain’t Nobody Got Time For
FITC
 
Cut it up
FITC
 
Designing for Digital Health
FITC
 
Profiling JavaScript Performance
FITC
 
Surviving Your Tech Stack
FITC
 
How to Pitch Your First AR Project
FITC
 
Start by Understanding the Problem, Not by Delivering the Answer
FITC
 
Cocaine to Carrots: The Art of Telling Someone Else’s Story
FITC
 
Everyday Innovation
FITC
 
HyperLight Websites
FITC
 
Everything is Terrifying
FITC
 
Post-Earth Visions: Designing for Space and the Future Human
FITC
 
The Rise of the Creative Social Influencer (and How to Become One)
FITC
 
East of the Rockies: Developing an AR Game
FITC
 
Creating a Proactive Healthcare System
FITC
 
World Transformation: The Secret Agenda of Product Design
FITC
 
The Power of Now
FITC
 
High Performance PWAs
FITC
 
Rise of the JAMstack
FITC
 
From Closed to Open: A Journey of Self Discovery
FITC
 
Projects Ain’t Nobody Got Time For
FITC
 
Ad

Recently uploaded (20)

PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PDF
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Digital Circuits, important subject in CS
contactparinay1
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 

Building a Startup Stack with AngularJS