Re: [go-nuts] Re: best working and maintaned golang oauth2 server package

2017-01-17 Thread Vasiliy Tolstov
Thanks for link.does this library good for my use-case?
Also does it possible to have server without static assets?

17 Янв 2017 г. 18:55 пользователь "Brandon Philips" 
написал:

Hey Simon-

Any reason you aren't using Dex? https://github.com/coreos/dex

Brandon


On Wed, Jan 11, 2017, 12:08 PM Simon Ritchie 
wrote:

> I've just started work on an OAUTH server too.  So far I've built the
> "simple" example of the RangelReale project.  It takes a user name and
> password and produces a token, so it seems to do pretty much all the things
> that you need.  It also gives a reference to the OAUTH RFC.  If you haven't
> done this stuff before, that will be very useful.
>
> I can't see any examples in the go-auth2 project, which is why I'm using
> the RangelReale stuff.  However, I haven't even figured out yet how to
> build it properly.
>
> Simon
>
> --
> 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-nuts+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
-- 
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-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] ANN: A HTTP backed File System (FUSE)

2016-12-05 Thread Vasiliy Tolstov
2016-11-30 11:37 GMT+03:00  <prolo...@shortcircuit.net.au>:
> Hey all, First time poster here so go easy on me :)
>
> Just sharing httpfs: https://github.com/prologic/httpfs
> (Naming is hard!)
>
> This is basically a HTTP backed FileSystem using FUSE via the wonderful
> bazil.org/fuse library.
>
> Why? Scratching my own itch to present remote storage on my home NAS as a
> regular folder for family.
> Also pan on extending and working more on this to build this out into a
> docker volume driver.
>
> Critique and feedback welcome as well as testers and contributions!


This is very useful, but does it possible to specify multiple url for
the same object? For example i have two servers with identical content
and want to serve it via fs. If one server is down all works from
other.. Also suitable for load balancing...

-- 
Vasiliy Tolstov,
e-mail: v.tols...@selfip.ru

-- 
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-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] get scancode of character

2016-11-24 Thread Vasiliy Tolstov
I need to pass to qemu monitor key number to simulate keypress.
If i use utf8 package and decode characters (runes) from string i get
for example for char c code 99, but for qemu i need char number 46.
Does somebody already create package that get scancodes for chars (as
i understand ascii codes) this is very helpful, or maybe somebody
knows how to convert?

-- 
Vasiliy Tolstov,
e-mail: v.tols...@selfip.ru

-- 
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-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


<    1   2