Posts

Showing posts from February 22, 2019

Ferrari Berlinetta Boxer

Image
Ferrari Berlinetta Boxer Overview Manufacturer Ferrari Production 1973–1984 2,323 produced Assembly Maranello, Italy Designer Leonardo Fioravanti at Pininfarina [1] Body and chassis Class Sports car Body style 2-door berlinetta Layout Rear mid-engine, rear-wheel-drive Powertrain Engine Flat-12 Transmission 5-speed manual Dimensions Wheelbase 2,500 mm (98.4 in) Length 4,400 mm (173.2 in) Width 1,830 mm (72.0 in) Height 1,120 mm (44.1 in) Chronology Predecessor Ferrari 365 GTB/4 Successor Ferrari Testarossa The Ferrari Berlinetta Boxer (BB) is an automobile that was produced by Ferrari in Italy between 1973 and 1984. Replacing the front engined Daytona, it was the first in a series of Ferraris to use a mid-mounted flat-12 engine. The Boxer was designed by Leonardo Fioravanti and was the first mid-engined road-car to bear the Ferrari name and the Cavallino Rampante (prancing horse) logo. It was replaced by the

Setting up git npm dependency for debugging

Image
1 1 First time trying to do this, so not really sure what I am doing or how to set it up. I need to debug a library I am using in my application. Originally, I had it installed with npm install @react-pdf/renderer . That wouldn't work well for debugging and I came across this answer describing how to work on a dependency if you need to make modifications to it: https://stackoverflow.com/a/13302095/3123109 So now I'm doing npm install https://github.com/diegomura/react-pdf/tarball/master which puts a copy of the repo into my node_modules . I was under the impression it would "just work" after doing this. Of course not that simple... What I have tried I have NPM running on my application. The first error that comes up is Module not found: Error: Can't resolve '@react-pdf/rende