
blog.mcshell.org
Mcshell记录马辰龙的工作和学习的点点滴滴
http://blog.mcshell.org/
记录马辰龙的工作和学习的点点滴滴
http://blog.mcshell.org/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
PAGES IN
THIS WEBSITE
0
SSL
EXTERNAL LINKS
24
SITE IP
54.175.212.235
LOAD TIME
0 sec
SCORE
6.2
Mcshell | blog.mcshell.org Reviews
https://blog.mcshell.org
记录马辰龙的工作和学习的点点滴滴
debian7.5编译安装apache2.4+php5.6
http://www.godblessyuan.com/2015/08/06/debian7-5compile_install_apache2-4_php5-6
Debian7.5编译安装apache2.4 php5.6 – 神一样的少年. Debian7.5编译安装apache2.4 php5.6. 纪念一下debian 7.5 编译安装apache2.4 php 5.6 仅编译,不配置. Tar -zxpf zlib-1.2.8.tar.gz cd zlib-1.2.8 ./configure - prefix=${SOFT DIR};make -j2 & make install. Tar -zxpf apr-1.5.2 change.tar.gz cd apr-1.5.2 ./configure - prefix=${SOFT DIR}/apr;make -j2 & make install. Tar -zxpf libiconv-1.14.tar.gz cd libiconv-1.14 ./configure - prefix=${SOFT DIR} ;make & make install. Tar -zxpf curl-7.43.0.tar.gz cd curl-7.43.0 ./config...Tar -zxpf freetype-2....
2015 七月
http://www.godblessyuan.com/2015/07
2015年7月 – 神一样的少年. Head first python 第八章 web交互 学习笔记. Head first css html. Head first css html.
Inbox Dollars | The Froog
http://thefroog.com/2011/05/09/inbox-dollars
Frugal can be Fun. Raquo; Money Makers. Raquo; Inbox Dollars. On May - 9 - 2011. Alright, just requested a check from my latest Money Maker. I am getting a $55 check. In June, so I am really excited. This is technically my first check from this company so I will keep you posted on if they follow through, though they are supposed to be reputable. The key to any of these paid sites is to do all of the e-mail clicks, watch the free videos and do all of the free stuff. 8230;I would love the referral! August ...
nagios 理解(1)
http://www.godblessyuan.com/2015/07/13/nagios_understand_1
Nagios 理解 1 – 神一样的少年. 1nsca 2.nrpe 3.主动监控和被动监控 4.NDOUtils 5.plugins 6.addons. NSCA is an addon that allows you to send passive check results from remote Linux/Unix hosts to the Nagios daemon running on the monitoring server. This is very useful in distributed and daredunnt/failover monitoring setups. Http:/ nagios.sourceforge.net/docs/nagioscore/4/en/addons.html#nsca. Http:/ nagios.sourceforge.net/docs/nagioscore/4/en/passivechecks.html. Plugins are compiled executables or scripts (Perl scripts, shell sc...
关于laravel5.1安装心得
http://www.godblessyuan.com/2015/07/20/laravel5-1_install_tutorial
关于laravel5.1安装心得 – 神一样的少年. 看了laravel中文网的文档翻译,感觉是好一点了,不过因为直接翻译,所以本来差翻译也是差,不是翻译的问题,是源的问题 ,在接着看了2天的入门文档,要么也是跟作者一样,好像很牛逼的样子,然后就是看不懂啊,最直接的效果就是,卧槽,这怎么可以突然变成这样了 过程呢 ,还有一些因为太老了,版本已落后,安装方式配置方法都有变化了,所以不能用,所以自己就将摸索的经验放出来,我也是刚接触,只接触到安装和简单实用,router,midd,control,bladetemple,还没有深入,毕竟我也是刚学php,过程很辛酸,靠着以前的linux 知识,django框架知识,html和css的基础知识终于是入门laravel了。 Ubuntu 14.2 64位 开发使用,主要因为php的包版本够高,满足laravel的要求. 由于laravel是试用composer来做包依赖管理的,包括laravel的安装,所以还需要安装composer https:/ getcomposer.org/. 建议 /profile : 在登录时用到的第三个文件 是.profil...
head first python(第五章)–学习笔记
http://www.godblessyuan.com/2015/04/27/head_first_python_chapter_5_learning
Head first python 第五章 –学习笔记 – 神一样的少年. Head first python 第五章 –学习笔记. 原地排序 in-place sorting ,按指定的顺序排列数据,然后用排序后的数据替换原来的数据。 复制排序 copied sorting ,按你指定的顺序排序,然后返回原数据的一个有序副本。 Datastrip().split(‘,’). 创建一个函数,传入时间参数,然后将不一致的 -, 数据清除掉,然后将其分割为分和秒,然后整合在一起,形成统一时间格式 MM:SS。 Def sanitize(time string): if '-' in time string: splitter = '-' elif ':' in time string: splitter = ':' else: return(time string) (mins, secs) = time string.split(splitter) return(mins '.' secs). 协议进行授权,转载请注明转自 head first python 第五章 –学习笔记.
head first python(第四章)–学习笔记
http://www.godblessyuan.com/2015/04/26/head_first_python_chapter_4_learning
Head first python 第四章 学习笔记 – 神一样的少年. Head first python 第四章 学习笔记. Print (man) print (other). Print (“Norwegian Blues XXXX”,file=out) 是python 3.0用法,如果旧版本的python就是用. Usr/bin/python # -*- coding: utf-8 -*- man = [] other = [] try: data = open('sketch.txt') for each line in data: try: (role,line spoken) = each line.split(':',1) line spoken = line spoken.strip() #这里的解读是 这里不是直接处理line spoken字符串,python 不会改变字符串,他会创建一个新的字符串出来然后执行类似如strip 的方法,然后将返回值赋值到原来的字符串 if role = 'Man': man.append(line spoken) e...Str(err) # 捕获...
做一个小爬虫监控
http://www.godblessyuan.com/2015/06/26/webcrawler_monitor
做一个小爬虫监控 – 神一样的少年. 1机器在线数据显示在网站网页上,每次都要访问这个访问进行查询机器是否在线 2.由于网页上已经有现成的在线数据,所以就不打算直接查询数据库进行数据获取 3.需要定时发送一个邮件通知运维人员在线情况。 GET 方法请注意,查询字符串 名称/值对 是在 GET 请求的 URL 中发送的 /test/demo form.asp? Http:/ www.w3school.com.cn/tags/html ref httpmethods.asp. Url = 'http:/ XXXX/device.php' #url信息 req = urllib2.Request(url=url,data=params)#创建请求内容,参数是url和data a = urllib2.urlopen(req)#进行访问页面,带着请求信息 b = a.read() #这写得比较简单,将访问页面的返回信息转变为json格式,然后读取json格式的内容获取需要的字段,因为我需要的数据在data字段里面,所以直接获取data为key的value信息。 C = json.loads(b) data...
Ce que Yasmina Khadra doit à Tahar Ouettar | Karim Sarroub
https://karimsarroub.com/2010/04/10/ce-que-yasmina-khadra-doit-a-tahar-ouettar
Aller au contenu principal. Incertitude totale concernant la libération de Taoufik Ben Brik. Michel Onfray ou la conversion d’un hédoniste en gredin de la pensée →. Ce que Yasmina Khadra doit à Tahar Ouettar. Ce que Yasmina Khadra doit à Tahar Ouettar. Reçu, ce 10 avril 2010, de. Yasmina Khadra avait déjà reconnu un plagiat. Son livre a été retiré de la vente. Yasmina Khadra a plagié des passages du livre Al-Laz (1974), de l’écrivain AL-TAHER WATTAR. Al Laz (1974), de Tahar Ouettar. And two in Algeria :.
head first python(第六章)–学习笔记
http://www.godblessyuan.com/2015/05/03/head_first_python_chapter_6_learning
Head first python 第六章 –学习笔记 – 神一样的少年. Head first python 第六章 –学习笔记. Sarah Sweeney,2002-6-17,2:58,2.58,2:39,2-25,2-55,2:54,2.18,2:55,2:55,2:22,2-21,2.22. Key - value Name "sarah sweeney" DOB "2002-6-17" Times "[2:58,2.58,2:39,2-25,2-55,2:54,2.18,2:55,2:55,2:22,2-21,2.22]". Cleese = {} #大括号. Cleese['Name'] = 'John Cleese' # 一个key 对应一个字符串. Cleese['Name'] = ['John Cleese','John Cleese1','John Cleese2','John Cleese3','John Cleese4'] #一个key对应一个list. Cleese = {'Name':'abc','Address':'asdasdasda'} #注意是用冒号. Usr/bi...
TOTAL LINKS TO THIS WEBSITE
24
MCR Safety Distributors Blog
MCR Safety Distributors Blog. Subscribe to Email Updates. MCR Sales and Service 800-955-6887. US Safety Sales and Service 800-821-5218.
Original 10
This domain has been registered on behalf of one of our customers.
blog.mcsbuildingcontractors.co.uk
MCS Building Contractors | Welcome to the new MCS blog. We will be posting comments from customers, completed works as well as featured works and focusing on the various projects that we do.
Welcome to the new MCS blog. We will be posting comments from customers, completed works as well as featured works and focusing on the various projects that we do. Skip to primary content. Skip to secondary content. Forgetting to blog becoming a habit! April 21, 2014. Thought it would be nice to show some of the pictures of our latest flat renovation which now has a happy tenant in place. Newly refurbished shower room showing vanity unit/sink with all new floor and wall tiling. February 24, 2014. As with...
MC Serpenti Blog | © Copiright 2008
Data: 26.04.2013. Data: 05.12.2011. Il mio pensiero sugli ultimi eventi. Data: 07.07.2011. Data: 17.05.2011. Data: 12.04.2011. Data: 05.04.2011. Data: 29.03.2011. Data: 28.03.2011. Data: 26.03.2011. Data: 17.03.2011. Data: 08.03.2011. Data: 07.03.2011. Data: 08.02.2011. Data: 23.08.2010. Ahhhquanto sono importanti le foto. Data: 29.07.2010.
Account Suspended
This Account has been suspended. Contact your hosting provider for more information.
Mcshell
主要使用coro协程 AnyEvent: HTTP: LWP: UserAgent 异步http请求,查询数据库中IP字段,返回运营商。 CODE如下: #查询IP的网络提供商 sub search ip area { my $self = shift; my ( $ . 阅读全文 ». Usr/bin/perl use strict; use warnings; use JSON: RPC: Client; use Data: Dumper; use JSON; use utf8; use Parallel: ForkManager; my $pm = Parallel: ForkManager- new(20); #定义开启进程数 $ = 1; b . 阅读全文 ». BackupDir:/data backup,archiveDir:/archive dir,original:/www/,fullDayBase:10} #! Usr/bin/perl use warnings; use File: Copy: Recursive . 阅读全文 ». Usr/bin/perl use strict;...
Блог – Блог киевской студии McSite
Блог киевской студии McSite. Как убрать index.php из URL в Joomla. По сути: в URL есть не нужное мне вложение index.php (http:/ mysite.ua/index.php/uslugi). Убрать его можно в два шага. Continue Reading →. Поделиться в соц. сетях. Google AdWords. Автоматизация рекламных кампаний. Как много приходится биться в агонии, чтобы успеть выполнить все задачи в рекламных аккаунтах, а времени все равно не достаточно. Эх. Марина Собкевич, координатор. Главными спикерами были: Ярина Клименко, Руслан Самчук, Олег.
Just Tips: Microsoft & More from Mission Critical Systems
View our training calendar. Our blog has moved. August 13th, 2013. We’ve moved our blog to http:/ www.mcstech.net/blog/. Please visit us there. Adobe Acrobat Text Searching. August 3rd, 2010. If you Adobe acrobat documents were created by converting a word document, or if they went through an OCR conversion, then you can search for words within your PDF. Posted in Adobe Acrobat. Word 2007 Eliminating tracked changes. August 3rd, 2010. Posted in Microsoft Word. August 3rd, 2010. August 3rd, 2010. Posted i...
MCSX - Finanças Pessoais, Consulta SPC, Serasa, CPF
MCSX Blog - O blogue mais nerde da Internê. Blog sobre notícias do mundo nerd - Playstation 3, Xbox 360, Games, Dicas, Hardware e muito mais! Como Importar dos EUA via Shipito.com. Como Importar dos EUA via Shipito.com. Saiu o download do PES 2013 PC Demo para baixar. Saiu o download do PES 2013 PC Demo para baixar. ORKUT agora é o domínio padrão no Brasil. Não era www.orkut.com? ORKUT agora é o domínio padrão no Brasil. Compartilhando a Internet do iPhone sem iTunes. Fifa 11 demo para Download. Exatamen...
Welcome to "MCT-Lab" Server...
Welcome to MCT-Lab Server -. Marix Computing Technology - Laboratory. Web Server air PRISM. MCT-Lab Virtualization Server lunar PRISM. MCT-Lab File Server libra PRISM. MCT-Lab File Server jnana PRISM. MCT-Lab Experimental Server "aqua PRISM". MCT-Lab Network Admin. Server "solar PRISM".
Türkiye’nin Danışmanlık Şirketi
Mehmet Y. Özel. Pek çok yönetici ve çalışan “performans” kelimesine takılmış durumda şu son günlerde. Performans dediğimiz şey, tüm rol ve sorumluluklarımız çerçevesinde başardıklarımız anlamına da gelebilir, enerjimizin açığa çıkmış farklı farklı adımlarına da. Beş Yaş Merakıyla Sorulabilecek Basit Ama Güçlü 25 Soru. Zaten Seni Bu Yüzden Yönetici Yaptık…. Tanyer Sönmezer'in "Yöneticinin Beslenme Çantası" Kitabından. Özünüzde ne olduğuna iyi bakın ve ona sıkı sıkıya sarılın. Er geç ona döneceksiniz, ...