Open in app

Sign In

Write

Sign In

Valentin Despa
Valentin Despa

2K Followers

Home

Lists

About

Published in

Travelling with Valentine

·Aug 1

Diesel Quality and ULSD Availability in Honduras — A Field Report

At the time of writing, ULSD is not available in Honduras. — The current situation with ULSD in Honduras As of August 2023, there is no ULSD in Honduras. It appears that Uno initially introduced ULSD back in 2017 [1] [2] [3] but somehow it is no longer available. So currently in Honduras, there is only Low-Sulfur Diesel (LSD) at a maximum of 500 ppm. [4] There is how…

Hondura

2 min read

Diesel Quality and ULSD Availability in Honduras — A Field Report
Diesel Quality and ULSD Availability in Honduras — A Field Report
Hondura

2 min read


Published in

Travelling with Valentine

·Jul 25

Diesel Quality and ULSD Availability in El Salvador — A Field Report

In the past year, El Salvador has seen a lot of change. For overlanders, the main concerns are safety and Diesel quality. And El Salvador has good news on both fronts. — An overview El Salvador does have some Ultra Low Sulfur Diesel (ULSD) but most Diesel sold is at 500 ppm sulfur. Global Sulphur Levels. UN Environment Programme. [1] It is important to mention that you will not encounter the term USLD at gas stations in El Salvador. …

Puma

2 min read

Diesel Quality and ULSD Availability in El Salvador — A Field Report
Diesel Quality and ULSD Availability in El Salvador — A Field Report
Puma

2 min read


Published in

Travelling with Valentine

·Jul 7

Diesel Quality and ULSD Availability in Guatemala — A Field Report

Overlanders traveling to Guatemala with modern Diesel engines have one additional concern on top of their mind: the availability and quality of Diesel. — An overview As of 2023, Guatemala does have some Ultra Low Sulfur Diesel (ULSD) but most Diesel sold is at 500 ppm. However, the meaning of ULSD in Guatemala is a bit different. In other words, ULSD is considered anything with a sulfur content below 50 ppm. As a comparison, in USA…

Guatemala

4 min read

Diesel Quality and ULSD Availability in Guatemala — A Field Report
Diesel Quality and ULSD Availability in Guatemala — A Field Report
Guatemala

4 min read


Published in

Travelling with Valentine

·Jun 15

Diesel Quality and ULSD Availability in Mexico — A Field Report

Overlanders traveling to Mexico with modern Diesel engines have one additional concern on top of their mind: the availability and quality of Diesel. — As of 2023, Mexico has still not fully transitioned to Ultra Low Sulfur Diesel (ULSD) as this step has been postponed several times. It is important to mention that you will not encounter the term USLD at gas stations in Mexico. Most gas stations/pumps give no information whatsoever about the…

Mexico

7 min read

Diesel Quality and ULSD Availability in Mexico — A Field Report
Diesel Quality and ULSD Availability in Mexico — A Field Report
Mexico

7 min read


Published in

APIs with Valentine

·May 16

How to use the ChatGPT API in Node.js/JavaScript Using the OpenAI Node.js Library

The first time I tried using the OpenAI Node.js library, I found the documentation lacking in terms of getting a simple script to work. Apart from this, the documentation did show an example with the Completions API which GPT 3.5 & GPT 4 use. Hence this quick tutorial. — Before writing any code If you wish to use the OpenAI API to work with the ChatGPT API or any other models you need to do the following:

OpenAI

4 min read

How to use the ChatGPT API in Node.js/JavaScript Using the OpenAI Node.js Library
How to use the ChatGPT API in Node.js/JavaScript Using the OpenAI Node.js Library
OpenAI

4 min read


Published in

APIs with Valentine

·Apr 13

Getting Started with the GPT-4 API in Postman

GPT-4 is the next iteration after GPT 3.5. While not that different, it still has two important differences: can process much more tokens and in the future, it will also accept image inputs. Let’s use Postman to call the ChatGPT API and get a simple example working. — Important: Currently GPT-4 is in limited beta and only accessible to a small group of people. Get an API key for OpenAI Access to all OpenAI models is granted based on an API key. To use the GPT-4 API, you will need to have an OpenAI account. If you have already used ChatGPT, you already have…

Gpt 4

5 min read

Getting Started with the GPT-4 API in Postman
Getting Started with the GPT-4 API in Postman
Gpt 4

5 min read


Published in

APIs with Valentine

·Apr 7

ChatGPT & OpenAI API Error: You exceeded your current quota please check your plan and billing details.

In this brief tutorial, I will show you the steps needed to fix this error. Spoiler alert: you need a credit card. — You are minding your own business using the ChatGPT & OpenAI APIs and all of the sudden you are getting this error: Status code: Error: 429 Too Many Requests. Message: You exceeded your current quota please check your plan and billing details. Why does this error appear? When you created an account with OpenAI to…

ChatGPT

4 min read

ChatGPT & OpenAI API Error: You exceeded your current quota please check your plan and billing…
ChatGPT & OpenAI API Error: You exceeded your current quota please check your plan and billing…
ChatGPT

4 min read


Published in

DevOps with Valentine

·Mar 24

GitHub Error: WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! — How to Fix

If you are pushing something to GitHub using Git, you will most likely get the following error message: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Or if you are a Visual Studio Code user, the error might look like this: Normally, this is a very serious error…

Github

2 min read

GitHub Error: WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! — How to Fix
GitHub Error: WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! — How to Fix
Github

2 min read


Published in

APIs with Valentine

·Mar 7

Getting Started with the ChatGPT GPT-3.5 API

Recently OpenAI has released the long-awaited ChatGPT API. This enables developers to build applications on top of the OpenAI ChatGPT model. Let’s use Postman to call the ChatGPT API and get a simple example working. — Last updated: April 2023 Get an API key for OpenAI To use the ChatGPT API, we need to create an account with OpenAI and generate an API key. OpenAI offers an API (Application Programming Interface) that allows developers to access and utilize the power of its AI models in their own applications.

ChatGPT

7 min read

Getting Started with the ChatGPT GPT-3.5 API
Getting Started with the ChatGPT GPT-3.5 API
ChatGPT

7 min read


Published in

APIs with Valentine

·Mar 3

How to use the Whisper API from OpenAI in Postman

Recently OpenAI has released the beta version of the Whisper API. Whisper is a model that can turn audio into text, and after the first experiments, I must say that I am impressed by the capability. Let’s get a simple example working. — Last update: March 2023 Get an API key for OpenAI To use the Whisper API, we need to create an account and generate an API key. OpenAI offers an API (Application Programming Interface) that allows developers to access and utilize the power of its AI models in their own applications.

Whisper

7 min read

How to use the Whisper API from OpenAI in Postman
How to use the Whisper API from OpenAI in Postman
Whisper

7 min read

Valentin Despa

Valentin Despa

2K Followers

Software developer, educator & overlander • GitLab Hero • AWS Community Builder • Postman Supernova • Imprint: http://vdespa.com/imprint

Following
  • Mostafa Moradian

    Mostafa Moradian

  • The NYT Open Team

    The NYT Open Team

  • Terrie Schweitzer

    Terrie Schweitzer

  • Joyce Lin

    Joyce Lin

  • Anastasia Petrenko

    Anastasia Petrenko

See all (35)

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech

Teams