- 安装
vscode-go
插件:
> ext install Go
- 安装
go tools
:
> Go Install/Update Tools
$ text-builder -index /path/to/index.txt
Or run $ sh build-all
to build all your index files.本人不提供任何保证和技术支持,使用者自负风险。
There are no guarantees, no any support. Use it at your own risk.
<?xml version="1.0" encoding="UTF-8"?> | |
<Bucket | |
type = "2" | |
version = "2.0"> | |
<Breakpoints> | |
<BreakpointProxy | |
BreakpointExtensionID = "Xcode.Breakpoint.SymbolicBreakpoint"> | |
<BreakpointContent | |
shouldBeEnabled = "Yes" | |
ignoreCount = "0" |
<?php | |
function get_title_via_url( $url ) | |
{ | |
// 抓取前1024个字节 | |
$context=array('http' => array ('header'=> 'Range: bytes=0-1024' )); | |
$xcontext = stream_context_create($context); | |
$content = strtolower( file_get_contents( $url , FALSE,$xcontext ) ); | |
$reg = '/<title>(.+?)<\/title>/is'; |
# 1.install gource using HomeBrew | |
$ brew install gource | |
# 2.install avconv | |
git clone git://git.libav.org/libav.git | |
cd libav | |
# it will take 3-5 minutes to complie, be patient. | |
./configure --disable-yasm | |
make && make install |
解决方案来自:[Apple Support Communities] (https://discussions.apple.com/thread/3275811?start=0&tstart=0)
/etc/racoon
打开终端执行:$ sudo cp /var/run/racoon/xxx.xxx.xxx.xxx.conf /etc/racoon
$ sudo vim /etc/racoon/racoon.conf
# include "/var/run/racoon/*.conf" ;
cd ~ | |
sudo yum update | |
sudo yum install java-1.7.0-openjdk.i686 -y | |
wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.19.9.tar.gz -O elasticsearch.tar.gz | |
tar -xf elasticsearch.tar.gz | |
rm elasticsearch.tar.gz | |
mv elasticsearch-* elasticsearch | |
sudo mv elasticsearch /usr/local/share |