Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - 3dtr

Pages: [1]
1
MemoryCoin / Hashes of 'memorycoin.zip'
« on: February 03, 2014, 07:50:11 am »
Still no hashes of the client avaiable?

I have downloaded 'memorycoin.zip' and get this hashes:

sha256: 73b5fff921c75f781d3b7d191ae6cda1d986e99ff5a7ab5de95caaa4ae0700b1
sha1: 628070f9c5d36827d73f21b062c802674a9edcdb
md5: 3dd4048ad05e0f5406d5886eb6836377

scan results:
https://www.virustotal.com/en/file/73b5fff921c75f781d3b7d191ae6cda1d986e99ff5a7ab5de95caaa4ae0700b1/analysis/
http://virusscan.jotti.org/en/scanresult/4b7ad76e7e9b7b26ceb011d5c29154ae899e5c6c

Virustotal hits:
Quote
Symantec    WS.Reputation.1    20140129
TrendMicro-HouseCall    TROJ_GEN.F47V0111    20140129


Why does the developer not make this info public???

2
MemoryCoin / Blocks found, but not accepted :(
« on: December 18, 2013, 08:57:12 am »
I find tree blocks over the night. But seems to be that no one will be accepted  :'(

Info:
Code: [Select]
Status: 0/unconfirmed
Date: 17.12.2013 21:17
Source: Generated
Credit: (not accepted)
Net amount: 0.00 MMC
Transaction ID: c43b0ed33e7212fe285cf9a3a2e810a99baa29da4f2b951a5f7a839ecca34fb6

Code: [Select]
Status: 0/unconfirmed
Date: 18.12.2013 00:05
Source: Generated
Credit: (not accepted)
Net amount: 0.00 MMC
Transaction ID: 5fcd8b5426712c688b4c3d674bb64008b6a289480a289dc94bb5f500af7eb19c

Code: [Select]
Status: 0/unconfirmed
Date: 18.12.2013 03:38
Source: Generated
Credit: (not accepted)
Net amount: 0.00 MMC
Transaction ID: f3f172c49e4f9abb9afc4a5e9af8e1ea6785b895ede2bc0b95bd2bfb4f336f1c

Nothing to see in chain browser: http://www.chainbrowser.com/memorycoin/address/MP9PTKWYbDkMbAaoLgJnp6tmEj6qAh9tXr/  :-[

3
MemoryCoin / [SECURITY] Hashes of the downloadable client archives???
« on: December 18, 2013, 08:49:58 am »
Seems that this is oversight on bitcointalk:
Where can i find the hashes of the client download???

I get for 'memorycoin.zip' this:

sha256: fbd1553a2babe9755c79bc33177a15fe8c92f7972f373e51ca54b9f8604de965
sha1: af10bcdfce8e80887ea29bcb6c0e77beed4f36d2
md5: 68c37aa751148bd1a78e55ca441cf02f

Why does mostly developer doesn't protect the users?

For a secure cryptcoin it must be always publish the hashes of downloads!!!

4
Deutsch (German) / beeeeer.org vs. PTSPool
« on: November 28, 2013, 03:38:41 pm »
Ich bin vom "PTSPool" http://54.238.185.113 zu http://ptsweb.beeeeer.org gewechselt und gleichzeitig den miner gewechselt.

Nun sehe ich aber das es deutlich weniger Erträge gibt.

Laut http://coinplorer.com/Charts/Difficulty/PTS ist dei Diff zwar hochgegangen, aber irgendwie habe ich das Gefühl, das beeeeer.org einfach viel weniger Ausspuckt.

Wie sind eure Erfahrungen?

5
Deutsch (German) / Batch dateien für ptsminer / PTSPool
« on: November 08, 2013, 03:51:25 pm »
Here is my batch for stating ptsminer:

Meine Windows Batch Datei hier nochmal in deutsch:


You can also change the line call:select_limit with this e.g.:
Code: [Select]
set proclimit=1
if "%USERDOMAIN%"=="Fat_FooBar_Machine" (
    set proclimit=3
)
if "%USERDOMAIN%"=="med_FooBar_Machine" (
    set proclimit=2
    set exe=ptsminer_x32.exe
)
if "%USERDOMAIN%"=="FooBar" (
    call:select_limit
)


Code: [Select]
@echo off

REM mit niedriger Prozess Priorität starten
if "%1"=="" (
    start /LOW cmd.exe /V /C %~s0 gogogo
    goto:eof
)

set exe=ptsminer_x64.exe

REM *********************************************
REM Anzahl der Prozesse festlegen:
REM Feste Angabe:
set proclimit=1

REM oder immer beim Start wählen:
call:select_limit

REM ...oder pro Rechnernamen Werte setzten:
if "%USERDOMAIN%"=="Fat_FooBar_Machine" (
    set proclimit=3
)
if "%USERDOMAIN%"=="med_FooBar_Machine" (
    set proclimit=2
    set exe=ptsminer_x32.exe
)
if "%USERDOMAIN%"=="FooBar" (
    call:select_limit
)

REM Hier deine Adresse eintragen:
set parameter=%parameter% -pooluser=PpwbYJisZ8ga7jdDnKTHSEiQAwQEH8Qtbg

REM *********************************************

set parameter=%parameter% -poolpassword=0
set parameter=%parameter% -poolip=54.238.185.113
set parameter=%parameter% -poolport=2336
set parameter=%parameter% -genproclimit=%proclimit%

echo %exe%
echo ----------------------------------------------------------------------
echo %parameter%
echo ----------------------------------------------------------------------
echo pause...
ping -n 3 localhost >NUL


:start
    title %exe% %parameter%
    echo on
    %exe% %parameter%
    @echo off
    echo pause...
    ping -n 10 localhost >NUL
goto start

:select_limit
    echo.
    echo Hinweis: Pro Prozess wird ca. 0.75GB RAM belegt
    set /p proclimit_choice=proc limit [1,2,3,4...x] ?
    if not defined proclimit_choice (
        echo benutzte Standard limit: %proclimit%
    ) else (
        set proclimit=%proclimit_choice%
        echo setzte process limit auf %proclimit_choice%
    )
goto:eof

Zwischen den Sternchenlinie kann man dann individuell das Einstellen, was man will...

Wem es gefällt: Spende mir ein Bier: PpwbYJisZ8ga7jdDnKTHSEiQAwQEH8Qtbg



6
Deutsch (German) / Was ist besonders an ProtoShares ?
« on: November 07, 2013, 12:53:42 pm »
Wenn ich das richtig gelesen habe, geht es darum das der Algorithmus nur auf CPU läuft und so gestaltet ist, das GPU/FGPA/ASIC nicht funktionieren werden bzw. ineffektiv sind... richtig?

Bei https://bitcointalk.org/index.php?topic=325261.0 steht das:

POW Hash: Momentum (2^26 / 2^50) with SHA512 Generation

Also im Grunde doch SHA512, oder nicht? Das ganze Stützt sich darauf das pro Instanz ca. 1GB RAM benötigt wird. Doch Grafikarten gibt es schon mit mehreren GB an RAM...

Doch bitcoin nutzt SHA-256... Doch eigentlich sollte doch auch SHA-512 ähnlich wie SHA-256 auf GPU/FGPA/ASIC laufen...

Pages: [1]