similar to: OFF TOPIC: chatGPT glibly produces a lot of wrong answers?

Displaying 20 results from an estimated 900 matches similar to: "OFF TOPIC: chatGPT glibly produces a lot of wrong answers?"

2023 Feb 13
1
An interesting chat with ChatGPT
I was wondering which anchor would match in the regular expression "(a)|(b)" if both "a" and "b" matches the target string. What appears to happen is that the first match wins, and that's how it is documented in Python, but I was looking for docs on this in R. As far as I can see, the ?regex help page doesn't resolve this. So just for fun, I decided to
2023 Feb 13
2
An interesting chat with ChatGPT
Duncan - Indeed, this has now been well documented; I have called these constructions "Schr?dinger Facts", since they arise from a superposition of truths in the training data that collapse into an untruth when observed. https://sentientsyllabus.substack.com/p/chatgpts-achilles-heel Now, the curious question is: why can it program. Why is its production of R-syntax less vulnerable
2006 Jul 07
5
link_to: link is missing id
I''m using a legacy table, where the unique id is not ''id'' I have a Model class like the following: class Article < ActiveRecord::Base set_primary_key "ARTICLE_ID" end however, using a link_to like the following (modified scaffolding), the link has no id value: <% for article in @articles %> <tr> <% for column in
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
Good idea, El - thanks. The link is https://docs.google.com/document/d/1QwuaWZk6tYlWQXJ3WLczxC8Cda6zVERk/edit?usp=sharing&ouid=103065135255080058813&rtpof=true&sd=true This is helpful. From the article, which is typical of Lexis+ output, I want to extract the following fields and append to a Calc/ Excel spreadsheet. Given the volume of articles I have to work through, if this
2023 Apr 07
2
python module
I am looking for the python-samba module. I would like to add/disable/modify AD accounts using python running on a linux machine. ChatGPT suggested the python-samba module. Sample code as follows: from samba.credentials import Credentials from samba.netcmd.user import create as create_user from samba.netcmd.user import setpassword as set_user_password ... I am running Debuan bullseye and I can
2015 Jul 22
2
Cisco 7940 and PJSIP registration
Hi list, I've been googling this issue and found some good resources however I am still running into problems with the following combo ... Here's my story; - Asterisk 13.4 with FreePBX 12. - Migrating from Asterisk 11 / FreePBX 2.11 - Mix of Cisco 79xx handsets, mostly 7940G's. My problems started with (the very common) issue of the 7940 not replying to 401
2023 Apr 07
1
python module
On 07/04/2023 20:20, David Bear via samba wrote: > I am looking for the python-samba module. I would like to > add/disable/modify AD accounts using python running on a linux machine. > ChatGPT suggested the python-samba module. Sample code as follows: > > from samba.credentials import Credentials > from samba.netcmd.user import create as create_user > from samba.netcmd.user
2024 Apr 13
1
Just for your (a|be)musement.
I recently had the chance to read a book explaining how to use ChatGPT with a certain programming language. (I'm not going to describe the book any more than that because I don't want to embarrass whoever wrote it.) They have appendix material showing three queries to ChatGPT and the answers. Paraphrased, the queries are "if I throw 2 (3, 4) fair dice, what is the probability I get
2010 Sep 24
7
In the press, once again
May be a little bit off topic, but this gave me hard laugh: http://www.theregister.co.uk/2010/09/24/sysadmin_file_tools/ Windows admins use a virtualized CentOS machine to copy files because their own tools are not able to handle copying a bigger amount of data. :) Cheers, Timo
2023 Apr 07
1
python module
Thanks Rowland. I really appreciate your rapid responses and many years of work helping the python community. To answer your question, I could wrap samba tool -- but I thought it would be easier -- and more pythonic to keep the code pure python. As for what chatgpt knows... for the curious I'll paste the relevant responses below. Chat did suggest making calls to the samba-tool. I thought
2010 Jun 29
1
Can't call my extension
Hi, I managed to get a remote extension to work through a router which can now call all the other local extensions in asterisk. For some reason, nobody can call me back. They get failed upon trying. Keep thinking there must be some caller group to which I need be added. Or perhaps I need to add the IP address of this phone to the sip.conf file? Please let me know. Thanks. Nick
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
Andy, you can always open a public Dropbox or Google folder and post the link. el On 29/12/2023 22:37, Andy wrote: > Thanks - I'll have a look at these options too. > > I'm happy to send over a sample document, but wasn't aware if > attachments are allowed. The documents come Lexis+, so require user > credentials to log in, but I could upload the file somewhere if
2016 May 12
2
maximum call time
Dear Dovid, thx for the input. for timer in sip.conf, I used default setting. This is some of the result for "sip show settings" RTP Keepalive: 0 (Disabled) RTP Timeout: 0 (Disabled) RTP Hold Timeout: 0 (Disabled) Session Timers: Accept Session Refresher: uas Session Expires: 1800 secs Session Min-SE: 90 secs Timer
2015 Jul 22
2
Cisco 7940 and PJSIP registration
I?ve gotten to the bottom of this; Seems that the pjsip.endpoint_custom.conf isn?t getting included properly, or my syntax is wrong. If I put force_rport=no into pjsip.endpoint.conf and reload only Asterisk, everything works perfectly. Unfortunately, I?m using FreePBX, so it owns this file and my changes won?t persist a FreePBX reload. Brendan Ord OntheNet - Network Engineer P 07 5553 9222 F
2010 Sep 28
2
NAT issue (i think?)
Hi All. got this problem that IP phones could not re-register to my server. even if device is power cycled it still would not register. the solution i found was to change the SIP port settings on the phone and it will register. but after registration expires and its time to re-register the same thing will happen, so i have to update the port settings again just to make it work which is
2013 Oct 25
1
Intern at Barron's ! -- use statistics for investigative financial journalism
We're seeking interns for the summer of 2014 here at Barron's the Dow Jones newsweekly that's searched out good investments and financial frauds since 1921, when our founder exposed Charles Ponzi. We're at the center of the financial world in New York and can pay a bit of a stipend to cover the city's high living costs. Here's the blurb: Do some good. Intern at
2023 Mar 07
1
insert hyperlink into svg graphic
This was actually the first thing that ChatGPT debugged for me. The issue was that I was able to click on the link when I displayed the raw SVG in the browser (you can use that to test whether the syntax is even correct), but not when the svg displays inside a html page with the <img ...> tag. ChatGPT correctly identified the issue and suggested a solution using <object ...> tags
2007 Nov 09
4
Wanted: tutorial on troubleshooting SIP issues
For someone that's network-aware, but hasn't sat down and plowed through umpteen SIP-related RFC's and memorized the standards, is there a good primer on troubleshooting SIP issues? I'm seeing a lot of NOTIFY/603 messages on my network between Asterisk and my Sipura 942's, for instance... Not sure what these are... perhaps the qualify keepalives? In which case, I guess
2024 Apr 15
2
Synthetic Control Method
Good Morning I want to perform a synthetic control method with R. For this purpose, I created the following code: # Re-load packages library(Synth) library(readxl) # Pfadeinstellung Excel-Blatt excel_file_path <- ("C:\\Users\\xxxxx\\Desktop\\DATA_INVESTMENTVOLUMEN_FOR_R_WITHOUT_NA.xlsx") # Load the Excel file INVESTMENTVOLUME <- read_excel(excel_file_path) #
2007 Sep 06
7
SIP Debugging to separate log file
Hello, I'm working with our SIP provider to nail down some call quality issues we're having, and they've asked me to provide SIP debug log files from our asterisk server. Is there a way to make asterisk 1.4 output only SIP debugging to a specific log file? Or it is best just to use tcpdump? Thank you! -- Jason Martin Metrix Matrix, Inc. 785 Elmgrove Road, Building 1, Rochester, NY