
JNAN.ORG
jnduan's Blog | How lucky you are, how hard you work.jnduan's blog
http://www.jnan.org/
jnduan's blog
http://www.jnan.org/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
2.3 seconds
Privacy Protection Service INC d/b/a PrivacyProtect.org
Domain Admin
C/O ID#1●●●●●●●●O Box 16
Nobb●●●●each , Queensland, QLD 4218
AU
View this contact
Privacy Protection Service INC d/b/a PrivacyProtect.org
Domain Admin
C/O ID#1●●●●●●●●O Box 16
Nobb●●●●each , Queensland, QLD 4218
AU
View this contact
Privacy Protection Service INC d/b/a PrivacyProtect.org
Domain Admin
C/O ID#1●●●●●●●●O Box 16
Nobb●●●●each , Queensland, QLD 4218
AU
View this contact
Shanghai Yovole Networks Inc. (R1822-LROR)
WHOIS : whois.publicinterestregistry.net
REFERRED :
PAGES IN
THIS WEBSITE
0
SSL
EXTERNAL LINKS
41
SITE IP
122.114.43.132
LOAD TIME
2.274 sec
SCORE
6.2
jnduan's Blog | How lucky you are, how hard you work. | jnan.org Reviews
https://jnan.org
jnduan's blog
修复mac os x升级 10.10后不能启动Charles
http://www.codeif.com/post/fix-charles-can-not-startup
修复mac os x升级 10.10后不能启动Charles. Mac os x升级到10.10后, 启动Charles报下面的错:. Dyld: lazy symbol binding failed: Symbol not found: CGContextSetAllowsAcceleration Referenced from: /Library/Java/JavaVirtualMachines/1.6.0 31-b04-413.jdk/Contents/Libraries/libawt.jnilib Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices dyld: Symbol not found: CGContextSetAllowsAcceleration Referenced from: /Library/Java/JavaVirtualMachines/1.6.0 31-b04-413&#...
Python使用cProfile pstats dot进行性能分析
http://www.codeif.com/post/python-cprofile-pstats-dot
CProfile, pstats 是python标准库. Gprof2dot 是一个开源python脚本, 在这里 https:/ code.google.com/p/jrfonseca/wiki/Gprof2Dot. Test2py, 使用cProfile进行性能分析, 输出一个profile的二进制文件: out.pstat. 用 pstats 分析第一步中的profile文件,得到相关统计, out.pstats. Python test2.py ./gprof2dot.py -f pstats out.pstats bitmap desc.txt. Dot -Tpng -o out.png bitmap desc.txt.
修改ipython提示符的颜色
http://www.codeif.com/post/ipython-color-setting
找到文件 ipython config.py. Set the color scheme (NoColor, Linux, or LightBG). # c.TerminalInteractiveShell.colors = 'LightBG' c.TerminalInteractiveShell.colors = 'Linux'.
ubuntu下安装dnsmasq
http://www.codeif.com/post/ubuntu-install-dnsmasq
Sudo apt-get install dnsmasq. Sudo /etc/init.d/dnsmasq restart. Sudo service dnsmasq restart. Ps aux grep dnsmasq. Ps aux grep dnsmasq nobody 1245 0.0 0.0 35240 1528? S 10:40 0:00 /usr/sbin/dnsmasq -x /var/run/dnsmasq/dnsmasq.pid -u dnsmasq -r /var/run/dnsmasq/resolv.conf -7 /etc/dnsmasq.d,.dpkg-dist,.dpkg-old,.dpkg-new. 是dnsmasq用到的dns, 我们运营商提供的dns,例如. Nameserver 180.76.76.76 nameserver 114.114.114.114.
python发送email
http://www.codeif.com/post/python-send-email
参考: http:/ blog.csdn.net/dbanote/article/details/8924686. 因为163的邮箱开通smtp还需要绑定手机, 所以这里使用qq的邮箱, 最简单的代码如下 进入QQ邮箱, 开启stmp服务, 可能需要设置独立密码, 下面会用到. 邮箱服务地址和端口看: http:/ kf.qq.com/faq/120322fu63YV130422nqIrqu.html. Coding: utf-8 -*- import smtplib server = smtplib.SMTP('smtp.qq.com', 25) server.login('qq或者qq@qq.com', '邮箱独立密码') msg = ' nHello! Server.sendmail('from@qq.com', 'to@qq.com', msg). Msg需要 n开头, 否则看不到正文. 如果使用ssl的加密方式, 参考: http:/ stackoverflow.com/questions/64505/sending-mail-from-python-using-smtp. Coding: u...
mac下安装pyv8
http://www.codeif.com/post/mac-install-pyv8
安装说明: https:/ code.google.com/p/pyv8/wiki/HowToBuild#Boost. Src/Exception.h:6:16: fatal error: v8.h: 没有那个文件或目录. PyV8 use boost: python for interoperability, so, download the latest boost version and build the library. 所以安装boost, 安装方法参见: http:/ stackoverflow.com/questions/104322/how-do-you-install-boost-on-macos. Src/Exception.h:16:10: fatal error: 'boost/python.hpp' file not found.
修复ubuntu下public key is not available错误
http://www.codeif.com/post/fix-ubuntu-public-key-is-not-available
修复ubuntu下public key is not available错误. Sudo apt-get source nginx Reading package lists. Done Building dependency tree Reading state information. Done NOTICE: 'nginx' packaging is maintained in the 'Git' version control system at: git:/ anonscm.debian.org/collab-maint/nginx.git WARNING: The following packages cannot be authenticated! Sudo apt-key adv - keyserver keyserver.ubuntu.com - recv-keys 40976EAF437D05B5 sudo apt-key adv - keyserver keyserver.ubuntu.com - recv-keys 3B4FE6ACC0B21F32.
sublime下安装markdown的插件
http://www.codeif.com/post/sublime-install-markdown-plugin
使用sublime编写预览markdown文件, 以下操作在sublime2有效, sublime3没有验证, mac中将ctrl换为command就可以了. 默认的配色方案可能不高亮, 换为 Color Scheme - Sunburse. Import urllib2,os;pf='Package Control.sublime-package';ipp=sublime.installed packages path();os.makedirs(ipp) if not os.path.exists(ipp) else None;open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http:/ sublime.wbond.net/' pf.replace(' ','%20') .read(). Ctrl shif p 调出命令面板. 输入install, 选择install package. 装完 MarkdownBuild 插件后, 按CTRL b就可以在默认浏览器中预览md结尾的文件了.
iphone删除所有照片
http://www.codeif.com/post/ios-delete-all-photos
使用的mac电脑删除, iphone连上mac后, 打开 Image Capture(图像捕捉), 推荐用Alfred打开. 然后Command a 全选,电脑点击左下角的红叉标识, 就可以删除所有照片了.
新mac软件安装记录
http://www.codeif.com/post/new-mac-software
Chrome http:/ www.google.com/chrome/. Firefox https:/ www.mozilla.org/en-US/firefox/new/. Alfred, 官网 http:/ www.alfredapp.com/. ITerm2 http:/ iterm2.com/. Brew http:/ brew.sh/. Sudo easy install pip. Sudo pip install virtualenv sudo pip install virtualenvwrapper. Virtualenvwrapper默认安装在安装在/usr/local/bin, 打开: /usr/local/bin/virtualenvwrapper.sh 可以看到安装步骤, Setup. Sublime http:/ www.sublimetext.com/2. Charles http:/ www.charlesproxy.com/. Mou 一款md5编辑器 http:/ mouapp.com/. Sudo pip install mercurial.
TOTAL LINKS TO THIS WEBSITE
41
Blog de jnan-lhob - warda - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Mise à jour :. Abonne-toi à mon blog! N'oublie pas que les propos injurieux, racistes, etc. sont interdits par les conditions générales d'utilisation de Skyrock et que tu peux être identifié par ton adresse internet (67.219.144.114) si quelqu'un porte plainte. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. Posté le vendredi 23 avril 2010 11:28. Ou poster avec :. Ou poster avec :.
Blog de jnan-rap - BièNVèNù SùR BLoG : JNàN RàP - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Plus d'actions ▼. S'abonner à mon blog. Création : 06/08/2011 à 11:58. Mise à jour : 01/06/2012 à 10:23. BièNVèNù SùR BLoG : JNàN RàP. Mr kara ' xkon ana ' from jnan rap 2012.promo de rap marocain. Ajouter cette vidéo à mon blog. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. Posté le vendredi 01 juin 2012 10:47. Ajouter cette vidéo à mon blog. Ou poster avec :. N'oublie pas que l...
jnan.com - jnan Resources and Information.
This page provided to the domain owner free. By Sedo's Domain Parking. Disclaimer: Domain owner and Sedo maintain no relationship with third party advertisers. Reference to any specific service or trade mark is not controlled by Sedo or domain owner and does not constitute or imply its association, endorsement or recommendation.
家居指南网
Call us : 032 2352 782. One more separated link. The standard chunk of Lorem Ipsum used since the 1500s is reproduced. At vero eos et accusamus et iusto qui blanditiis praesentium voluptatum deleniti atque. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque. At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium. All around the world. On Feb 25, 2015. On Apr 11, 2015.
Jnan.net
jnduan's Blog | How lucky you are, how hard you work.
How lucky you are, how hard you work. Enable https support for jnan.org. Https 证书有很多颁发者,处于费用的考虑 毕竟这个博客已经从日更变为月更到现在是年更 ,没必要每年花费个几百上千的去买证书,于是就是用了 Let’s Encrypt 提供的免费 https 证书。 用 wordpress 建立博客已经好多年,但是最近 wordpress 开始变得很慢,有些后台功能也不正常 外加虚拟主机即将到期,感觉有了 vps 就没必要再去续费虚拟主机了,所以决定将博客迁移至 vps 上。 但是 vps 上只有 node.js 环境,因此顺便把博客系统换成了 hexo.js。 Chrome 关闭时未清除临时 cookie 的问题. 前几天在给别人讲解 cookie 相关知识时,发现 chrome 浏览器的一个问题。 正常情况下,如果 server 端在写入 set-cookie 首部的时候,如果不指定 cookie 的有效期,则 cookie 应该在浏览器关闭的时候被删除才对。 Mvn -U clean install. 自从 ZenCo...
ÂòÒ»×¢²ÊƱÄÜÖжàÉÙ_ÂòÒ»×¢²ÊƱÄÜÖжàÉÙ\du\bo\¾²Ì¬²âÊÔÊÕ¼
ÊÆ Ñ ºÅÆ Èí þÏÂÔØ. ÌìÌì ÊÆ Íø È Âð. ÆßÀÖ Ê ü50ÆÚ ª ºÅÂë. Æð ȺÐÛÖð î üºÃ µÄ˵ÈçÌâ ÐÐÁË. ÐÂ ÓÆÂÑ Õß º ÃË ú ÒÀÖ ûÖÐ úÓë ÆÂÉ ö. ÁªºÏ µ ÈÓªÊÕºÍÀûÈóÔö É ÛÐ ù. ÖÐ Å ÉÊÕÅÌ ºÌìÈË ûÖ óµøÓâ14%. ÓÐÑÕÓÐʵÁ º ÓÄà ó ÜÀí äÉí ÌÊ ðÁ. ÖÐ ì ú ì ºÈ ÃæÍÆÐÐÏÖ Ö î ÊÓÒôƵ. Should pregnant mothers hang up thei. ÑÓ ÙÍËÐݵ 69Ëê µÂ úÑëÐÐÓëÕþ ª. Fight against neglected tropical dis. ÒÆÆ Ú üÄ µÃ ÎÂÍø ÄÂÀ ÕÛ ðÄе ò. Uber eyes EU expansion despite Denma. ÍõÝ ûÈÎÌ ÖÐÑÐÔº Ôº Ç ÈÎÒÑËæ. À à ÊÆ ÍøºÃ ºÃ. Ò ÈÉÂÎ Ê ÈË ù ÉÖ ÅäÊÕÈëÍ ÈÔö 8.8%.
jnan198's blog - 100% jnan - Skyrock.com
22/07/2011 at 4:05 PM. 22/07/2011 at 4:05 PM. Subscribe to my blog! Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.62) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Friday, 22 July 2011 at 4:09 PM. Post to my blog. Here you are free.
エクステリア、外構工事なら|Jnanagarden(千葉県市原市)
TEL 0436-26-6111 FAX 0436-26-6112. TEL 0436-26-5508 FAX 0436-26-5509.
株式会社佐藤工業 袖ケ浦店
外構工事 エクステリア工事 工事専門店 千葉 市原 袖ケ浦 木更津 君津 富津. 外構工事 エクステリア工事 工事専門店 千葉 市原 袖ケ浦 木更津 君津 富津. 袖ケ浦市蔵波1930-4-101, 千葉県, Japan. 12849;佐藤工業 袖ケ浦店 〒299-0243 千葉県袖ケ浦市蔵波 1930-4-101 TEL:0438-38-6692 FAX:0438-38-6693 E-mail contact@jnana-310.com 市原店 http:/ jnana-310.com 袖ケ浦店 http:/ jnana-3110.com. 12300;Awesome Inc.」テーマ. Powered by Blogger.
Accueil - Jnana Chakshu-Le 3e Oeil
Jnana Chakshu-Le 3e Oeil. Eveil de l'Être: vers plus de Conscience. Jnana chakshu et moi. Formation, expériences, recherches personnelles. Ateliers de constellations familiales et systémiques. Offrir un massage en cadeau. Massage sonore aux bols tibétains. Massage Chi Nei Tsang. Massage aromatique Pile et Face/Pile ou Face. Rituel de reconnexion du Masculin et du Féminin. Parfums de l’Âme. BONJOUR ET MERCI DE VOTRE FIDÉLITÉ. MEILLEURS VOEUX POUR 2018. CE SITE N’EST PLUS ACTIF. Nous sommes tous reliés).