Bitcoin Forum
April 25, 2024, 12:45:17 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 66 67 68 69 70 71 ... 313 »
  Print  
Author Topic: Whitelist Requests (Want out of here?)  (Read 474731 times)
gigi
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
June 20, 2011, 01:52:15 AM
 #401

I can prove that at least some of the programmers from TradeHill are amateurs.

But I can't post in the main forum since I'm a newbie. I wanted to be a nice person and warn you, but you make me jumps through hoops. If you don't want my input, fine, whatever.

BTW, I "logged" many hours browsing these forums as a Guest (not logged in) in the last months.
1714005917
Hero Member
*
Offline Offline

Posts: 1714005917

View Profile Personal Message (Offline)

Ignore
1714005917
Reply with quote  #2

1714005917
Report to moderator
1714005917
Hero Member
*
Offline Offline

Posts: 1714005917

View Profile Personal Message (Offline)

Ignore
1714005917
Reply with quote  #2

1714005917
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714005917
Hero Member
*
Offline Offline

Posts: 1714005917

View Profile Personal Message (Offline)

Ignore
1714005917
Reply with quote  #2

1714005917
Report to moderator
cousinskeeter
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
June 20, 2011, 02:00:32 AM
 #402

I would like to be white-listed. I have been mining bitcoins now for over a month using first btcguild and now btcmine. I have read weusecoins.com bitcoin.org forums and followed the bitcoin community as closely as possible. I have visited most of the vendors who accept bitcoins websites, and spread word of the bitcoin movement to friends and family. I have gone from mining using my cpu, to buying a new graphics card and using that for mining. I figured out that remote desktop does not play well with CCC and switched over to logmein. I have been a a lurker for over a month and am now ready to interact with the community. I am by no means your average noob and would like to be able to post.

Thanks,
psyborgue
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 20, 2011, 02:16:50 AM
 #403

Hi.  Could I please be whitelisted. I'd very much like to discuss the recent hack of Mt. Gox and it's potential ramifications on people's faith in Bitcoin.  You can see from my very old Slashdot account that I am not a troll and that there is high likelihood that I understand what bit-coin is and how the technology works.
ErgoOne
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
June 20, 2011, 02:49:18 AM
 #404

FWIW, I'm quickly realizing that I probably won't ever post the requisite 50 messages to be let out of Newbie jail unless I'm first let out of Newbie jail, because the conversations that I find interesting are happening elsewhere on the board.  Especially now, with the compromise of Mt. Gox and other bitcoin-related security issues coming up, I think I have things that I can contribute to the discussion, instead of just taking away from the discussion.  My $DAYJOB is as a technical writer for a high tech company with a major presence in the networking and security fields, and I've got a long-term interest in and involvement in network abuse issues.  I'm not a bot -- anybody who checks my profile and my blog can figure that out.  So could I please be allowed to post on the board? Thanks!
Confiscative
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
June 20, 2011, 03:13:40 AM
 #405

I'd like to post this to the Mt.Gox hacking thread.
Do you mind if I spam myself over the 5 posts limit?
Edit: I see that won't work, you apparently need 5 hours of logged-in time. Considering the code under this, and that I'm member #1725, could you please allow me in?

Code:
class Account
attr_accessor :email, :hash

def initialize(email, hash)
@email = email
@hash = hash
end
end

contents = File.open("accounts.txt", "r").read

count = 0
accounts = {}

contents.split("\n").each_with_index do |line, index|
match = line.match(/.*,.*,(.*),(.*)/)
next if match[1].empty?

# Screw lame 'n easy unsalted hashes
next if !match[2].strip.match(/\$1\$.{8}\$.{22}$/)

# Get the email domain
domain_match = match[1].strip.match(/@(.*)$/)
next if !domain_match
domain = domain_match[1]

# Drop some domains
next if ["gmail.com", "googlemail.com"].include?(domain)

# List the accounts per domain
accounts[domain] ||= []
accounts[domain] << Account.new(match[1], match[2])

count +=1
end

puts "Found #{count}"
exit if !ARGV.include?("--write")

# Get the top 10 of domains
if ARGV.include?("--limit")
domains = accounts.keys.sort{|a,b| accounts[a].count <=> accounts[b].count}[-10..-1]
wanted_accounts = domains.map{|domain| accounts[domain]}.flatten
else
wanted_accounts = accounts.values.flatten
end

# Devide and conquer
parts = 4
current_part = nil
result_file = nil

wanted_accounts.each_with_index do |account, index|
should_be_on_part = index/(wanted_accounts.count / parts)

# Second condition is for dirty integer devision spilling over
if current_part != should_be_on_part && (!current_part || current_part < (parts - 1))
puts "Changing. Now on: #{index}. Opening: hashes_#{should_be_on_part}.txt"

result_file.close if result_file
result_file = File.open("hashes_#{should_be_on_part}.txt", "w")
current_part = should_be_on_part
end

result_file.puts(account.hash)
end
aaaidan
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
June 20, 2011, 04:11:19 AM
 #406

Noob hole? This is awful.
mieomeo
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
June 20, 2011, 04:27:23 AM
 #407

I'd like to ask some question out there since my Mt.gox account keep saying "Wrong password" yesterday before the shutdown of mtgox.
I need to know if my account's got hacked or it's Mt.gox blocks the database contain my account Sad.

So pls let me out there Smiley.
ikonic
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
June 20, 2011, 04:32:46 AM
 #408

I am not a bot... seriousily!

Anyways, I just want to comment on a number of threads relating to the MT Gox hack (for the time being)

Also, would prefer not to link to any other accounts I use for obvious reasons.

In terms of bit coins, I own em, I buy em and I sell em.
aaaidan
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
June 20, 2011, 05:01:27 AM
 #409

Aw, give us a hoon on your forum, would ya?
conbitcoin.com
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
June 20, 2011, 05:39:09 AM
 #410

Hi, I am interested in posting on the project forum.

We are developing a proyect like conbitcoin.com for usa, uk, australia and canada.

Thanks alot !
mmavipc
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 20, 2011, 06:17:48 AM
 #411

I have 5 posts(this will make it 6) and I'm pretty sure I've been online for 4hrs or more. Can I please be whitelisted?

http://payb.tc/mmavipc

Want to gamble some bitcoins? Click here!
klapeck
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
June 20, 2011, 08:02:02 AM
 #412

may i be whitelisted?

going to be running a bitcoin market forum Smiley
Webengers
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
June 20, 2011, 09:10:12 AM
 #413

I have a bunch of stuff to sell as I'm going to be moving from the midwest to seattle.
I'm trying to figure out the best place to do it and haven't had much luck asking in the newbie forums.

THings I want to sell include

Juniper networks equipment
A Dell 2850 server
A ford focus
A couple flat panels
More stuff too

I've tried biddingpond and bitcoinclassifieds but noone seems to use them it looks like its mostly happening on the forums.

tnkflx
Sr. Member
****
Offline Offline

Activity: 349
Merit: 250


View Profile
June 20, 2011, 09:34:58 AM
 #414

Can I get out of here? Need to post to mining support and the market.

Thank You.

| Operating electrum.be & us.electrum.be |
MilkMan
Newbie
*
Offline Offline

Activity: 44
Merit: 0


View Profile
June 20, 2011, 09:39:08 AM
 #415

Hi, I am very involved in the bitcoin commuinty and too busy to spend four hours writting meaingless posts when I feel I have many great ideas to help to contiune to improve the bitcoin ccmmunity. Good friends with Wiseoldowl, an inteligent, well-established member. Thank you!
tfeagle
Jr. Member
*
Offline Offline

Activity: 49
Merit: 1


View Profile
June 20, 2011, 09:50:22 AM
 #416

I am content to wait patiently until I qualify for release by normal means.

However, could some nice person please post my noob questions (and follow-on research) to the support thread for RPCminer? 

http://forum.bitcoin.org/index.php?topic=19755.msg249151#msg249151

I would like to request a version of RPCminer for Windows that is compiled using static linking for VC++ modules, as opposed to needing the download and install of redistributable VC++ library.  (Also, a distribution of RPCminer in .MSI format would be fine.) 

- TFeagle
timmeyh
Member
**
Offline Offline

Activity: 178
Merit: 10


View Profile
June 20, 2011, 10:03:27 AM
 #417

I would like to get out of here  Roll Eyes
sodgi7
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
June 20, 2011, 12:44:45 PM
 #418

I would like to get out of here because I have some questions to person who wrote the phoenix miner code and I'm interested about developing a tiny ugly wrapper for it that fixes current issues with it when phoenix becomes idle randomly.
IceGuru
Member
**
Offline Offline

Activity: 95
Merit: 10

/


View Profile
June 20, 2011, 02:11:26 PM
 #419

I am an android developer with a nice bitcoin idea looking for feedback and partners.

I also am looking into putting together a mining team.

5 Posts isn't much but 5 hours is a crazy requirement in my opinion.

User-name
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
June 20, 2011, 02:25:24 PM
 #420

I want out, please. I just want to be able to post in the pool section.
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 66 67 68 69 70 71 ... 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!