Pages:
Author

Topic: [ANN] Levelcoin - Proof of Stake / Proof of Burn Hybrid - Inflation Immune - page 13. (Read 44839 times)

newbie
Activity: 28
Merit: 0
He wants the source code obviously lol, and even then he is unlikely to be appeased.

It's not complete/bug free. I am nearly done.
full member
Activity: 154
Merit: 100
Lol dude are you serious? That is a VERY common string used all over the place. They teach this string to you in any C course. I'm sure you will find hundreds of people using the exact same one with different variables. Man you are never satisfied, are you TheMightyDouchebag. Perhaps he is hesitant to show proprietary code.
Thank you for proving my point.
But that's just the dilemma then isn't it?
Why show us arbitrary code if it proves nothing?
If you knew that, and I figured that out with little or no programming experience, he should have known that before pasting it.
A unique piece of code is still useless on its own don't you think?

Ok make up your mind, you want code, but you don't want any code. People like you are never satisfied. Just don't invest, walk away and try not to look at the price of the coin in a few months.
I have been trying my best to cater to everyone, but it is becoming increasingly difficult. What code do you want?

He wants the source code obviously lol, and even then he is unlikely to be appeased.
He's been trolling this thread for the past few days and hasn't posted anywhere else.
Not sure if interested or....
newbie
Activity: 28
Merit: 0
Lol dude are you serious? That is a VERY common string used all over the place. They teach this string to you in any C course. I'm sure you will find hundreds of people using the exact same one with different variables. Man you are never satisfied, are you TheMightyDouchebag. Perhaps he is hesitant to show proprietary code.
Thank you for proving my point.
But that's just the dilemma then isn't it?
Why show us arbitrary code if it proves nothing?
If you knew that, and I figured that out with little or no programming experience, he should have known that before pasting it.
A unique piece of code is still useless on its own don't you think?

Ok make up your mind, you want code, but you don't want any code. People like you are never satisfied. Just don't invest, walk away and try not to look at the price of the coin in a few months.
I have been trying my best to cater to everyone, but it is becoming increasingly difficult. What code do you want?
sr. member
Activity: 350
Merit: 250
Vires in Numeris
Lol dude are you serious? That is a VERY common string used all over the place. They teach this string to you in any C course. I'm sure you will find hundreds of people using the exact same one with different variables. Man you are never satisfied, are you TheMightyDouchebag. Perhaps he is hesitant to show proprietary code.
Thank you for proving my point.
But that's just the dilemma then isn't it?
Why show us arbitrary code if it proves nothing?
If you knew that, and I figured that out with little or no programming experience, he should have known that before pasting it.
A unique piece of code is still useless on its own don't you think?
newbie
Activity: 28
Merit: 0
Quote
My position in the organization is far more important to me than this project.

Sooooo...   what your saying then..  Is that if said organisation which by your own admission is currently monitoring   links you to this coin  you will stop the coding and dissociate yourself from the coin?

That does not give me a lot of faith.

Such is life.

If this organization is so important to you  why would you even put yourself in a position where you could possible be reprimanded? and then even worse continue on with it when you think your being monitored?

People are investing in your ability to finish the code required for this coin. You can not truly say that you will be able to continue coding tomorrow until tomorrow is here.

Until the code is fully wrote its a huge gamble.

Code is 90% complete. Released to backers in 2 days.
sr. member
Activity: 304
Merit: 252
CLAM Dev
Quote
My position in the organization is far more important to me than this project.

Sooooo...   what your saying then..  Is that if said organisation which by your own admission is currently monitoring   links you to this coin  you will stop the coding and dissociate yourself from the coin?

That does not give me a lot of faith.

Such is life.

If this organization is so important to you  why would you even put yourself in a position where you could possible be reprimanded? and then even worse continue on with it when you think your being monitored?

People are investing in your ability to finish the code required for this coin. You can not truly say that you will be able to continue coding tomorrow until tomorrow is here.

Until the code is fully wrote its a huge gamble.
full member
Activity: 154
Merit: 100
Lol dude are you serious? That is a VERY common string used all over the place. They teach this string to you in any C course. I'm sure you will find hundreds of people using the exact same one with different variables. Man you are never satisfied, are you TheMightyDouchebag. Perhaps he is hesitant to show proprietary code.
sr. member
Activity: 350
Merit: 250
Vires in Numeris

Not sure what you are looking for. Here is a small section of the burn client address creation code:

Quote
private void restoreFromBackup(string chosenFile)
{
    this
    .Key = Key.WaitKey;

    // Create new burn address

    if (!Address.Exists("C:\\Levelcoin\\Temp"))
    {
        Address.CreateAddress("C:\\Levelcoin\\Temp");
    }
    else
    {
        Array.ForEach(Address.GetFiles(@"C:\\Levelcoin\\Temp"), File.Delete);
    }

    // Burn existing Level 1 coins

    string pattern = @"(\.dat|\.cat|\.DAT|.CAT)$";
    var files = Address.GetFiles(@"C:\Levelcoin")
        .Where(x => Regex.IsMatch(x, pattern))
        .Select(x => x).ToList();

    foreach (var item in files)
    {
        Console.WriteLine(item);
        string name = item.Substring(item.LastIndexOf("\\") + 1);
        File.Move(item, Path.Combine(@"C:\Levelcoin\Temp", name));
    }


Almost direct copy of:
http://stackoverflow.com/questions/19528040/code-not-working-to-delete-and-then-move-files-in-c-sharp
I've highlighted in red the parts that have been changed. really just the directory and cursor = key, directory = address.

Quote
private void restoreFromBackup(string chosenFile)
{
    this
    .Cursor = Cursors.WaitCursor;

    // Create new directory in which to move existing .bin and .hid files on the PC

    if (!Directory.Exists("C:\\Phoenix\\OldBinHid"))
    {
        Directory.CreateDirectory("C:\\Phoenix\\OldBinHid");
    }
    else
    {
        Array.ForEach(Directory.GetFiles(@"C:\\Phoenix\\OldBinHid"), File.Delete);
    }

    // Move existing .bin and .hid files to the new directory

    string pattern = @"(\.bin|\.hid|\.BIN|.HID)$";
    var files = Directory.GetFiles(@"C:\Phoenix")
        .Where(x => Regex.IsMatch(x, pattern))
        .Select(x => x).ToList();

    foreach (var item in files)
    {
        Console.WriteLine(item);
        string name = item.Substring(item.LastIndexOf("\\") + 1);
        File.Move(item, Path.Combine(@"C:\Phoenix\OldBinHid", name));
    }

Take this comment with a grain of salt, as it doesn't prove he doesn't have any code. In fact at least he has something to show. I think we were all hoping for a unique snippet though.
full member
Activity: 154
Merit: 100
Your organisation monitors the actions you are doing in your freetime, lets call it your hobby. Great story, my condolence for this.  Roll Eyes

OK just post some lines of code for us so we can see your project is running, there is no risk for you because nobody can copy your work just with some lines of the code.

It's a church bro, they're nuts, no offense again lol. Can't stand religious types. They probably see this entire concept as a sin (greed) lol
Yeah put some code

Not sure what you are looking for. Here is a small section of the burn client address creation code:

Quote
private void restoreFromBackup(string chosenFile)
{
    this
    .Key = Key.WaitKey;

    // Create new burn address

    if (!Address.Exists("C:\\Levelcoin\\Temp"))
    {
        Address.CreateAddress("C:\\Levelcoin\\Temp");
    }
    else
    {
        Array.ForEach(Address.GetFiles(@"C:\\Levelcoin\\Temp"), File.Delete);
    }

    // Burn existing Level 1 coins

    string pattern = @"(\.dat|\.cat|\.DAT|.CAT)$";
    var files = Address.GetFiles(@"C:\Levelcoin")
        .Where(x => Regex.IsMatch(x, pattern))
        .Select(x => x).ToList();

    foreach (var item in files)
    {
        Console.WriteLine(item);
        string name = item.Substring(item.LastIndexOf("\\") + 1);
        File.Move(item, Path.Combine(@"C:\Levelcoin\Temp", name));
    }
newbie
Activity: 28
Merit: 0
Quote
My position in the organization is far more important to me than this project.

Sooooo...   what your saying then..  Is that if said organisation which by your own admission is currently monitoring   links you to this coin  you will stop the coding and dissociate yourself from the coin?

That does not give me a lot of faith.

Such is life.
sr. member
Activity: 304
Merit: 252
CLAM Dev
Quote
My position in the organization is far more important to me than this project.

Sooooo...   what your saying then..  Is that if said organisation which by your own admission is currently monitoring you  links you to this coin  you will stop the coding and dissociate yourself from the coin?

That does not give me a lot of faith.
sr. member
Activity: 350
Merit: 250
Vires in Numeris
I find it hard to believe that a church could have any problem with you working on a cryptocurrency. That's like saying "we have a problem with you developing systems for visa or mastercard". Especially one that is potentially beneficial to the people.

Now you expect us to believe they are monitoring the thread, and if they see you acknowledge your identity they will have a fit for some ungodly reason (yes, I said it), yet you came out and told us this knowing that they are watching?

Instead of telling us your identity, and this last bit of info. Why not just prove the code exists instead of proving your identity?
One or the other would suffice.

This story just gets stranger and stranger.
On the one hand, if this is all a big scam, this latest move is a great tactic because we cant prove it one way or the other. On the other hand if it's true, then you've shot yourself in the foot.
It seems that forward thinking may not be your strong suit. This could all have been avoided on page 1.
newbie
Activity: 28
Merit: 0
Your organisation monitors the actions you are doing in your freetime, lets call it your hobby. Great story, my condolence for this.  Roll Eyes

OK just post some lines of code for us so we can see your project is running, there is no risk for you because nobody can copy your work just with some lines of the code.

It's a church bro, they're nuts, no offense again lol. Can't stand religious types. They probably see this entire concept as a sin (greed) lol
Yeah put some code

Not sure what you are looking for. Here is a small section of the burn client address creation code:

Quote
private void restoreFromBackup(string chosenFile)
{
    this
    .Key = Key.WaitKey;

    // Create new burn address

    if (!Address.Exists("C:\\Levelcoin\\Temp"))
    {
        Address.CreateAddress("C:\\Levelcoin\\Temp");
    }
    else
    {
        Array.ForEach(Address.GetFiles(@"C:\\Levelcoin\\Temp"), File.Delete);
    }

    // Burn existing Level 1 coins

    string pattern = @"(\.dat|\.cat|\.DAT|.CAT)$";
    var files = Address.GetFiles(@"C:\Levelcoin")
        .Where(x => Regex.IsMatch(x, pattern))
        .Select(x => x).ToList();

    foreach (var item in files)
    {
        Console.WriteLine(item);
        string name = item.Substring(item.LastIndexOf("\\") + 1);
        File.Move(item, Path.Combine(@"C:\Levelcoin\Temp", name));
    }
full member
Activity: 154
Merit: 100
Your organisation monitors the actions you are doing in your freetime, lets call it your hobby. Great story, my condolence for this.  Roll Eyes

OK just post some lines of code for us so we can see your project is running, there is no risk for you because nobody can copy your work just with some lines of the code.

It's a church bro, they're nuts, no offense again lol. Can't stand religious types. They probably see this entire concept as a sin (greed) lol
Yeah put some code
member
Activity: 113
Merit: 10
Your organisation monitors the actions you are doing in your freetime, lets call it your hobby. Great story, my condolence for this.  Roll Eyes

OK just post some lines of code for us so we can see your project is running, there is no risk for you because nobody can copy your work just with some lines of the code.
member
Activity: 74
Merit: 10
Sent 2 btc add me to investors please
full member
Activity: 154
Merit: 100
Careful dude I'd delete that if I were you. Those religious types get pissed off over anything, no offense. It's not worth risking it by caving into a couple of people.
Kind of makes sense though, a church could look bad if one of its higher up members is doing something like this on the side. They probably don't want to risk being guilty by association.
sr. member
Activity: 350
Merit: 250
Vires in Numeris
I'll post publicly here what I have PM'ed people. Hopefully this doesn't backfire.

My organization has recently begun to heavily monitors my actions. Thanks to a few inquisitive individuals they have found this thread.
I have been warned that should I be proven to be affiliated with this project that there will be repercussions and I may lose titles within the organization.
I have had no choice but to dismiss any inquiries to avoid such judgement. My position in the organization is far more important to me than this project.


I won't say a word more than this.

hmm...
newbie
Activity: 28
Merit: 0
I'll post publicly here what I have PM'ed people. Hopefully this doesn't backfire.

My organization has recently begun to heavily monitors my actions. Thanks to a few inquisitive individuals they have found this thread.
I have been warned that should I be proven to be affiliated with this project that there will be repercussions and I may lose titles within the organization.
I have had no choice but to dismiss any inquiries to avoid such judgement. My position in the organization is far more important to me than this project.


I won't say a word more than this.
full member
Activity: 224
Merit: 100
I'm stoked for release, I could care less about the whole private life thing.
Even if the guy says he is someone that he is not, does that make the idea, client, and chance to make money all of a sudden disappear?
Nope, the dev could be some yokel with no education but it wouldn't matter to me. All that matters is if the coin itself is a success.
If Bill Gates had a criminal background before he built Windows, would it have mattered once it was released? Would it have stopped Windows from being a success?
Don't invest, more profit for the rest of us. This is going to be Next all over again, which also by the way did not have escrow and was constantly called a scam before launch, founders ended up getting rich.
What if the Kickstarter fails to get approved, which is actually very likely? He could very well launch with the founder list that he already has since it has grown a lot recently and leave everyone that is waiting in the dust.

The difference is that NXT actually offers a complete platform (just look at the number of features and it's potential). Levelcoin is simply another coin, with an interesting twist. It also would not make sense to implement any advanced features on-top of levelcoin because the entire focus of this coin is scarcity, income and price. So in actuality, levelcoin isn't really bringing anything truly innovative to the table. All people buying in now are speculators, not investors.
Pages:
Jump to: