關在廁所中

這時外資群若想出脫要怎麼出?宏碁在23時,離淨值這麼遠,華碩都在淨值了,佳世達了不起一年的眼光費,宏碁還要四年的眼光費,目前大力的砍,大力的殺,外資群企圖引出買盤,這樣才有機會再進一步的出脫手上的股票,當有人進來了,再來慢慢的演一場八點檔 有一部經典港劇,鄭少秋和劉青雲主演的,故事說一個空方大鱷在狙擊港股,找了鄭少秋和劉青雲父子檔來股市操盤要對抗大鱷,鄭少秋和劉青雲找來了大型上市櫃公司的老闆來,類似我們的台灣五十成份股,找了張忠謀,郭台銘,林百里…等,股市一開盤,鄭少秋和劉青雲開始放空,大鱷也開始放空,有人會覺得奇怪,不是對抗嗎?怎麼一起放空?兩大主力一起放空,股市當然一直跌,一直跌,這時大老闆很生氣說,叫你們對抗,你們怎麼聯合一起空?劉青雲和大老闆們說,你認為你們公司是垃圾嗎?沒有價值嗎?大老闆們生氣回答,當然不是垃圾,公司每年可以創造很高的營盈,這時劉青雲說,這不就得了,有價值的股票最終一定會引來中實戶及大戶的進駐,只是沒有人知道這些中實戶及大戶心中的價值區在哪,所以我們就測試,此持雙方持續放空,股市跌到到了某一個點後,不論雙方怎麼空,怎麼賣都跌不下去,此時劉青雲放手叫大家別放空,時間過了三分鐘,股市湧入大盤的買盤,來自已散戶,中實戶,大戶,此時劉青雲反手做多開始強力買進,最後空方大鱷就被抬出去了。

2018-11-15 · 1 min · 2 words · Me

ethereum geth rpc Why The method miner_start does not exist/is not available

………………………………………. ………………………………………. ………………………………………. go-ethereum https://github.com/ethereum/go-ethereum/wiki/Management-APIs#miner geth –rpcapi “db,personal,eth,net,web3” --rpc –rpcaddr “0.0.0.0” –rpccorsdomain “*” –rpcvhosts=* So you want miner, need put “db,personal,miner,eth,net,web3” curl -X POST -H “Content-Type: application/json” –data ‘{“jsonrpc”:“2.0”,“method”:“miner_stop”,“params”:[],“id”:1}’ go-ethe:8545 {“jsonrpc”:“2.0”,“id”:1,“result”:null} Fxxx Document……………………………………….. Import see this url document web3 https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_mining https://github.com/ethereum/web3.js/

2018-11-15 · 1 min · 41 words · Me

logstash kibana geth log ethereum Grok Constructor

filter json { source => “message” } This mean is Try to use json format transfer log, then put some data to message filed. So some filed just be setting, and some data set to message. .Use this to check mach and log https://grokconstructor.appspot.com/do/match https://blog.johnwu.cc/article/elk-logstash-grok-filter.html https://github.com/logstash-plugins/logstash-patterns-core/blob/master/patterns/grok-patterns This is geth log for example A: INFO [11-14|09:58:17.730] Generating DAG in progress epoch=1 percentage=99 elapsed=4m8.643s INFO [11-15|01:41:33.455] Generating DAG in progress epoch=1 percentage=9 elapsed=27.614s B: INFO [11-15|01:19:44.590] Loaded most recent local fast block number=0 hash=656134…58fded td=1 age=49y7mo1h, Loaded most recent local fast block ...

2018-11-15 · 2 min · 366 words · Me

totolink t10 雙11 特價2,990

雙11 有Line 回鐀Line point 10%,另外信用卡3.5% ,其他 商店街有折300和1100,1100搶不到,折300也不錯。 放在三層樓中每層樓接近 樓梯和中間,靠樓梯來互通吧,每層前後都收得到,算不錯了! 使用中跨樓層不會中斷,但訊號不見得很強,算是便宜中的精品了。

2018-11-13 · 1 min · 10 words · Me

kibana default index-pattern

先建立index-pattern,匯出index-pattern json檔,然後刪除建立index-pattern後,再由rest api匯入。 1、顯示 index-pattern 列表 (先用web建立一個index-pattern) curl http://localhost:5601/api/saved_objects/_find?type=index-pattern 2、匯出saved_objects index-pattern curl http://localhost:5601/api/saved_objects/index-pattern/c0c02200-e6e0-11e8-b183-ebb59b02f871 > export.json c0c02200-e6e0-11e8-b183-ebb59b02f871 是 1找到的id json檔匯出後不可以直接用,必需頭尾補上 header補上: { “objects”: [ end補上: ]} 3、匯入saved_objects index-pattern (記得先砍了kibana-*) curl -v -XPOST localhost:5601/api/kibana/dashboards/import?force=true -H ‘kbn-xsrf:true’ -H ‘Content-type:application/json’ -d @./export.json json放在執行curl 同目錄就可以了 4、強制設定預設值 Kibana -> Managment -> Advanced Settings defaultIndex curl -XPOST http://localhost:5601/api/kibana/settings/defaultIndex -H “kbn-xsrf: true” -H “Content-Type: application/json” -d ‘{“value”: “id”}’ id from export.json inside have id value If already open kibana website, use Fresh (F5) page again. ...

2018-11-13 · 2 min · 306 words · Me