Displaying 8 results from an estimated 8 matches for "gox".
Did you mean:
go
2016 Feb 24
5
Bitcoin for CentOS 7
On 02/24/2016 06:04 AM, m.roth at 5-cent.us wrote:
> Alice Wonder wrote:
>> For those interested I have a working spec file for Bitcoin 0.12.0
>>
>> https://github.com/AliceWonderMiscreations/bitcoin/blob/master/contrib/rpm/bitcoin.spec
>>
>> I believe the only BuildRequires that isn't in CentOS/EPEL is
>> miniupnpc-devel but that's trivial to build
2016 Feb 24
0
Bitcoin for CentOS 7
...>> Thanks, but unless I need to generate some to pay ransomware, say, for a
>> hospital, I think I'll pass.
>>
>
> Yeah, because other currencies and paypal etc. are never used for
> criminal activities, I see your highly logical point.
No, I was thinking more of Mt. Gox, etc.
mark
>
> _______________________________________________
> CentOS mailing list
> CentOS at centos.org
> https://lists.centos.org/mailman/listinfo/centos
>
2020 Mar 17
0
[PATCH libnbd] Add outline framework for Go language bindings (golang).
...figure to check that golang works
+ * and is above the minimum required version.
+ */
+
+package main
+
+func main() {
+ /* XXX Check for minimum runtime.Version() >= "go1.1.1"
+ * Unfortunately go version numbers are not easy to parse.
+ * They have the 3 formats "goX.Y.Z", "release.rN" or
+ * "weekly.YYYY-MM-DD". The latter two formats are mostly
+ * useless, and the first one is hard to parse. See also
+ * cmpGoVersion in
+ * http://web.archive.org/web/20130402235148/http://golang.org/src/cmd/go/get.go...
2020 Mar 17
5
[PATCH libnbd v2 0/3] Unfinished golang bindings.
These bindings get as far as running very simple connections.
However there are many missing parts still:
* No callbacks.
* No functions which handle buffers (pread/pwrite!)
This is posted just for general early interest, not even for review.
Rich.
2020 Mar 17
0
[PATCH libnbd v2 2/3] Add outline framework for Go language bindings (golang).
...figure to check that golang works
+ * and is above the minimum required version.
+ */
+
+package main
+
+func main() {
+ /* XXX Check for minimum runtime.Version() >= "go1.1.1"
+ * Unfortunately go version numbers are not easy to parse.
+ * They have the 3 formats "goX.Y.Z", "release.rN" or
+ * "weekly.YYYY-MM-DD". The latter two formats are mostly
+ * useless, and the first one is hard to parse. See also
+ * cmpGoVersion in
+ * http://web.archive.org/web/20130402235148/http://golang.org/src/cmd/go/get.go...
2015 Jun 26
0
Wine release 1.7.46
...a blank page
15564 BlogJet: typing text and account signup don't work
16196 Back and Forward buttons in Google Sketchup's 3D Warehouse do nothing
16885 Yahoo Messenger 8/9 menu invisible, 'X' box hotspot in wrong place
19648 Lotus Organizer 97 - No text on tabs
19695 Gox Box window loses focus when list box is expanded
20927 MYOB version 6 crashes when printing
22085 Roller Coaster Tycoon can't change the screen resolution
23148 Lotus Freelance Graphics 2.1 reports a C runtime error and exits
24823 Miranda IM crashes with a modern contact list plugi...
2020 Mar 24
1
[PATCH libnbd v3] Add Go language bindings (golang) (RHBZ#1814538).
This feature is roughly finished now, although it needs a few more
tests and some examples.
It's pretty much up to par with all the other bindings, but it lacks a
completely safe AIO buffer. It won't stop you from freeing the buffer
too early) because golang's GC inexplicably lacks a way to declare a
root from C. I can probably do it with a global variable and ref
counting on the
2020 Mar 25
3
[PATCH libnbd v4] Add Go language bindings (golang) (RHBZ#1814538).
Now runs a complete set of tests, notably including the AIO test.
File descriptors are passed in and out as plain ints (instead of
*os.File) for a couple of reasons: (1) We have to pass the plain int
to syscall.Select. (2) Turning an fd into an os.File causes golang to
set the blocking flag which is deeply unhelpful.
Rich.