
YUKIKAZEBOX.WORDPRESS.COM
Yukikaze's Box | So It Has Come To This…So It Has Come To This...
http://yukikazebox.wordpress.com/
So It Has Come To This...
http://yukikazebox.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Tuesday
LOAD TIME
0.5 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
5
SSL
EXTERNAL LINKS
76
SITE IP
192.0.78.12
LOAD TIME
0.516 sec
SCORE
6.2
Yukikaze's Box | So It Has Come To This… | yukikazebox.wordpress.com Reviews
https://yukikazebox.wordpress.com
So It Has Come To This...
[bash]关于if语句中的逻辑运算 | Yukikaze's Box
https://yukikazebox.wordpress.com/2013/06/06/bash关于if语句中的逻辑运算
So It Has Come To This…. 六月 6, 2013. 最近有友人问我,bash中的if语句怎样加入多个条件判断(boolean expression)的运算,比如使用”与”(and)或者 或 (or)连接的逻辑运算,类似于C中的语句. If ( prime = 9973 prime = 10007 ). If [ $prime -eq 9973 ]; then. Elif [ $prime -eq 10007 ]; then. If [ $prime -eq 9973 $prime -eq 10007 ] # 采用c的方式不行. If [ [ $prime -eq 9973 ] -o [ $prime -eq 10007 ] ] # 这个很直观,但是不行. If [ [ $prime -eq 9973 ] [ $prime -eq 10007 ] ] # 这个也不行. If [ $prime -eq 9973 -o $prime -eq 10007 ]. If [ $prime -eq 9973 $prime -eq 10007 ]. 点击以在 Reddit 上共享 在新窗口中打开.
如何使用awk分割vCard通讯录文件(.vcf) | Yukikaze's Box
https://yukikazebox.wordpress.com/2013/06/11/如何使用awk分割vcard通讯录文件-vcf
So It Has Come To This…. 六月 11, 2013. 写这个的缘由是某人最近要从某旧山寨手机给某 更旧的 NOKIA手机同步通讯录,由于某山寨android手机输出的 vCard. ORG: Jouhou Tougou Shinentai (JTS). 可以看出这只是由一系列简单的数据域组成的”field:data”结构,每个单独的联系人的数据都保存在”BEGIN:VCARD”和 END:VCARD 中间的部分,所以仅仅需要把这中间的部分单独输出一个文件就好了,很简单吧 这种事情自然要祭出文本处理专用脚本awk了. Awk ‘/BEGIN:VCARD/{name=”split” i;}{print name”.vcf” }’ to be split.vcf. 即在发现新的BEGIN:VCARD之后,迭代的生成一个 字符 数字 的新文件名,并将BEGIN:VCARD之后的部分输出到该文件名中。 尽管如此,有兴趣的读者仍然可以通过匹配 vcard , /vcard 之类的关键字来达到类似的分割文件的效果,这里就不再赘述了。 点击以在 Reddit 上共享 在新窗口中打开.
关于EVA Q片头使用的歌曲『ひとりじゃないの』 | Yukikaze's Box
https://yukikazebox.wordpress.com/2013/05/11/关于eva-q片头使用的歌曲『ひとりじゃないの』
So It Has Come To This…. 五月 11, 2013. 开头マリ君( 真希波 マリ イラストリアス 唱的是什么歌,毫无疑问的是这个是 yet another 无用的冷知识,但既然有人诚心诚意的发问了. 咳,这个歌实际上早在TV trailer的所谓 冒頭6分38秒 就吸引我的注意了,但是因为这个歌在片中还伴随着爆炸和战斗场景 而且マリ君在大多数时间都在にゃにゃにゃ的哼 ,所以实际上我听出来的歌词只有两句. 此君似乎被设定为喜好这种上世纪六七十年代风格的歌曲(所谓 昭和歌谣 ),显然和角色设定的年龄完全不符,阴谋论的说法也是层出不穷 去看EVA的人有几个不喜欢阴谋论的 ,不过对于一个一切成谜的诡异角色来说大概也算是个不错的设定。 点击以在 Reddit 上共享 在新窗口中打开. 在 Facebook 上共享 在新窗口中打开. 点击以在 Twitter 上共享 在新窗口中打开. 点击以在 Google 上共享 在新窗口中打开. From → ANIME AND MANGA. Larr; 春節快樂…. Address never made public). MOOD, GOOD OR NOT.
[bash] 利用ps命令查看集群CPU使用 | Yukikaze's Box
https://yukikazebox.wordpress.com/2016/07/08/bash-利用ps命令查看集群cpu使用
So It Has Come To This…. 七月 8, 2016. Ps -A -o pcpu tail -n 2 paste -sd bc. 点击以在 Reddit 上共享 在新窗口中打开. 在 Facebook 上共享 在新窗口中打开. 点击以在 Twitter 上共享 在新窗口中打开. 点击以在 Google 上共享 在新窗口中打开. From → ABOUT LINUX. Larr; 如何使用awk分割vCard通讯录文件(.vcf). Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. You are commenting using your Facebook account. ( Log Out. MOOD, GOOD OR NOT.
[Linux]修复从Windows拷贝的文件权限 | Yukikaze's Box
https://yukikazebox.wordpress.com/2016/11/04/linux修复从windows拷贝的文件权限
So It Has Come To This…. 十一月 4, 2016. 最近有友人M询问我如何修复Linux下从M$ Windows系统拷贝来的文件权限,我们知道从windows拷贝来的文件很多时候可能会出现权限错误 自动变成777 ,这主要是因为windows的权限系统 (ACL, access control list)与linux本身的权限系统不兼容。 对于文件而言我们一般会希望默认设置为644 rw-r–r– ,而对于文件夹而言我们会希望其变成755 rwxr-xr-x ,然而,如果仅仅利用chmod来进行操作的话,需要递归的访问所有的目录,如果对于大量文件/文件夹而言的话,自然不是很方便,所以其实可以利用find的功能,把找到的文件管道给chmod。 Find * -type f xargs chmod 644. 因此,可以试着利用 -print0 这个是数字零 参数,把find命令的默认输出分隔符变成null字符,相应的xargs 命令也需要加入 -0 参数来解释管道送过来的文件名. Find * -type f -print0 xargs -0 chmod 644.
TOTAL PAGES IN THIS WEBSITE
5
各种杂碎 | Just another WordPress.com site | 第 2 页
https://ytyzx.wordpress.com/page/2
Just another WordPress.com site. 二月 3, 2011. 0级法术舞光术,bard等级不是白升的 笑 ,要说这是很流行的光绘(light painting). Introducing an Old Friend…. 二月 3, 2011. 此为前一阵入手的某 中古 手动广角镜头, SMC Pentax A 28 f/2.8. An oldie but a goodie… 一只80年代的漂亮的小镜头,比较符合pentax小就是美的哲学。 同样的光圈和焦距,尼康的28mm f/2.8 AI要大上两圈。 美丽的紫色smc(Super Multi-Coating)镀膜,号称 反射耗散仅为0.2%。 对焦环阻尼设置的恰到好处, as smooth as silk, should I say. 要说肯定是黄油抹多了,这种低端镜差不多都这样 ,很容易控制精度,加上这镜头本身是个广角镜,景深比较深,让这镜头成为 Pentax 少数几只可以在数码机器上日常用的手动镜头之一,白天在外面拍照的话,就把光圈设到8,焦距设到3m全程超焦距拍摄 懒人。 一月 22, 2011. 一月 21, 2011.
should I laugh? | Drifting Away
https://pkubbn.wordpress.com/2011/01/12/should-i-laugh
Just another WordPress.com site. To all those people arguing about if Apple/google/MS/… has the better product. 一月 12, 2011. Found this in my system log today after I find out my Preview is not working and Finder can’t mount .dmg files. I am not sure how I should react…. 1/12/11 12:13:39 PM com.apple.quicklook[305] objc[305]: Class is implemented in both /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit. Address never made public).
pkubbn | Drifting Away
https://pkubbn.wordpress.com/author/pkubbn
Just another WordPress.com site. Android dev log 1: Learning 3.0. 二月 27, 2011. Get familiar with java…and its cra … 继续阅读 →. 二月 23, 2011. 已到饭点的学校里面是没有什么 … 继续阅读 →. 一月 12, 2011. Found this in my system log today after … 继续阅读 →. To all those people arguing about if Apple/google/MS/… has the better product. 一月 11, 2011. Shut the * up and just use whatever you … 继续阅读 →. 一月 11, 2011. Welcome to WordPress.com. This is your f … 继续阅读 →. 一月 11, 2011. 三月 17, 2010. Android dev log 1: Learning 3.0.
Final Fantasy XIII | Drifting Away
https://pkubbn.wordpress.com/2010/03/17/final-fantasy-xiii
Just another WordPress.com site. 三月 17, 2010. 抄袭我跑团剧本….而且抄袭得也太赤裸裸的点, 连留下烙印的默认位置都一样. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. You are commenting using your Facebook account. ( Log Out. You are commenting using your Google account. ( Log Out. Android dev log 1: Learning 3.0. To all those people arguing ab…. To all those people arguing ab….
四月 | 2009 | Drifting Away
https://pkubbn.wordpress.com/2009/04
Just another WordPress.com site. 四月 6, 2009. 再来一首 崩坏的大道 我独步 我的眼前唯一的一条路 不知它伸向何方 … 继续阅读 →. 四月 6, 2009. 她在地铁上 … 继续阅读 →. Android dev log 1: Learning 3.0. To all those people arguing about if Apple/google/MS/… has the better product. To all those people arguing ab…. To all those people arguing ab…. 上的 an Adobe Photoshop…. 上的 an adobe photoshop…. 通过访问 WordPress.com 创建免费网站或博客.
二月 | 2011 | Drifting Away
https://pkubbn.wordpress.com/2011/02
Just another WordPress.com site. Android dev log 1: Learning 3.0. 二月 27, 2011. Get familiar with java…and its cra … 继续阅读 →. 二月 23, 2011. 已到饭点的学校里面是没有什么 … 继续阅读 →. Android dev log 1: Learning 3.0. To all those people arguing about if Apple/google/MS/… has the better product. To all those people arguing ab…. To all those people arguing ab…. 上的 an Adobe Photoshop…. 上的 an adobe photoshop….
不堪回首 | Drifting Away
https://pkubbn.wordpress.com/2011/02/23/不堪回首
Just another WordPress.com site. Android dev log 1: Learning 3.0 →. 二月 23, 2011. 埋头书堆也罢,可是从什么时候起把自己逼上了无精打采的路呢 大学时代的疑惑,中学时代的幻想,小学时代的幼稚,我是怎么也没有去做过 无精打采 的梦。 Android dev log 1: Learning 3.0 →. 三月 14, 2011 @ 9:10 上午. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. You are commenting using your Facebook account. ( Log Out. 上的 an Adobe Photoshop….
十月 | 2009 | Drifting Away
https://pkubbn.wordpress.com/2009/10
Just another WordPress.com site. 十月 10, 2009. 为什么啊 … 继续阅读 →. 十月 6, 2009. 里面 … 继续阅读 →. Android dev log 1: Learning 3.0. To all those people arguing about if Apple/google/MS/… has the better product. To all those people arguing ab…. To all those people arguing ab…. 上的 an Adobe Photoshop…. 上的 an adobe photoshop….
Drifting Away | Just another WordPress.com site | 第 2 页
https://pkubbn.wordpress.com/page/2
Just another WordPress.com site. 三月 7, 2010. 二月 23, 2010. 还是结实…吧(没摔过, 有3GS的人借我摔下如何). 到了合同到期俺还是买个简单朴实的candy bar手机好了, 一个星期都不用充电, 多好. 十月 10, 2009. 雷到了 http:/ www.youtube.com/watch? 十月 6, 2009. 苹果的Macbook Pro 15 ,现任版本之前的那个版本。 总体来说配置还是合格,1.07G的前端总线相当的强劲, 9600M GT的显卡也可圈可点, 同时开几个游戏没有问题。 但是苹果新的触摸板加大了触摸范围,而且加入了multi touch的功能. 于是可以用触摸板切换窗口, 滚动滑动条等等. 用起来是相当流畅相当舒坦的。 操作系统自然是Mac OS X 10.6。 系统自带的Time Machine,spotlight,expose等都是很特别(至少在windows7之前)很优秀的程序, 分别简化备份, 搜索, 和浏览不同窗口。 系统 ubuntu 9.10。 系统 Windows 7 Ubuntu 9.04。
The Spider and the Fly | Sanctuary in the Astral Plane
https://everseraph.wordpress.com/2011/01/21/the-spider-and-the-fly
Sanctuary in the Astral Plane. Yukikaze鼓勵發文計劃1 – 家に帰ると妻が必ず死んだふりをしています. Fantasies’ Memory →. The Spider and the Fly. January 21, 2011. 8220;Will you walk into my parlour? 8221; said the Spider to the Fly,. 8220;‘Tis the prettiest little parlour that ever you did spy;. The way into my parlour is up a winding stair,. And I’ve a many curious things to shew when you are there.”. 8220;Oh no, no,” said the little Fly, “to ask me is in vain,. 8220;I’m sure you must be weary, dear, with soaring up so high;. If yo...
TOTAL LINKS TO THIS WEBSITE
76
Nothing is TRUE, Everything is PERMITTED.
Nothing is TRUE, Everything is PERMITTED. Upgrade to paid account! Powered by LiveJournal.com.
Yukikaze29 (Hector) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 6 Years. Last Visit: 1 day ago. This deviant's activity is hidden. Deviant since Jan 10, 2011. You can drag and drop to rearrange.
軽音部部長の部屋
YukikazeB03 (Chris) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 9 Years. This deviant's full pageview. This is the place where you can personalize your profile! You can drag and drop to rearrange.
yukikazeblackhawks.deviantart.com
Yukikazeblackhawks - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 5 Months. This deviant's full pageview. Last Visit: 1 day ago. This is the place where you can personalize your profile! Window....
Yukikaze's Box | So It Has Come To This…
So It Has Come To This…. 十一月 4, 2016. 最近有友人M询问我如何修复Linux下从M$ Windows系统拷贝来的文件权限,我们知道从windows拷贝来的文件很多时候可能会出现权限错误 自动变成777 ,这主要是因为windows的权限系统 (ACL, access control list)与linux本身的权限系统不兼容。 对于文件而言我们一般会希望默认设置为644 rw-r–r– ,而对于文件夹而言我们会希望其变成755 rwxr-xr-x ,然而,如果仅仅利用chmod来进行操作的话,需要递归的访问所有的目录,如果对于大量文件/文件夹而言的话,自然不是很方便,所以其实可以利用find的功能,把找到的文件管道给chmod。 Find * -type f xargs chmod 644. 因此,可以试着利用 -print0 这个是数字零 参数,把find命令的默认输出分隔符变成null字符,相应的xargs 命令也需要加入 -0 参数来解释管道送过来的文件名. Find * -type f -print0 xargs -0 chmod 644. 七月 8, 2016.
yukikazehayshi (Latasha) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Thats Epic, Bro :U. Deviant for 6 Years. This deviant's full pageview. Thats Epic, Bro :U. Last Visit: 9 hours ago. This is the place where you can personalize your profile! You can drag and drop to rearrange.
YukikazeYukino (Yukikaze Yukino) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 2 Years. This deviant's full pageview. Last Visit: 120 weeks ago. This is the place where you can personalize your profile! I hope ...
YukiKazuma (Bayu Aji Samudra) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Digital Art / Student. Deviant for 2 Years. This deviant's full pageview. Last Visit: 51 weeks ago. By moving, adding and personalizing widgets.
yukikazume (Winne) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Digital Art / Student. Deviant for 10 Years. Last Visit: 64 weeks ago. This deviant's activity is hidden. Deviant since Apr 6, 2006. Favourite ...