Bitcoin Forum
June 20, 2025, 11:09:47 AM *
News: Pizza day contest voting
 
   Home   Help Search Login Register More  

Warning: Moderators do not remove likely scams. You must use your own brain: caveat emptor. Watch out for Ponzi schemes. Do not invest more than you can afford to lose.

Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: « 1 ... 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 [656] 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 ... 1348 »
  Print  
Author Topic: ASICMINER: Entering the Future of ASIC Mining by Inventing It  (Read 3918219 times)
SebastianJu
Legendary
*
Offline Offline

Activity: 2674
Merit: 1083


Legendary Escrow Service - Tip Jar in Profile


View Profile WWW
September 21, 2013, 01:42:41 PM
 #13101

friedcat: https://bitcointalk.org/index.php?topic=298982.new#new

Please ALWAYS contact me through bitcointalk pm before sending someone coins.
binaryFate
Legendary
*
Offline Offline

Activity: 1512
Merit: 1012


Still wild and free


View Profile
September 21, 2013, 01:50:13 PM
 #13102


AM has a new account to follow: ASICMiner-PR

Monero's privacy and therefore fungibility are MUCH stronger than Bitcoin's. 
This makes Monero a better candidate to deserve the term "digital cash".
lophie
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1003

Unlimited Free Crypto


View Profile
September 21, 2013, 01:52:03 PM
 #13103


FRIEDCAT IS ALIVE!!!!!!

Will take me a while to climb up again, But where is a will, there is a way...
stefffe
Full Member
***
Offline Offline

Activity: 131
Merit: 100



View Profile
September 21, 2013, 02:31:27 PM
 #13104


yes with some excellent news!!!!... ?

YinCoin YangCoin ☯☯First Ever POS/POW Alternator! Multipool! ☯ ☯ http://yinyangpool.com/ 
Free Distribution! https://bitcointalk.org/index.php?topic=623937
velacreations
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
September 21, 2013, 02:32:37 PM
 #13105

FRIEDCAT IS ALIVE!!!!!!

TO DA MOON!!!!

binaryFate
Legendary
*
Offline Offline

Activity: 1512
Merit: 1012


Still wild and free


View Profile
September 21, 2013, 02:37:58 PM
 #13106

I could probably post this in Meta, but if it's ever possible some here should know how:
Do you guys know if it's possible to watch a member posts the same way we can watch threads? How do you check if friedcat posted something? It's a pain to do it "by hand".

Monero's privacy and therefore fungibility are MUCH stronger than Bitcoin's. 
This makes Monero a better candidate to deserve the term "digital cash".
jboogie
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
September 21, 2013, 03:07:38 PM
 #13107

Quote
I could probably post this in Meta, but if it's ever possible some here should know how:
Do you guys know if it's possible to watch a member posts the same way we can watch threads? How do you check if friedcat posted something? It's a pain to do it "by hand".

you use this thing called "bookmarks" in your browser
binaryFate
Legendary
*
Offline Offline

Activity: 1512
Merit: 1012


Still wild and free


View Profile
September 21, 2013, 03:11:29 PM
 #13108

Quote
I could probably post this in Meta, but if it's ever possible some here should know how:
Do you guys know if it's possible to watch a member posts the same way we can watch threads? How do you check if friedcat posted something? It's a pain to do it "by hand".

you use this thing called "bookmarks" in your browser
That does not tell me whether there is a new post or not.

Monero's privacy and therefore fungibility are MUCH stronger than Bitcoin's. 
This makes Monero a better candidate to deserve the term "digital cash".
jboogie
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
September 21, 2013, 03:24:07 PM
 #13109

Quote
I could probably post this in Meta, but if it's ever possible some here should know how:
Do you guys know if it's possible to watch a member posts the same way we can watch threads? How do you check if friedcat posted something? It's a pain to do it "by hand".

you use this thing called "bookmarks" in your browser
That does not tell me whether there is a new post or not.


?? just bookmark this
robix
Sr. Member
****
Offline Offline

Activity: 360
Merit: 250


View Profile
September 21, 2013, 03:26:39 PM
 #13110

FRIEDCAT IS ALIVE!!!!!!

TO DA MOON!!!!
Grin  Grin  Grin  Grin  Grin
binaryFate
Legendary
*
Offline Offline

Activity: 1512
Merit: 1012


Still wild and free


View Profile
September 21, 2013, 03:56:35 PM
 #13111

Quote
I could probably post this in Meta, but if it's ever possible some here should know how:
Do you guys know if it's possible to watch a member posts the same way we can watch threads? How do you check if friedcat posted something? It's a pain to do it "by hand".

you use this thing called "bookmarks" in your browser
That does not tell me whether there is a new post or not.


?? just bookmark this
Call me lazy, but I don't want to open a page if there is nothing to see. What I'd like to have is something as the watchlist for the threads, where you know whether there is something new without actually opening each single page.

I've wrote this small script. If you're under linux, and KDE, you can use it as it is. If you're under gnome, you must change the notification to whatever you want.
Every time friedcat write a new post, it will notify you. You don't even need to have your browser open.

Code:
#!/bin/bash

UPDATE_TIME=3600 # Time between checks in seconds
touch old

while :
do
    # get last version (just a part of the html, where first post is)
    wget -q -O - "https://bitcointalk.org/index.php?action=profile;u=49840;sa=showPosts" | fgrep -A 200 -m 1 "bodyarea" | fgrep -A 15 -m 1 "titlebg2" > new
   
    # different from reference version?
    diff new old > /dev/null
    if [ "$?" == "1" ]
    then
        # different! Let's update the reference one:
        mv new old
        # There has been a new post! Trigger whatever you want here, for KDE it can be:
        kdialog --passivepopup 'Friedcat has posted something! Check it out :)' 3600
    fi

    sleep ${UPDATE_TIME}
done

I cannot believe I wrote this. Maybe I should just step back and relax a bit...

Monero's privacy and therefore fungibility are MUCH stronger than Bitcoin's. 
This makes Monero a better candidate to deserve the term "digital cash".
lophie
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1003

Unlimited Free Crypto


View Profile
September 21, 2013, 04:51:47 PM
 #13112

Quote
I could probably post this in Meta, but if it's ever possible some here should know how:
Do you guys know if it's possible to watch a member posts the same way we can watch threads? How do you check if friedcat posted something? It's a pain to do it "by hand".

you use this thing called "bookmarks" in your browser
That does not tell me whether there is a new post or not.


?? just bookmark this
Call me lazy, but I don't want to open a page if there is nothing to see. What I'd like to have is something as the watchlist for the threads, where you know whether there is something new without actually opening each single page.

I've wrote this small script. If you're under linux, and KDE, you can use it as it is. If you're under gnome, you must change the notification to whatever you want.
Every time friedcat write a new post, it will notify you. You don't even need to have your browser open.

Code:
#!/bin/bash

UPDATE_TIME=3600 # Time between checks in seconds
touch old

while :
do
    # get last version (just a part of the html, where first post is)
    wget -q -O - "https://bitcointalk.org/index.php?action=profile;u=49840;sa=showPosts" | fgrep -A 200 -m 1 "bodyarea" | fgrep -A 15 -m 1 "titlebg2" > new
   
    # different from reference version?
    diff new old > /dev/null
    if [ "$?" == "1" ]
    then
        # different! Let's update the reference one:
        mv new old
        # There has been a new post! Trigger whatever you want here, for KDE it can be:
        kdialog --passivepopup 'Friedcat has posted something! Check it out :)' 3600
    fi

    sleep ${UPDATE_TIME}
done

I cannot believe I wrote this. Maybe I should just step back and relax a bit...

nah you just took "online stalker" to a new level. grats  Cheesy

Will take me a while to climb up again, But where is a will, there is a way...
jboogie
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
September 21, 2013, 06:03:30 PM
 #13113

Quote
I could probably post this in Meta, but if it's ever possible some here should know how:
Do you guys know if it's possible to watch a member posts the same way we can watch threads? How do you check if friedcat posted something? It's a pain to do it "by hand".

you use this thing called "bookmarks" in your browser
That does not tell me whether there is a new post or not.


?? just bookmark this
Call me lazy, but I don't want to open a page if there is nothing to see. What I'd like to have is something as the watchlist for the threads, where you know whether there is something new without actually opening each single page.

I've wrote this small script. If you're under linux, and KDE, you can use it as it is. If you're under gnome, you must change the notification to whatever you want.
Every time friedcat write a new post, it will notify you. You don't even need to have your browser open.

Code:
#!/bin/bash

UPDATE_TIME=3600 # Time between checks in seconds
touch old

while :
do
    # get last version (just a part of the html, where first post is)
    wget -q -O - "https://bitcointalk.org/index.php?action=profile;u=49840;sa=showPosts" | fgrep -A 200 -m 1 "bodyarea" | fgrep -A 15 -m 1 "titlebg2" > new
   
    # different from reference version?
    diff new old > /dev/null
    if [ "$?" == "1" ]
    then
        # different! Let's update the reference one:
        mv new old
        # There has been a new post! Trigger whatever you want here, for KDE it can be:
        kdialog --passivepopup 'Friedcat has posted something! Check it out :)' 3600
    fi

    sleep ${UPDATE_TIME}
done

I cannot believe I wrote this. Maybe I should just step back and relax a bit...

well, I must admit that is pretty cool, simple and effective script. much better than a bookmark indeed Wink
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 21, 2013, 07:21:30 PM
 #13114

You can stalk friedcat as much as you want (script is cool, btw) but unless he is going to publish financial statements, it's useless, because you can not evaluate the AM not make any predictions for it's future.

I'll ask again: Please put pressure on Friedcat and get the numbers published.
Only then start talking about what AM is worth now or estimate it's future value.

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
g83
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


Super Smash Bros. Ultimate Available Now!


View Profile WWW
September 21, 2013, 07:55:03 PM
 #13115

imo there has been a significant shareprice correction but 1.5 and lower seems absolutely undervalued.. hope i am right and we'll see >2.00 again soon
lophie
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1003

Unlimited Free Crypto


View Profile
September 21, 2013, 08:09:50 PM
 #13116

imo there has been a significant shareprice correction but 1.5 and lower seems absolutely undervalued.. hope i am right and we'll see >2.00 again soon

Yes you are right but be realistic and expect a correction to a stable 1.85BTC, That is until Friedcat gives and update or we would see a significant hashrate increase.

Will take me a while to climb up again, But where is a will, there is a way...
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 21, 2013, 08:46:04 PM
 #13117

imo there has been a significant shareprice correction but 1.5 and lower seems absolutely undervalued.. hope i am right and we'll see >2.00 again soon

Yes you are right but be realistic and expect a correction to a stable 1.85BTC, That is until Friedcat gives and update or we would see a significant hashrate increase.

Your valuation is based on exactly what?

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
lophie
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1003

Unlimited Free Crypto


View Profile
September 21, 2013, 08:49:39 PM
 #13118

imo there has been a significant shareprice correction but 1.5 and lower seems absolutely undervalued.. hope i am right and we'll see >2.00 again soon

Yes you are right but be realistic and expect a correction to a stable 1.85BTC, That is until Friedcat gives and update or we would see a significant hashrate increase.

Your valuation is based on exactly what?

The fact that ASICMINER share price usually and "relatively" stabilize between 25-28% div to share price per year, (latest div against share price).

Will take me a while to climb up again, But where is a will, there is a way...
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 21, 2013, 09:44:58 PM
 #13119

imo there has been a significant shareprice correction but 1.5 and lower seems absolutely undervalued.. hope i am right and we'll see >2.00 again soon

Yes you are right but be realistic and expect a correction to a stable 1.85BTC, That is until Friedcat gives and update or we would see a significant hashrate increase.

Your valuation is based on exactly what?

The fact that ASICMINER share price usually and "relatively" stabilize between 25-28% div to share price per year, (latest div against share price).

Are you sure you do not want to see the financial statements?

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
lophie
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1003

Unlimited Free Crypto


View Profile
September 21, 2013, 09:48:45 PM
 #13120

imo there has been a significant shareprice correction but 1.5 and lower seems absolutely undervalued.. hope i am right and we'll see >2.00 again soon

Yes you are right but be realistic and expect a correction to a stable 1.85BTC, That is until Friedcat gives and update or we would see a significant hashrate increase.

Your valuation is based on exactly what?

The fact that ASICMINER share price usually and "relatively" stabilize between 25-28% div to share price per year, (latest div against share price).

Are you sure you do not want to see the financial statements?


This opinion is formed upon what this market "usually" follows to reach a specific price. Not intended to be accurate or totally fair or anything. Just an opinion about where the market is going judging by the price/div ratio history. It is one aspect to speculate on the price but it is a very important one.

Will take me a while to climb up again, But where is a will, there is a way...
Pages: « 1 ... 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 [656] 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 ... 1348 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!