Thank you @blocktrades ! 一次有惊无险的误操作 – 通过 blocktrades 转出 SBD 到比特币钱包把MEMO填错了


I accidentally put the MEMO as the BTC wallet address this morning, when I wanted to exchange 100 SBD to the bit-coins. 


The MEMO is very important, which determines which BTC wallet to credit to. So you have to make sure it is 100% correct. It was my mistake, and I wouldn’t complain if I cannot get 100 SBD back. However, I took a slim hope to contact @blocktrades   and they are so kind to refund me 100 SBD!


Thank you @blocktrades  for saving me the day.


 今天早上第一件事情就是起来打开 Steem 钱包通过 官方内置的 @blocktrades 转出存了好久的 100 SBD. 当时其实没睡太醒,迷迷糊糊的。把转出帐号的MEMO填成了比特币钱包。所以等了半天,BTC钱包并没有显示到帐。 


 当时很是郁闷啊,毕竟是好几天通过写STEEM的报酬。虽然没什么抱着希望,还是联系了block trades, 通过邮件,STEEM留言,和STEEM转钱0.001SBD附加消息。


在今天下午大概2点多的时候收到了@blocktrades的邮件:I’ve refunded your SBD.失而复得,当然如果不退,我也是能理解,毕竟这是自己犯下的错误,怪不得别人。


所以在此,我得提醒所有的 Steemians, 为了避免不必要的麻烦和心塞,在转钱的时候一定要按照要求正确的填写MEMO,避免金额丢失。


如果一不小心转错了,不妨试着像我一样联系客服,可以发邮件,在文章下面留言,或者是转0.001SBD附言很客气的联系 @blocktrades 



 丢失了,只能安慰自己做做慈善了。


Thank you @blocktrades ! 



 Originally Published in Steemit. Thank you for reading my post, feel free to FOLLOW and Upvote @justyy, which motivates me to create more quality posts.


 原创首发SteemIt, 非常感谢阅读, 欢迎FOLLOW和Upvote @justyy 能激励我创作更多更好的内容.     



This page is synchronized from the post: Thank you @blocktrades ! 一次有惊无险的误操作 – 通过 blocktrades 转出 SBD 到比特币钱包把MEMO填错了

R Programming Tutorial – How to Compute PI using Monte Carlo in R? R语言入门之 – 如何通过Monte Carlo来计算 PI?


 This tutorial will continue to help you understand how powerful R is to handle the vectors (arrays). 


 We know that the math constant  can be approximated by 4 times of the number of points inside a 1/4 circle divided by the total number of points. This is known as the Monte Carlo computation, which is to create as many random sample points as possible and count the statistics.   


set.seed(0.234234)

We can set the random seed by using set.seed() function (you can set to a constant number in order to reproduce the same ‘random’ data sets), e.g.: 


上次开始步入R语言的世界, 感觉R还是挺简洁强大的. 学一门程序最好的办法就是敲代码, 敲例子. 在工作生活中如果遇到需要敲代码的时候就得问问自己能否拿R语言来解决? 这样能更好的进步. 


 我们都知道圆周率可以通过随机在一个正方形(坐标X/Y均为0到1)撒足够多的点. 统计一下点在1/4的圆内(半径为1)的个数和总的撒点个数 这个值就会很接近 pi/4  . 因为圆的面积公式为    pi r r


 这种方法也称之为蒙特卡罗方法, 是一种随机, 统计的方法. 


 我们可以通过 runif 来生成随机的点, 参数指定点的个数,  


 Now, we can generate two vectors given a length, for example: 


x=runif(100000)

y=runif(100000)

 每个随机值是在0到1之间的浮点数(也可以指定 min=0,max=1). 然后可以把长度放在另一个向量里:  


 These random numbers are float numbers between 0 and 1, which can be visualized as 100000 points. So we can now compute their distance to the (0, 0), or the radius of the circle. 


z=sqrt(x^2+y^2)

 这时候我们只要统计出这个z数组里小于或等于1的个数即可. R语言里的 which 函数返回了数组里满足条件的 索引值, 那么我们只需要通过:  


 Now, z is also length of 100000. We next need to count how many of the distances in z vector are smaller than 1 (falling inside the 1/4 circle). We can use which to return all indices of the array given a condition. 


length(which(z<=1))

 即可以得到在圆内点的个数, 记得乘于4再除于样本的个数 就可以得到圆周率的近似值 (点数越多 精度越接近, 但  是个无理数)  


 To count the points, we use the length function. And the PI is finally estimated in a straightforward expression. Remember, this is just the approximation and the accuracy does improve when the number of samples gets larger and larger. 


length(which(z<=1))*4/length(z)

[1] 3.1454 

画图   PLOT THE POINTS


把在圆内的点画出来 (不指定颜色默认为黑色)  


 We can plot the points (that fall inside the circle) using (default black color if color is not specified): 


plot(x[which(z<=1)],y[which(z<=1)],xlab=”X”,ylab=”Y”,main=”Monte Carlo”)

 再把剩下的点用蓝色画出来 (注意这里用的是 points 方法在原来的图上画):  


 and points outside the circle (noted in blue color) can be added to the same plot using: 


points(x[which(z>1)],y[which(z>1)],col=’blue’)

 最后面就很直观的能解释这种算法.   This finally gives the plot: 



 You see? No for/while loops, just 4 statements in R! 


 这个例子中R非常强大, 没用到 for/while (Python, Matlab 也可以). 传统编程语言基本都是需要用到for或者while的. 从这个例子中是不是能看出统计学出生的R语言的一些编程风格呢? 



Thank you for reading my post, feel free to FOLLOW and Upvote @justyy, which motivates me to create more quality posts.  


根据我的博文  这篇这篇 整理。 非常感谢阅读,欢迎FOLLOW和Upvote @justyy 能激励我创作更多更好的内容。   



This page is synchronized from the post: R Programming Tutorial – How to Compute PI using Monte Carlo in R? R语言入门之 – 如何通过Monte Carlo来计算 PI?

Don't ride the bicycle in the opposite direction! 自行车一定不要逆着车道行驶


Don’t ride the bicycle in the opposite direction! That is, in UK (when people drive on the ‘Wrong’ side of the road), you need to always cycle on the left. This is to avoid crashing into the oncoming vehicles, especially when there is a sharp turning.


Summer is here, that is why I feel it is necessary to remind you guys of the safety. (My Wife @happyukgo went on a short ride in the village the other day.)


剑桥大多平地(不像谢村高地坡很多), 而且剑桥不缺绿地蓝天, 很适合骑自行车. 但英国骑自行车相对危险, 因为很多时候没有专门的自行车道, 很容易出事故. 


除了一些设备要齐全(头盔 夜光衣和夜光灯), 骑车的时候一定不要逆着车道行驶, 因为剑桥很多弯弯曲曲的路, 逆着车道行驶很容易撞上拐弯迎面而上的车辆. 



 媳妇 @happyukgo 骑自行车


剑桥很多小路边上都有很多鲜花, 我朋友笑说这是为了纪念被车撞的自行车. 



Originally Published in Steemit. Thank you for reading my post, feel free to FOLLOW and Upvote @justyy, which motivates me to create more quality posts. 


原创首发SteemIt, 非常感谢阅读, 欢迎FOLLOW和Upvote @justyy 能激励我创作更多更好的内容.    



This page is synchronized from the post: Don’’t ride the bicycle in the opposite direction! 自行车一定不要逆着车道行驶

关于两件卖房的小故事


 今天听到两件国内卖房的小故事,特此分享一下。 


 朋友买了一国内著名学区房,但又想在同一学区房再买另一套C。于是他便把手头上的这套学区房A放到中介挂上去(但实际上他并不想卖这套房A)。他的目的是什么呢?这样一来,中介就和他共享了潜在竞争者的背景和资料,信息就是金钱。有了这些数据,他便能分析出他感兴趣的这套房C (因为是同一小区,所以潜在买主肯定会有比较)的砍价范围及是否抢手。比如如果遇到土豪之类的现金买主,他则会放弃。另:朋友还有另套房B,他和中介说,哪个先卖掉就卖哪一个(A或B,但实际上他只想卖B),所以中介也不会觉得有问题,于是便很卖力的帮他卖房。 


 又是这朋友,上面说到卖B这套房。刚开始他把房子放到中介那,只贴图片,不提供看房。然后在他已经签下房子C后,他便把B的状态改成可以看房,结果很多人就来看房(而且约在同一个时间左右),然后据说送钥匙的又晚了, 然后B这套房门口就堵了好多人要看房,给人造成房子很抢手的感觉。朋友房子原本挂540万,在看房当天改成550万,竟然当天就卖掉了。 


 据说买B的是一微软的工程师,因为没有购房条件,一周后和他女朋友领证了。 



 Fen Drayton 剑桥村庄 



Originally Published in Steemit. Thank you for reading my post, feel free to FOLLOW and Upvote @justyy, which motivates me to create more quality posts. 


原创首发SteemIt, 非常感谢阅读, 欢迎FOLLOW和Upvote @justyy 能激励我创作更多更好的内容.   



This page is synchronized from the post: 关于两件卖房的小故事

The Eric's Summative Record 老大 Eric 41个月幼儿园的成绩单


The following shows the summative record of my son Eric (41 months) when he was about to finished the nursery. It helps the parents and teachers to keep track of the progress of the children. 


My son has exceeded the expectations in terms of numbers, maths, shapes etc but he still needs to improve his social and communication skills. 


This is quite typical in bilingual family where we speak Chinese at home, so the kids sometimes are confused. 


Anyway, I am quite happy to see my son Eric has made so much progress!


老大 ERIC 41个月大 之前在谢菲尔得的时候一周上一天幼儿园. 至从搬到这村里之后 一周上四天 幼儿园 其中三天是 收费比较贵的(1小时7镑5) 另一天是收费比较便宜的 (一小时3镑3). 收费比较贵的服务当然会比较好 平时对小孩教育照顾会比较细致. 举一个例子, ERIC感冒流鼻涕的时候 贵的幼儿园都会帮忙 而从便宜的幼儿园回来 ERIC的 鼻涕都流得满脸都是 🙁 


 公司有 Childcare Voucher福利 这样算来 一个月通过税前换 优惠其实就是 50英镑去买124英镑的费用可以用来交学费. 再加上 现在英国政府每周有 免费补助 15个小时的学费 所以一个月下来 ERIC的学费不到100英镑 是可以负担起的. 


 贵的幼儿园 (Sunhill Daycare – Fen Drayton) 平时都会和家长一起交流小孩子的成长情况. 其中每个月家长都得填表 说孩子在家里喜欢什么 学习了什么. 而学校则会定期给孩子评估成长发育情况: 




 ERIC 41个月 发育成长情况大致良好. 主要是说话能力比较落后 还有就是比较内向 不爱和人交流 (People and Communities). 在英国双语的情况下 孩子普遍说话比较慢. 评估上面还给出了建议: 多和孩子说说家庭生活 多多画画



Thank you for reading my post, feel free to FOLLOW and Upvote @justyy, which motivates me to create more quality posts. 


常感谢阅读, 欢迎FOLLOW和Upvote @justyy 能激励我创作更多更好的内容.  



This page is synchronized from the post: The Eric’’s Summative Record 老大 Eric 41个月幼儿园的成绩单

The Classic Red-Circle Lens (Canon 24-70mm F2.8) 入 24-70mm F2.8 加能红圈镜头


My wife @happyukgo said I need to improve the photography skills because of this picture. I blame the lens because it is a cheap one (Sigma F1.4 30mm). Therefore, I spent around 1300 Pounds to get the following items:  



  • Canon 24-70mm F2.8 USM II (the classic red circle lens). The Red means Good.

  • Hoya HD 82mm Protector, that can be used as a UV Filter when shooting in a bright sunshine.

  • Lens Cleaning Pen and Cloths


Ha! I may need to eat the dust bunny for a few weeks..but I think it is worth it. More photos are coming so please do follow me @justyy 


 那句话怎么说来着: 单反穷三代, 摄影毁一生. 上次在拍媳妇的时候明显发现30mm F1.4适马镜头在光线不足的情况下很容易糊, 于是果断又败家了. 


 看了很多镜头, 也听了朋友不少的推荐. 最后面还是选择了这个 加能24-70mm F2.8 加能红圈镜头. 红圈镜头顾名思义就是镜头前面有一圈红的, 是算高档镜头(成像质量和做工质量). 这个镜头又称万能焦, 焦段24-70mm, 可以用于旅游 私房拍摄. 


 这次并没有换机身, 虽然机身是入门级的 T3i 且是半画幅, 配这个好镜头的确需要一个全画幅的, 等之后换完大房子再换. 人嘛 要有追求, 要是这点追求都没有 和咸鱼又有什么分别呢? 


 这个是2代的镜头(USM II), 有一个同款但是 最大光圈是F4, 我想既然要买了, 就买一个好一点的F2.8, 人像拍摄更能(光圈大) 使背景虚化, F4的便宜 大概只需要一半价格(六百英镑左右). 


 全套下来1300英镑左右, 打算把我手头上剩下的几个镜头给在EBAY上处理了. 



 镜头,擦镜头的步和笔,还有保护套 



 一套下来1300多英镑 比在Amazon上省了300多英镑 



 经典红圈镜头 24-70mm F2.8 



照片下次更新! 敬请期待! 请 follow 我 @justyy



Originally published on SteemIt, Thank you for reading my post, feel free to FOLLOW and Upvote @justyy, which motivates me to create more quality posts.


SteemIt 原创首发, 非常感谢阅读, 欢迎FOLLOW和Upvote @justyy 能激励我创作更多更好的内容. 



This page is synchronized from the post: The Classic Red-Circle Lens (Canon 24-70mm F2.8) 入 24-70mm F2.8 加能红圈镜头

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×