Excel单元格插入换行符

一般情况下,单元格插入换行符可以使用Alt+Enter来实现 但如果需要批量操作的话,那么可以使用 **CHAR(10)**来表示换行符 实例如下,一看就懂!

八月 20, 2014 · jqx

Linux下CLI模式使用Dropbox

下载Dropbox 32-bit: cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86" | tar xzf - 64-bit: cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf - 连接到Dropbox ~/.dropbox-dist/dropboxd 按照提示,在浏览器中打开链接,确认授权。 CLI模式使用Dropbox 下载执行脚本: wget https://www.dropbox.com/download?dl=packages/dropbox.py chmod +x dropbox.py dropbox.py使用 root@hkvps:~# ./dropbox.py help Dropbox command-line interface commands: Note: use dropbox help <command> to view usage for a specific command. status get current status of the dropboxd help provide help puburl get public url of a file in your dropbox stop stop dropboxd running return whether dropbox is running start start dropboxd filestatus get current sync status of one or more files ls list directory contents with current sync status autostart automatically start dropbox at login exclude ignores/excludes a directory from syncing lansync enables or disables LAN sync

八月 19, 2014 · JQX

VC运行库全集

VC运行库全集 VC2005,VC2008,VC2010,VC2013 VC++ Redistributable Package Collection VCRP: | +---vcpp_2005 | vcredist_x86.exe +---vcpp_2008 | vcredist_x86.exe +---vcpp_2010 | vcredist_x64.exe | vcredist_x86.exe +---vcpp_2012 | vcredist_x64.exe | vcredist_x86.exe | vozqco_70591.exe \---vcpp_2013 vcredist_arm.exe vcredist_x64.exe vcredist_x86.exe VC运行库下载地址**https://ct.optipng.cn/fs/18418398-315802255**

八月 15, 2014 · jqx

树莓派安装Tonido打造个人云服务

树莓派安装Tonido sudo mkdir /usr/local/tonido cd /usr/local/tonido sudo wget http://patch.codelathe.com/tonido/live/installer/armv6l-rpi/tonido.tar.gz sudo tar -zxvf tonido.tar.gz ./tonido.sh start 浏览器打开http://ip:10001开始注册设置 ip为树莓派的地址 安装多媒体解码器 Tonido支持在线播放音频,但需要安装设置解码器 cd /usr/local/tonido sudo apt-get install ffmpeg sudo ln -s /usr/bin/ffmpeg ffmpeg.exe sudo ln -s /usr/bin/ffmpeg ffmpegv.exe 设置开机启动 下载脚本文件tonido wget http://qn.optipng.cn/res/tonido 设置脚本权限 sudo cp tonido /etc/init.d/ sudo chmod +x /etc/init.d/tonido 安装脚本 sudo update-rc.d tonido defaults Tonido客户端下载 Tonido Sync for Windows http://www.tonido.com/download.php?TonidoSync.exe Tonido Sync for Mac http://www.tonido.com/download.php?TonidoSync.dmg Tonido Sync for Linux http://www.tonido.com/download.php?TonidoSyncSetup_i686.deb Tonido for iPhone http://itunes.apple.com/us/app/tonido/id388726418?mt=8 Tonido for iPad http://itunes.apple.com/us/app/tonido/id388726418?mt=8 Tonido for Android https://play.google.com/store/apps/details?id=com.tonido.android Tonido for Windows Phone http://www.windowsphone.com/en-us/store/app/tonido/4eeacbe9-7405-47cc-acd0-f418471f992a Tonido for BlackBerry http://appworld.blackberry.com/webstore/content/18126?lang=en

八月 12, 2014 · jqx

树莓派中使用TL-WN725N

Raspbian版本 2014-01-07-wheezy-raspbian.img 下载地址为http://unixetc.com/res/8188eu-20140616.tar.gz 首先固网链接树莓派,通过SSH登录 wget http://unixetc.com/res/8188eu-20140616.tar.gz unzip 8188eu_31024_614.zip sudo mv 8188eu.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless sudo chown root:root /lib/modules/`uname -r`/kernel/drivers/net/wireless/8188eu.ko sudo mv rtl8188eufw.bin /lib/firmware/rtlwifi/ sudo chown root:root /lib/firmware/rtlwifi/rtl8188eufw.bin sudo depmod -a sudo modprobe 8188eu 然后编辑/etc/netwok/interfaces,添加以下内容 allow-hotplug wlan0 auto wlan0 iface wlan0 inet manual wpa-roam /etc/mywpa.conf iface default inet dhcp 新建mywpa.conf写入链接配置vi /etc/mywpa.conf network={ ssid="YOUR SSID" proto=RSN key_mgmt=WPA-PSK pairwise=CCMP TKIP group=CCMP TKIP psk="YOUR PASSWORD" } 重启系统即可 ...

八月 12, 2014 · jqx