tags: chatgpt, java, api
Hi guys 👋 I'm sure you enjoy using chat GPT to produce, optimise, or translate code from any programming language to Java.
Today I'll show you how to use OpenAI ChatGPT API with Java, it's pretty easy.
tags: chatgpt, java, api
Hi guys 👋 I'm sure you enjoy using chat GPT to produce, optimise, or translate code from any programming language to Java.
Today I'll show you how to use OpenAI ChatGPT API with Java, it's pretty easy.
| GIMP Palette | |
| Name: Web design | |
| # | |
| 105 210 231 Giant Goldfish | |
| 167 219 219 | |
| 224 228 204 | |
| 243 134 48 | |
| 250 105 0 | |
| 255 255 255 separator | |
| 233 76 111 Cardsox |
| # Convert text files in cp1252 with dos line endings to files in UTF-8 with | |
| # Unix line endings | |
| for file (*.txt) {iconv -f cp1252 -t utf-8 $file -o $file} | |
| dos2unix *.txt |
| # Login | |
| core/src/main/resources/jenkins/model/Jenkins/login.jelly | |
| # Main page | |
| core/src/main/resources/lib/layout/layout.jelly | |
| core/src/main/resources/hudson/views/BuildButtonColumn/column.jelly | |
| core/src/main/resources/lib/hudson/iconSize.jelly | |
| core/src/main/resources/lib/hudson/rssBar.jelly | |
| # Build |
NB: The following examples where done on Puppet Enterprise 3.0 running on Centos 6. Should be similar for open source versions, except for some file locations.
The easiest way to snoop around in de actual PuppetDB postgres database is using the command prompt. You have to be the peadmin user though. Couldn't get it working just under root.
[root@master bin]# sudo su - pe-postgres -s /bin/bash
-bash-4.1$ /opt/puppet/bin/psql
psql (9.2.4)
Type "help" for help.
| //~--- JDK imports ------------------------------------------------------------ | |
| import java.awt.Cursor; | |
| import java.awt.Point; | |
| import java.awt.Rectangle; | |
| import java.awt.event.MouseAdapter; | |
| import java.awt.event.MouseEvent; | |
| import javax.swing.JComponent; | |
| import javax.swing.JViewport; |