pub get failed (1; So, because infixedu depends on stripe_sdk ^2.8.2, version solving failed.) - flutter-dependencies

enter image description here
I can't find the right versions for some packages , every time i fix one of it, Errors shows up from others please help

Related

Not able to get tensorflow-go

Im trying to make api for my ML model but Im not able to install the go package for this.
Im getting this error:
go get github.com/tensorflow/tensorflow/tensorflow/go
package github.com/tensorflow/tensorflow/tensorflow/go/core/core_protos_go_proto: cannot find package "github.com/tensorflow/tensorflow/tensorflow/go/core/core_protos_go_proto" in any of:
/usr/lib/go-1.10/src/github.com/tensorflow/tensorflow/tensorflow/go/core/core_protos_go_proto (from $GOROOT)
/home/user/go/src/github.com/tensorflow/tensorflow/tensorflow/go/core/core_protos_go_proto (from $GOPATH)
So, can u help me?
That's a well-known issue that isn't going to be fixed (it seems).
So I decided to maintain a fork that fixes the problem https://github.com/galeone/tensorflow
go get github.com/galeone/tensorflow/tensorflow/go#r2.4-go
You can also use tfgo that depends on the fork and it allows a simplified usage of the Go bindings:
go get github.com/galeone/tfgo

Can I edit plugin in flutter?

The problem I face is getting error in flutter plugin, and I have no solution. So I decide to edit some code in plugin, Am I right or wrong for that solution?
Any idea please ?
Thanks.
The answer is Yes.
Yes, you can fork that repo, edit the code according to your requirements.
And then, you have two options
1) Raise the Pull Request and wait till it gets merged or
2) Directly use your updated plugin code
Here is the reference link which will help you to use the updated plugin code as a dependancy.
Yes, definitely you can modify plugin as you want unless and until you can not solve errors without changing it.
I also once change rating plugin to get desire ui in my code.

Selenium IDE issue on Mozilla firefox: table view is not available with this format

I am trying to work with the Selenium IDE on Mozilla Firefox (version 55.0.3).
The issue is that for some reason I cannot see any action I perform on the browser (such as waitForTitle, verify title etc.). They should be displayed in the Selenium IDE I have installed as a developer tool (in the table).
Also, when trying to click on something in the IDE, I get the following error message:
There was an unexpected error. Msg: TypeError: window.editor.infoPanel is undefined Url: chrome://selenium-ide/content/selenium-ide.xul, line: 1, column: 1 onclick#chrome://selenium-ide/content/selenium-ide.xul:1:1
Most likely, this is related to why I cannot see any action in the table.
This problem really bugs me, because I Googled the exact error message and was unable to find a proper solving-system to deal with it. I mention that my clipboard format is already set to HTML.
All suggestions are welcome, and thank you in advance for taking the time to read this.
The Selenium IDE is no more supported and it may be a issue with latest firefox version. If you really want to use it then go back to a older version of firefox

Prestashop Technical Error: Details: Error Thrown: [Object Object] Text Status: Parsererror

I am getting this error when trying to add weight ranges to shipping carriers that I have. It mostly seems to happen at random and I have been able to complete some of the carriers but others will cause the error every time. The console reports the following: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
Is there a solution for this? I couldn't find anything online about it.
I have v. 1.6.1.4
Thank you!
You have to use firefox developper and when you get the "Parseerror"
using the developper tools you go to network and select your last query.
On the right you have a window with all the options of the query : cookies parameters... select response.
You should see the response of the parse error.
For me it was just a parameter of the form that could not be empty.
Putting a random word made everything work fine.
The same thing happened to me when adding weight ranges.
The annoying thing is i had to restore a backup of the tables ps_range_weight and ps_carrier.. as for every single instance of
"Prestashop Technical Error: Details: Error Thrown: [Object Object] Text Status: Parsererror" it made a new entry and i ended up with over 700 weight ranges.
Anyways, i restored to the last fucntioning versions of ps_range_weight and ps_carrier (needed doing) and disabled the standard paypal plugin from prestashop. After that it worked fine.
.
Hope this helps someone.
I have found a solution for this on Prestashop 1.7
This happened to me as well when I changed the theme, however, I checked the Database and found that the carrier ID in ps_range_weight has randomly changed!
Solution
Fix the carrier ID in the database to the correct one and this error should not be appearing again! Good luck
ps_range_weight

Get last successfull build on Hudson

I was wondering if anyone know of a way or a plug in to get the last build version with result of success from a particular Hudson job using the CLI somehow.
I can see this result is held in the [DateTime]\build.xml file so I could write something to grab the result but was wondering if anyone has done this already or a know of a way to use the CLI to grab this information?
I have tried to find the information on the documentation but was unable to find the answer. If you need anymore detail then let me know.
I'm a bit late to the party here, but you can also just use the URL http://localhost:8081/job/jobname/lastSuccessfulBuild to get the last successful build. If you want to extract specific data from that page you can use http://localhost:8081/job/jobname/lastSuccessfulBuild//api
You can do it with XPATH:
http://localhost:8081/api/xml?depth=2&xpath=/hudson/job/name[text()="JReport2"]/../build/result[text()="SUCCESS"]/../../build[1]/number/text()
In the above example I'm getting the last successful build number of the build named JReport2. You can query your Hudson server via WGET or CURL sending it an HTTP GET that is equivalent to that URI.
The XPath expression can be shortened, but in the long form it is easier to understand what's going on.
In general, it is instructive to enter http://<hudson-server>/api/xml in your browser and examine the output.
Correct xpath is as:
...&xpath=/hudson/job/name[text()="...name of project..."]/../build/result[text()='SUCCESS']/../number/text()
but it is not work.
Working xpath is as:
http://HudsonServer:Port/job/..nameOfProject../lastSuccessfulBuild/api/xml?xpath=//number/text()
As described above:
...&xpath=/hudson/job/name[text()="JReport2"]/../build/result[text()="SUCCESS"]/../../build[1]/number/text()
it is not correct xpath because /../../build[1]/number/text() always gives the first build.