Bitcoin Forum
August 21, 2024, 08:48:12 PM *
News: All versions of Windows are affected by a critical security bug; make sure you update.
 
   Home   Help Search Login Register More  
Pages: « 1 ... 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 [107] 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 »
  Print  
Author Topic: [SSD] Sonic - 1st TOR with functional anon send - Steganography based Anon App  (Read 284863 times)
zeerobje
Sr. Member
****
Offline Offline

Activity: 326
Merit: 250


SHPING Presale:22-31 JAN / Crowdsale:22 FEB-23 MAR


View Profile
May 01, 2015, 10:48:53 PM
 #2121

I don't no what to say our dev is looking what here is happening his answer is....

So, the difference you ask. It's more a matter of convenience than anything else. First off, think about how much is required to get firefox to run over tor. You can either download a tor client, setup your proxy point your browser to it and then you can use it. Someone with Sonic will be able to browse securely without having to download or configure anything extra.

Nothing about his work ore some explanation of all Questions, Must this give trust? Pff i work 10hours a day and still have time for a hobby ore reading Bitcoin Forum and answers. I support this coin from day one and our dev no that i ask nothing difficult Support your creation love it! (You make a great Coin).

Make mistakes and learn from it no problem but give once in the month a good explanation! 

So tell us whats your goal this year and what we can expect from you..

Gr Zeero
Bavaria
Hero Member
*****
Offline Offline

Activity: 1032
Merit: 502



View Profile
May 02, 2015, 04:52:56 PM
 #2122

I won't lie to you guys.  The Dev pretty much ignores me, too.  I have to beg XST's coin dev Hondo to contact him and beg him to say even one sentence to me every now and then.  After I was asked to become ssd's spokesperson at meetings, I was not even given the time of day to be told when meetings were.

From what I gather SSD's coin dev says he has, at most, 30 minutes a day to work on this because of his work schedule IRL.  Frankly that's not enough to make this work.  In a full month effort at that pace is 15 hours of effort - one day of work for a full time coder.

If SSD will prevail in the future I do not know, but for now, I do not think this is a good coin to invest in until the dev becomes more transparent with his work or willing to interact with the community and those that support him.

He may still deliver what he's promised so far, but I sure as hell have no idea what he plans for the future, and I don't think anyone else does.

When the dev puts only 30 minutes per day in the coin, this coin does not have good future at all.
pseudonymdude
Legendary
*
Offline Offline

Activity: 896
Merit: 1000


View Profile
May 02, 2015, 07:29:32 PM
 #2123

I won't lie to you guys.  The Dev pretty much ignores me, too.  I have to beg XST's coin dev Hondo to contact him and beg him to say even one sentence to me every now and then.  After I was asked to become ssd's spokesperson at meetings, I was not even given the time of day to be told when meetings were.

From what I gather SSD's coin dev says he has, at most, 30 minutes a day to work on this because of his work schedule IRL.  Frankly that's not enough to make this work.  In a full month effort at that pace is 15 hours of effort - one day of work for a full time coder.

If SSD will prevail in the future I do not know, but for now, I do not think this is a good coin to invest in until the dev becomes more transparent with his work or willing to interact with the community and those that support him.

He may still deliver what he's promised so far, but I sure as hell have no idea what he plans for the future, and I don't think anyone else does.

When the dev puts only 30 minutes per day in the coin, this coin does not have good future at all.

Depends on the progress

virgojeep
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
May 02, 2015, 11:41:43 PM
 #2124

I won't lie to you guys.  The Dev pretty much ignores me, too.  I have to beg XST's coin dev Hondo to contact him and beg him to say even one sentence to me every now and then.  After I was asked to become ssd's spokesperson at meetings, I was not even given the time of day to be told when meetings were.

From what I gather SSD's coin dev says he has, at most, 30 minutes a day to work on this because of his work schedule IRL.  Frankly that's not enough to make this work.  In a full month effort at that pace is 15 hours of effort - one day of work for a full time coder.

If SSD will prevail in the future I do not know, but for now, I do not think this is a good coin to invest in until the dev becomes more transparent with his work or willing to interact with the community and those that support him.

He may still deliver what he's promised so far, but I sure as hell have no idea what he plans for the future, and I don't think anyone else does.

When the dev puts only 30 minutes per day in the coin, this coin does not have good future at all.

Depends on the progress
At the moment it feels like the progress is a mystery.When I first started following this coin in the fall of last year it was like we were on the fast track in terms of development and arg made regular updates and chimed in here a good bit. Ever since the move to slack, which I think may have to do more with development privacy and quiet for the sake of concentration, its been very quiet here. Only within the past few days has things picked back up and I think its because people do have high hopes for this coin and technology and they want to see it get its day in the sun to the point of begging the dev for updates about the development progress. I too would love to know more about this Segmentation fault. Something in the tor browser must be trying to access memory without permission.
virgojeep
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
May 02, 2015, 11:46:58 PM
 #2125

Maybe this would help. Something i found on da interwebz.

Segmentation fault is a specific kind of error caused by accessing memory that “does not belong to you.” It’s a helper mechanism that keeps you from corrupting the memory and introducing hard-to-debug memory bugs. Whenever you get a segfault you know you are doing something wrong with memory – accessing variable that has already been freed, writing to a read-only portion of the memory, etc. Segmentation fault is essentially the same in most languages that let you mess with the memory management, there is no principial difference between segfaults in C and C++.

There are many ways to get a segfault, at least in the lower-level languages such as C(++). A common way to get a segfault is to dereference a null pointer:

int *p = NULL;
*p = 1;
Another segfault happens when you try to write to a portion of memory that was marked as read-only:

char *str = "Foo"; // Compiler marks the constant string as read-only
*str = 'b'; // Which means this is illegal and results in a segfault
Dangling pointer points to a thing that does not exist any more, like here:

char *p = NULL;
{
    char c;
    p = &c;
}
// Now p is dangling
The pointer p dangles because it points to character variable c that ceased to exist after the block ended. And when you try to dereference dangling pointer (like *p='A'), you would probably get a segfault.
virgojeep
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
May 02, 2015, 11:53:21 PM
 #2126

or dis...Segmentation fault is also caused by hardware failures, in this case the RAM memory. This is the less common cause, but if you don't find an error in your code, maybe a memtest could help you.

The solution in this case, change the RAM.
pseudonymdude
Legendary
*
Offline Offline

Activity: 896
Merit: 1000


View Profile
May 03, 2015, 12:06:10 AM
 #2127

Non-programmers won't be able to help Argakiig.  The answer won't be in a tutorial book for beginners.

We just have to wait for the release.

virgojeep
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
May 03, 2015, 03:41:42 AM
 #2128

Neither post was from a beginners guide. FYI. It was the highest rated responses on a forum for programmers trying to figure out how to solve a seg fault. Seems pretty straight forward to me.
zeerobje
Sr. Member
****
Offline Offline

Activity: 326
Merit: 250


SHPING Presale:22-31 JAN / Crowdsale:22 FEB-23 MAR


View Profile
May 03, 2015, 08:33:53 PM
Last edit: May 07, 2015, 07:42:18 AM by zeerobje
 #2129

Neither post was from a beginners guide. FYI. It was the highest rated responses on a forum for programmers trying to figure out how to solve a seg fault. Seems pretty straight forward to me.

Segmentation faults can be nasty and difficult to track down how bigger your program how more difficult it can be...All programs start in int main Memory leaks to Return 0....

So it can take a lot of time to find out..On this level We not speak about var int char string ore "" ,'' so easy is it not.

Basic start Coin You can get it on Github you can clone and modified it by your self! So the difficult is up to the person who want to make a coin Don.t forget SSD has Tor Stenography hard to find out!



Gr Zeero
ed_teech
Hero Member
*****
Offline Offline

Activity: 508
Merit: 500


Jahaha


View Profile
May 04, 2015, 09:30:27 PM
 #2130

Why are you quoting the cryptonote starter ?
virgojeep
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
May 06, 2015, 02:33:20 AM
 #2131

I was gonna say something too but why feed. Apparently they think the information I shared would not help Arg.
zeerobje
Sr. Member
****
Offline Offline

Activity: 326
Merit: 250


SHPING Presale:22-31 JAN / Crowdsale:22 FEB-23 MAR


View Profile
May 06, 2015, 08:38:08 AM
 #2132

I was gonna say something too but why feed. Apparently they think the information I shared would not help Arg.

It is great you give support i only say this is on a very high level not basic c++...I am not here to break the community because we all very importent for this coin!

Gr Zeero
virgojeep
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
May 07, 2015, 05:50:43 PM
 #2133

Hope we can be fully released before the Dow Jones bubble pops. Cause you know people will want to buy crypto as a safe haven from the drop.
virgojeep
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
May 08, 2015, 02:27:04 AM
 #2134

https://i.imgur.com/ibyyUHP.png
crazywack
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
May 09, 2015, 11:05:43 PM
 #2135

Let's  get this party started, someone just filled a few of my low buys!

virgojeep
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
May 09, 2015, 11:12:24 PM
 #2136

So your the reason the price dropped....
crazywack
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
May 09, 2015, 11:21:21 PM
 #2137

No, I only put up a 500k buy wall someone is dumping into

adhitthana
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000



View Profile
May 10, 2015, 05:14:22 AM
 #2138

Is Sonic still part of the Blocknet project?
crazywack
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
May 10, 2015, 06:17:49 AM
 #2139

Is Sonic still part of the Blocknet project?

Yes

nrg_wolf
Legendary
*
Offline Offline

Activity: 882
Merit: 1000



View Profile
May 10, 2015, 07:57:43 AM
 #2140

SSD is at risk of being delisted of rex again... :-/
Pages: « 1 ... 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 [107] 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!