Bitcoin Forum
April 24, 2024, 11:45:04 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 [169] 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 ... 313 »
  Print  
Author Topic: Whitelist Requests (Want out of here?)  (Read 474731 times)
Maged
Legendary
*
Offline Offline

Activity: 1204
Merit: 1015


View Profile
January 17, 2013, 08:02:56 PM
 #3361

KarmaByte: OK
fresca: OK
bitman74: OK
TTdriver: OK
shadowhax: OK
proff: OK

1714002304
Hero Member
*
Offline Offline

Posts: 1714002304

View Profile Personal Message (Offline)

Ignore
1714002304
Reply with quote  #2

1714002304
Report to moderator
1714002304
Hero Member
*
Offline Offline

Posts: 1714002304

View Profile Personal Message (Offline)

Ignore
1714002304
Reply with quote  #2

1714002304
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714002304
Hero Member
*
Offline Offline

Posts: 1714002304

View Profile Personal Message (Offline)

Ignore
1714002304
Reply with quote  #2

1714002304
Report to moderator
Jane Rand
Newbie
*
Offline Offline

Activity: 17
Merit: 0



View Profile WWW
January 17, 2013, 11:30:58 PM
 #3362

Hello Bitcoin community!

My name is Jane Rand (really) and I am here on behalf of a small (but talented and ambitious) file hosting service (with a twist) that is currently in public free usability beta but intends to use bitcoin for payments after release (and seeks to maintain close ties to the bitcoin community as a part of its general strategy)

I'd like to introduce our service and discuss bitcoin-related issues (also, invite the kind community to pay us a visit and participate in the beta)

Whitelisting would be very appreciated.
nonlinear
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
January 18, 2013, 03:08:32 AM
 #3363

Long-time lurker and part time miner here.

I'm trying to sell a BFL single to username mitty escrowed by Maidak.

He requests I post a message here https://bitcointalk.org/index.php?topic=133985.msg1461495#msg1461495, but I need to get out of (newbie) jail before I can do so. I would appreciate it if I could be allowed on the whitelist.

Thanks mods.
flaab
Full Member
***
Offline Offline

Activity: 121
Merit: 100


View Profile
January 18, 2013, 04:13:09 AM
 #3364

Dear Admins,

I am the developer of the Bitcoin Game http://www.libertybets.com. I have good knowledge about the Bitcoin protocol and software programming, but I haven't posted here that much mostly because even if I did, I wouldn't be able to interact with the most interesting posts.

I would appreciate to be removed from the list.

Best regards.
BitMillions
Member
**
Offline Offline

Activity: 95
Merit: 10


BitMillions.com


View Profile WWW
January 18, 2013, 07:58:03 PM
 #3365

Hi!

This will be my fifth post and I would really appreciate if you can white liste my account as we are launching a new lottery site http://bitmillions.com/
and I would like to create a post in the appropriate topic.

We will open the site in 7 days just for VIP users, everybody is welcome, just leave your email and we will send a link to try the site first.

Thanks admins! I appreciate your support!

Sora  Grin

ShaTwo
Member
**
Offline Offline

Activity: 94
Merit: 10



View Profile WWW
January 18, 2013, 08:45:11 PM
 #3366

Hello Admins, I been around Bitcoin for about a year now... and about to launch or own Bitcoin Gaming Platform and for this reason I wanted to request to be white-listed.

Thanks so much,

Charly

yzfzfcex
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
January 19, 2013, 02:30:12 PM
 #3367

Hello. I have been following puddinpop's topic "RPC Miners (CPU/4way/CUDA/OpenCL)" <https://bitcointalk.org/index.php?topic=2444.0>, because I have been trying to compile rpcminer-cuda. I have read every post related to that in the 15 pages.

I am not an expert (I have no idea on C++, NVCC or anything), but I do know some commands in bash. I am building a script that helps other users of Ubuntu 10.04 (may work for other versions of linux) to do the compilation automatically (I attach it if you want to read it). It is just following the steps as far as I got in the compilation, thanks to the posts of others.

As you can see, I'm trying to get some help to help myself and others. Thanks.

<code>
#!/bin/bash

# Script to modify the source to build rpcminer with CUDA support

echo "Make sure to have installed the CUDA drivers and toolkit";
echo "You can go to https://developer.nvidia.com/cuda-downloads";
echo "and https://help.ubuntu.com/community/Cuda";
sleep 3;

# 0.  Prepare the environment
Unpack the zip file with the source and go into the folder
unzip -q -d rpcminer `ls bitcoin-remote-rpc-*-src.zip` && cd rpcminer

# 1.  Open up the CMakeLists.txt.  There's a group of seven options
# (lines 5-11 in my version of the file for me).  I set "Enable CUDA
# miner" and "Build RPC miner" to ON and everythign else to OFF.
sed -i 's-\(OPTION(BITCOIN_\(ENABLE\|BUILD\)_\(OPENCL\|REMOTE\|GUI\|DAEMON\).*\)ON)-\1OFF)-g;' CMakeLists.txt;

# 2. Ran cmake → go to step 4

# 3.  Cleaned up some compile errors:
# 3A.  Added "#include <limits.h>"
# and "using namespace boost;" to serialize.h after the rest of the
# #includes
# 3A-a. Find last line with #include (after the boost library;
# there is another include near line 1112)
last_line_include_boost=`sed -n '/\#include.*boost/=' ./src/serialize.h | tail -n 1`;
# 3A-b. Add both "#include <limits.h>" and "using namespace boost;"
sed -i $last_line_include_boost's-^\(.*\)$-\1\n\#include <limits.h>\nusing namespace boost\;-g' ./src/serialize.h;
# 3C.  Modified bitcoinminercuda.cu to "#define _BITCOIN_MINER_CUDA_"
# right above the #ifdef that checks for it.
# 3C-a. For every file named "bitcoinminercuda.cu", check if it does
# not have "#define _BITCOIN_MINER_CUDA_". If that is the case, find
# the line with "#ifdef _BITCOIN_MINER_CUDA_", and put
# "#define# _BITCOIN_MINER_CUDA_" before it
for i in `find ./ -iname 'bitcoinminercuda.cu'`; do
   if [[ -z `grep '#define _BITCOIN_MINER_CUDA_' "$i"` ]]; then
      sed -i '/\#ifdef _BITCOIN_MINER_CUDA_/{x;s-.*-\#define _BITCOIN_MINER_CUDA_-;p;x}' "$i";
   fi;
done;

#4.  Ran make → Ran cmake and make
cmake ./ && make

#5.  Build the appropriate ".cubin" file
fad
#5A. Ask the user to input the correct version of the compute
#capabilities for their GPU
# http://wiki.blender.org/index.php/Dev:2.6/Source/Render/Cycles/Building
# http://ondoc.logand.com/d/365/html
# https://en.wikipedia.org/wiki/CUDA
# http://docs.nvidia.com/cuda/cuda-c-programming-guide/
#5A-a. Print message with the link to find the right information
echo "Visit the website https://developer.nvidia.com/cuda-gpus";
echo "and look for the Compute Capability corresponding to the model";
echo "of your GPU. Then input the number and press enter";
#5A-b. Read value from standard input
read GPU_CompCap;
#5A-c. Delete the period in the version
GPU_CompCap=`echo "$GPU_CompCap" | tr -d '.'`;
nvcc ../src/cuda/bitcoinminercuda.cu -gencode arch=compute_"$GPU_CompCap",\"code=sm_$GPU_CompCap,compute_$GPU_CompCap\" --keep
## exits with error ↓
#/usr/lib/gcc/x86_64-linux-gnu/4.4.3/../../../../lib/crt1.o: In function `_start':
#(.text+0x20): undefined reference to `main'
#collect2: ld returned 1 exit status
##
</code>
sike420
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
January 19, 2013, 08:46:19 PM
 #3368

Hi the reason i joined this forum is because i wanted to participate in this thread about bitmarket.eu. I noticed that i can't reply on the topic.
I lost 45.1 BTC @ bitmarket.eu and this seems to be the only place on the internet where bitmarket.eu is being discussed.

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

That's my only interest in this forum so far.
johnascii
VIP
Newbie
*
Offline Offline

Activity: 1
Merit: 0



View Profile
January 19, 2013, 09:12:02 PM
Last edit: January 19, 2013, 10:01:10 PM by johnascii
 #3369

hi,

I would like donate 50 BTC to get the VIP status, please :-)

Thanks

John

[EDIT] theymos has got a PM
btcminer69r
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
January 20, 2013, 12:28:06 AM
 #3370

I am already active in trading BTC and I accept them for payment on my website
/dR6Ad]http://[Suspicious link removed]/dR6Ad for going on 9mos now.
I have bought coin from btcquick.com in
bought/sold coin on ebay
I would like to be whitelisted because I need help on a bitcoin terminal configuration for a new website i'm launching within the week. The site is already running /pB407]http://[Suspicious link removed]/pB407
I'm not a scammer! just someone needing advice!
shadowhax
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
January 20, 2013, 06:40:08 AM
 #3371

I am already active in trading BTC and I accept them for payment on my website
/dR6Ad]http://[Suspicious link removed]/dR6Ad for going on 9mos now.
I have bought coin from btcquick.com in
bought/sold coin on ebay
I would like to be whitelisted because I need help on a bitcoin terminal configuration for a new website i'm launching within the week. The site is already running /pB407]http://[Suspicious link removed]/pB407
I'm not a scammer! just someone needing advice!


You one those guys work on VP-BTC terminal system?
uhoh
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


Circle gets the Square


View Profile
January 20, 2013, 01:43:40 PM
 #3372

Hallo!

Could I possibly be let out of jail  Smiley I've been watching these forums for a very long time, and I'd like to finally get involved.

Thanks
tunafish
Member
**
Offline Offline

Activity: 95
Merit: 10


View Profile WWW
January 21, 2013, 04:01:00 AM
 #3373

Hi
I've finally got around to spending some time on here. I do want to post a thread in the trading discussion forums seeking help/input but I haven't been able to get a specific answer roaming through searches on here and google. I also want to post elsewhere in the econ and services forums to reply to some posts.
I've been logged in for a hell of alot longer than 4 hours yet my timer at the top shows only 3 hour 17 minutes. I've seriously had these forums open for at least 2.5 hours each day for the past three days. So i'm going to go ahead and post this anyway.
I first noticed bitcoins when they were a whopping .70USD each and still hate myself for not getting any when they were still 3, 4...8USD each (before they broke 20 then the big crash happened) but I think in the long run, as anyone looking at a chart of the 1btc to USD value of the past year shows, bitcoin is still going to grow and grow in value as acceptance spreads. So this time around I'm making sure I got some skin in the game.
I use the standard bitcoin client cause I'm not a leech. I've lost about a dozen coins playing satoshi dice (NEVER AGAIN!). You can find me on sealswithclubs once and a while. I've found out personally why I'm never going to use paypal again if I'm selling coins.
I'm a college student and I study economics so I'm naturally interested in bitcoin. I float around on OTC and have a few transactions under my belt: http://bitcoin-otc.com/viewratingdetail.php?nick=tunafizz

Though I do intend on posting and seeking help for a specific, single need. I know that I'll be back on these forums again since I can't get away from btc and this is pretty much "the forum"

Hope I've proven myself enough,
Thanks

Feeling generous?
BTC: 1MiaKvvzhuCrbWJ2iXA9RceZfRpNDjwJTk
RobertM
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
January 21, 2013, 05:43:08 AM
 #3374

Hi
can i be allowed to post on hardware forum?
i'm from China
i have some words against Avalon guys.
i know bitcoin very well and i was a miner
i just wanna say something but not go through like a newbie.
plz give me a favor, if my post not good, just kick me off, ok?
bokazini88
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
January 21, 2013, 05:48:08 AM
 #3375

If you have a need to be allowed into the forum beyond before you have completed the required 5 posts and 4 hours logged in, please post your request here. You must provide evidence that shows that you either understand more about Bitcoin than the average newbie, or that what you want to post can only be done in another forum. Reasons such as "I'm not a spammer" will be ignored. Try to be as specific as possible.

Hi, I'd like to be let into the main forums. I'm working on setting up mining on my Mac Pro, and I've finally, after most of a day of hacking, got poclbm working in both non-vector and vector modes. I'd like to report the changes I've made, and see if there's a better way to it, or if not, see if they can be merged upstream.

I'd also like to talk to people about cgminer and bfgminer, and see how hard it would be to get them working on a Mac.
ronfinberg
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
January 21, 2013, 02:34:53 PM
 #3376

Hi
I am the author of the article mentioned in this post https://bitcointalk.org/index.php?topic=137203 and I wanted to know if I could get whitelisted to provide a reply for the requested information.  For verification reference, you can see my details on http://forexmagnates.com/about/ .
Thanks
Ron Finberg
paraipan
In memoriam
Legendary
*
Offline Offline

Activity: 924
Merit: 1004


Firstbits: 1pirata


View Profile WWW
January 21, 2013, 04:00:15 PM
 #3377

Hi
I am the author of the article mentioned in this post https://bitcointalk.org/index.php?topic=137203 and I wanted to know if I could get whitelisted to provide a reply for the requested information.  For verification reference, you can see my details on http://forexmagnates.com/about/ .
Thanks
Ron Finberg

Ok, quite difficult to check what you say is true, but you can now answer to that thread. Btw, welcome!

BTCitcoin: An Idea Worth Saving - Q&A with bitcoins on rugatu.com - Check my rep
mrw628
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
January 21, 2013, 06:07:31 PM
 #3378

Whitelist request to reply to this post:

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

with a solution.  Long time lurker, never needed to post before.

Thanks for your consideration.

Matt
dmus
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
January 21, 2013, 06:58:33 PM
 #3379

Seems easier to make 5 posts than explain anything in here.
prime14k
Member
**
Offline Offline

Activity: 105
Merit: 10


nothing to say except ... .. .


View Profile
January 22, 2013, 01:16:06 AM
 #3380

kinda forgot what I was going to say... I just noticed the dates on the earlyiest replies... You guys have been around since the beginning! Kudos for what I'm sure was  a great help to this community. Lots of sites (and people) are jumping on the bandwagon... which I guess is good for btc. As for me, I was at least exposed to it early but unfortunately did not seize the moment.  Nowadays I immerse myself into the world of bitcoin, picking up little things here and there that has to be usefull info to share with the community. Please take me off this so I may share with everyone who is enjoying our world. I promise to contribute, promote, protect and of coarse respect this site and all members. Thank you for your time.

LTC -LiSJeFBX9BxKpTUrX746j2bU93w9kECbZ7
BTC -1PDyzhrJ68PhwcVZTnAPFP291NdcB4xGSK
Pages: « 1 ... 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 [169] 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 ... 313 »
  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!