Explore >> Select a destination


You are here

www.dewanahmed.com
| | caseysoftware.com
10.1 parsecs away

Travel
| | The last four years have been brutal for developer relations. Obviously, covid sent everyone home and canceled conferences, meetups, and every other event. The underlying framework of hallway conversations, buying drinks for developers, and live in-person demos disappeared. Fast forward to 2021 and every tech company was on a wild hiring binge making crazy offers
| | paul.kinlan.me
19.2 parsecs away

Travel
| | Paul is a Developer Advocate for Chrome and the Open Web at Google and loves to help make web development easier.
| | www.marythengvall.com
15.4 parsecs away

Travel
| | "What is the main goal of a DevRel team?" is a question I've heard for years, and every time, the answer starts with "well... it depends!" What if I told you that the main goal of DevRel -- no matter what company you're at -- is to support the company's empowerment of the developer community?
| | logr.cogley.info
94.0 parsecs away

Travel
| Many static site generators like Hugo have a built in dev web server. If you are just building some html with css, and need a simple solution to serve the files from any folder, you have a few solutions. See a couple of options: Node.js users can install and run http-server: 1 2 3 4 npm install -g http-server cd /path/to/my/working/folder http-server --help http-server Visit http://localhost:8080 and look at the help to change the port.