[go-nuts] Desktop printing

2018-09-28 Thread Ged Wed
Does anyone know of any golang packages for printing on desktop ? I am producing a pdf and need to send it to the users printer on windows and Mac OS. Thanks -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and s

[go-nuts] Windows 10 desktop packaging

2018-05-09 Thread Ged Wed
To be clear. My intention is to make a CLI tool and put it on GitHub to make this be easy oeady for everyone It's nuts that this does not exist for all gophers -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and

[go-nuts] Windows 10 desktop packaging

2018-05-09 Thread Ged Wed
Am going nuts trying to work out how to package a windows installer for windows10 and sign it. Microsoft are turning windows 10 basic version into a locked down system and so you need to make applications using their new appx format. Does anyone have ANY tips on doing this ? My app is a webvi

[go-nuts] Re: Flutter and golang

2018-04-23 Thread Ged Wed
It's because your compiling to the wrong ISA. If it's an emulator then you need to gomobile bind to x86. -- 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 it, send an email to golang-n

[go-nuts] Re: Flutter and golang

2018-04-23 Thread Ged Wed
I used to build only web based up. But you hit so many corner cases. With flutter you get pixel perfect control as deep as you need. To me you get much higher quality UI from flutter. And you don't have a untyped web runtime designed 20 years ago to deal with. My harsh 2 cents I admit... But real

[go-nuts] Re: flutter' app crash met with gomobile package .aar

2018-03-24 Thread Ged Wed
do you have a git repo we can look at. I have done this before with flutter and golang. On Wednesday, 21 March 2018 13:37:11 UTC+1, jlp hu wrote: > > flutter' app crash met with gomobile package .aar > >1. > >I follow the guidence https://flutter.io/platform-channels/ ... It >w

[go-nuts] Re: Flutter and golang

2018-03-19 Thread Ged Wed
It's a horses for courses situation Matt. I can live with Material design everywhere with a customised there so I emget the same branded corporate look everywhere. I gave up matching the native OS. It's futile and just way too much work. Don't kill me but it's really down to your philosophy in

[go-nuts] Re: Flutter and golang

2018-03-11 Thread Ged Wed
This is the repo the flutter team are doing the flutter desktop. https://github.com/google/flutter-desktop-embedding It's the same code as runs on mobile essentially except they have an embedding API designed into flutter to allow it to be embedded onto desktop. I am not 100% sure because it's

Re: [go-nuts] Flutter and golang

2018-03-10 Thread Ged Wed
utter with golang for iOS and Android. I intend to extend it for all Desktops too. https://github.com/gedw99/ci On Sat, Mar 10, 2018, 10:16 PM Justin Israel wrote: > > > On Sun, Mar 11, 2018, 9:28 AM Ged Wed wrote: > >> I am starting to develop an app using flutter and golan

[go-nuts] Flutter and golang

2018-03-10 Thread Ged Wed
https://github.com/flutter/flutter/issues/14231 It looks like it's doable and there is a bug to fix so that flutter can bind directly to flutter without having to go via a Java or Objective-c layer. -- You received this message because you are subscribed to the Google Groups "golang-nuts" grou

[go-nuts] Flutter and golang

2018-03-10 Thread Ged Wed
http://www.1500wordmtu.com/2018/bradfitz-if-we-could-make-flutter-work-with-gomobile-id Just adding here for reference. -- 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 it, send an ema

[go-nuts] Flutter and golang

2018-03-10 Thread Ged Wed
I am starting to develop an app using flutter and golang. Flutter is the dumb GUI and everything else is written in golang. It is reasonably easy to compile your golang code using gomobile and then bind to flutter using the Method Channel API that flutter provides. Is anyone interested in this

[go-nuts] Is there anyone using gomobile in production ?

2018-03-10 Thread Ged Wed
Some large logging and metrics companies provide gomobile based packages. The packages are used by other making gomobile systems https://logpacker.com/blog/gomobile-library-development-for-ios-and-android https://github.com/logpacker/mobile-sdk Admittedly it's rather old now. Boltdb works on

[go-nuts] nerf

2017-12-06 Thread Ged Wed
google are replacing coreboot and crappy intel esxi and the extra Intel IME / AMD PSP SO quick boot up and full control. this is huge and its using golang ! Its called NERF https://www.coreboot.org/images/6/66/Denver_2017_coreboot_u-root.pdf - Everything described here https://www.youtube.co

[go-nuts] Mermaid parser

2017-10-21 Thread Ged Wed
Mermaid is a markdown format for expressing workflow diagrams like sequence diagram etc. You can then render it as svg. Is there anything similar written in golang ? I want to use it for documentation but also for allowing users to visualise and edit workflows running on top of nats. It's also

[go-nuts] new ndk and gomobile

2017-09-12 Thread Ged Wed
i just noticed this: https://android-developers.googleblog.com/2017/09/introducing-android-native-development.html The latest version of the NDK is less unorthodox. Wondering what impact this might have on gomobile for Android, if anyone has some insight on this. -- You received this message b

Re: [go-nuts] Shiny

2017-07-16 Thread Ged Wed
have a look here: https://docs.google.com/document/d/1mXev7TyEnvM4t33lnqoji-x7EqGByzh4RpE4OqEZck4/edit# -- 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 it, send an email to golang-nu

[go-nuts] Re: Delve v1.0.0-rc.1 release

2017-05-12 Thread Ged Wed
Derek, can the RR be used with golang on AMD64 and ARM ? If so this is pretty huge ged On Monday, 8 May 2017 20:42:43 UTC+2, Derek Parker wrote: > > Hey all, > > Just wanted to make some noise about the latest Delve > release, v1.0.0-rc.1 >

[go-nuts] gomobile: communicated between apps on Android and IOS

2017-04-01 Thread Ged Wed
Hello nuztiens ! So i have gomobile apps, but they share some data that is common. How best to get them to share data between each other. For example say there is a list of users. Al the apps need that list when one app changes a user it issues a mutation "userchanged" on a quasi messagw queue

[go-nuts] Native activity on android / ios

2016-10-16 Thread Ged Wed
I am using gomobile. It's very compelling. I want to use the NativeActivity to write a daemon / service in 100℅ golang. I need to expose a http2 service with it. The problem : opengl style gomobile apps are possible, but can't work out how to use NativeAxtivity to expose a http service. Anyone

Re: [go-nuts] ARM Cortex-R52 real time chip announced today

2016-09-21 Thread Ged Wed
Thanks for the response. That's an amazing testament to Yolanda design. I guess it's just a matter of a board coming out with it on now and then having a crack at it On Wed, 21 Sep 2016, 19:54 Ian Lance Taylor, wrote: > On Wed, Sep 21, 2016 at 7:16 AM, Ged Wed wrote: >

[go-nuts] ARM Cortex-R52 real time chip announced today

2016-09-21 Thread Ged Wed
hey all, Today ARM announced a new real time chip for cars. http://www.anandtech.com/show/10690/arm-announces-the-cortexr52-cpu-deterministic-safe-for-adas-more https://github.com/golang/go/wiki/GoArm I am curious how hard it would be for golang to target this ?? Not that i would be anytime so

[go-nuts] Re: [golang-dev] Gomobile and future interoperability

2016-09-14 Thread Ged Wed
Thanks for the clarification! On Wed, 14 Sep 2016 at 17:07 David Crawshaw wrote: > Typically yes, a program compiled with the NDK keeps working on newer > versions of Android. I'm sure there are exceptions but none come to > mind. > > On Wed, Sep 14, 2016 at 10:0

[go-nuts] Re: [golang-dev] Gomobile and future interoperability

2016-09-14 Thread Ged Wed
JNI. If you run on a modified version of Android, > your program may not work. (But given the kinds of modifications > usually made by people shipping Android devices, it probably will > work.) > > On Wed, Sep 14, 2016 at 8:33 AM, Ged Wed wrote: > > I am working on govern