一、2011年中国网络游戏市场持续增长
2011年,中国网络游戏市场规模(包括互联网游戏和移动网游戏市场)为468.5亿元,同比增长34.4%,增长速度止跌回升。其中,互联网游戏为429.8亿元,同比增长33.0%;移动网游戏为38.7亿元,同比增长51.2%。
[……]
一、2011年中国网络游戏市场持续增长
2011年,中国网络游戏市场规模(包括互联网游戏和移动网游戏市场)为468.5亿元,同比增长34.4%,增长速度止跌回升。其中,互联网游戏为429.8亿元,同比增长33.0%;移动网游戏为38.7亿元,同比增长51.2%。
[……]
Flash Player premium features for gaming enable developers and publishers to deliver stunning web-based games across browsers to over a billion computers—dramatically expanding the market for a new class of social gaming experiences. In addition, Adobe is opening up the Flash Player to a supported third party ecosystem of specialized gaming middleware and development tools, not just those from Adobe. Adobe’s support of these 3rd party developer solutions targeting the Flash Player is enabled by the new tier of premium features.
[……]
[……]
Top 3 technical news
Flash/HTML5
[……]
IIS7 url里面禁止包含bin的文件夹
网站的url里面包含bin文件夹的路径无法访问,错误如下显示 :
HTTP 错误 404.8 – Not Found
请求筛选模块被配置为拒绝包含 hiddenSegment 节的 URL 中的路径。
最可能的原因:
为 Web 服务器配置了请求筛选,它包含 hiddenSegments 节,允许服务器管理员拒绝对特定目录的访问。
可尝试的操作:
确认 applicationhost.config 或 web.config 文件中的 configuration/system.webServer/security/requestFiltering/hiddenSegments 设置。
链接和更多信息
这是一项安全功能。请不要更改此功能,除非您完全清楚更改的影响范围。如果需要从被此设置拒绝的某个特定目录提供内容,请从 configuration/system.webServer/security/requestFiltering/hiddenSegments 中删除被拒绝的目录。
查看更多信息 »
只需要将bin文件夹从新命名,就可以正常访问。[……]
Ubuntu挂载Windows文件服务器共享目录:
首先安装smbfs:apt-get install smbfs
然后设置挂载,需要注意Windows中带空格的目录结构:
labuser@ubuntu10-04:~$ sudo smbmount //orc-fs/Flash” “Runtime/ /home/labuser/Desktop/orc-fs -o user=username,pass=password,iocharset=utf8,dir_mode=0777,file_mode=0777
说明:
网络主机的主机名: orc-fs
网络主机的使用者名称: username
网络主机的登录密码: password
分享中的目录名称: Flash Runtime
主机上要挂载的目录: /home/labuser/Desktop/orc-fs
卸载网络共享目录
sudo umount /home/labuser/Desktop/orc-fs UTF8[……]
使用mysqldump备份数据时如果碰到如下错误提示:
Got error: 1044: Access denied for user … when using LOCK TABLES
那可能是你用来备份的数据库用户没有lock table的权限,可以换一个权限更高的用户,或者使用mysqldump的另一个选项:–single-transaction 或者加上 –skip-lock-tables
mysqldump -uyourusername -pyourpassword –single-transaction yourdb > yourdb.sql
mysqldump -uyourusername -pyourpassword –skip-lock-tables yourdb > yourdb.sql
如果数据里面有单引号等转义字符:
mysqldump -u root -p –no-create-db –complete-insert –compatible=mssql –default-character-set=utf8 –skip-opt –compact –extended-insert=false dbname tablename|sed "s/\\\’/”/g">tablename.sql
[……]