2019-02-07 05:58:16
                        
                            
                            
                    
Open beta of the Snowblossom Android app is pending publish now.
                    
                Fireduck
                        
                        2019-02-07 05:58:23
                        
                            
                            
                    
Just waiting on Google Play store magic.
                    
                Fireduck
                        
                        2019-02-07 15:01:57
                        
                            
                            
                    
The Android app is great! Just finished testing it
                    
                mjay
                        
                        2019-02-07 15:02:53
                        
                            
                            
                    
A small hint that generating a new wallet takes longer might be helpful. It took over one minute on my old device
                    
                mjay
                        
                        2019-02-07 15:04:06
                        
                            
                            
                    
If I have a typo in my address it just shows "Failed. Could not complete transaction". An error like address checksum failed would help in this case
                    
                mjay
                        
                        2019-02-07 19:52:18
                        
                            
                            
                    
trying to build a simple Snowblossom website that works well on mobile devices
                    
                Tilian
                        
                        2019-02-07 19:52:23
                        
                            
                            
                    
turns out that I really hate CSS
                    
                Tilian
                        
                        2019-02-07 19:56:53
                        
                            
                            
                    
Don't we all
                    
                Fireduck
                        
                        2019-02-07 19:59:54
                        
                            
                            
                    
hypertext was a mistake; bring back gopher
                    
                Tilian
                        
                        2019-02-07 20:17:31
                        
                            
                            
                    
https://cluelessperson.com/snowblossom2/ Snowblossom Cryptocurrency
                    
                Clueless
                        
                        2019-02-07 20:45:12
                        
                            
                            
                    
nice work, putting the .info site "live" soon?
                    
                Tilian
                        
                        2019-02-07 20:45:15
                        
                            
                            
                    
https://snow.tools/ this is what I came up with Snowblossom is a simple, scalable & portable cryptocurrency.
                    
                Tilian
                        
                        2019-02-07 20:45:26
                        
                            
                            
                    
need to update the site/node anyhow
                    
                Tilian
                        
                        2019-02-07 20:46:45
                        
                            
                            
                    
@Tilian I'm working on a number of things, but I'm not happy with my design skills yet
                    
                Clueless
                        
                        2019-02-07 20:47:24
                        
                            
                            
                    
I like how those two you linked look, but I also like the original website so that probably says more about me. :sweat:
                    
                Tilian
                        
                        2019-02-07 20:47:43
                        
                            
                            
                    
If there's any way I can help out let me know. Even though all I'm good at is stealing and adapting CSS.
                    
                Tilian
                        
                        2019-02-07 20:49:12
                        
                            
                            
                    
@Tilian I have a thing for flexbox in CSS
                    
                Clueless
                        
                        2019-02-07 20:52:24
                        
                            
                            
                    
flexbox is nice, I used milligram which is just flexbox + some basic button, list and text styles
                    
                Tilian
                        
                        2019-02-07 22:11:29
                        
                            
                            
                    
I'm thinking about making a fundraising/bounties page for specific tasks (e.g. gui wallet, certain services, whatever people want) where people could donate/claim bounties -- but I'm not sure what the best "trustless-ish" way to do that would be apart from some sort of m-of-n multisig scheme where there's still centralized trust.
                    
                Tilian
                        
                        2019-02-07 22:12:49
                        
                            
                            
                    
so the protocol supports multisig but the client tooling is not really there yete
                    
                Fireduck
                        
                        2019-02-07 22:15:19
                        
                            
                            
                    
ah, I was just digging through `snowblossom.proto`
                    
                Tilian
                        
                        2019-02-07 22:15:40
                        
                            
                            
                    
yeah, it works and the nodes and proto fully support it
                    
                Fireduck
                        
                        2019-02-07 22:16:13
                        
                            
                            
                    
there is a little bit of support in the jsonrpc sign api, which will read a tx and sign it with whatever keys the local wallet has that are still missing
                    
                Fireduck
                        
                        2019-02-07 22:16:31
                        
                            
                            
                    
a reasonable tool to generate multisig addresses is mostly what is missing
                    
                Fireduck
                        
                        2019-02-07 22:16:47
                        
                            
                            
                    
the jsonrpc also has a way to build an unsigned transaction to be signed later
                    
                Fireduck
                        
                        2019-02-07 22:17:13
                        
                            
                            
                    
oh so you can actually do it through the jsonrpc without manually crafting a tx already? neat.
                    
                Tilian
                        
                        2019-02-07 22:17:20
                        
                            
                            
                    
I'll play around with it for the sake of learning
                    
                Tilian
                        
                        2019-02-07 22:17:35
                        
                            
                            
                    
yeah
                    
                Fireduck
                        
                        2019-02-07 22:17:48
                        
                            
                            
                    
http://qtrade.io wanted that, which is a sensible feature for secure business integration
                    
                Fireduck
                        
                        2019-02-07 22:18:33
                        
                            
                            
                    
if using the jsonrpc is acceptable, the only real missing thing is a way to generate a multisig address giving a set of public keys
                    
                Fireduck
                        
                        2019-02-07 22:18:46
                        
                            
                            
                    
which wouldn't be hard
                    
                Fireduck
                        
                        2019-02-07 22:19:47
                        
                            
                            
                    
@Tilian you’d fork over for the university of minnesota patents?
                    
                Rotonen
                        
                        2019-02-07 22:25:12
                        
                            
                            
                    
matter of abusing `AddressSpec.Builder`?
                    
                Tilian
                        
                        2019-02-07 22:25:14
                        
                            
                            
                    
and ew, IP
                    
                Tilian
                        
                        2019-02-07 22:28:36
                        
                            
                            
                    
yeah, load up an AddressSpec and then AddressUtil.getHashForSpec()
                    
                Fireduck
                        
                        2019-02-07 22:28:45
                        
                            
                            
                    
well, that is why www is a thing
                    
                Rotonen
                        
                        2019-02-07 22:31:23
                        
                            
                            
                    
don't think I could fork over enough
                    
                Tilian
                        
                        2019-02-07 22:31:32
                        
                            
                            
                    
and thanks for the insight, fireduck
                    
                Tilian
                        
                        2019-02-07 22:32:10
                        
                            
                            
                    
and thus gopher remains dead
                    
                Rotonen
                        
                        2019-02-07 22:32:59
                        
                            
                            
                    
at least usenet lives...
                    
                Tilian
                        
                        2019-02-07 22:33:06
                        
                            
                            
                    
do not use the search on wikipedia and read it with lynx and you have about the same experience, though
                    
                Rotonen
                        
                        2019-02-07 22:33:44
                        
                            
                            
                    
usenet is just multipart attachments these days by data volume?
                    
                Rotonen
                        
                        2019-02-07 22:34:07
                        
                            
                            
                    
that's pretty spot on
                    
                Tilian
                        
                        2019-02-07 22:34:49
                        
                            
                            
                    
and I'm one of those silly modern elinks guys
                    
                Tilian
                        
                        2019-02-07 22:35:05
                        
                            
                            
                    
try dillo one of these days
                    
                Rotonen
                        
                        2019-02-07 22:35:10
                        
                            
                            
                    
mind blown
                    
                Rotonen