Bitcoin Forum
May 29, 2024, 09:22:26 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 [7] 8 »
121  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: October 09, 2014, 02:11:29 PM

Mind to send me a couple? mine's 0.05 Cheesy Cheesy Cheesy Cheesy
122  Alternate cryptocurrencies / Pools (Altcoins) / Re: [XMR] Monero mining pool xmr.unipool.pro fee 0.5% on: September 27, 2014, 08:13:52 PM
Any open sourced / linux version?
123  Alternate cryptocurrencies / Mining (Altcoins) / Re: NeoScrypt: The Future of CPU and GPU Mining on: September 09, 2014, 03:58:25 PM
GPU miner is working.
Need more testing and tweaking still.

Where can I download GPU miner?

It's still in beta and is actively been tweak daily at the moment, so not quiet ready to be released, but soon.

Can I help beta testing? I'm a software developer, tons of xp on c/c++ and i have been looking through opencl a little bit.
124  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - new unified multi-algorithm on-the-fly kernel switching miner on: September 01, 2014, 06:18:09 PM
I have been messing around trying to mine yacoin using kernel ckolivas or zuikkis with nfactor 15 but no luck, the shares are rejected as low difficulty share, anybody with any suggestion as where to start? 790 gives me around 1kh so it's being similar to yacminer on the speed, however i would like to get more from it.

Best regards!
125  Alternate cryptocurrencies / Mining (Altcoins) / Re: Unfinished CryptoNight OpenCL (AMD) miner on: August 30, 2014, 02:34:12 PM
Code:
gcc -std=gnu99 -ggdb -g3 -maes    -lOpenCL  -o minerd minerd-cpu-miner.o minerd-util.o minerd-cryptonight_common.o minerd-cryptonight_opencl.o crypto/minerd-c_keccak.o crypto/minerd-c_groestl.o crypto/minerd-c_blake256.o crypto/minerd-c_jh.o crypto/minerd-c_skein.o crypto/minerd-hash.o crypto/minerd-aesb.o -L/usr/lib/x86_64-linux-gnu -lcurl compat/jansson/libjansson.a -lpthread  -lcrypto 
minerd-cryptonight_opencl.o: In function `do_gpu':
/root/mining/opencl-cryptonight/cryptonight_opencl.c:34: undefined reference to `clGetPlatformIDs'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:42: undefined reference to `clGetDeviceIDs'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:54: undefined reference to `clCreateContext'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:62: undefined reference to `clCreateCommandQueue'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:63: undefined reference to `clCreateProgramWithSource'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:71: undefined reference to `clBuildProgram'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:76: undefined reference to `clGetProgramBuildInfo'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:82: undefined reference to `clCreateKernel'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:84: undefined reference to `clCreateBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:85: undefined reference to `clCreateBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:86: undefined reference to `clCreateBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:90: undefined reference to `clEnqueueWriteBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:98: undefined reference to `clSetKernelArg'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:99: undefined reference to `clSetKernelArg'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:100: undefined reference to `clSetKernelArg'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:104: undefined reference to `clEnqueueNDRangeKernel'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:112: undefined reference to `clFlush'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:113: undefined reference to `clFinish'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:115: undefined reference to `clEnqueueReadBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:123: undefined reference to `clFlush'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:124: undefined reference to `clFinish'

I only have .so's of libOpenCL, what am i missing?. I copied the CL dir from /opt/AMDAPP/include

Best regards!


Made it compile, it was that -lOpenCL should go after the object file being compiled (order matters)
Corrected some ulong* casts in the opencl file but it does not run yet, or at least is not reporting what is doing, gotta dig inside a little more to understand how the opencl code is called and it's results returned so i can debug it.
126  Alternate cryptocurrencies / Mining (Altcoins) / Re: Unfinished CryptoNight OpenCL (AMD) miner on: August 30, 2014, 12:04:36 PM
Code:
gcc -std=gnu99 -ggdb -g3 -maes    -lOpenCL  -o minerd minerd-cpu-miner.o minerd-util.o minerd-cryptonight_common.o minerd-cryptonight_opencl.o crypto/minerd-c_keccak.o crypto/minerd-c_groestl.o crypto/minerd-c_blake256.o crypto/minerd-c_jh.o crypto/minerd-c_skein.o crypto/minerd-hash.o crypto/minerd-aesb.o -L/usr/lib/x86_64-linux-gnu -lcurl compat/jansson/libjansson.a -lpthread  -lcrypto 
minerd-cryptonight_opencl.o: In function `do_gpu':
/root/mining/opencl-cryptonight/cryptonight_opencl.c:34: undefined reference to `clGetPlatformIDs'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:42: undefined reference to `clGetDeviceIDs'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:54: undefined reference to `clCreateContext'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:62: undefined reference to `clCreateCommandQueue'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:63: undefined reference to `clCreateProgramWithSource'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:71: undefined reference to `clBuildProgram'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:76: undefined reference to `clGetProgramBuildInfo'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:82: undefined reference to `clCreateKernel'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:84: undefined reference to `clCreateBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:85: undefined reference to `clCreateBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:86: undefined reference to `clCreateBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:90: undefined reference to `clEnqueueWriteBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:98: undefined reference to `clSetKernelArg'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:99: undefined reference to `clSetKernelArg'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:100: undefined reference to `clSetKernelArg'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:104: undefined reference to `clEnqueueNDRangeKernel'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:112: undefined reference to `clFlush'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:113: undefined reference to `clFinish'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:115: undefined reference to `clEnqueueReadBuffer'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:123: undefined reference to `clFlush'
/root/mining/opencl-cryptonight/cryptonight_opencl.c:124: undefined reference to `clFinish'

I only have .so's of libOpenCL, what am i missing?. I copied the CL dir from /opt/AMDAPP/include

Best regards!
127  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: August 19, 2014, 05:05:39 PM
Pointed my miners to get cloak in coinking

If anyone wants to join Smiley -> http://coinking.io/?r=19994

Let's test how does it go!
128  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][FVZ] FVZCOIN FAST RARE X11 POW on: August 15, 2014, 03:23:30 PM
Anybody who can provide a block source where to start? i can set up some base nodes later if we can bring the network together again and the coin seems to work well so far except for the problem of the original block source not being available any more.
129  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: August 14, 2014, 09:50:34 PM
I think that the value of a coin comes from the possibility of buying things with that coin, right now you have to convert cloak to bitcoin to buy something in general terms, the same happens with every other alt, so i think that cloak's value won't get up again by natural means until that doors opens widely...
130  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TheoremCoin | LAUNCHED | X11 | POW/POS | Stealth Address | theoremcoin.com on: August 13, 2014, 10:49:12 PM
Spanish translation, hand crafted:

https://bitcointalk.org/index.php?topic=737865

Address for bounty: TE2cCrLq9keU1CY6iKUSjEWuJUCNzaQsy4

Keep going! Smiley

One more thing, if I have the psd's for the images i could translate them also.

131  Local / Altcoins (criptomonedas alternativas) / [ANN] TheoremCoin | LANZADA | X11 | POW/POS | Stealth Address | theoremcoin.com on: August 13, 2014, 10:47:40 PM



¡ESTAMOS ARRIBA!


TheoremCoin - "THEO"
Algo - X11
POW/POS
60 Segundos por bloque
20% de interés anual / Mínimo - 1 Hour / Max - Sin límite
3% Preminado = 171,900 - 1% "57,300" Para recompensas - 2% "114,600" Para desarrollo
Dirección del preminado: TW8jAxEDqHSnTXkCx21EpDRyAQagaujX6D

Bloques 2-99: 0 monedas "Lanzamiento equitativo"
Bloques 100-1440: 1000 monedas "Día 1"
Bloques 1441-2880: 750 monedas "Día 2"
Bloques 2881-4320: 500 monedas "Día 3"
Bloques 4321-5760: 750 monedas "Día 4"
Bloques 5761-7200: 1000 monedas "Día 5"

RPC PORT: 32669
No se necesitan "addnodes",  ¡Tenemos nodos sólidos y confiables en el código!

La billetera qt tiene un rediceño completo.






El equipo de desarrollo de Theorem está compuesto por 4 personas. Estamos entregando una nueva y sexy billetera qt con las últimas tecnologías empaquetadas en una sola billetera.
Distinto a otros desarrollos, estamos lanzando con stealth addresses, chat encryptado, explorador de bloques, estadísticas de la moneda y de la red.
Otras tecnologías serán agregadas en un futuro próximo, pero realizaremos votaciones en la comunidad para decidir cuales serán.
Nuestro objetivo con Theorem es implementar nuevas ideas y lograr resultados.
¡Únetenos en la aventura de descubrir lo que es posible!


Descarga de la billetera Windows

Descargar la billetera MAC

Descargar la billetera Linux

Fuentes en Github










En breve


   


Dirección de preminado: TW8jAxEDqHSnTXkCx21EpDRyAQagaujX6D

Q:  ed_teech preguntó:  ¿ Que tiene de nuevo esta moneda ? ¿ Shitcoin ?
A:  Shit coin, no. Nuestro objetivo con Theorem es brindarle a la comunidad una crypto divisa con un paquete de tecnologías innovadoras.
No vamos a detenernos ahí, y seguiremos trabajando arduamente ofreciéndoles lo mejor.

Q:  Delibash preguntó: ¿Se retrasó el lanzamiento?
A: Reprogramamos el lanzamiento para resolver problemas con los servidores en nuestra localización que presentaron complicaciones.
Nuestro objetivo es proveer un lanzamiento sin dificultades.

Q:  stregz22ru preguntó:  Dev --¿Cuales son los planes de promoción?
A:  Nuestros planes inmediatos son tener nuestra autenticidad verificada.
No podemos revelar todos los secretos ahora, de otra forma no quedaría nada para promocionar.

Q:  stregz22ru preguntó:  ¿En que se diferencia de otras monedas?
A:  Theorem se lanza con varias de las tecnologías favoritas de la industria desde el comienzo.
Nuevas y excitantes tecnologías serán añadidas en las semanas por venir.

Q:  Bfljosh preguntó:  ¿3% de preminado?
A:  3% para desarrollo es en realidad demasiado bajo. ¿Cuanto es el costo real en dólares por año en desarrollo de software?
Sentimos que es un porcentaje muy adecuado y que lo que apoyen Theorem se van a beneficiar mucho de ella.
Le preguntamos a Bfljosh: ¿No tomó tu compañía pre-órdenes para financiar desarrollos?

Q:  Bfljosh preguntó:  ¿cuenta Newbie del dev?
A:  Por supuesto, ¿donde empieza uno en bitcointalk? Esta es una cuenta newbie pero con desarrolladores reales detrás.

Q:  Bfljosh preguntó:  ¿tópico automoderado?
A:  Sí, queremos proteger nuestra inversión y a los que apoyen a Theorem de las mentiras, fraudes y FUD.

Q:  Bathrobehero preguntó:  ¿Ṗorqué x11?
A:  Para ser honestos, pusimos todos los algoritmos en un sombrero, lo sacudimos y agarramos uno al azar.



En breve


Block Explorer

Traducciones
132  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: August 12, 2014, 03:14:59 PM
I think making the anonymous technology closed source has not been a good move, i wouldn't trust a closed source currency...
133  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: August 12, 2014, 01:46:48 PM
Every alt is coming down and down, wonder what's happening...
134  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: August 11, 2014, 01:12:55 PM

Looking at it, we should be in the 'told you so' point.... he... i pray for it to recover, please... Cheesy
135  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: August 11, 2014, 12:13:38 PM

Can't see, i'm blind, i'm bliiiind!!
136  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: August 10, 2014, 10:21:37 PM
isn't it a little bit low 0.001?  Huh
137  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLOAK] Cloakcoin | No Premine | X13 | Decentralized Market and PoSA on: August 09, 2014, 07:42:51 PM
Pump is coming...
This tweet show us, cloak anon better than other anon systems
Guys don't sell low coins

Whoa!!! Cheesy
138  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]ETHAN - NIST5 - Roadmap - Cloud wallet -Ethansend - Webcam feat. 68M coins! on: August 09, 2014, 07:29:25 PM
Retweeted
139  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]ETHAN - NIST5 - Roadmap - Cloud wallet -Ethansend - Webcam feat. 68M coins! on: August 08, 2014, 05:30:10 PM
Megadump in ccex and not any new posts from dev... i think it's over Sad
it is not megadump, and pow is not over yet.
I hope  Huh...
140  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]ETHAN - NIST5 - Roadmap - Cloud wallet -Ethansend - Webcam feat. 68M coins! on: August 08, 2014, 03:00:04 PM
Megadump in ccex and not any new posts from dev... i think it's over Sad
Pages: « 1 2 3 4 5 6 [7] 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!