Work Schedule

今日工作安排:搭环境

安装VMWare View Client、建立连接,访问外部服务器。

安装lrzsz 解决上传下载的问题

安装apach php 建立WEB环境

拷贝代码

apache安装方法:

cd /usr/local
tar -zxvf httpd-2.2.6.tar.gz
cd
httpd-2.2.6/
./configure --prefix=/usr/local/apache --enable-so

make && make install

restart.sh  /usr/local/apache/bin/apachectl  restart

start.sh     /usr/local/apache/bin/apachectl start

stop.sh    /usr/local/apache/bin/apachectl stop

安装emacs和xdebug的包:
emacs-23.1.tar.gz

emacs.tgz

geben-0.15.tar.gz

geben-0.26.tar.gz

xdebug-2.2.1.tgz

Work Schedule,码迷,mamicode.com

时间: 2024-10-09 23:27:18

Work Schedule的相关文章

POJ1325 Machine Schedule 【二分图最小顶点覆盖】

Machine Schedule Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 11958   Accepted: 5094 Description As we all know, machine scheduling is a very classical problem in computer science and has been studied for a very long history. Scheduli

Essential WPF日历排程控件Essential Schedule for WPF

Essential Schedule for WPF是一款具有OutLook外观的WPF平台下的日历日程控件,利用该控件可以进行创建和管理约会和任务安排等.支持拖拉任务活动.调整大小.导入任务安排和导出日程安排等. 具体功能: 支持以天.周.一周工作时间.月为单位查看日程安排 支持时间间隔,使用户可以查看一天中的几个时间段 使用导航条进行时间导航 支持直接添加.编辑.删除日程活动 数据绑定功能允许你绑定到任何IEnumerable集合 控件提供了 Office14Black, Office14B

hdu 3572 Task Schedule

Task Schedule Problem Description Our geometry princess XMM has stoped her study in computational geometry to concentrate on her newly opened factory. Her factory has introduced M new machines in order to process the coming N tasks. For the i-th task

Course Schedule II 解答

Question There are a total of n courses you have to take, labeled from 0 to n - 1. Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as a pair: [0,1] Given the total number of course

Task Schedule(Hdu3572网络流)

跟着风神学图论 Task Schedule(Hdu3572网络流) 题意: 有一个工厂最近新近了一批机器人,这些机器人被用来解决若干个任务.每个任务都有完成所需的时间pi和规定了必须在si天或者si天之后才能处理这个任务,且需要在ei天之内完成. 工厂规定每个机器人每天只能处理一个任务,且每个任务最多只能由一个机器处理. 问这些机器人能否在顺利完成这些任务. 题解: 网络流建模. 对于每一个任务来说,它必须要在si到ei天之间被处理. 并且要在pi天以内完成. 所以我们可以把每一天当成点来考虑,

HDU3572Task Schedule(最大流 ISAP比较快)建图方法不错

Task Schedule Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5007    Accepted Submission(s): 1636 Problem Description Our geometry princess XMM has stoped her study in computational geometry t

schedule vs scheduleAtFixedRate

区分二者的最好方法是 timer的启示时间设置一个过去的时间T,scheduleAtFixedRate会把从T到现在的任务全部执行,schedule只会从现在开始计时执行并任务. public class HelloMain { private static int count = 0; public static void main(String[] args) { Date date = new Date(System.currentTimeMillis() - 3000); Timer t

hdu1150——Machine Schedule

Machine Schedule Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5965    Accepted Submission(s): 2999 Problem Description As we all know, machine scheduling is a very classical problem in compu

bestcoder#3——Task schedule

Task schedule Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 0    Accepted Submission(s): 0 Problem Description 有一台机器,并且给你这台机器的工作表,工作表上有n个任务,机器在ti时间执行第i个任务,1秒即可完成1个任务.有m个询问,每个询问有一个数字q,表示如果在q时间

HDU 4907 (杭电BC#3 1001)Task schedule(水)

题目地址:HDU 4907 水题...不多说..哈希后从后往前遍历一遍就行了. 代码如下: #include <iostream> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> #include <ctype.h> #include <queue> #include <map> #include<a