[go-nuts] [ANN] sako: a Wallabag-compatible read-it-later application

2024-07-31 Thread 'Sebastien Binet' via golang-nuts
hi there, I've just tagged v0.3.0 of sako[1], a Wallabag[2]-compatible read-it-later application. I was getting tired of using the shared Wallabag instance from one of the CHATONS[3], which was getting slow (especially on the weekends), and I didn't want to self-host a big PHP stack. So I've i

[go-nuts] Help with reloading data on the HTML page

2024-07-31 Thread Wellington Arantes
Hello, First of all, I load the page HTML to search for information, and this page HTML has one input text and one button, when I type and click on the button, I search for information on DB, and with data try to reload the page with, but it's not happening. How do I reload that same page wit

[go-nuts] Re: photoslibrary/v1 no longer available

2024-07-31 Thread peterGo
Pratik Tamgole Changes https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md v0.4.0 Deletes photoslibrary/v1. The photoslibrary team hopes to fully support Go in the near future, but this autogenerated library is ready to be sunset. If you rely on this client, please vendor t

[go-nuts] Re: photoslibrary/v1 no longer available

2024-07-31 Thread peterGo
Pratik Tamgole Changes https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md v0.4.0 Deletes photoslibrary/v1. The photoslibrary team hopes to fully support Go in the near future, but this autogenerated library is ready to be sunset. If you rely on this client, please vendor t

[go-nuts] Re: photoslibrary/v1 no longer available

2024-07-31 Thread James Hawkins
Hi Pratik, Is this what you looking for? https://pkg.go.dev/google.golang.org/api/photoslibrary/v1 v0.3.2 Apr 8, 2019 v0.3.1 Apr 8, 2019 v0.3.1-alpha Apr 8, 2019 v0.3.0 Mar 26, 2019 v0.2.0 Mar 13, 2019 v0.1.0 Jan 2, 2019 Not sure where you getting the v0.189.0 version from that may be the sym

[go-nuts] Re: photoslibrary/v1 no longer available

2024-07-31 Thread peterGo
Pratik Tamgole, Changes https://groups.google.com/g/golang-nuts/c/e7LnsRmTWrg v0.4.0 Deletes photoslibrary/v1. The photoslibrary team hopes to fully support Go in the near future, but this autogenerated library is ready to be sunset. If you rely on this client, please vendor this library at v0

[go-nuts] photoslibrary/v1 no longer available

2024-07-31 Thread Pratik Tamgole
Hi, I'm trying to use the Go library photoslibrary/v1 but getting an error message saying: *"google.golang.org/api/photoslibrary/v1: module google.golang.org/api@latest found (v0.189.0), but does not contain package google.golang.org/api/photoslibrary/v1"* And it seems they have removed it f

[go-nuts] Re: help with basic tutorial

2024-07-31 Thread Excel Ojo (Dude)
hello, if you are new to Golang, you can learn with Test with Golang and all check out Effective Golang . The later will really help you with understanding functions and all On Wednesday, July 31, 2024 at 1:28:35 PM

[go-nuts] help with basic tutorial

2024-07-31 Thread Cesar Marinho
any good tutorial in some fundamentals? I am having some difficulties with including go files and use functions between them. thanks! -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from i

[go-nuts] Re: What is the time complexity of math.Pow function?

2024-07-31 Thread 3613_PRANAB NANDI
can you please explain the logic or give a reference to the logic On Friday, May 17, 2019 at 11:16:50 AM UTC+5:30 navnee...@globallogic.com wrote: > Yes > because we use divide and conquer method to solve recursively the problem > and get the solution in O(log(n)) times where n is the powe

[go-nuts] Re: Optimization Question: Convert Array to Slice without Allocation

2024-07-31 Thread 'Brian Candler' via golang-nuts
On Tuesday 30 July 2024 at 21:54:32 UTC+1 William Gilmore wrote: func DCT2DFast8(in []float64) (out [64]) {...} - Optimized static code, 0 allocations when called directly. See following benchmark. I am guessing return should be something like *out [64]float64* ? Ideally, I would like for