topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Char string size limit still 64k? | Roger I don't think there is a limit on a ( (x)harbour ) variable.. reason I say that is that I am doing fread's and frwites to variables appending them or extracting them from sql tables.. and the size of the binary documents are in the hundreds of kilobytes and megabytes ..Rick Lipkin |
Char string size limit still 64k? | Roger,Whether there is a limit or not, I don't know.In FiveWin or Clipper 16 Bit, the limit was indeed 64K.In Fivewin for Harbour/xHarbour the limit exceeds for sure 1 MB (I already used a variable containing more than 1 000 000 characters. |
Char string size limit still 64k? | Memoread function in both Harbour and xHarbour can read text files larger than 64K. However functions like memoread and multiline Get seems have limitation of 32K |
Char string size limit still 64k? | Roger,Here you have a working sample that shows that there is no limit (up to 4GB or available memory) for MemoRead():[code:1b70hycr]
function Main()
local cText := Replicate( "This is a test", 10000000 )
MsgInfo( Len( cText ) )
MemoWrit( "test.txt", cText )... |
Char string size limit still 64k? | Hello Roger,[quote="Roger Seiler":1rnrbp43]I had previously understood that in 32 bits we don't have the 64k size limit for a char string that we had in 16 bits. However, I saw in the xHarbour documentation for Memoread() that there still is a 64k size limit for a char string in xHarbour.[/quote:1rnrbp43]I just looke ... |
Char string size limit still 64k? | Patrick,4GB is the max amount of memory that can be addressed in 32 bits. Its not a Harbour limitation. Its a 32 bits architecture limitation.Such limit does not exist in 64 bits, but again, it has another limit, though much higher. |
Char string size limit still 64k? | Thanks Antonio and others for your replies, which were reassuring.Patrick, here is a quote from the \xhb\cod\xHarbour.chm functions section, the topic on Memoread()..."• Return value:MEMOREAD() returns the contents of a text file as a character string. The maximum file size that can be read is 65,535 characters (64K) -... |
Char string size limit still 64k? | Mystery solved. I was inadvertently looking at an obsolete version of the xHb help file. I actually have the current version of it here, but because it had a different file name than the old, it didn't overwrite the old when I updated. The current version does indeed have the correct information, in that the explana... |
Char string size limit still 64k? | [quote="Roger Seiler":2kz6tjrt]Mystery solved. I was inadvertently looking at an obsolete version of the xHb help file.[/quote:2kz6tjrt]Ok! Thanks for the feedback Roger!<!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->Patrick |
Char to numeric | Hola,Teneis alguna rutina de conversion de caracter a numerico para este formato ?1.0000000000000000E+03NUM5.2050000000000000E+02NUM...Gracias |
Char to numeric | Hola Carles,esa es, si no me equivoco, notacion científica.5.2050000000000000E+02NUM puede traducirse como 5.205 x 10 ^ 2 = 5.205 x 100 = 520.5la E puede traducirse como x 10 ^entonces num = Val( left( string, pos( string, 'E' )-1) ) x 10 ^ Val( substr( string, pos( string, 'E' ) + 1 )ojo que el exponente tambien puede... |
Char to numeric | Carlos,Gracias, lo voy a probar. [code:2askvw2o]PD: ¿Cuando hacemos la segunda reunión?[/code:2askvw2o]Jejeje, yo ya la haria mañana mismo, peroooo ya ves q o lo hacemos con un recalenton o no va... <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Espero, nos podam... |
Char to numeric | [quote="Carles":3j3ptat5]
Jejeje, yo ya la haria mañana mismo, peroooo ya ves q o lo hacemos con un recalenton o no va... <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
[/quote:3j3ptat5]La verdad, si no es un arranque de furia no funciona <!-- s:( --><img src="{SMILIE... |
Char to numeric | Carlos,Ya puestos... La operacion inversa como la harias, es decir:520.5 -> Pasarlo a 5.2050000000000000E+02NUMGracias |
Char to numeric | Ahí habría que ser más preciso con las especificaciones de la representación. Normalmente te viene dada la cantidad de dígitos tanto del exponente como de la mantisa. En ciencias la mantisa tiene 1 entero, pero en informática está entre 0 y 1Deduciendo lo que escribiste, aparentemente la representación que usas es una... |
Char to numeric | Carlos,Carai colega. La explicacion vale una cervecita la próxima.Saludotes.C. |
Char type Ansi/Oem | Hello,
Is there any function for xHarbour in order to transform all strings accordingly to a pre defined type ANSI or OEM ?
Antonio |
Char type Ansi/Oem | Did you mean
[code:3d5m33m0]HB_OEMTOANSI()
HB_ANSITOOEM()[/code:3d5m33m0]
?
EMG |
Char type Ansi/Oem | I mean if there is one function to change automaticly the way strings are handled by all rotines in the application.
Antonio |
Char type Ansi/Oem | I don't know, sorry.
EMG |
Char values automatically left justified building an array | To All
I have a Sql Primary key value that is char(18) .. When I generate a random key I sometimes get a value like this with leading and trailing spaces .. and that is fine.
[code=fw:tdo05ny8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />aEmp := <span style="color: #000000;">{</span><span style... |
Char values automatically left justified building an array | [quote:78vclbu0]When I go to load the above character value cEid into an array the char value is truncated and loads as a left justified value[/quote:78vclbu0]
No. The value is not trimmed. Please check again. |
CharToOemA / OemToCharA | I am using an old version of FWH (2.8 Sep 2006) and have just upgraded xHb to latest 1.2.1 (Rev 6726)
Get the following;
xLINK: error: Unresolved external symbol '_HB_FUN_CHARTOOEMA referenced from fivehmx.lib(database.obj)'.
xLINK: error: Unresolved external symbol '_HB_FUN_OEMTOCHARA referenced from fivehmx.lib(data... |
Character Search within ComboBox | Hello,
Is it possible to search for characrters within a ComboBox for example, if user types chacters CT it move to CTN instead of moving to TUB (first item that begins with T). I tried the following code with no luck.
REDEFINE COMBOBOX aGet[5] VAR cUnit ID 105 ITEMS aUnit OF oDlg STYLE CBS_DROPDOWN <<<-------- I ... |
Character Search within ComboBox | try this:
@ 1 , 1 COMBOBOX oCombo VAR cCombo OF oDLG ITEMS aItems STYLE CBS_DROPDOWN SIZE 100 , 200
@ 1 , 20 GET oGet VAR cGet OF oDlg
oCombo:lIncSearch := .T.
oCombo:oGet:bKeyChar = { | nKey | premi_combo( nKey, oCombo ) }
ACTIVATE DIALOG oDlg CENTER
RETURN NIL
FUNCTION PREMI_COMBO( nKey , oCombo )
DO CASE
... |
Character Search within ComboBox | Hello Marco,
I tried this and it did not work. I trying to peform the following within a combobox. For example if the items consists of the following: LOT, LBS, PCS, PKG, PLT, PND, PPL
I want the user to be able press keys PLT and move directly item PLT, now when the user presses P it goes to first p, in this cas... |
Character Search within ComboBox | Darrell,
You just need to do:
oComboBox:lIncSearch = .T.
With more recent FWH version, it is not needed that the user types the whole word. It searches on each keystroke:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=131939#p131939">viewtopic.php?p=131939#p131939</a><!-... |
Character Search within ComboBox | Hi Antonio,
I am using FWHX 11.11; I will try now.
Thank you, |
Character Set | How does one store and then display characters like ô in DBF files?????
By the Way, I am reading this in from a txt file on disk. |
Character Set | You may use AnsiToOem() and OemToAnsi() |
Character Set | I use AnsitoOem on reading and OemtoAnsi on display and still get weird characters. Probably something simple but got me stumped. |
Character display problem | Hi,
My application reads dialog controls from resource file (dll) and cannot display characters from Latin Extended A Block (c acute, c caron and z caron) under Windows 98. Only s caron is displayed fine. Application is built under Windows XP. Under Windows XP works fine with all characters. When I make application un... |
Character display problem | Aleksandar,
On those labels where the text is not properly shown, you may define them as "aaaa", "bbbb", etc. in the resource and then REDEFINE SAY ... PROMPT ... ID ... them to the right text. |
Character to convert in decimal | Hi Antonio,
I have a big problem to convert a character field n5 char(20,0) to a dezimal field betrag(N,12,2)
I get the characterfield with csv conversion from bank.
-23,58 field n5
or
+11.931,76 field n5
with the code
betrag = val(n5)
the result is
-23.00 and not -23.58 or -23,58
the problem is, that there are ... |
Character to convert in decimal | [code=fw:1p21mcjx]<div class="fw" id="{CB}" style="font-family: monospace;"> betrag = val<span style="color: #000000;">(</span>strtran<span style="color: #000000;">(</span>strtran<span style="color: #000000;">(</span>n5,<span style="color: #ff0000;">"."</span>,<span style="color: #ff0000;">""</span><span s... |
Character to convert in decimal | Vielen lieben Dank.
Es funktioniert ausgezeichnet.
Bin auch Kärntner vom Gailtal Presseggersee.
Bin nächste Woche in Kärnten, darf ich Sie auf ein Dinner einladen?
<!-- e --><a href="mailto:arminthurner@gmx.at">arminthurner@gmx.at</a><!-- e -->
<!-- w --><a class="postlink" href="http://www.i-pointpartner.net">www.i-po... |
Characters from different code tables | Hi,
Is it possible to show text in the xBrowse cell with characters inserted into it from another code table
(for example, superscript characters of space or volume. As in Word/Excel) ? |
Characters from different code tables | I can tell you this much.
If the string appears correctly using "?" command, it will appear the same way in XBrowse also.
First, test with
[code=fw:106tzumk]<div class="fw" id="{CB}" style="font-family: monospace;">? cText</div>[/code:106tzumk] |
Characters from different code tables | Good.
Is it possible to use different fonts in the same row (not in different rows) of the cell ? |
Characters from different code tables | [quote:31sbh8li] superscript characters of space or volume[/quote:31sbh8li]
Please give some examples and let us try now.
Any character can also be expressed in utf8. Then we can concatenate all utf8 characters |
Characters from different code tables | Please first see the functioning of the function
[code=fw:id5ja91m]<div class="fw" id="{CB}" style="font-family: monospace;">FW_SayTextHilite<span style="color: #000000;">(</span> hDC, cText, aRect, oFont, nClrText, nClrBack, aWords <span style="color: #000000;">)</span></div>[/code:id5ja91m]
This is an exampl... |
Characters from different code tables | Thanks! This is what I need |
Charla Git en Barcelona | Amigos, la semana que viene, daré una charla de Git en Barcelona.
El evento es gratuito, así que si quereis venir, sois bienvenidos.
<!-- m --><a class="postlink" href="http://2704537368061661486_e802e903258c2bed114982092536f75c1560f6f2.blogspot.com/b/post-preview?token=7gVY0z4BAAA.iPw6WBpuMoEHCaIYjI6wkQ.25jpceVLNpins... |
Charla Git en Barcelona | gracias Rafa <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Me pilla lejos que sino ten por seguro que iria, aunque he de reconocer que ya estoy bastante enamorado de GIT como predijistes que nos pasaría a muchos <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt="... |
Charla Git en Barcelona | Me encantaría poder asistir, pero a mi también me pilla un poco lejos.
Ojala se pudiera retransmitir por Internet. Que buenos son los sueños. |
Charla Git en Barcelona | Intentaremos grabar el evento, y ponerlo a disposición de todos.
No podemos transmitir por Internet, a depender de una Wifi, y no tenemos tampoco la certeza que tendremos acceso a ella, según la sala que nos toque.
Saludos |
Charla Git en Barcelona | Rafa
El link que has dejado escupe esto :
Invalid securityToken.
Error 403
Queria informarme del lugar y hora, ya sabes que si puedo, asistité encantado ! |
Charla Git en Barcelona | Parece que lo han cambiado.
<!-- m --><a class="postlink" href="http://www.barcelonajug.org/2013/05/control-de-versiones-con-git.html">http://www.barcelonajug.org/2013/05/con ... n-git.html</a><!-- m --> |
Charla Git en Barcelona | Gracias Rafa,
Esperaré, deseoso, a la posibilidad de ver el evento en video. |
Charla Git en Barcelona | Fantástica charla de git ayer en [url:3ee62s1q]https://foursquare.com/v/espai-jove-la-fontana/4c06d6110e0a2d7f4875ec0c[/url:3ee62s1q] con la gente de #bcnjug @BarcelonaJUG [url:3ee62s1q]http://www.barcelonajug.org/[/url:3ee62s1q]
Como bien dijo Rafa, git te cambia la vida. Si colaboras en proyectos ... |
Charla Git en Barcelona | Solo con la presentación y ya estoy alucinando.
Como he podido vivir sin git.
Deseando poder ver el video. |
Charla Git en Barcelona | Una guia sencilla para empezar
[url:amc2dse3]http://rogerdudler.github.io/git-guide/index.es.html[/url:amc2dse3]
Una cheat sheet o chuleta para tener al lado de nuestra pantalla
[url:amc2dse3]http://rogerdudler.github.io/git-guide/files/git_cheat_sheet.pdf[/url:amc2dse3]
Comandos b... |
Charla Git en Barcelona | Juaquin,
Muchas gracias por los enlaces. |
Charla Git en Barcelona ( Video ) | Buenas a todos
Tengo en placer de comunicaros que tenéis disponible mi charla sobre Git.
Que lo disfrutéis
<!-- m --><a class="postlink" href="http://xthefull.blogspot.com.es/">http://xthefull.blogspot.com.es/</a><!-- m --> |
Charla Git en Barcelona ( Video ) | Gracias Rafa!!! |
Charla Git en Barcelona ( Video ) | Gracias Rafa.
Muy interesante la charla. Lo que mas me ha gustado es el termino "libertad de operar como quiera"
En mi caso, no he trabajado tampoco con subversion, algunos conceptos no me han quedado claros.
Pero nada que no resuelva internet y realizar pruebas-ensayos.
Ojala se puede realizar la propuesta de llevar... |
Charla Git en Barcelona ( Video ) | Por curiosidad ¿ Que control de versiones usas ? |
Charla Git en Barcelona ( Video ) | Buena pregunta.
Primero, quiero aclarar que en la empresa, programando estoy yo sólo.
en cuanto a la pregunta:
Hago git a mano usando uestudio y uso ficheros de texto, y la agenda y las tareas de outlook/gmail donde voy anotando los cambios que realizo y donde me llego.
Mantengo un proyecto estable en un directorio.... |
Charles Petzold Prepping Metro-Style Programming Book | [url:1clb10a1]http://www.winsupersite.com/blog/supersite-blog-39/windows8/charles-petzold-prepping-metrostyle-programming-windows-book-142903[/url:1clb10a1] |
Charles Petzold Prepping Metro-Style Programming Book | Wow! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
EMG |
Charles Petzold Prepping Metro-Style Programming Book | The advantage of FiveWin Touch is that we don't need to learn a new language, etc. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
We simply keep using Harbour and FWH <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
(just kidd... |
Charles Petzold Prepping Metro-Style Programming Book | The link is broken. |
Charles Petzold Prepping Metro-Style Programming Book | Works fine from here.
EMG |
ChartFX 3.0 | Hola José:
Según tengo entendido la versión 3.0 del Chartfx es libre debido a que ya es un producto descontinuado, con gusto puedo enviarla a tu mail privado.
Anteriormente este control era muy utilizado para crear graficas pero debido a la limitante de la tecnología VBX solo estaba disponible en FW de 16 bits, ahora... |
ChartFX 3.0 | José puedes enviarme dicha herramienta. |
ChartFX 3.0 | [quote="Alberto Juárez":dl1v3ln9]Hola José:
Según tengo entendido la versión 3.0 del Chartfx es libre debido a que ya es un producto descontinuado, con gusto puedo enviarla a tu mail privado.
Anteriormente este control era muy utilizado para crear graficas pero debido a la limitante de la tecnología VBX solo estaba d... |
ChartFX 3.0 | Podrías enviárme esa herramienta a mí también? <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
a: <!-- e --><a href="mailto:jmurugosa@yahoo.com">jmurugosa@yahoo.com</a><!-- e --> |
ChartFX 3.0 | Alberto me uno al pedido, seria muy util poder utilizarlo desde (x)Harbour por favor dime de donde lo puedo descargar o si no es molestia me puedes pasar la Clase a este correo :
<!-- e --><a href="mailto:evertiz@consorcioinformatico.com">evertiz@consorcioinformatico.com</a><!-- e -->
Muchas gracias |
ChartFX 3.0 | Lo mismo que todos...
mi correo es
<!-- e --><a href="mailto:leandroalfonso111@hotmail.com">leandroalfonso111@hotmail.com</a><!-- e --> |
ChartFX 3.0 | [quote="Alberto Juárez":2we6cu7l]Hola José:
Según tengo entendido la versión 3.0 del Chartfx es libre debido a que ya es un producto descontinuado, con gusto puedo enviarla a tu mail privado.
Saludos.[/quote:2we6cu7l]
Neeeegativo mi estimado alberto, lo mismo pensaba y para quitarme de la duda les envie un correo ha... |
ChartFX 3.0 | Correcto Rene, gracias por la aclaración
Saludos |
Chat con Fivewin | Saludos a todos los colegas de foro:
Ahi les va otra de mis " <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> Marcianadas <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> ":
Alguien sabrá por ahí como podré implementar un Chat en mi Sist... |
Chat con Fivewin | [quote="cuatecatl82":lanaj0cm]Saludos a todos los colegas de foro:
Ahi les va otra de mis " <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> Marcianadas <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> ":
Alguien sabrá por ahí como podré ... |
Chat con Fivewin | si mal no recuerdo... el buen amigo Alfredo Arteaga
tiene implementado algo en sus sistemas.... |
Chat con Fivewin | Es realmente muy muy muy simple de hacer un chat con FW, como digo yo, idiotamente simple.
Necesitamos:
Una tabla dbf compatida con un solo campo tipo caracter, longitud la que consideren
Hacen un dialogo que tenga un browse arriba, un get abajo, y un boton enviar.
Se abre la tabla compartida
Se pone en el get el ... |
Chat software | Hello,
this first part of the video series shows how to easily integrate an HTML program
into a mod harbor program.
Target group of these instructions are harbor programmers who take the first steps towards internet programming.
Best regards,
Otto
[url:1afw087y]https://mybergland.com/fwforum/part1.mp4[... |
Chat software | New!
Part 3 - video chat software directory/hash
[url:12f9370z]https://mybergland.com/fwforum/managerchat3.mp4[/url:12f9370z] |
Chat software | Chat Manager now updates the input of the various chat clients with AJAX
[img:66ku9crn]https://mybergland.com/fwforum/chatmanager.gif[/img:66ku9crn] |
Chat software - mod harbour | Awesome Mr. Otto.
How is it possible with so few lines to have an operational chat.
mod_harbour is fantastic but Bottstrap Studio is too <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" ti... |
Chat software - mod harbour | Hello,
the first videos are ready:
Target group of these instructions are harbor programmers who take the first steps towards internet programming.
Intro Chat Software
[url:1qzd6dnj]https://mybergland.com/fwforum/chatsoftwareintro.mp4[/url:1qzd6dnj]
Part 1 of the video series shows how to easily integrat... |
Chat software - mod harbour | Hello,
the first videos are ready:
Target group of these instructions are harbor programmers who take the first steps towards internet programming.
Intro Chat Software
<!-- m --><a class="postlink" href="https://mybergland.com/fwforum/chatsoftwareintro.mp4">https://mybergland.com/fwforum/chatsoftwareintro.mp4</a><!-- ... |
Chat software - mod harbour | Online food ordering
Hello,
At the moment, it looks that you must place orders in restaurants with your smartphone after coronavirus restart.Therefore we have to develop an APP to take orders quickly.
We start with the search for a suitable template.
Step 2)
We have found a beautiful template and now we are preparing ... |
Chat style how to make chat bubbles as WhatsApp | Good evening forum,
I am trying to generate an internal chat in a company, and I would need the visual of the messages to be shown in this way:
[img] <!-- m --><a class="postlink" href="https://i.ibb.co/2jbyHmn/image.png">https://i.ibb.co/2jbyHmn/image.png</a><!-- m --> [/ img]
I understand php, html and CSS much be... |
ChatGPT | Dear friends,
How can we provide multi-user access to the staff members of a company?
I think a plan like the one I have ($20/month) is not suitable from a privacy standpoint. First, I don't know if it's allowed to share the key, and secondly,
all others would see your questions.
API request:
Here are some questions... |
ChatGPT | Dear friends,
I am working on a tool to request standardized questions to ChatGPT.
Best regards,
Otto
[img:1d0bxe8a]https://mybergland.com/fwforum/fragen.jpg[/img:1d0bxe8a]
[quote:1d0bxe8a]Can you please provide me a list of public holidays for 2024 in the format 'DD.MM.YYYY holiday name'? Also, please... |
ChatGPT | Otto,
Question out of context, how can you put the logo in the toolbar on the right."WinHotel"
<!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> |
ChatGPT | Otto,
A question about ChatCPT is it possible to educate him to answer questions from my customers in technical support? with a single license?
or even here in the forum Antonio ! him looking for things here, and it would give you more time off.. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title=... |
ChatGPT | Dear Ari,
You simply go to chatGPT, make your question and copy here its answer <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
ChatGPT | Ari, this is the code:
Best regards,
Otto
[code=fw:32io9dgt]<div class="fw" id="{CB}" style="font-family: monospace;"> oBar:<span style="color: #000000;">bPainted</span> := <span style="color: #000000;">{</span> |hDC| PaintBarLogo<span style="color: #000000;">(</span> hDC, oBar <span style="color: #0000... |
ChatGPT | Otto,
Thank you very much |
ChatGPT | Hello Otto;
I don't think you need to ask for number of tokens used. Responses contain that information already. Here is a typical Json response I get:
[quote:1zhjkydy]{
"id": "cmpl-XxXXXXXXXXXXXXXXXXX",
"object": "text_completion",
"created": 1683665917,
"model": "text-davinci-003",
"choices": [
{
"text"... |
ChatGPT | Hello Reinaldo,
Thank you. I do not use API; I use copy & paste. My ChatGPT plan costs $20 per month, and I think the requests are not limited. I want to find out how much the API key costs.
What are your experiences? It seems that 31 similar requests, as you posted, will cost $1. Is that correct?
Best regards,
Otto... |
ChatGPT | Yes, Otto. You are right. $0.989 to be exact. I'm still testing and don't really know how much will it cost.
In real life my customers could make over 100 such fetches per day. I would have to pass on the cost. But, for my customers this would represent thousands in savings. To fetch one of those ICD10 code... |
ChatGPT | +1 <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
ChatGPT | Ari,
[quote:1yrpj7o3]A question about ChatCPT is it possible to educate him to answer questions from my customers in technical support? [/quote:1yrpj7o3]
But it is already possible now for you to include information in your requests, and ChatGPT can access that information when generating responses.
I am extending ... |
ChatGPT | Hello friends,
By the way, I found a great plugin for ChatGPT.
It creates a button that allows you to select a file and upload it as a knowledge base.
It uses async to read the file as text and split it into chunks of size 15,000, which are then sent.
Here is a video demonstrating how it works: <!-- m --><a class="po... |
ChatGPT | [quote="Otto":3cb47qvp]Ari, this is the code:
Best regards,
Otto
[code=fw:3cb47qvp]<div class="fw" id="{CB}" style="font-family: monospace;"> oBar:<span style="color: #000000;">bPainted</span> := <span style="color: #000000;">{</span> |hDC| PaintBarLogo<span style="color: #000000;">(</span> hDC, oBar <span s... |
ChatGPT | Hi, today Openai release, ( im in waitlist), chatgpt4 with web browsing and plugins, with webbrowsing and some hacks with pyton, chatgpt is very usefull. <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
Best regards |
ChatGPT | Hello,
[img:33basdc8]https://mybergland.com/fwforum/chatbrowse.jpg[/img:33basdc8]
Best regards,
Otto |
ChatGPT | Dear Otto,
Are you using a pluggin ? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.