Bitcoin Forum
April 27, 2024, 03:01:04 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 ... 78 »
  Print  
Author Topic: [ANN] [SKC] Skeincoin 0.9.3.1 | Skein-SHA2  (Read 161507 times)
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 11, 2013, 05:59:28 PM
 #281

keep mining.
+1  Grin. But no, seriously stop mining GPUs you could make so much more w/ scrypt.
1714186864
Hero Member
*
Offline Offline

Posts: 1714186864

View Profile Personal Message (Offline)

Ignore
1714186864
Reply with quote  #2

1714186864
Report to moderator
TalkImg was created especially for hosting images on bitcointalk.org: try it next time you want to post an image
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Gunther
Legendary
*
Offline Offline

Activity: 840
Merit: 1000


View Profile
December 11, 2013, 08:42:57 PM
 #282

This coin has no future. Too bad. Why isn't the dev responding anymore?
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 11, 2013, 08:47:57 PM
 #283

Other people need to become the devs.
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 11, 2013, 11:14:08 PM
 #284

100 SKC Giveaway, 1 SKC per person: https://bitcointalk.org/index.php?topic=367744
ziegengert
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
December 12, 2013, 08:50:38 AM
 #285

So I tried the approach by reorder, but I still stuck with embedding the skeinmidhash-function in python:
 I found all the flakes needed for the lib that includes the skeinmidhash-function, I could compile the lib and I can access the function via python.
But I have no glue how to the access the output of the skeinhashmid function in python, like it has been defined in former posts by reorder.


So my question to you reorder is:

Can you give me/us please some more hinds how to embed your functions into python using your ctypes wrapper.

I think it would be very helpful for this coin to have a working  and easier accessible gpu implementation, because this would lift the interest for a broader spectrum of people.
surrealisttrader
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
December 12, 2013, 09:15:50 AM
 #286

hey if anyone wants to sell 20 k skc for 1.5 ltc contact me , i'll give you my btc-e name and we'll figure something out . get screw or whatever .
reorder
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
December 12, 2013, 09:50:41 AM
 #287

So I tried the approach by reorder, but I still stuck with embedding the skeinmidhash-function in python:
 I found all the flakes needed for the lib that includes the skeinmidhash-function, I could compile the lib and I can access the function via python.
But I have no glue how to the access the output of the skeinhashmid function in python, like it has been defined in former posts by reorder.


So my question to you reorder is:

Can you give me/us please some more hinds how to embed your functions into python using your ctypes wrapper.

I think it would be very helpful for this coin to have a working  and easier accessible gpu implementation, because this would lift the interest for a broader spectrum of people.

I am not sure what kind of glue do you mean, perhaps this piece?
Code:
import ctypes

_shlib = ctypes.CDLL('../skeinhash/skeinhash.so')

def skeinhashmid(msg):
    msgb = ctypes.create_string_buffer(msg[:64])
    hashb = ctypes.create_string_buffer(64)
    _shlib.skeinhashmid(hashb, msgb, 64)
    return hashb.raw

def skeinhash(msg):
    msgb = ctypes.create_string_buffer(msg)
    hashb = ctypes.create_string_buffer(32)
    _shlib.skeinhash(hashb, msgb, len(msg))
    return hashb.raw

Besides, if anyone has skill and time to clean up and release the miner, please PM, I will give it away. Things to clean up are: update licensing/copyright texts, remove dead code, reimplement ntime-rolling (currently disabled), replace skeinhash with pure python implementation.
Majormax
Legendary
*
Offline Offline

Activity: 2534
Merit: 1129


View Profile WWW
December 12, 2013, 11:16:57 AM
 #288

I am looking for 30k Skeincoin, will pay 5 LTC or 0.2 BTC . If you have smaller amounts please PM me.
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 12, 2013, 03:42:53 PM
Last edit: December 12, 2013, 03:57:52 PM by surfer43
 #289

It appears no one will sell below 0.0001 BTC per SKC for now.  Cool
Selling 1K SKC for 1 BTC.  Grin
Reorder: wait until I get a psu for my graphics card please  Cheesy
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 12, 2013, 04:10:45 PM
Last edit: December 12, 2013, 05:49:45 PM by surfer43
 #290

skc.coinmine.pl (and coinmine.pl) down  Shocked. Still mining to them at full speed  Huh
back on
ziegengert
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
December 12, 2013, 08:01:54 PM
 #291

So I tried the approach by reorder, but I still stuck with embedding the skeinmidhash-function in python:
 I found all the flakes needed for the lib that includes the skeinmidhash-function, I could compile the lib and I can access the function via python.
But I have no glue how to the access the output of the skeinhashmid function in python, like it has been defined in former posts by reorder.


So my question to you reorder is:

Can you give me/us please some more hinds how to embed your functions into python using your ctypes wrapper.

I think it would be very helpful for this coin to have a working  and easier accessible gpu implementation, because this would lift the interest for a broader spectrum of people.

I am not sure what kind of glue do you mean, perhaps this piece?
Code:
import ctypes

_shlib = ctypes.CDLL('../skeinhash/skeinhash.so')

def skeinhashmid(msg):
    msgb = ctypes.create_string_buffer(msg[:64])
    hashb = ctypes.create_string_buffer(64)
    _shlib.skeinhashmid(hashb, msgb, 64)
    return hashb.raw

def skeinhash(msg):
    msgb = ctypes.create_string_buffer(msg)
    hashb = ctypes.create_string_buffer(32)
    _shlib.skeinhash(hashb, msgb, len(msg))
    return hashb.raw

Besides, if anyone has skill and time to clean up and release the miner, please PM, I will give it away. Things to clean up are: update licensing/copyright texts, remove dead code, reimplement ntime-rolling (currently disabled), replace skeinhash with pure python implementation.

Yes, that's exactly what I was searching for, Thanks! ... A new piece in the puzzle Smiley ...
rapidfire187
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


!!!INCAKOIN!!!


View Profile
December 12, 2013, 08:02:04 PM
 #292

SPe6mmpw948tqoSvtg5hWpkdG73SdEaJp5
SKEIN:


this coin is fascinating Cheesy

www.incakoin.com   http://nka.dencoinpools.com
NKA:NN1sE6odEKrbKpBqt56vw5jJoitDrCn9HD
▂▃▅▇█▓▒░۩۞۩ ۩۞۩░▒▓█▇▅▃▂
ehmdjii
Sr. Member
****
Offline Offline

Activity: 351
Merit: 250


View Profile
December 12, 2013, 08:05:19 PM
 #293

does someone have a hashrate/difficulty chart of this coin?

BTC: 1LsD5HpnX1Kfyti7CnHiVB1rjUEXGqmR2H
LTC: LQbpdMZmYyJa9bJG6NweBNxkSTfgZorkrG
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 12, 2013, 08:26:19 PM
 #294

does someone have a hashrate/difficulty chart of this coin?
Opening 3 days: skyrocket to 15 diff. Then it dwindled down to 2-6, where it is now. In the last 6 hours, its gone from 4 to 5.2
yabit
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500



View Profile
December 12, 2013, 08:30:18 PM
 #295

The option

-datadir="my own directory"

does not work (has no effect). Plz fix it!!!!!
ehmdjii
Sr. Member
****
Offline Offline

Activity: 351
Merit: 250


View Profile
December 12, 2013, 08:43:57 PM
 #296

is solo mining on a CPU profitable right now?

BTC: 1LsD5HpnX1Kfyti7CnHiVB1rjUEXGqmR2H
LTC: LQbpdMZmYyJa9bJG6NweBNxkSTfgZorkrG
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 12, 2013, 08:51:11 PM
 #297

is solo mining on a CPU profitable right now?
About to ask that. It depends. I haven't found a block solo but I have been the block finder in a pool. I'm solo mining right now to try and get a block. I would recomend skc.coinmine.pl though unless you have a good cpu. A few people have GPUs working right now, and reorder is about to release a GPU miner. And SKC has no value right now because its not on exchanges...
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 12, 2013, 10:30:12 PM
 #298

At least 28,197 clients have synced past 11/10  Smiley
gielbier
Sr. Member
****
Offline Offline

Activity: 914
Merit: 250


Making Smart Money Work


View Profile
December 13, 2013, 10:58:56 AM
 #299

Who is the 100 MH/s dude on skc.poolmine.pl  Huh

1   anonymous   103.124   

Pool Hashrate: 408.805 MH/s
Diff. 8.24977245

█████▄
██▀   ▀██
██     ██
▀██▄ ▄██▀
▄████▄   ▀███▀   ▄████▄
▄██▀  ▀██▄▄████▄▄██▀  ▀██
██       ███   ███       ██
██▄  ▄██▀▀████▀▀██▄  ▄██▀
▀████▀   ▄███▄   ▀████▀
▄██▀ ▀██▄
██     ██
██▄   ▄██
▀█████
          ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄    ▄▄▄▄    ▄▄
Prasaga
                                                    ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄    ▄▄▄▄▄▄▄▄▄
████████████████▄
██████████████████▄
████████████████████▄
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
█████████████████████
WHITEPAPER     
►  TECH WP
►  COMMERCIAL WP
Red Kendra (OP)
Newbie
*
Offline Offline

Activity: 59
Merit: 0


View Profile
December 13, 2013, 06:09:58 PM
 #300

I am increasing the reward for the first open source GPU miner for SKC to:

512 SKC + 0.25 BTC
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 ... 78 »
  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!