# convert files in directory from m4a to mp3
function m4a() {
find . -iname '*.m4a' -exec bash -c 'ffmpeg -i "$1" "${1/m4a/mp3}"' -- {} \;
}
eh, forget it.
Let's work through what Serverless is, why you would want to use it, how it works and how to get started. We'll spend some time with a few example use cases to flesh out some implementations so you can feel confident building out your own serverless applications.
module.exports = { | |
config: { | |
// customizations | |
scrollback: 40000, | |
// default font size in pixels for all tabs | |
fontSize: 12, | |
// font family with optional fallbacks | |
// fontFamily: '"Plex Mono", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', |
Welcome to the IBM Booth at Node + JS Interactive 2019!
Infused with cloud native capabilities from the moment you start, Kabanero and Appsody provide everything you need to iteratively develop applications, ready for deployment to Kubernetes environments and empowered with sharable technology stacks, configurable and controllable through a central hub.
LoopBack is a Node.js API framework that enables you to create APIs quickly that interact with backend resources like databases and services.
LoopBack 4, the next generation of LoopBack, includes:
- A brand new core rewritten in TypeScript that makes this framework simpler to use and easier to extend than ever
- Support for OpenAPI for comprehensive bottom-up and top-down REST API experience
- Enablement of instant GraphQL endpoints from REST APIs
In this lab, you will create a todo-list application that tracks to-do items using an in-memory database. You will experience how you can create REST APIs with just 5 steps:
Laptop needs admin access and needs a password. If there is admin access and no password, create a new user with a password and admin privileges. It's also best to add the password to the screensaver.
- Install Homebrew - brew.sh
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Create
.profile
:touch ~/.profile
- Install nvm - nvm.sh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash
- Source new
.profile
-source .profile