Author: 迎迎 姚

  • Linux基本命令

    Linux基本命令

    arch 显示机器的处理器架构(1) uname -m 显示机器的处理器架构(2) uname -r 显示正在使用的内核版本 dmidecode -q 显示硬件系统部件 – (SMBIOS / DMI) hdparm -i /dev/hda 罗列一个磁盘的架构特性 hdparm -tT /dev/sda 在磁盘上执行测试性读取操作 cat /proc/cpuinfo 显示CPU info的信息 cat /proc/interrupts 显示中断 cat /proc/meminfo 校验内存使用 cat /proc/swaps 显示哪些swap被使用 cat /proc/version 显示内核的版本 cat /proc/net/dev 显示网络适配器及统计 cat /proc/mounts 显示已加载的文件系统 lspci -tv 罗列 PCI 设备 lsusb -tv 显示 USB 设备…

  • php 法语字母排序

    php 法语字母排序

    if($langcode == ‘fr’){ setlocale(LC_COLLATE, ‘fr_CA.utf8’); } ksort($array,SORT_LOCALE_STRING); 法语字幕有声调,往往在默认排序上会有些问题。上面的代码可以解决法语字母排序错误的问题。 同样可以应用于 sort asort 等等

  • Create wordpress custom widget

    Create wordpress custom widget

    代码放到 functions.php 就可以在小工具里获得该 widget。 class weibo_widget extends WP_Widget { public function __construct() { // widget actual processes //get_popular_resource parent::__construct( ‘weibo_widget’, // Base ID ‘Weibo widget’, // Name array(‘description’ => __(‘Weibo Widget’, ‘affc’),) // Args ); } public function form($instance) { // outputs the options form on admin if (isset($instance[‘weibo_uid’])) { $weibo_uid = $instance[‘weibo_uid’]; } else…

  • Media, Audio, Video Player for wordpress

    Media, Audio, Video Player for wordpress

    function yyy_html5_audio($url) { if (preg_match(‘/Firefox/’, $_SERVER[“HTTP_USER_AGENT”])) { // For religious reasons Firefox does not support MP3 format in HTML5 audio tag, use Flash player instead $embed = ”; } else if (preg_match(‘/Opera/’, $_SERVER[“HTTP_USER_AGENT”])) { // Opera also does not support MP3 format in HTML5 audio tag, use Flash player instead $embed = ”; } else…

  • LINUX CP 命令详解

    LINUX CP 命令详解

    cp (复制档案或目录) [root@linux ~]# cp [-adfilprsu] 来源档(source) 目的檔(destination) [root@linux ~]# cp [options] source1 source2 source3 …. directory 参数: -a :相当于 -pdr 的意思; -d :若来源文件为连结文件的属性(link file),则复制连结文件属性而非档案本身; -f :为强制 (force) 的意思,若有重复或其它疑问时,不会询问使用者,而强制复制; -i :若目的檔(destination)已经存在时,在覆盖时会先询问是否真的动作! -l :进行硬式连结 (hard link) 的连结档建立,而非复制档案本身; -p :连同档案的属性一起复制过去,而非使用预设属性; -r :递归持续复制,用于目录的复制行为; -s :复制成为符号连结文件 (symbolic link),亦即『快捷方式』档案; -u :若 destination 比 source 旧才更新 destination ! 最后需要注意的,如果来源档有两个以上,则最后一个目的文件一定要是『目录』才行! 范例: 范例一:将家目录下的…

  • 修复 next_posts_link & previous_posts_link 与 qTranslate 的兼容问题

    修复 next_posts_link & previous_posts_link 与 qTranslate 的兼容问题

    If your having problems with qTranslate and the next_posts_link / previous_posts_link & next_post_link / previous_post_link template tags then I recommend dropping the following two functions into your theme’s functions.php file. /*************************************************************** * Function qtranslate_next_previous_fix * Ensure that the URL for next_posts_link & previous_posts_link work with qTranslate ***************************************************************/ add_filter(‘get_pagenum_link’, ‘qtranslate_next_previous_fix’); function qtranslate_next_previous_fix($url) { return qtrans_convertURL($url); }…

  • Simple jquery horizontal accordion

    Simple jquery horizontal accordion

    有时候需要的功能很简单,不需要动不动就几千行的插件,就像这个水平手风琴效果。 html code Freebies Download free files to make your job easier. Tutorials Tips and tricks to help you keep up with the latest technology. Inspiration Get inspired by what other designers are doing. Inspiration Get inspired by what other designers are doing. css dode #horizontal_accordion{ list-style: none; margin: 0 0 0 -2px; padding: 0;…

  • Custom taxonomy 不显示在 “外观”-> “菜单”里

    Custom taxonomy 不显示在 “外观”-> “菜单”里

    I have a custom taxonomy registered for custom post type. It has ‘public’, and ‘show_in_nav_menus’ arguments set to true, but it still doesn’t appear in nav-menus.php. If I set those arguments to custom post type, it works all right… what could be the problem? 我为新文章类型(custom post type)注册了一个新的分类(register_taxonomy),’show_in_nav_menus’ 都设置为 ‘true’,但是在 “外观”-> “菜单” (nav-menus.php)里没有显示出来。可是新文章类型(custom post type)显示了,这是为什么? 好吧,看下图你或许就明白了!…

  • 昨夜梦回

    昨夜梦回

    (故事大纲) 一切都开始与2012—03—04凌晨的一条短信 我决定了,我要去福州,梅武剑也赞同了,说他可以陪我一起去 我们决定了四月的一天去,当我们准备下地铁去火车站的时候,才发现陪我去的人变成了朱国淼

  • .htaccess 完全手册

    .htaccess 完全手册

    1.时区设置 有些时候,当你在PHP里使用date或mktime函数时,由于时区的不同,它会显示出一些很奇怪的信息。下面是解决这个问题的方法之一。就是设置你的服务器的时区。你可以在这里找到所有支持的时区的清单。 [code]SetEnv TZ Australia/Melbourne[/code] 2. 搜索引擎友好的301永久转向方法 为什么这是搜索引擎友好的呢?因为现在很多现代的搜索引擎都有能根据检查301永久转向来更新它现有的记录的功能。