Yesterday at the @NgStuttgart Meetup, we had a really good time with two talks: “What’s new in Angular 8” (David Muellerchen – GDE – @webdave_de – webdave.de) “Improving UX by performance with Angular” (Steffen Stähle & Florian Tischler – @Steffen_Staehle & @floriantischler) During the talks we came across a little node tool called local-web-server it […]
Author Archives: Bernhard Rode
GTA V Self-driving car
I’m currently half-way through my Udacity Self Driving Car Nanodegree and this clip is amazing. We are building the future of mobility here at Bosch and I’m really looking forward to the world of autonomous cars (where accidents are solely produced, by “human” drivers like we see in the clip @4:13).
Jenn Schiffer, Engineer/Artist – XOXO Festival (2016)
Awesome talk by Jenn Schiffer
Stop/Remove all docker containers
# Stop every Docker container docker stop $(docker ps -a -q) # Delete every Docker container docker rm $(docker ps -a -q) # Delete every Docker image docker rmi $(docker images -q)
Behind a corporate proxy – npm/yarn
.npmrc/.yarnrc proxy=http://username:[email protected]:xxxx https-http://username:[email protected]:xxxx registry=https://registry.npmjs.org strict-ssl=false
Behind a corporate proxy – Git
.gitconfig [credential] helper = manager [url “https://”] insteadOf = git:/ [url “https://github.com/”] insteadOf = [email protected]: [http] proxy = http://username:[email protected]:xxxx [https] proxy = http://username:[email protected]:xxxx If you are using macOS, change the credential from manager to osxkeychain. [credential] helper = osxkeychain
[email protected] – add API proxy
Create a file like “proxy.json” in your [email protected] projects’ root. { “/api”: “http://localhost:1337” } start your development server with: 🍰 $ ng serve –proxy-config proxy.json All request to http://localhost:4200/api/v1/endpoint will now be proxied to http://localhost:1337/api/v1/endpoint Pro Tip: add “start”: “ng serve –proxy-config proxy.json”, to the scripts section inside of your package.json and use the […]
Delete a remote Git tag
Because i have to look it up all the time (and WS has no UI support AFAIK)… If you created a tag like ‘mytag’ you can delete it by running: git tag -d mytag git push origin :refs/tags/mytag That will remove ‘mytag’ from your local and the remote repository.
NGNL 2016: Gerard Sans – Introduction to RxJS5
Nice introduction to RxJS by Gerard Sans. Gerard is awesome, i had the pleasure to talk (and have a beer) with him during angularconnect in 2015.
Your Lead Architect Doesn’t Really Understand Microservices
http://thenewstack.io/genius-techie-doesnt-really-understand-cloud There is no doubt that hype trumps learning, and that’s just a fact; we have a wealth of available and immediate information now in the Internet age. It takes time for experts to discern what matters and what does not. But in the end, following the leader may be the best approach of all. I’ve […]