Author

Topic: Whitelist Requests (Want out of here?) - page 293. (Read 474339 times)

newbie
Activity: 11
Merit: 0
I've been lurking on the forums for quite some time and in particular I am a recent law graduate who would like to contribute to some of the discussions on Tax questions regarding bitcoin usage as well as the conflicts between the SEC (Securities Law) and the use of GLBSE.

I've also been mining both Bitcoins and Namecoins and have used both the GUI client as well as the command line server.  I've mined solo (no success, but just to play with it) as well as on a half-dozen pools.

I have a background in computer science and database design and feel that I have much to contribute to the community.

Thank you,
jlkershner
full member
Activity: 196
Merit: 100
Please whitelist me...

I am mining 3.65 GH/s on BTCGuild and would like to post a feature request (sort workers alphabetically) on the BTC Guild forum thread.

Thanks,
Mike
member
Activity: 77
Merit: 10
I'd like out as well, I want to post elsewhere about bitcoin !
newbie
Activity: 19
Merit: 0
I want out, please. I just want to be able to post in the pool section.
member
Activity: 95
Merit: 10
/
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.
newbie
Activity: 11
Merit: 0
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.
member
Activity: 178
Merit: 10
I would like to get out of here  Roll Eyes
jr. member
Activity: 49
Merit: 1
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
newbie
Activity: 44
Merit: 0
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!
sr. member
Activity: 349
Merit: 250
Can I get out of here? Need to post to mining support and the market.

Thank You.
newbie
Activity: 42
Merit: 0
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.

newbie
Activity: 21
Merit: 0
may i be whitelisted?

going to be running a bitcoin market forum Smiley
member
Activity: 98
Merit: 10
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?
newbie
Activity: 22
Merit: 0
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 !
newbie
Activity: 5
Merit: 0
Aw, give us a hoon on your forum, would ya?
newbie
Activity: 15
Merit: 0
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.
newbie
Activity: 22
Merit: 0
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.
newbie
Activity: 5
Merit: 0
Noob hole? This is awful.
newbie
Activity: 4
Merit: 0
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
full member
Activity: 126
Merit: 100
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!
Jump to: