Bitcoin Forum
June 30, 2024, 10:11:40 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 ... 600 »
5621  Bitcoin / Bitcoin Technical Support / [Resolved] Bitcoin Core assertion failed error? on: May 26, 2019, 04:07:59 PM
Jump to solution

I'm getting an on the startup screen of an error that says there's an issue at line 102 of bitcoin-qt "pindexWalk->pprev" I just downloaded the latest version v0.18.0.

In the debug log, everything goes as normal and it gets to the point where it uses the obfuscation key, the key used is zero though which seems odd.

I'm on windows 7 sp1.
5622  Bitcoin / Bitcoin Technical Support / Re: How to find the missing word on: May 26, 2019, 12:25:42 PM
this will give you 180 valid seeds apparently: https://github.com/tnkmt/brute.bip39
The code is checking 24*2048=49,152 seeds and (based on my calculations) about 5% of them are valid which means 2,457 valid seeds! I may be missing something but 180 seems very strange to me.
BTW it is a very slow algorithm, not that it matters with this small number.

If you check the readme it says you can gmake it search for 12 words instead of 24.
5623  Bitcoin / Bitcoin Technical Support / Re: How to find the missing word on: May 26, 2019, 10:43:22 AM
Have you tried the 11 words? Sometimes if it follows a different spec from bip39 then 11 words might work.

Do you know where this word might be. If it's likely to be at the front or the back then than increases your chances of recovering your funds.
If you know the word is at the front then there is a 2048 number of times you have to search for. If you know the word is at the end then there is 2048, if either at the start or the end then it's 4096.
If you have no idea then it will take 24576 processes in a worst case scenario.

I'm guessing there's probably a script for this bruteforcing, do you know the first address that can be derived?

edit:
this will give you 180 valid seeds apparently: https://github.com/tnkmt/brute.bip39
5624  Other / Bitcoin Wiki / Update pool stats on: May 26, 2019, 10:36:04 AM
I stumbled across here: https://en.bitcoin.it/wiki/Comparison_of_mining_pools

Why don't we have viabtc and the bitfury/ckpool solo mining pools listed there too?

Also I'm not sure if the fees are up to date but they could do with being checked periodically to check if they are. The fees have certainly gone up recently from the old 0% and 1% they used to be...
5625  Economy / Currency exchange / Re: [H] Paypal $100 [W] BTC @ 1:1 (F&F) on: May 26, 2019, 09:32:37 AM
How much have you got to shift?

If it's still the $100, i can give 0.0115BTC for it.
5626  Economy / Services / Re: Free programming lessons on: May 25, 2019, 08:00:51 PM
I have added the coding solutions and will shortly post a topic for code review. I did the first four challenges that should be all that is needed to cover the fundamentals.



EDIT: I'm thinking of making all of my code review threads based on all three programming languages or should I do one individually for each (I don't think I've asked this yet).
5627  Economy / Service Announcements / Solutions to the coding challenges on: May 25, 2019, 07:59:27 PM
The programming challenges solved, if there are any questions, I'm going to make a new thread for answering those and for code reviews.

1. (easy) Make a loop that will print every whole number from 1 until 100.
Code:
for loop in range(1,101):
    print(loop)
I think I made this one more challending than I expected to with it having to start at 1 and not 0.
Anyway, this works by saying that for every item in a list from 1 until 100, print that item from the list.



2. (easy) try to get someone to input a whole number between 0 and 9 and keep asking until you get one.
Code:
n = int(input("Please input a number between 0 and 9: "))
while (n <= 0 or n >= 9):
    n = int(input("Please input a number between 0 and 9: "))
print("Thanks you inputted a valid number")
This take an input and sets it to n from the user (where n is an integer).
It then says that while n is less than or equal to zero and greater than or equal to nine we want to keep the code going so that we can get a valid number.
If the number inputted is accurate to start with, the code inside this loop won't run and the user will be told they've inputted a correct number.

3. (medium) make code for the classic fizz-buzz game (this is what you would be asked to do if you wanted to become a software engineer, they like to ask it at interviews - or so I've been told). Essentially, take your code from question 1 and if the number is divisible by three to give a whole number print fizz, if it is divisible by five to give a whole number print buzz, and if it is divisible by both print "fizzbuzz" (hint, the % modulo symbol helps you find the remainder: 5%3=2, 1%3=1, 6%3=0.
Code:
fizz = 3
buzz = 5
for loop in range(1,101):
    if (loop % fizz == 0 and loop % buzz == 0):
        print("fizzbuzz")
    elif (loop % fizz == 0):
        print("fizz")
    elif (loop % buzz == 0):
        print("buzz")
    else:
        print(loop)

3. (medium) make a "guess my number" game. Get the computer to generate a random number between 1 to 100. Then ask the user to input a number, if the number is greater than compNumber then tell them that and if it's less than or equal to then tell them that. They have 10 attempts to guess the right number otherwise they lose and the number is revealed to them.

Code:
from random import randint
myNum = randint(1,101)
print("I've thought of a number between 1 and 100, can you guess it?")
for guesses in range(3,0,-1):
    guess = int(input())
    if guess > myNum:
        print("Lower, you have "+guesses+" guesses left")
    if guess < myNum:
        print("Higher, you have "+guess+" guesses left")
    else:
        print("You are correct!")
        break

4. (hard) make a rock, paper scissors game (user v computer)

Code:
from random import randint
choices = ["rock","paper","scissors"]
n = True
while n:
    choice = choices[randint(0,2)]
    n = False
    userChoice = input("Choose rock, paper or scissors: ")
    if userChoice.lower() == "rock":
        if choice == "paper":
            print("You win!")
        elif choice == "scissors":
            print("You lose!")
        else:
            print("We drew!")
    if userChoice.lower() == "paper":
        if choice == "rock":
            print("You win!")
        elif choice == "scissors":
            print("You lose!")
        else:
            print("We drew!")
    if userChoice.lower() == "scissors":
        if choice == "rock":
            print("You lose!")
        elif choice == "paper":
            print("You win!")
        else:
            print("We drew!")
    else:
        n = True
    if n == False:
        userChoice = input("Do you want to quit y/n?")
        if userChoice.lower == "y":
            n = True
        else:
            n = False



I made a buggy infinite loop in this last one. I'll fix it in a few days but here's the first four solutions for now. I think the final one should be achievable from here.

Edit Fixed the errors in the last solution.
5628  Other / Off-topic / Re: Is there any way to hide a word in an Internet browser? on: May 25, 2019, 05:30:20 PM
They'll look at my phone while I'm on it and I do make conversation but turning to your phone is when you're struggling to do it with people in person. They may look at your phone thinking they can make some conversation out of it or something idk...
5629  Other / Off-topic / Is there any way to hide a word in an Internet browser? on: May 25, 2019, 04:17:36 AM
I'm going to meet a group of people and they always latch on to what I'm doing on the Internet when they've had something to drink and try to discuss it with me.

I'm on a hauwei phone running firefox, is there a way to completely replace every instance of "bitcoin" with "cryptography" or "the art of cryptographically signing something with a public and private key" in order for no one to know what I'm doing and for me to still know what stuff means?
5630  Other / Meta / Re: Getting rid of this "stake.com" spam shit o n my avatar and sig on: May 24, 2019, 05:35:01 PM
Have you staked an address you can sign?

From along time ago hopefully. If not you risk getting negative trust.
5631  Economy / Currency exchange / Re: Looking for large BTC holders that are willing and able to accept physical cash on: May 24, 2019, 04:18:36 PM
Looks like something illegal then it's probably wise for me to not get involved.

There are many legal tax loopholes. Don't go cod the illegal ones. Find an island where corporation tax isn't a thing. And then one where income tax isn't a thing...
5632  Economy / Currency exchange / Re: Buying up to 2btc on: May 24, 2019, 01:00:52 AM
I have the 0.5. Can I start with a tiny amout and see how it goes. Maybe 10 or 100 euro? Just to test western union.
5633  Economy / Currency exchange / Re: Looking for large BTC holders that are willing and able to accept physical cash on: May 24, 2019, 12:53:21 AM
Why doesn't this individual do the trade themselves and gets someone else to do it?

You know a lot of exchanges give a good discount to large buyers (on fees) ...
5634  Other / Meta / Re: Need an answer on: May 23, 2019, 09:18:32 PM
Is it to do with reputation or a scam accusation?

Meta is not the place for bountry stuffs, it's better off putting them in reputation or scam accusations.
5635  Economy / Services / Re: Free programming lessons on: May 23, 2019, 07:30:55 AM
Hugeblack posted a YouTube channel above. Perhaps you can take a look at th at.

I'm currently on data and I've used about 5/6gb trying to sync a full node so I'll have to wait for when I can get WiFi again in order to check it.

Yes these will be two different threads that I'll make. I'll probably take on board the suggestions and make them self moderated.
5636  Economy / Services / Re: Free programming lessons on: May 23, 2019, 03:58:50 AM
Thanks for this platform. Can a beginner learn these things from the scratch? I mean one with just basic computer knowledge and no programming knowledge?

Hi sorry yep, I'm hoping this will be exactly what this is used for.



I've been busy with exams and a few other things recently. I'll finish off the solutions for the programming challenges today and post them (I want to make sure they're all accurate before I do).

I'll open up another thread for code reviews and then maybe one for the fundamentals of C# also but I might do them a few days apart...
5637  Economy / Service Announcements / Re: [ANN] ChipMixer.com - Bitcoin mixer / Bitcoin tumbler - mixing reinvented on: May 22, 2019, 07:03:52 PM
Yeah ChipMixer are in a similar country to another service in a similar secter going since 2013/2014 I think they should be pretty safe.

As a side note if you want to keep your legally gray actions secret, don't register a domain in Europe lol because this happens.

This is disapointing of europol and the Netherlands. They clearly don't understand the significance of these sites and how mixers work in a way cash does.
5638  Economy / Securities / [idea] An altcoin investment service with a twist. on: May 21, 2019, 10:14:38 PM
I've been looking at what LoyceV did and I feel it can be improved upon somewhat. I sent these improvements but I think they're somewhat difficult to pull off for what he was tryting to make (it being fixed to 10 months).

Instead I want to propose the following:
• Everyone in the group participates 1 altcoin they have in mind.
• The coin must have fallen or be set to rise soon (if the coin generally doesn't go below a certain value then this is it).
• There must be a target for how much the coin is set to rise and it must be over 50% (for a lot of coins there's usually a good chance of this happening) - by this I mean there should be proof it has done it before.
• A stoploss could be put in place that will be around 10% of the value of the coin.
• Thre could be a potential expiration period as I see no reason in keeping the coins held forever, once the expiration has passed, anything over 10% should be what the coins are sold for.

Have I overcomplicated this or should this work? I'm thinking it would be a good idea more for experience traders so that we are able to diversify our assets a bit more as it's easier to watch over 1-3 coins as it is to watch over 10?
Most long standing coins bought strategically should profit this way.
5639  Bitcoin / Electrum / Re: Electrum fee under 1 sat/byte on: May 21, 2019, 04:44:59 PM
Messages no longer come from the server since the phishing attack. It might still be possible to send a no fee transaction but it won't get confirmed...
5640  Economy / Services / Re: [FULL] ChipMixer Signature Campaign | Sr Member+ | Up to 0.0375 BTC/w on: May 20, 2019, 05:33:13 PM
Errr, not everyone uses mixers for hiding the amount of money they've made from drug sales lol. Everyone should mix their coins in some way otherwise you open yourself to being tracked and being a target of someone after your money.



Happy >2 years running CM.
Pages: « 1 ... 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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 ... 600 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!