Bitcoin Forum
August 08, 2024, 11:14:43 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 [257] 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 ... 401 »
5121  Economy / Lending / Re: ★[No Collateral]★[No Interest]★ MZ's Micro-Loans! on: February 18, 2015, 01:38:28 PM
Loan amount required: 0.05
Reason: want invest in altcoins
Term length: 10 Days
Interest:  125% repayment of 0.0625
Address: 1JfNTWLRsh7JxeYSFaC5R9WF669CTRPjQA

Denied.

   -MZ
5122  Economy / Services / Re: [BIT-X.com] [NEW RATES] Earn Bitcoins by Posting | Signature Campaign on: February 18, 2015, 01:38:11 PM
You can calculate the number of words in a post and if the words are less than say 20, then the post would get counted as not constructive and if they are more than 20 then they would be counted as constructive. Here is an example-

Code:
void main() {

char post[10000]; //here character "post" holds a particular post of a user like "hello world"
int wordcounter=0;
for(int i=0; post[i]!='\0'; i++){
 if(post[i]==' '){ wordcounter++;}
}

++wordcounter;

if(wordcounter>19){cout<<"Its a valid post";}
else {cout<<"Post wont be counted";}

}

This was a simple C++ program explaining how you can calculate the word in a post. In this program if the words are more or equal to 20 then it will show the post is valid else it will print Post wont be counted.

I know the length can be counted easily but I was talking about:

I mean, you could think of ways to have it tell if it is constructive like searching for length and making sure there's no spam in the post...

   -MZ
5123  Other / Beginners & Help / Re: Can someone tell me which is the most secure of the offline wallets? on: February 18, 2015, 01:35:45 PM
Some other options besides are fireproof wallets:

https://bitkee.com/

[img ]https://bitkee.com/img/gallery/BIP38-Titanium.png[/img]

http://cryptocards.co/

[img ]http://cdn.makeuseof.com/wp-content/uploads/2014/07/bitcoin-and-dogecoin-cryptocards-.jpg?84ec63[/img]

Plenty of options to secure your offline stash.

I wouldn't suggest giving private keys, even if it is encrypted, to another person.

   -MZ
5124  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.22] on: February 18, 2015, 01:18:48 PM
i did all the commands there, im not sure which sentence of all the 200 lines that gaves me back, its the correct that says how much cpu my mother can see. (i send you a pm)

as far as i can see, my pc only detects one vga

env LD_LIBRARY_PATH=./sdklib ./oclvanitygen -D 1 -i 1Nasty
Difficulty: 15956296
Invalid device specifier '1'
Could not open device '1', ignoring
Available OpenCL platforms:
0: [Advanced Micro Devices, Inc.] AMD Accelerated Parallel Processing
  0: [Advanced Micro Devices, Inc.] Tahiti
  1: [AuthenticAMD] AMD Athlon(tm) II X2 270 Processor

the -D 0:0 it works. but the others dont... :/

i installed a program called lshw-gtk  that shows all the hardware in the pc, and i can only see 1 vga i think.

first, nothing to do with "VGA".
second, use the appropriate option! its -D not -d.
example:
Code:
./oclvanitygen -D 0:0 -D 0:1 -D 0:2 -D 0:3 -D 0:4 -D 0:5 -D 0:6 -D 0:7
next time check the --help Wink

   -MZ
5125  Economy / Services / Re: Up to 0.035 BTC weekly for YOUR SIGNATURE *New rules on: February 18, 2015, 01:08:22 PM
@BITMIXER.IO, yesterday I've seen a member from this signature campaign: @minerpool-de publishing the same spam comment in all the languages boards, just like a bot to earn BTC from the campaign because of their copy-past comments.

Here you have all their comments that seem to be reported/deleted now:

He/She was announcing a faucet/ponzi site called btc-flow with a goo.gl shortened link to camouflage the original link. They were 3 word messages as spam.
I'm publishing this here to let you know that there're users that are cheating the campaign and other ones that publish interesting posts that may want to enter the campaign and it's actually full[/size]  Wink

Hope to help you and the campaign!



P.S: Personal message campaigns are allowed with the BITMIXER campaign, too? I mean… can users "wear" the bitmixer signature + another signature campaign below their nickname?

Most of them are deleted by the mods. P.S. It was also his/her referral link.



It's allowed!

   -MZ
5126  Economy / Lending / Re: ★[No Collateral]★[No Interest]★ MZ's Micro-Loans! on: February 18, 2015, 01:00:25 PM
I am unsure if you are taking on new loan applications but figured I would inquire.

Loan amount: .01
Reason: Would like to purchase a small amount of Alt-coin
Repayment date: Friday (Feb 20th,2015)

I will repay sooner if funds become available.

How to trust you?

Loan repaid, sent you BTC0.005
Thank you!

TX: ce6827828d7b529c84557aaa17e6cbc9ada974c935d4c5fe97e8b76138abb552

Thanks for the tip! Smiley

   -MZ
5127  Bitcoin / Electrum / Re: Electrum 2.0 beta version on: February 18, 2015, 12:58:33 PM
I tried installing the new beta and I get the following error(s):

C:\Users\xxxxxxxxx\Desktop\Electrum-2.0b3>python setup.py sdist
Traceback (most recent call last):
  File "setup.py", line 5, in <module>
    from setuptools import setup
ImportError: No module named setuptools

You haven't installed setuptools. Use ez_setup.py(recommended) : http://svn.python.org/projects/sandbox/branches/setuptools-0.6/#egg=setuptools-dev06 , alternatively, you can try windows installers : https://pypi.python.org/pypi/setuptools/0.6c11#downloads.

   -MZ
5128  Economy / Services / Re: [BIT-X.com] [NEW RATES] Earn Bitcoins by Posting | Signature Campaign on: February 18, 2015, 12:50:15 PM
Does the bot can differentiate the constructive posts from the spam?

The bot would need a conscience for that.

I mean, you could think of ways to have it tell if it is constructive like searching for length and making sure there's no spam in the post...

How to do that? AFAIK marcotheminer's bot doesn't have AI. Searching for length isn't a good idea, there are substantial one-liner posts.

   -MZ
5129  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][XMR][HOW TO] Install & use Monero on Linux on: February 18, 2015, 12:41:02 PM
Or just use the installation script for Monero

Does it install wolf cpu miner ?

Where can I find a script that install wolf cpu miner with it ?


Don't know if bumping this topic is right... Huh

It will do:

Code:
cd ~
clear
echo "This is the monero installation script. It will install monero with all it's requirements, starting with the latest boost-version, plus CPUMiner"
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo "[1] INSTALL Monero essentials (wallet + solominer)"
echo "[2] INSTALL Wolf's poolminer"
echo "[3] INSTALL Everything"
echo "[6] UPDATE  Monero essentials (wallet + solominer)"
echo "[7] UPDATE  Wolf's poolminer"
echo "[8] UPDATE  Everything"
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"

P.S. Thanks for the guide! It was really helpful when installing on a VPS.

Edit: build-essential install command is two times in the OP and libbz2-dev and -y aren't separated. Smiley


 =snip=

Code:
sudo apt-get install libbz2-dev-y
  -MZ
5130  Economy / Services / Re: [SAD] I delete your account on: February 18, 2015, 12:08:26 PM
I cleaned the first account. I went first because I trust MZ. It certainly took longer to delete the posts than expected. Threads started by the account have not been deleted, but reported to the mods to be moved in archival and locked. Threads and posts discussing negative trust ratings have not been removed either. All PMs have been deleted unread. The "Prune Messages" option is very handy in that regard.

Username: goodnightcoin
Proof of ownership:
Code:
-----BEGIN BITCOIN SIGNED MESSAGE-----
Today is 16.02.2015 and I control the bitcointalk account named
goodnightcoin, userid: 231272. I want to use shorenas basic account
deletion service, payment is sponsored by the bitcointalk user Muhammed
Zakir, user id 320943
-----BEGIN SIGNATURE-----
14NuZ3Q3DWsZWgVoQTMFdjUvy7nAywUtwj
HFjxEs5KnUCL3hjfOMc3+1tHfb4yNcK5ES29F7ROqpi5amaERJPgObq86FAzP6WFc7E3zs9e7UXcrVjamz8Zghk=
-----END BITCOIN SIGNED MESSAGE-----
link to unedited post: https://bitcointalk.org/index.php?topic=760481.msg8577217#msg8577217

Payment info:
Code:
--------------INFO------------------------------------
Username (ID) : goodnightcoin (231272)
Sponsored     : yes
Sponsor (ID)  : Muhammed Zakir (320943)
Escrow        : no
Escrower (ID) : - (-)
--------------PRICE-----------------------------------
0.00100000 basic   SAD-Service
 - free -  cleaned SAD-Service 101 posts total
======================================================
0.00100000 total
======================================================
payment address: 1PqxLus1jtdhRHKzbXY9QzdcEY5Jitbsjc
payment due: 17.03.2015 (4w after basic provided)

Confirming this!

Edit:

Code:
-----BEGIN BITCOIN SIGNED MESSAGE-----
Today is 18.02.2015 and I confirm what is said above.
-----BEGIN SIGNATURE-----
1MZakirz92c76pK6BNy1NAEmbWYpDcP7mh
G+YqE7cPcmAZcufQQRKvsQqPfpzhwVY87dAi8JDrL99Zc3hUuuRjXr/ciHUMLicbHLHpxAm9CiAFyosbnuejef0=
-----END BITCOIN SIGNED MESSAGE-----

   -MZ
5131  Economy / Services / Re: [BIT-X.com] [NEW RATES] Earn Bitcoins by Posting | Signature Campaign on: February 18, 2015, 11:13:04 AM
Works fine for me, just enter the thing you want to search for and press enter. Viola.

There is some problem with the script. Your name and a few others are fine but most of them isn't working.

   -MZ
5132  Economy / Lending / Re: what is collateral and how does it work? on: February 18, 2015, 11:07:29 AM
so for example if i want to get a loan and give my account here as collateral, i should give the Escrow my username and password right?

You don't really want to use Escrow, if you trust the lender, you can give it to him/her.

   -MZ
5133  Other / Meta / Re: My trust :( im not alt Candystripes accounts! on: February 18, 2015, 10:48:08 AM
Good find MZ, lets see what happens now. If this guy does not respond after this or does not sign the address, We should all -ve rep him, as he has tried to fool us too! Smiley

He is online and he isn't responding, seems something bad to me.

as he has tried to fool us too! Smiley

Not me. Tongue

   -MZ
5134  Economy / Service Announcements / Re: [ANN] NiceHash.com - sell & buy hash rate cloud mining service / multipool on: February 18, 2015, 10:40:04 AM
How do I get KNC Jupiter to mine properly with Nicehash. From time to time I keep getting a slower speed (25% slower) because it keeps reconnecting or submitting 0 shares.

How to enable the extranounce ?

Please take a look here: https://www.nicehash.com/index.jsp?p=software#bfgminer

1. Update your miner to the latest firmware.

2. Set pool like this:
stratum+tcp://stratum.nicehash.com:3333/#xnsub#skipcbcheck
or
stratum+tcp://stratum.westhash.com:3333/#xnsub#skipcbcheck

Thanks, doubt solved! Deleting my post now:

How do I get KNC Jupiter to mine properly with Nicehash. From time to time I keep getting a slower speed (25% slower) because it keeps reconnecting or submitting 0 shares.

How to enable the extranounce ?

Can't it be done using BFG miner? BFG miner supports KNC miners, so it may work - haven't tried it though.

   -MZ

   -MZ
5135  Economy / Lending / Re: ★[No Collateral]★[No Interest]★ MZ's Micro-Loans! on: February 18, 2015, 10:35:03 AM
Are you out of btc right now? Because I just need a small loan..

Loan Amount: BTC0.004
Reason: Buying phone credits, need around 4mBTC more
BTC Address: 1Josefnjhis1NS5XPTvZh4cuoJK2nPKvru
Term Length: Probably around 1-3 days after receiving my sig payments

TX : https://www.blocktrail.com/BTC/TX/025187bc61100ce72a3f8a76387a3711c40acfc58900d52922a1d1fd561e48d9

No fees : http://www.bitmoby.com/

   -MZ
5136  Other / Archival / Re: Updated Overview of Bitcointalk Signature-Ad Campaigns on: February 18, 2015, 10:20:10 AM
If they get one or two very big customers from advertising, they should profit from it.

You might be right! On January 11:

Current stats:
  • Number of registered users: 365
  • Last 7 days total payouts: 2.47512917 BTC
The campaign doesn't bring too much customers. I hope it works to brand awareness.

   -MZ
5137  Other / Meta / Re: My trust :( im not alt Candystripes accounts! on: February 18, 2015, 10:08:27 AM
Please sign from this address : 1Mzw57DSQFHh2G9PD7CV3b1snHJxAgumNB.



   -MZ
5138  Economy / Services / Re: [BIT-X.com] [NEW RATES] Earn Bitcoins by Posting | Signature Campaign on: February 18, 2015, 09:58:34 AM
when i try to search my username i cant find it

but when i look on the full list i see my name

whats the problem there?
I had the same problem yesterday. The search function doesn't seem to work.

It only works with your UID.

   -MZ
5139  Economy / Services / Re: Creating Faucets for 0.001 - Cheapest - 5 Themes to Select from! on: February 18, 2015, 09:24:43 AM
Haha, I'll build a custom faucet script compatible with 99.99% of coins for .05.

https://github.com/ChristianGrieger/Cryptocurrency-faucet-script . Smiley

   -MZ
5140  Economy / Services / Re: [BIT-X.com] [NEW RATES] Earn Bitcoins by Posting | Signature Campaign on: February 18, 2015, 09:04:58 AM
Check your stats here: http://notify.elmeda.net/thebot/

Updated automatically every now and then (30 minutes or so)!

Big thanks to bitcoin_boy for coding it!

Nice bot, marco! Well done! I used Mitchełł's extension can't exclude boards, so this would be helpful in this campaign. Smiley

   -MZ
Pages: « 1 ... 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 [257] 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 ... 401 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!