Bitcoin Forum
June 01, 2024, 04:46:23 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 [375] 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 ... 458 »
7481  Other / Off-topic / Re: Trendon Shavers taunts those he stole from on: May 20, 2013, 04:52:07 AM
No different from central bankers or dictators really in the real world so I don't dwell much on it, they all act exactly the same.
7482  Other / Politics & Society / Re: Make sure you pay your taxes to the government that spies on you! on: May 20, 2013, 04:28:46 AM
Quote
A bitcoin world or more generally a public money supply currency world clearly means MORE taxes than before.  After all, if you cut off the source of income which is printing money as debt, governments will be forced to take more taxes to maintain roads, etc.

The reason taxes would go up is because they would be forced to honestly show just how much people are actually going to have to spend on the things the government is providing, printing money is not a source of income, it's delaying the payment of the debt that has been taken on with more debt, worse still, it dumps the problem on the next generation, your children, which is something I can never support.
7483  Other / Politics & Society / Re: Make sure you pay your taxes to the government that spies on you! on: May 19, 2013, 06:39:14 PM
Quote
This is far beyond a simple disagreement. You advocate - and would support financially - the use of lethal force against me. That, I'm afraid, makes us enemies.

Hawker, you have proven to me without doubt that the people of the ideology you follow and you yourself are overreacting paranoid schizophrenics who think everyone is out to get them. You can be the enemy of someone without killing them, it happens all the time in life. I do have to agree with Myrkul on some points but not all, while governments have finally learned that they can't get away with killing people who don't want to pay tax so easily anymore it seems that imprisoning them is perfectly acceptable and there was even a thread recently about the way the Finnish police using methods which basically amount to torture in most countries so it just goes to show you that not all governments are above using violence to get there way still.

Bitcoin has finally given us a way to peacefully protest the way our money is being spent by our governments, if you don't like that happening, then tough, it's not like you can do anything about it, from now on taxation isn't going to exist, you're going to have to ask for my money rather than just take it and use it for your own ends, you can stay with your rapidly devaluing paper currency.
7484  Bitcoin / Bitcoin Discussion / Re: Bitcoin to go before Australian Senators this week on: May 19, 2013, 05:12:10 PM
who is behind this and why is it being done?

It's another self-appointed leader and entrepreneur of Bitcoin that speaks for all of us, don't worry! We're in good hands Smiley
7485  Bitcoin / Bitcoin Discussion / Re: Just spend it please.. on: May 19, 2013, 05:07:53 PM
People have to buy things, there's no way that someone can possible sit on thousands of Bitcoins for the end of time and spend absolutely nothing like people here keep claiming, you need to buy furniture, you need to buy food, you need to buy clothes, you need to buy tools for whatever trade you do, this nonsense about deflationary currencies causing hoarding is just stupid because otherwise how the hell would empires that traded purely in gold and silver have survived?

I wish neo-keynesians would stop re-writing history, ignoring mathematics and making up hypothetical scenarios to suit their arguments, it really is like arguing with a religious person and it seems that like with religion the only way for other economic schools to prove them wrong is to create a working example that they can't fuck up and prove them to be the raving lunatics they are.
7486  Economy / Economics / Re: Japan. The Yen. The Hyperinflation. on: May 19, 2013, 04:46:52 PM
Quote
That's your opinion.  The Japanese have a different view - that the persistence of deflation is harmful to their economy.  I think its worth at least 1 country in the world to try inflating their way out of that.  The experiment is 6 months old - it will be a couple of years before we can say if it was a good idea.

You're wrong, neo-keynesians have the point of view that deflation is harmful to the economy, like with most self-appointed leaders around the globe speaking for countries I'm sure the Japanese people themselves will have very different opinions to that school of economic thought to what their leaders say, countries and people tend not to have one singular opinion about an idea even if they tend to believe in the same thing.
7487  Bitcoin / Bitcoin Discussion / Re: Satoshi, please start moving your coins on: May 19, 2013, 02:53:01 PM
What Satoshi does with their money is their business, now bugger off.
7488  Economy / Economics / Re: Will BTC's umbilical cord to USD eventually throttle it? on: May 19, 2013, 01:45:12 PM
The problem with people predicting this buyout scenario is not only is it not realistic, they clearly don't understand how currencies work, if the federal reserve for instance decided to buy up lots of Bitcoins the price would most likely rise so high that it wouldn't be cost effective to buy anymore to keep competition away. They would also have to print more money in order to buy Bitcoin which would of course drastically affect the value of the dollar even more so it would be like with most hyperinflated currencies where you'd need 10 million dollars to buy 1 Bitcoin.

Adding to that, if they tried to keep Bitcoin out of the markets as much as possible then all people will do is switch to the alternative that is far easier to use and less restrictive and doesn't cost a fortune to transfer across the world, because of the deflationary nature of Bitcoin it seems very unlikely to me that any buyout attempt will succeed. The problem with many of these disaster scenarios is that the people predicting them keep making the mistake of treating Bitcoin as an inflationary currency that there is an infinite supply of which it is not.

The central banks of the world have been rigging the currency markets and artificially fixing prices and now thanks to deflation we're finally seeing just how much damage they've caused.
7489  Other / Off-topic / Re: The Coding Thread on: May 19, 2013, 09:53:37 AM
Finally! Got it sorted! Image came out a bit weird but I think that's more to do with the resolution I used, thanks for the help again, here's the now updated and working code.

Quote

#ifdef __cplusplus
    #include <cstdlib>
#else
    #include <stdlib.h>
#endif

#include <SDL/SDL.h>

int main( int argc, char* args[] )

{

SDL_Init; ( SDL_INIT_EVERYTHING );
SDL_Surface* screen = NULL;
SDL_Surface* test = NULL;

screen = SDL_SetVideoMode( 500, 500, 32, SDL_SWSURFACE );


test = SDL_LoadBMP( "test.bmp" );

SDL_BlitSurface( test, NULL, screen, NULL );

SDL_Flip( screen );
SDL_Delay( 2000 );

SDL_FreeSurface( test );

SDL_Quit();

   return 0;
}


For future reference I think the biggest problem was  SDL_Init( SDL_INIT_EVERYTHING ); because on the tutorial he put that after the SDL_surface commands rather than before.
7490  Other / Off-topic / Re: The Coding Thread on: May 19, 2013, 09:41:53 AM
Alright, thanks for the help, I'll steamroll through this like I've been doing with OpenGL Tongue just need to put the time in.
7491  Bitcoin / Bitcoin Discussion / Re: Bitcoin will be made illegal under gambling law on: May 19, 2013, 09:13:40 AM
One day I will dress up as a Soviet and hail the next GOP candidate in America.
7492  Other / Off-topic / Re: The Coding Thread on: May 19, 2013, 08:49:22 AM
wow thanks a lot Foxpup, that's really interesting, he didn't seem to mention any of this in the troubleshooting for it and so on >_< and this is supposed to be a beginners tutorial lol! Tongue I copied it exactly just to see whether I was forgetting or something, but it looks like there are bits wrong with his code, I'll double check again and it looks like there are.

Do you know of any up to date tutorials that won't bugger up on the latest version of SDL? I particularly like this library because it means I have to go and make some art assets right away which is nice, anime characters time woot! Cheesy
7493  Other / Beginners & Help / Re: POLL - Did you made any purchase with bitcoin? on: May 18, 2013, 10:36:24 PM
bought a digital shop script so I can earn Bitcoins later on http://bitfreak.info/bitshop/ Cheesy

I want a VPN too >_<
7494  Other / Politics & Society / Re: Obama was the best thing that ever happened to the USA in a long time... on: May 18, 2013, 10:22:33 PM
It's actually almost frightening that the people who are supposed to be in charge of world finances know even less basic mathematics than I do and I scored an F in my last exams, but then again, the only saving grace we have is that they're so incompetent there's no way they'll be able to touch stuff like Bitcoin.
7495  Other / Off-topic / Re: The Coding Thread on: May 18, 2013, 07:19:58 PM
Quote

#ifdef __cplusplus
    #include <cstdlib>
#else
    #include <stdlib.h>
#endif

#include <SDL/SDL.h>

int main ( int argc, char*, args[] )
{


SDL_Surface* test = NULL;
SDL Init ( SDL_INIT_EVERYTHING );
screen = SDL_SetVideoMode ( 640, 480, 32, SDL_SWSURFACE );
test = SDL_LoadBMP ("Test.bmp");
SDL_BlitSurface (test, NULL, screen, NULL)
SDL_Flip ( screen );
SDL_Delay ( 2000 );
SDL_FreeSurface( test );
SDL_Quit();

return 0;

 }


From various posts and word on the internet I've found that SDL is apparently the library to use, I can see it combines it's code really well and you don't have to worry about downloading extensions for keyboard input like with GLFW so that's already a plus but, I've come across a problem. I'm following the tutorials here: http://lazyfoo.net/SDL_tutorials/lesson01/windows/codeblocks/index.php but the code won't compile! It's strange because the commands were registered by Codeblocks ( IDE I'm using ) and when I started up the SDL sample the code works absolutely fine.

Anyone got any advice? I'm going to get on this properly because I think SDL is a pretty nice library but I suspect I'll have to do some digging around like when I was just compiling basic OpenGL, I'm wondering if the code for this tutorial is out of date because the version of the library it said to download was much earlier, it's happened before with previous coding.

Quote

error: 'args' has not been declared
In function 'int SDL_main(int, char*, int*)'
error: 'SDL' was not declared in this scope
error: expected ';' before 'Init'
error: 'screen' was not declared in this scope

||=== Build finished: 4 errors, 0 warnings (0 minutes, 0 seconds) ===|


I think I'm just going to have to do what I did before and work with the sample and learn the code that way so Codeblocks doesn't break.
7496  Other / Off-topic / Re: The Coding Thread on: May 18, 2013, 10:28:41 AM
I found a very nice tutorial on naming objects in OpenGL so you can start interacting with the OpenGL graphics you make, wish all tutorials were as detailed as this.

http://www.lighthouse3d.com/opengl/picking/
7497  Bitcoin / Bitcoin Discussion / Re: Bitcoin as a graduation gift... what's a good way to do it? on: May 18, 2013, 09:11:43 AM
I think a physical bitcoin would be the best plan, I think these are what people are going to end up trading with the most in the real world really, no one's going to wait around for confirmations by trading on each others laptops etc. Cheesy
7498  Other / Politics & Society / Re: Legal help on a human rights violation case if Finland on: May 18, 2013, 08:44:00 AM
That sounds pretty damn bad and even a violation of EU human rights which is probably why your lawyer wouldn't go to the EU courts with the kind of stuff you were talking about. Obviously normally I'd never want violence, but in that sort of situation you really do have no choice but to fight back. If any police officer forced people to wear a straight jacket for no reason over here or tried making up stuff/withdrawing medication to keep you in jail they'd have the media all over it and the police involved might even get jail time.
7499  Other / Off-topic / Re: The Coding Thread on: May 17, 2013, 10:33:03 PM
LOL After all that raging I found that the problem was that I had downloaded 64 bit GLFW binaries instead of 32 bit, I feel like a noob even after all that coding Cheesy

Now I can begin work on my keyboard and mouse interaction Cheesy
7500  Other / Politics & Society / Re: Legal help on a human rights violation case if Finland on: May 17, 2013, 08:15:31 PM
It's not Socialism, it's Corporatism and Imperialism >_>
Pages: « 1 ... 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 [375] 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 ... 458 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!