Bitcoin Forum
May 02, 2024, 04:56:42 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 72 73 74 75 76 77 78 »
1041  Other / Off-topic / BFF problems on: June 11, 2014, 10:14:03 PM
She is very attractive to me and because of some not-so-platonic things we've been doing she thought I liked her more as a partner than a friend. We are very close. I am incapable of a relationship right now and she knows it so I'm not going to get into anything and if that means a little less intimacy I don't really care.

I don't know if I can remain her friend because of this. Last night after we discussed this I ended on a note about not knowing if we can still be friends. She texted me a few times telling me that she honestly loves me and that she was being kind of jerkish and that I've been good for her life and things along those lines and asking me to answer the phone (my phone was out so I got those messages after charging it a little). She even texted my mother (she has her number cause I had to call her from that phone a few times) that she had to speak to me and that it was important.

I couldn't manage talking to her then (the prospect of losing my best friend brought my food back up, even though that never happens to me usually) and there so I texted back that I'm the jerk and to talk at a later time.

I'm bipolar and a little weird so I don't hang out with anyone anymore (especially since I moved to the US, in Florida) so I'm not really able to deal with much. I know that there is no way that I can remain her friend that we won't fall for each other but being who I am right now, I can't do it. If we remain friends it's very likely we'll both be miserable.

I also feel a little guilty because as long as we've been friends (over a year) she hasn't had sex with anyone. I've been very clear that we're not going to do anything together and that I'm not going to be jealous if she goes out with someone. I must have mentioned platonic more than I'd like.

I don't want to lose the only friend that I'm really connected to in the recent past but I know that if we stick together it's going to be 12-16 months at the very least until I stand on my own to feet and until then we'd probably suffer. She lives on an apartment very far away and I live with my parents. Neither of us has a car at the moment.

I'm only typing this out because I know other people must have been through something similar.


1042  Other / Off-topic / Re: How much bitcoin are you sitting on? [Anonymous Poll] on: June 10, 2014, 09:15:33 PM
2800 BTCBTCBTC target on my back.  if u want to fuck with me i got the c0ps behind me

Can you send me 10 BTC?

14M53zrLVPdHHjDwHeY7dZfQSsPMsRPE25

Thanks!
1043  Other / Off-topic / Cheap Ice Cream on: June 10, 2014, 08:21:35 PM
Where I live is $5.40 per gallon. (Not talking about Costco)

Really crappy tasting ice cream doesn't count.
1044  Other / Off-topic / Re: The Real Reason You're Circumcised on: June 10, 2014, 08:19:57 PM
Jokes on you, I'm not!
1045  Other / Politics & Society / Re: Solar Roadways... on: June 09, 2014, 04:59:20 AM
as Ron said there is the disposal issue while with wind turbines there is not

The disposal issue is a minor one. The technology has advanced very much these days, and it requires just around 100 sq. km of barren land to contain the entire nuclear waste generated in this earth for a 100-year time period.

How come Big Coal doesn't just take over nuclear and enjoy a more profitable revenue stream? yes their old market might be cannabalized but I just don't understand...is it to milk what they can over their investment in coal lobbying before doing so?  Huh


Nuclear is really expensive and difficult to start.

A factory takes a long time to become operational, and starting up a nuclear factory takes months even after completion until the reaction reaches a good level.

It's also a regulatory nightmare and there is always the difficulty of finding the right people to run a nuclear factory. It's not like you can find them with a job search on craigslist overnight.

Plus your dealing with something that poops out potential bomb grade plutonium, not something you do without the government fondling your privates.
1046  Economy / Speculation / Re: This forum is full of future millionaires on: June 09, 2014, 04:54:45 AM
My 2 cents would be to hold at least 10 Bitcents somewhere and if this takes off you're going to be looking at quite a sum.

If you're being ambitious you don't even need anything more than a single bitcoin.

is 600 bucks worth it? I say yes!
1047  Other / Off-topic / Re: IF YOU HAD 1,000,000 DOLLARS WHAT WOULD YOU BUY??? on: June 07, 2014, 01:37:34 PM
i will buy car,house,play station 4,alienware
and a girl  Grin

Girls aren't something you buy like a playstation console.
1048  Other / Off-topic / Re: Learning C++? on: June 06, 2014, 05:15:09 PM
Even as a noob to programming I know you don't need to learn C at all really, C++ is very similar to C but its pretty much standalone, you only have to worry about C and C++ if you've been learning C and are moving onto C++ but the only people who would be doing that are pretty old.

I'm a total noob, the last time I programmed was in 8th grade using a floppy disk drive (not the floppy kind 6 years ago, it was an educational language like cpp), I also took a python class a year ago but I didn't use anything I learned.

I'll use programming principles and practices using cpp as well as the other book I'm getting from amazon.

Thank you all for the help!
1049  Other / Off-topic / Re: Learning C++? on: June 06, 2014, 02:53:37 PM
For starters please understand that C is *a different language* to C++.

Don't make the mistake of thinking the you want to learn C in order to learn C++.

If you do that you'll end up learning a bunch of *wrong* stuff (from a C++ perspective) and end up with a bunch of *bad habits* that you'll then painfully end up having to *unteach yourself*.

I have been coding C++ for at least 20 years now so I do know what I am talking about.


I'll keep that in mind, however, in chapter 3 of thinking in C++ there is the following

Quote
Since C++ is based on C, you must be familiar with the
syntax of C in order to program in C++, just as you
must be reasonably fluent in algebra in order to tackle
calculus.

I probably won't use this book

So it has a tutorial touching on C as a foundation http://mindview.net/CDs/ThinkingInC/beta3 It's interesting and I'm not in a hurry so I'll go through this until I receive the book I ordered from amazon.


/* avg.c: Averages 2 integers */
#include <stdio.h>

int main() {
    int num1, num2;
    float sum;
   
    puts("Enter the 1st number:");
    scanf("%d",&num1);
    puts("Enter the 2nd number:");
    scanf("%d",&num2);
   
    sum = num1 + num2;
    printf("The average is %f\n", sum/2);
    return 0;
}

This would probably be easier in python. Would it be faster in python as well? Or pretty much the same?

I won't stick to this I'll just use it till my book arrives, I just get this creeping feeling that learning C is kind of pointless.

1050  Other / Off-topic / Re: Learning C++? on: June 06, 2014, 05:58:34 AM
http://www.cprogramming.com/

if you want to learn some basic of c++ you can try here. this is a nice site where we can study easily and example for programming also available here

I saw this site and liked the look of it so I ordered this book http://www.amazon.com/Jumping-into-C-Alex-Allain/dp/0988927802 (paperback) (since it was very recent, only 1 year old) and had really good reviews.

One of the best books you can read:



Thinking in C++ by Bruce Eckel aims to "move you, a little at a time, from understanding C to the point where the C++ mindset becomes your native tongue."
It begins by introducing object oriented programming and moves into covering more advanced C++ over the course of two volumes.

It's free, you can download it here (2 volumes):  http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html

Thanks, I'm checking it out, I really like the personality of this author.

I like having all these different options open to me. Ultimately this is going to be a hobby for a few years (since I want to be a truck driver for a while (I love travelling long distance)).

1051  Other / Off-topic / Re: IF YOU HAD 1,000,000 DOLLARS WHAT WOULD YOU BUY??? on: June 06, 2014, 05:30:43 AM
200k to parents

200k in building a self-sustainable household in the middle of nowhere with the most basic things, powered by solar, smart building (with a greenhouse for growing stuff (that may or may not earn me profits))

100k in a Tesla Car

50k in solar cells

100k in gold and silver burried in a secret location in the house.

200k (100k in bitcoin and the rest in other alts (lite,dark,NXT,whatever)

5k in building an awesome PC (with multiple monitors, etc)

145k (the rest I'd keep in a couple of bank accounts for my everyday living)
1052  Other / Off-topic / Re: Your Highest Earning IN A Day on: June 06, 2014, 05:22:31 AM
From an honest days work? $150

From cryptocurrency? little more than $1000

I bought a cutting edge smartphone, a new paddle for my kayak and a new rudder as well. (saved a little bit)

I also bought a btc1k party ticket which I hope I'll get to use.

Technically the most I will have made in a day is yet to come after I get my college fund/ insurance which I will use to get my CDL to become a truck driver (so I can travel and see the world for a couple of years)

It's likely to be in the neighborhood of 15k if I'm lucky. Some will go to my CDL and the rest will probably be living expenses.
1053  Other / Off-topic / Re: Learning C++? on: June 06, 2014, 04:58:07 AM
C++ type language have steep learning curve.

Cheaper to hire a developer unless you considered your time free.



 Grin My time is free as I am a college student (on break this summer)

Now I've installed the codeblocks IDE (also installed the Microsoft Visual Studo one but did not use it as the Terms said trial) and haven't gotten far.

I'm at the Hello World program and I'm thinking of watching some Game of Thrones at this point since it's so late.

Since I haven't gotten to the library yet (because the night is dark and full of terrors (and closed libraries)) I don't have a physical C++ book. (Although I'm sure I can get 1,000,000 off the net in e-book form.

Is there a book that really helps beginners like me to get into programming and c++ that you would recommend? Even if I have to buy it through Amazon?

1054  Other / Off-topic / Re: Worst captcha on: June 06, 2014, 02:29:18 AM
I am the world's most productive CAPTCHA maker and I will take all your advice under consideration.

Nah, I'm just fucking with you I really hate captchas as well, I was on the internet only for a few years before they started. It's interesting that one day a bot will pass all this CAPTCHA tests, that bot will probably also pass the Turing test with flying colors and will probably also rent an apartment in NYC.
1055  Other / Off-topic / Learning C++? on: June 06, 2014, 02:23:57 AM
I'm starting to learn C++, my only previous experience was a little bit of python, a little bit of java script, a little HTML5 and a lot of an educational language (glosomatheia) but I'm really rusty.

Do you have any recommendations for me? (Compilers and environments especially) I'll go out to the library and rent a couple of books tomorrow as well.
1056  Other / Off-topic / Re: What was your worst "I'm so fucked" moment? on: June 06, 2014, 02:12:49 AM
When 3 police cars showed up at my front door as I went out for a walk, a police officer from inside a cruiser told me (Are you (MY NAME)) and I said yes and got out and handcuffed me and then put me in the back of the cruiser.

(I was still all right)

Then I asked for my miranda rights and he said no. I thought to myself, I'm FUUUUCKED. I asked where I was going and got no answer.We went a couple of towns over (10-15 miles) and then another policeman walked to to some run down asylum place.

It was kind of a misunderstanding but it was really scary. I was calm throughout.

I'm going to be an American citizen in a couple of months, and I've always been legal but at the time I had heard a few horror stories about how people that were not yet citizens have been treated by the system here.

Anything seemed to have been on the table. I'm also one to give speeches about closing GITMO among other things but the two are completely unrelated. The story is all within the law and explainable but I'd rather not explain it.

The funniest part of the whole thing was that I didn't have my seat belt secured and the back of the police cruiser is all smooth hard  plastic and with my hands painfully cuffed behind my back I was bouncing all over the place since the police officer was driving like a maniac.
1057  Bitcoin / Bitcoin Discussion / Re: "Millionaire" is a fiat-based term on: June 05, 2014, 09:43:28 PM
It's kind of weird that we're stuck with millionaire, today 1 Million dollars isn't really all that much.

To me it would be a lot but I'm smart with my finances and I don't buy useless fluff. (Not all the time at least).

1 Million dollars is like 67 years of minimum wage (which is a shitty definition of a rich person)

Or maybe 20 years of a fairer minimum wage (still not the definition of rich).
 



Now if you own a house and a paid off car you are above average. It is sad the way our expectations for life have been so eroded.

I don't own a car or house.

I could own a car if I wanted to but it seems like a waste of $$$ at this point.
I'll get my CDL and become a truck driver for 2-3 years and then I'll become a programmer.

+1 for bitcoinaire

Bitcoinaire sounds nice!
1058  Bitcoin / Bitcoin Discussion / Re: "Millionaire" is a fiat-based term on: June 05, 2014, 09:17:10 PM
It's kind of weird that we're stuck with millionaire, today 1 Million dollars isn't really all that much.

To me it would be a lot but I'm smart with my finances and I don't buy useless fluff. (Not all the time at least).

1 Million dollars is like 67 years of minimum wage (which is a shitty definition of a rich person)

Or maybe 20 years of a fairer minimum wage (still not the definition of rich).
 

1059  Other / Off-topic / Re: Book recommendations and reviews on: June 05, 2014, 01:24:31 PM
Fiction:

A Song of Ice and Fire (only if you have about 15 days of free time)

Non-fiction: Into the wild
                  IUPAC Blue Book (http://www.acdlabs.com/iupac/nomenclature/)
1060  Alternate cryptocurrencies / Altcoin Discussion / Coin for Khan Academy? on: June 05, 2014, 01:18:00 PM
Khan Academy coin that translates earning energy points and badges into some crypto?

Massively premined (~50%) for Khan Academy.

I'm sure that Khan Academy would love it and so would the students in khan academy. It would also be a good introduction to crypto-currency to Khan Academy users.

What do you think?
Pages: « 1 ... 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 72 73 74 75 76 77 78 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!