SebastianJu
Legendary
Offline
Activity: 2674
Merit: 1083
Legendary Escrow Service - Tip Jar in Profile
|
 |
September 21, 2013, 01:42:41 PM |
|
|
Please ALWAYS contact me through bitcointalk pm before sending someone coins.
|
|
|
binaryFate
Legendary
Offline
Activity: 1512
Merit: 1012
Still wild and free
|
 |
September 21, 2013, 01:50:13 PM |
|
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
|
 |
September 21, 2013, 01:52:03 PM |
|
AM has a new account to follow: ASICMiner-PR FRIEDCAT IS ALIVE!!!!!!
|
Will take me a while to climb up again, But where is a will, there is a way...
|
|
|
stefffe
|
 |
September 21, 2013, 02:31:27 PM |
|
AM has a new account to follow: ASICMiner-PR FRIEDCAT IS ALIVE!!!!!! yes with some excellent news!!!!... ?
|
|
|
|
velacreations
|
 |
September 21, 2013, 02:32:37 PM |
|
FRIEDCAT IS ALIVE!!!!!!
TO DA MOON!!!!
|
|
|
|
binaryFate
Legendary
Offline
Activity: 1512
Merit: 1012
Still wild and free
|
 |
September 21, 2013, 02:37:58 PM |
|
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
Activity: 38
Merit: 0
|
 |
September 21, 2013, 03:07:38 PM |
|
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
Activity: 1512
Merit: 1012
Still wild and free
|
 |
September 21, 2013, 03:11:29 PM |
|
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
Activity: 38
Merit: 0
|
 |
September 21, 2013, 03:24:07 PM |
|
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
|
 |
September 21, 2013, 03:26:39 PM |
|
|
|
|
|
binaryFate
Legendary
Offline
Activity: 1512
Merit: 1012
Still wild and free
|
 |
September 21, 2013, 03:56:35 PM |
|
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. #!/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
|
 |
September 21, 2013, 04:51:47 PM |
|
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. #!/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 
|
Will take me a while to climb up again, But where is a will, there is a way...
|
|
|
jboogie
Newbie
Offline
Activity: 38
Merit: 0
|
 |
September 21, 2013, 06:03:30 PM |
|
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. #!/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 
|
|
|
|
EskimoBob
Legendary
Offline
Activity: 910
Merit: 1000
Quality Printing Services by Federal Reserve Bank
|
 |
September 21, 2013, 07:21:30 PM |
|
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
|
 |
September 21, 2013, 07:55:03 PM |
|
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
|
 |
September 21, 2013, 08:09:50 PM |
|
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.85 BTC, 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
Activity: 910
Merit: 1000
Quality Printing Services by Federal Reserve Bank
|
 |
September 21, 2013, 08:46:04 PM |
|
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.85 BTC, 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
|
 |
September 21, 2013, 08:49:39 PM |
|
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.85 BTC, 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
Activity: 910
Merit: 1000
Quality Printing Services by Federal Reserve Bank
|
 |
September 21, 2013, 09:44:58 PM |
|
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.85 BTC, 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
|
 |
September 21, 2013, 09:48:45 PM |
|
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.85 BTC, 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...
|
|
|
|