Skip to content

Instantly share code, notes, and snippets.

View fabiosammy's full-sized avatar

Fabio Leandro Janiszevski fabiosammy

View GitHub Profile

#Introduction If you're a php developer on ubuntu, there comes the time where you have to install/reinstall your system. I did it already a few times and i decided to write down the steps for a typical web developer stack with php. This is for a developer machine and not for live environment!

I hope it's a help also for you!

#Installation stack

@fabiosammy
fabiosammy / ruby-suggestions.md
Created July 7, 2022 18:03
Sugestões de leituras
@fabiosammy
fabiosammy / README.md
Last active January 31, 2024 15:14
Sinatra Calculator

Sinatra Calculator

To we understand the concepts, let's create a sinatra app, that will simple calculate the inputs.

You're not limited by any structure files. Do what you learn in the last few days.

Task 1 - Make your own server code

Create the base app, adding the Gemfile (including the lock one), the rb files following the "rackup way", with a route /status that should returns a simple text "OK". Also add the rspecs for that. The server should be able to run with "bundle exec rackup". The rspec should cover the /status.