Change_ANNOOOTHERRR_Theme

This commit is contained in:
2016-08-16 14:16:23 -04:00
parent 60ee324bb8
commit d9211cb90c
77 changed files with 4366 additions and 2094 deletions
+157 -280
View File
@@ -1,300 +1,177 @@
<!doctype html>
<html lang="en">
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Android &middot; Mil años de solitario</title>
<meta charset="utf-8">
<title>Mil años de solitario</title>
<meta name="author" content="map[name:CoderSherlock email:haopengzhan@gmail.com]">
<meta name="description" content="A boy who can&#39;t step into academia">
<meta name="description" content="">
<meta name="generator" content="Hugo 0.16" />
<meta name="twitter:card" content="summary">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="twitter:title" content="Android &middot; Mil años de solitario">
<meta name="twitter:description" content="A boy who can&#39;t step into academia">
<link rel="canonical" href="https://CoderSherlock.github.io/tags/android/">
<link href="https://codersherlock.github.io//favicon.png" rel="shortcut icon">
<link href="https://codersherlock.github.io//css/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="https://codersherlock.github.io//css/font-awesome.min.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300,700' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<meta property="og:type" content="article">
<meta property="og:title" content="Android &middot; Mil años de solitario">
<meta property="og:description" content="A boy who can&#39;t step into academia">
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Oxygen:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/grids-responsive-min.css">
<link rel="stylesheet" href="https://codersherlock.github.io//css/all.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="alternate" type="application/rss+xml" title="Mil años de solitario" href="https://codersherlock.github.io//index.xml" />
</head>
<body>
<div id="layout" class="pure-g">
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="header">
<hgroup>
<h1 class="brand-title"><a href="https://codersherlock.github.io/">Mil años de solitario</a></h1>
<h2 class="brand-tagline"> A boy who can&#39;t step into academia </h2>
</hgroup>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a class="pure-button" href="https://codersherlock.github.io//index.xml"><i class="fa fa-rss"></i> rss</a>
</li>
</ul>
</nav>
</div>
<div class="container">
<div class="left-col">
<div class="intrude-less">
<header id="header" class="inner"><div class="profilepic">
<script src="https://codersherlock.github.io//js/md5.js"></script>
<script type="text/javascript">
$(function(){
$('.profilepic').append("<img src='http://www.gravatar.com/avatar/" + MD5('haopengzhan@gmail.com') + "?s=160' alt='Profile Picture' style='width: 160px;' />");
});
</script>
</div>
<div class="content pure-u-1 pure-u-md-3-4">
<div>
<div class="posts">
<h1 class="content-subhead">15 Aug 2016, 15:44</h1>
<section class="post">
<header class="post-header">
<a href="https://codersherlock.github.io/post/Cross-Compile-RSync-ARM/" class="post-title">Cross Compile RSync ARM</a>
<p class="post-meta">
under
<a class="post-category post-category-2016-08" href="https://codersherlock.github.io//categories/2016-08">2016-08</a>
</p>
</header>
<div class="post-description">
<h1 id="cross-compile-rsync-to-arm-platform">Cross Compile Rsync to ARM platform</h1>
<p>As always, feel free to ask. // Sherlock</p>
<h2 id="motivation">Motivation</h2>
<p>I got some issues about compile seafile to android, so instead of doing so, I start to figure out some other synchronize workflow. <a href="https://rsync.samba.org/">Rsync</a> is one of the most mature synchronization solution. So I made the decision on planting rsync to android.</p>
<h2 id="pre-work">Pre-work</h2>
<p>Rsync is a sync program with delta sync feature and based on SSH connection. So all we need to do is SSH support and cross compile tool-chain. Similar to what I mentioned in <a href="https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/">previews blog</a>, Android NDK and environment export need to be done before compilation.
To enable normally use of compiled program, we need to make android support SSH. My solution is just install <a href="https://play.google.com/store/apps/details?id=berserker.android.apps.sshdroid&amp;hl=en">SSHDroid</a> from Google Play Store.</p>
<h2 id="cross-compile-rsync">Cross-Compile Rsync</h2>
<p>Running following script to build rsync. It will generate a executable file named rsync in the root directory.</p>
<pre><code>$ ./configure --build=${BUILD_SYS} --host=${TOOLCHAIN}
$ make
</code></pre>
<h2 id="push-rsync-to-android">Push RSync to Android.</h2>
<p>After installing SSHDroid, we can now push our arm-version-rsync to target machine.</p>
<pre><code>$ adb push rsync /data/local/tmp
$ adb shell
$ cd /data/data/berserker.android.apps.sshdroid/dropbear
$ mv ../../../local/tmp/rsync .
</code></pre>
<h2 id="run-rsync-with-argument">Run Rsync with argument</h2>
<p>Now we can easily use rsync in android shell. Similar to what we use on PC.</p>
<pre><code>$ ./rsync -e &quot;./ssh&quot; {target-data} {target-location}:{target-directory}
</code></pre>
<h2 id="references">References</h2>
<p><a href="http://stackoverflow.com/questions/8130889/build-rsync-for-android">Build Rsync for Android</a></p>
</div>
</section>
<h1 class="content-subhead">30 Jul 2016, 14:02</h1>
<section class="post">
<header class="post-header">
<a href="https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/" class="post-title">Cross Compile Seafile 2 ARM</a>
<p class="post-meta">
under
<a class="post-category post-category-2016-07" href="https://codersherlock.github.io//categories/2016-07">2016-07</a>
</p>
</header>
<div class="post-description">
<h1 id="cross-compile-seafile-to-arm-platform">Cross Compile Seafile to ARM platform</h1>
<h2 id="motivation">Motivation</h2>
<p>This project is working for delta sync from mobile to server. Currently, there&rsquo;s no mobile program/solution has supporting to delta sync(Include Dropbox/ Goggle Drive). But the truth is that almost every pc version sync program can work as delta sync properly or not. So in this article, I&rsquo;ll provide a workbench for cross compilation and evaluation. And finally come up with a reason of how to port better incremental synchronize solution on mobile platform.</p>
<h2 id="pre-work">Pre-work</h2>
<p>Basically, I used the native android compilation tool-chains, <a href="https://developer.android.com/ndk/downloads/index.html">Android NDK</a>, as working tools. Due to my working situation, I use a <a href="https://shield.nvidia.com/tablet/k1">Nvidia Shield Tablet</a> as target device. As <em>Zengwen</em> said in his <a href="http://zwyuan.github.io/2016/07/17/cross-compile-glib-for-android/">blog</a>, newest updated NDK might has some issue which can influence compilation progress. So you can find <a href="http://stackoverflow.com/questions/6849981/where-do-i-find-old-versions-of-android-ndk">other version</a> of NDK once you have some problems. Based on what <em>Zengwen&rsquo;s</em> blog mentioned, we can write following useful system environment and export in terminal.</p>
<h3 id="prerequisites">Prerequisites</h3>
<pre><code>$ sudo apt-get install build-essential
$ sudo apt-get install pkg-config automake autoconf libtool
</code></pre>
<h3 id="link-with-standalone-tool-chains">Link with standalone tool-chains</h3>
<p>In order to build standalone tool-chains, we need first to export following system environment. After doing that, we can use following command to build a standalone tool-chains from downloaded NDK.</p>
<pre><code>$ ${NDK}/build/tools/make-standalone-toolchain.sh \
--toolchain=arm-linux-androideabi-4.9 \
--stl=gnustl \
--arch=arm \
--ndk-dir=/home/moslab/Android/android-ndk-r12b \
--package-dir=/home/moslab/Android \
--install-dir=/home/moslab/Android/android-ndk-toolchain \
--platform=android-22
</code></pre>
<h3 id="original-system-environment-configuration">Original System Environment Configuration</h3>
<p>[TODO]-&gt; I will fix this part later.</p>
<pre><code># Android NDK sources and standalone toolchain is put here
export DEV=~/Android/
# All the built binaries, libs and their header will be installed here
export PREFIX=/opt/android
# Don't mix up .pc files from your host and build target
export PKG_CONFIG_PATH=${PREFIX}/lib/pkgconfig
# GCC for Android version to use
# 4.9 is the only available version since NDK r11!
export GCC_VER=4.9
# The building system we are using (Linux x86_64)
export BUILD_SYS=x86_64-linux-gnu
# Set Android target API level
export ANDROID_API=22
# Set Android target arch
export ANDROID_ARCH=arm
# Set Android target name, according to Table 2 in
# https://developer.android.com/ndk/guides/standalone_toolchain.html
export ANDROID_TARGET=armv7-none-linux-androideabi
# The cross-compile toolchain we use
export TOOLCHAIN=arm-linux-androideabi
# This is a symlink pointing to the real Android NDK r12b
export NDK=${DEV}/android-ndk
# The path of standalone NDK toolchain
# Refer to https://developer.android.com/ndk/guides/standalone_toolchain.html
export NDK_TOOLCHAIN=${DEV}/android-ndk-toolchain
# this one is the absolute, prebuilt path
export SYSROOT=${NDK}/platforms/android-${ANDROID_API}/arch-${ANDROID_ARCH}
# this one is the absolute, prebuilt path
export CROSS_PREFIX=${NDK}/toolchains/${TOOLCHAIN}-${GCC_VER}/prebuilt/linux-x86_64/bin/${TOOLCHAIN}
# Non-exhaustive lists of compiler + binutils
export AR=${CROSS_PREFIX}-ar
export AS=${CROSS_PREFIX}-as
export LD=${CROSS_PREFIX}-ld
export NM=${CROSS_PREFIX}-nm
export CC=${CROSS_PREFIX}-gcc
export CXX=${CROSS_PREFIX}-g++
export CPP=${CROSS_PREFIX}-cpp
export CXXCPP=${CROSS_PREFIX}-cpp
export STRIP=${CROSS_PREFIX}-strip
export RANLIB=${CROSS_PREFIX}-ranlib
export STRINGS=${CROSS_PREFIX}-strings
# Set build flags
# Refer to https://developer.android.com/ndk/guides/standalone_toolchain.html
export PATH=$PATH:${PREFIX}/bin:${PREFIX}/lib
export CFLAGS=&quot;--sysroot=${SYSROOT} -I${SYSROOT}/usr/include -I${PREFIX}/include -fPIE -DANDROID -Wno-multichar&quot;
export CXXFLAGS=${CFLAGS}
export CPPFLAGS=&quot;--sysroot=${SYSROOT} -I${SYSROOT}/usr/include -I${NDK_TOOLCHAIN}/include/c++/ -DANDROID -DNO_XMALLOC -mandroid&quot;
export LIBS=&quot;-lc -lstdc++ -ld&quot;
export LDFLAGS=&quot;-Wl,-rpath-link=-I${SYSROOT}/usr/lib -L${SYSROOT}/usr/lib -L${PREFIX}/lib -L${NDK_TOOLCHAIN}/lib&quot;
</code></pre>
<h2 id="compile-process">Compile Process</h2>
<p>To compile seafile, we should compile ccnet and libsearpc first. As for these two projects, they all have their own dependencies, so we must follow some order to run the compilation.</p>
<h3 id="libsearpc">libsearpc</h3>
<h4 id="glib">glib</h4>
<h5 id="libiconv">libiconv</h5>
<h5 id="libffi">libffi</h5>
<h5 id="gettext">gettext</h5>
<h4 id="libjasson">libjasson</h4>
<h3 id="ccnet">ccnet</h3>
<h4 id="libuuid">libuuid</h4>
<h3 id="seafile">seafile</h3>
<h2 id="preferences">Preferences</h2>
<ul>
<li><a href="http://zwyuan.github.io/2016/07/17/cross-compile-glib-for-android/">zwyuan</a></li>
<nav id="main-nav"><ul class="main">
<li><a href="/">Blog</a></li>
<li><a href="http://about.me/shashankmehta">About</a></li>
<li><a href="/post/">Archives</a></li>
</ul>
</div>
</section>
</div>
<section class="aboutme">
<p>
A boy who can&#39;t step into academia
</p>
</section>
</nav>
<nav id="sub-nav">
<div class="social">
<a class="email" href='mailto:haopengzhan@gmail.com' title="Email">Email</a>
</div>
</nav>
</header>
</div>
</div>
<div class="mid-col">
<div class="mid-col-container">
<div id="content" class="inner">
<div itemscope itemtype="http://schema.org/Blog">
<div class="footer">
<div class="pure-menu pure-menu-horizontal pure-menu-open">
<ul>
<li>Powered by <a class="hugo" href="https://gohugo.io/" target="_blank">hugo</a></li>
</ul>
</div>
</div>
<script src="https://codersherlock.github.io//js/all.min.js"></script>
<section class="archives"><h1 class="year">2016</h1>
</div>
</div>
<article itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<span class="date"><time datetime='2016' itemprop="datePublished">Aug 15</time></span>
<br>
<span class="tags">
<a href="https://codersherlock.github.io//categories/2016-08"> 2016-08 </a>
</span>
</div>
<h1 class="title" itemprop="name"><a href="https://codersherlock.github.io/post/Cross-Compile-RSync-ARM/">Cross Compile RSync ARM</a></h1>
</article>
<article itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<span class="date"><time datetime='2016' itemprop="datePublished">Jul 30</time></span>
<br>
<span class="tags">
<a href="https://codersherlock.github.io//categories/2016-07"> 2016-07 </a>
</span>
</div>
<h1 class="title" itemprop="name"><a href="https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/">Cross Compile Seafile 2 ARM</a></h1>
</article>
</section>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
</div>
</div>
<footer id="footer" class="inner">Copyright &copy; 2016
ga('create', '', 'auto');
ga('send', 'pageview');
CoderSherlock
</script>
Design credit: <a href="http://shashankmehta.in/archive/2012/greyshade.html">Shashank Mehta</a>
<script src="https://codersherlock.github.io//js/slash.js"></script>
<script src="https://codersherlock.github.io//js/jquery.fancybox.pack.js"></script>
<script type="text/javascript">
(function($){
$('.fancybox').fancybox();
})(jQuery);
</script></footer>
</div>
</div>
</body>
</html>
+10 -12
View File
@@ -1,21 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Android on Mil años de solitario</title>
<title>Android on Mil años de solitario </title>
<generator uri="https://gohugo.io">Hugo</generator>
<link>https://CoderSherlock.github.io/tags/android/</link>
<description>Recent content in Android on Mil años de solitario</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<managingEditor>haopengzhan@gmail.com (CoderSherlock)</managingEditor>
<webMaster>haopengzhan@gmail.com (CoderSherlock)</webMaster>
<lastBuildDate>Mon, 15 Aug 2016 15:44:05 -0400</lastBuildDate>
<atom:link href="https://CoderSherlock.github.io/tags/android/index.xml" rel="self" type="application/rss+xml" />
<author>CoderSherlock</author>
<updated>Mon, 15 Aug 2016 15:44:05 EDT</updated>
<item>
<title>Cross Compile RSync ARM</title>
<link>https://codersherlock.github.io/post/Cross-Compile-RSync-ARM/</link>
<pubDate>Mon, 15 Aug 2016 15:44:05 -0400</pubDate>
<author>haopengzhan@gmail.com (CoderSherlock)</author>
<pubDate>Mon, 15 Aug 2016 15:44:05 EDT</pubDate>
<author>CoderSherlock</author>
<guid>https://codersherlock.github.io/post/Cross-Compile-RSync-ARM/</guid>
<description>
@@ -67,8 +65,8 @@ $ mv ../../../local/tmp/rsync .
<item>
<title>Cross Compile Seafile 2 ARM</title>
<link>https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/</link>
<pubDate>Sat, 30 Jul 2016 14:02:34 -0400</pubDate>
<author>haopengzhan@gmail.com (CoderSherlock)</author>
<pubDate>Sat, 30 Jul 2016 14:02:34 EDT</pubDate>
<author>CoderSherlock</author>
<guid>https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/</guid>
<description>
@@ -202,4 +200,4 @@ export LDFLAGS=&amp;quot;-Wl,-rpath-link=-I${SYSROOT}/usr/lib -L${SYSROOT}/usr/l
</item>
</channel>
</rss>
</rss>
+157 -280
View File
@@ -1,300 +1,177 @@
<!doctype html>
<html lang="en">
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arm &middot; Mil años de solitario</title>
<meta charset="utf-8">
<title>Mil años de solitario</title>
<meta name="author" content="map[name:CoderSherlock email:haopengzhan@gmail.com]">
<meta name="description" content="A boy who can&#39;t step into academia">
<meta name="description" content="">
<meta name="generator" content="Hugo 0.16" />
<meta name="twitter:card" content="summary">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="twitter:title" content="Arm &middot; Mil años de solitario">
<meta name="twitter:description" content="A boy who can&#39;t step into academia">
<link rel="canonical" href="https://CoderSherlock.github.io/tags/arm/">
<link href="https://codersherlock.github.io//favicon.png" rel="shortcut icon">
<link href="https://codersherlock.github.io//css/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="https://codersherlock.github.io//css/font-awesome.min.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300,700' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<meta property="og:type" content="article">
<meta property="og:title" content="Arm &middot; Mil años de solitario">
<meta property="og:description" content="A boy who can&#39;t step into academia">
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Oxygen:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/grids-responsive-min.css">
<link rel="stylesheet" href="https://codersherlock.github.io//css/all.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="alternate" type="application/rss+xml" title="Mil años de solitario" href="https://codersherlock.github.io//index.xml" />
</head>
<body>
<div id="layout" class="pure-g">
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="header">
<hgroup>
<h1 class="brand-title"><a href="https://codersherlock.github.io/">Mil años de solitario</a></h1>
<h2 class="brand-tagline"> A boy who can&#39;t step into academia </h2>
</hgroup>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a class="pure-button" href="https://codersherlock.github.io//index.xml"><i class="fa fa-rss"></i> rss</a>
</li>
</ul>
</nav>
</div>
<div class="container">
<div class="left-col">
<div class="intrude-less">
<header id="header" class="inner"><div class="profilepic">
<script src="https://codersherlock.github.io//js/md5.js"></script>
<script type="text/javascript">
$(function(){
$('.profilepic').append("<img src='http://www.gravatar.com/avatar/" + MD5('haopengzhan@gmail.com') + "?s=160' alt='Profile Picture' style='width: 160px;' />");
});
</script>
</div>
<div class="content pure-u-1 pure-u-md-3-4">
<div>
<div class="posts">
<h1 class="content-subhead">15 Aug 2016, 15:44</h1>
<section class="post">
<header class="post-header">
<a href="https://codersherlock.github.io/post/Cross-Compile-RSync-ARM/" class="post-title">Cross Compile RSync ARM</a>
<p class="post-meta">
under
<a class="post-category post-category-2016-08" href="https://codersherlock.github.io//categories/2016-08">2016-08</a>
</p>
</header>
<div class="post-description">
<h1 id="cross-compile-rsync-to-arm-platform">Cross Compile Rsync to ARM platform</h1>
<p>As always, feel free to ask. // Sherlock</p>
<h2 id="motivation">Motivation</h2>
<p>I got some issues about compile seafile to android, so instead of doing so, I start to figure out some other synchronize workflow. <a href="https://rsync.samba.org/">Rsync</a> is one of the most mature synchronization solution. So I made the decision on planting rsync to android.</p>
<h2 id="pre-work">Pre-work</h2>
<p>Rsync is a sync program with delta sync feature and based on SSH connection. So all we need to do is SSH support and cross compile tool-chain. Similar to what I mentioned in <a href="https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/">previews blog</a>, Android NDK and environment export need to be done before compilation.
To enable normally use of compiled program, we need to make android support SSH. My solution is just install <a href="https://play.google.com/store/apps/details?id=berserker.android.apps.sshdroid&amp;hl=en">SSHDroid</a> from Google Play Store.</p>
<h2 id="cross-compile-rsync">Cross-Compile Rsync</h2>
<p>Running following script to build rsync. It will generate a executable file named rsync in the root directory.</p>
<pre><code>$ ./configure --build=${BUILD_SYS} --host=${TOOLCHAIN}
$ make
</code></pre>
<h2 id="push-rsync-to-android">Push RSync to Android.</h2>
<p>After installing SSHDroid, we can now push our arm-version-rsync to target machine.</p>
<pre><code>$ adb push rsync /data/local/tmp
$ adb shell
$ cd /data/data/berserker.android.apps.sshdroid/dropbear
$ mv ../../../local/tmp/rsync .
</code></pre>
<h2 id="run-rsync-with-argument">Run Rsync with argument</h2>
<p>Now we can easily use rsync in android shell. Similar to what we use on PC.</p>
<pre><code>$ ./rsync -e &quot;./ssh&quot; {target-data} {target-location}:{target-directory}
</code></pre>
<h2 id="references">References</h2>
<p><a href="http://stackoverflow.com/questions/8130889/build-rsync-for-android">Build Rsync for Android</a></p>
</div>
</section>
<h1 class="content-subhead">30 Jul 2016, 14:02</h1>
<section class="post">
<header class="post-header">
<a href="https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/" class="post-title">Cross Compile Seafile 2 ARM</a>
<p class="post-meta">
under
<a class="post-category post-category-2016-07" href="https://codersherlock.github.io//categories/2016-07">2016-07</a>
</p>
</header>
<div class="post-description">
<h1 id="cross-compile-seafile-to-arm-platform">Cross Compile Seafile to ARM platform</h1>
<h2 id="motivation">Motivation</h2>
<p>This project is working for delta sync from mobile to server. Currently, there&rsquo;s no mobile program/solution has supporting to delta sync(Include Dropbox/ Goggle Drive). But the truth is that almost every pc version sync program can work as delta sync properly or not. So in this article, I&rsquo;ll provide a workbench for cross compilation and evaluation. And finally come up with a reason of how to port better incremental synchronize solution on mobile platform.</p>
<h2 id="pre-work">Pre-work</h2>
<p>Basically, I used the native android compilation tool-chains, <a href="https://developer.android.com/ndk/downloads/index.html">Android NDK</a>, as working tools. Due to my working situation, I use a <a href="https://shield.nvidia.com/tablet/k1">Nvidia Shield Tablet</a> as target device. As <em>Zengwen</em> said in his <a href="http://zwyuan.github.io/2016/07/17/cross-compile-glib-for-android/">blog</a>, newest updated NDK might has some issue which can influence compilation progress. So you can find <a href="http://stackoverflow.com/questions/6849981/where-do-i-find-old-versions-of-android-ndk">other version</a> of NDK once you have some problems. Based on what <em>Zengwen&rsquo;s</em> blog mentioned, we can write following useful system environment and export in terminal.</p>
<h3 id="prerequisites">Prerequisites</h3>
<pre><code>$ sudo apt-get install build-essential
$ sudo apt-get install pkg-config automake autoconf libtool
</code></pre>
<h3 id="link-with-standalone-tool-chains">Link with standalone tool-chains</h3>
<p>In order to build standalone tool-chains, we need first to export following system environment. After doing that, we can use following command to build a standalone tool-chains from downloaded NDK.</p>
<pre><code>$ ${NDK}/build/tools/make-standalone-toolchain.sh \
--toolchain=arm-linux-androideabi-4.9 \
--stl=gnustl \
--arch=arm \
--ndk-dir=/home/moslab/Android/android-ndk-r12b \
--package-dir=/home/moslab/Android \
--install-dir=/home/moslab/Android/android-ndk-toolchain \
--platform=android-22
</code></pre>
<h3 id="original-system-environment-configuration">Original System Environment Configuration</h3>
<p>[TODO]-&gt; I will fix this part later.</p>
<pre><code># Android NDK sources and standalone toolchain is put here
export DEV=~/Android/
# All the built binaries, libs and their header will be installed here
export PREFIX=/opt/android
# Don't mix up .pc files from your host and build target
export PKG_CONFIG_PATH=${PREFIX}/lib/pkgconfig
# GCC for Android version to use
# 4.9 is the only available version since NDK r11!
export GCC_VER=4.9
# The building system we are using (Linux x86_64)
export BUILD_SYS=x86_64-linux-gnu
# Set Android target API level
export ANDROID_API=22
# Set Android target arch
export ANDROID_ARCH=arm
# Set Android target name, according to Table 2 in
# https://developer.android.com/ndk/guides/standalone_toolchain.html
export ANDROID_TARGET=armv7-none-linux-androideabi
# The cross-compile toolchain we use
export TOOLCHAIN=arm-linux-androideabi
# This is a symlink pointing to the real Android NDK r12b
export NDK=${DEV}/android-ndk
# The path of standalone NDK toolchain
# Refer to https://developer.android.com/ndk/guides/standalone_toolchain.html
export NDK_TOOLCHAIN=${DEV}/android-ndk-toolchain
# this one is the absolute, prebuilt path
export SYSROOT=${NDK}/platforms/android-${ANDROID_API}/arch-${ANDROID_ARCH}
# this one is the absolute, prebuilt path
export CROSS_PREFIX=${NDK}/toolchains/${TOOLCHAIN}-${GCC_VER}/prebuilt/linux-x86_64/bin/${TOOLCHAIN}
# Non-exhaustive lists of compiler + binutils
export AR=${CROSS_PREFIX}-ar
export AS=${CROSS_PREFIX}-as
export LD=${CROSS_PREFIX}-ld
export NM=${CROSS_PREFIX}-nm
export CC=${CROSS_PREFIX}-gcc
export CXX=${CROSS_PREFIX}-g++
export CPP=${CROSS_PREFIX}-cpp
export CXXCPP=${CROSS_PREFIX}-cpp
export STRIP=${CROSS_PREFIX}-strip
export RANLIB=${CROSS_PREFIX}-ranlib
export STRINGS=${CROSS_PREFIX}-strings
# Set build flags
# Refer to https://developer.android.com/ndk/guides/standalone_toolchain.html
export PATH=$PATH:${PREFIX}/bin:${PREFIX}/lib
export CFLAGS=&quot;--sysroot=${SYSROOT} -I${SYSROOT}/usr/include -I${PREFIX}/include -fPIE -DANDROID -Wno-multichar&quot;
export CXXFLAGS=${CFLAGS}
export CPPFLAGS=&quot;--sysroot=${SYSROOT} -I${SYSROOT}/usr/include -I${NDK_TOOLCHAIN}/include/c++/ -DANDROID -DNO_XMALLOC -mandroid&quot;
export LIBS=&quot;-lc -lstdc++ -ld&quot;
export LDFLAGS=&quot;-Wl,-rpath-link=-I${SYSROOT}/usr/lib -L${SYSROOT}/usr/lib -L${PREFIX}/lib -L${NDK_TOOLCHAIN}/lib&quot;
</code></pre>
<h2 id="compile-process">Compile Process</h2>
<p>To compile seafile, we should compile ccnet and libsearpc first. As for these two projects, they all have their own dependencies, so we must follow some order to run the compilation.</p>
<h3 id="libsearpc">libsearpc</h3>
<h4 id="glib">glib</h4>
<h5 id="libiconv">libiconv</h5>
<h5 id="libffi">libffi</h5>
<h5 id="gettext">gettext</h5>
<h4 id="libjasson">libjasson</h4>
<h3 id="ccnet">ccnet</h3>
<h4 id="libuuid">libuuid</h4>
<h3 id="seafile">seafile</h3>
<h2 id="preferences">Preferences</h2>
<ul>
<li><a href="http://zwyuan.github.io/2016/07/17/cross-compile-glib-for-android/">zwyuan</a></li>
<nav id="main-nav"><ul class="main">
<li><a href="/">Blog</a></li>
<li><a href="http://about.me/shashankmehta">About</a></li>
<li><a href="/post/">Archives</a></li>
</ul>
</div>
</section>
</div>
<section class="aboutme">
<p>
A boy who can&#39;t step into academia
</p>
</section>
</nav>
<nav id="sub-nav">
<div class="social">
<a class="email" href='mailto:haopengzhan@gmail.com' title="Email">Email</a>
</div>
</nav>
</header>
</div>
</div>
<div class="mid-col">
<div class="mid-col-container">
<div id="content" class="inner">
<div itemscope itemtype="http://schema.org/Blog">
<div class="footer">
<div class="pure-menu pure-menu-horizontal pure-menu-open">
<ul>
<li>Powered by <a class="hugo" href="https://gohugo.io/" target="_blank">hugo</a></li>
</ul>
</div>
</div>
<script src="https://codersherlock.github.io//js/all.min.js"></script>
<section class="archives"><h1 class="year">2016</h1>
</div>
</div>
<article itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<span class="date"><time datetime='2016' itemprop="datePublished">Aug 15</time></span>
<br>
<span class="tags">
<a href="https://codersherlock.github.io//categories/2016-08"> 2016-08 </a>
</span>
</div>
<h1 class="title" itemprop="name"><a href="https://codersherlock.github.io/post/Cross-Compile-RSync-ARM/">Cross Compile RSync ARM</a></h1>
</article>
<article itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<span class="date"><time datetime='2016' itemprop="datePublished">Jul 30</time></span>
<br>
<span class="tags">
<a href="https://codersherlock.github.io//categories/2016-07"> 2016-07 </a>
</span>
</div>
<h1 class="title" itemprop="name"><a href="https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/">Cross Compile Seafile 2 ARM</a></h1>
</article>
</section>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
</div>
</div>
<footer id="footer" class="inner">Copyright &copy; 2016
ga('create', '', 'auto');
ga('send', 'pageview');
CoderSherlock
</script>
Design credit: <a href="http://shashankmehta.in/archive/2012/greyshade.html">Shashank Mehta</a>
<script src="https://codersherlock.github.io//js/slash.js"></script>
<script src="https://codersherlock.github.io//js/jquery.fancybox.pack.js"></script>
<script type="text/javascript">
(function($){
$('.fancybox').fancybox();
})(jQuery);
</script></footer>
</div>
</div>
</body>
</html>
+10 -12
View File
@@ -1,21 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Arm on Mil años de solitario</title>
<title>Arm on Mil años de solitario </title>
<generator uri="https://gohugo.io">Hugo</generator>
<link>https://CoderSherlock.github.io/tags/arm/</link>
<description>Recent content in Arm on Mil años de solitario</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<managingEditor>haopengzhan@gmail.com (CoderSherlock)</managingEditor>
<webMaster>haopengzhan@gmail.com (CoderSherlock)</webMaster>
<lastBuildDate>Mon, 15 Aug 2016 15:44:05 -0400</lastBuildDate>
<atom:link href="https://CoderSherlock.github.io/tags/arm/index.xml" rel="self" type="application/rss+xml" />
<author>CoderSherlock</author>
<updated>Mon, 15 Aug 2016 15:44:05 EDT</updated>
<item>
<title>Cross Compile RSync ARM</title>
<link>https://codersherlock.github.io/post/Cross-Compile-RSync-ARM/</link>
<pubDate>Mon, 15 Aug 2016 15:44:05 -0400</pubDate>
<author>haopengzhan@gmail.com (CoderSherlock)</author>
<pubDate>Mon, 15 Aug 2016 15:44:05 EDT</pubDate>
<author>CoderSherlock</author>
<guid>https://codersherlock.github.io/post/Cross-Compile-RSync-ARM/</guid>
<description>
@@ -67,8 +65,8 @@ $ mv ../../../local/tmp/rsync .
<item>
<title>Cross Compile Seafile 2 ARM</title>
<link>https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/</link>
<pubDate>Sat, 30 Jul 2016 14:02:34 -0400</pubDate>
<author>haopengzhan@gmail.com (CoderSherlock)</author>
<pubDate>Sat, 30 Jul 2016 14:02:34 EDT</pubDate>
<author>CoderSherlock</author>
<guid>https://codersherlock.github.io/post/Cross-Compile-Seafile-2-ARM/</guid>
<description>
@@ -202,4 +200,4 @@ export LDFLAGS=&amp;quot;-Wl,-rpath-link=-I${SYSROOT}/usr/lib -L${SYSROOT}/usr/l
</item>
</channel>
</rss>
</rss>
+122 -101
View File
@@ -1,125 +1,146 @@
<!doctype html>
<html lang="en">
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Github &middot; Mil años de solitario</title>
<meta charset="utf-8">
<title>Mil años de solitario</title>
<meta name="author" content="map[name:CoderSherlock email:haopengzhan@gmail.com]">
<meta name="description" content="A boy who can&#39;t step into academia">
<meta name="description" content="">
<meta name="generator" content="Hugo 0.16" />
<meta name="twitter:card" content="summary">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="twitter:title" content="Github &middot; Mil años de solitario">
<meta name="twitter:description" content="A boy who can&#39;t step into academia">
<link rel="canonical" href="https://CoderSherlock.github.io/tags/github/">
<link href="https://codersherlock.github.io//favicon.png" rel="shortcut icon">
<link href="https://codersherlock.github.io//css/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="https://codersherlock.github.io//css/font-awesome.min.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300,700' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<meta property="og:type" content="article">
<meta property="og:title" content="Github &middot; Mil años de solitario">
<meta property="og:description" content="A boy who can&#39;t step into academia">
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Oxygen:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/grids-responsive-min.css">
<link rel="stylesheet" href="https://codersherlock.github.io//css/all.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="alternate" type="application/rss+xml" title="Mil años de solitario" href="https://codersherlock.github.io//index.xml" />
</head>
<body>
<div id="layout" class="pure-g">
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="header">
<hgroup>
<h1 class="brand-title"><a href="https://codersherlock.github.io/">Mil años de solitario</a></h1>
<h2 class="brand-tagline"> A boy who can&#39;t step into academia </h2>
</hgroup>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a class="pure-button" href="https://codersherlock.github.io//index.xml"><i class="fa fa-rss"></i> rss</a>
</li>
</ul>
</nav>
</div>
<div class="container">
<div class="left-col">
<div class="intrude-less">
<header id="header" class="inner"><div class="profilepic">
<script src="https://codersherlock.github.io//js/md5.js"></script>
<script type="text/javascript">
$(function(){
$('.profilepic').append("<img src='http://www.gravatar.com/avatar/" + MD5('haopengzhan@gmail.com') + "?s=160' alt='Profile Picture' style='width: 160px;' />");
});
</script>
</div>
<nav id="main-nav"><ul class="main">
<li><a href="/">Blog</a></li>
<li><a href="http://about.me/shashankmehta">About</a></li>
<li><a href="/post/">Archives</a></li>
</ul>
<div class="content pure-u-1 pure-u-md-3-4">
<div>
<div class="posts">
<h1 class="content-subhead">30 Jul 2016, 18:10</h1>
<section class="post">
<header class="post-header">
<section class="aboutme">
<p>
A boy who can&#39;t step into academia
</p>
</section>
</nav>
<nav id="sub-nav">
<div class="social">
<a class="email" href='mailto:haopengzhan@gmail.com' title="Email">Email</a>
</div>
</nav>
</header>
</div>
</div>
<div class="mid-col">
<div class="mid-col-container">
<div id="content" class="inner">
<div itemscope itemtype="http://schema.org/Blog">
<a href="https://codersherlock.github.io/post/Pokemon-Go-Hack/" class="post-title">Pokemon Go Hack</a>
<section class="archives"><h1 class="year">2016</h1>
<p class="post-meta">
under
<a class="post-category post-category-2016-07" href="https://codersherlock.github.io//categories/2016-07">2016-07</a>
</p>
</header>
<article itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<span class="date"><time datetime='2016' itemprop="datePublished">Jul 30</time></span>
<br>
<span class="tags">
<div class="post-description">
<h1 id="catch-them-all-until-bored">Catch them all until bored</h1>
<a href="https://codersherlock.github.io//categories/2016-07"> 2016-07 </a>
<h2 id="preface">Preface</h2>
<p>I never imagined that I will truly write something for hacking a game. Though I have to admit that Pokemon Go is a huge heat and different from other games, it still hard to believe that I took movement to make it better(or worse?). I was a big fun of ingress, and thanks to one of my best friends, Kevin, who was also a huge fan to ingress, recommended me this game. Due to some well known reasons, Ingress didn&rsquo;t become popular at my country. But time flies, I break through the wall, and come to a free land which can play Niantic&rsquo;s game. Unfortunately, this time, the only thing restrict me from playing LBS game is limitation of my spare time. Working in the Lab makes me exhausted <strong>EVERYDAY</strong> and the place where I am now is so barren which even doesn&rsquo;t have much insects and birds(I mean Weedle and Pidgey).
<em>afk I have to battle a nearby gym now</em>
Anyway, after coming back, I think I write too much on useless words, so let me keep it straight forward. My imagination of this hacking project is very simple, which is making an auto bot helping me go through all experiences a Pokemon trainer will face. In first stage, my goal is making the bot smartly picking up a route to walk, catch all Pokemons and supply from PokeStops.</p>
</span>
</div>
<h1 class="title" itemprop="name"><a href="https://codersherlock.github.io/post/Pokemon-Go-Hack/">Pokemon Go Hack</a></h1>
</article>
<h2 id="todo-list">TODO List</h2>
<p>-[X] Test API
-[ ] Finish Walk Algorithm
-[ ] Finish other movement, etc. catch, hatch
-[ ] Smart Walking route
-[ ] Pokemon Predict (Thanks to Pokevision&rsquo;s idea)
-[ ] Become a Pokemon Master</p>
</div>
</section>
</div>
<div class="footer">
<div class="pure-menu pure-menu-horizontal pure-menu-open">
<ul>
<li>Powered by <a class="hugo" href="https://gohugo.io/" target="_blank">hugo</a></li>
</ul>
</div>
</div>
<script src="https://codersherlock.github.io//js/all.min.js"></script>
</div>
</div>
</section>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
</div>
</div>
<footer id="footer" class="inner">Copyright &copy; 2016
ga('create', '', 'auto');
ga('send', 'pageview');
CoderSherlock
</script>
Design credit: <a href="http://shashankmehta.in/archive/2012/greyshade.html">Shashank Mehta</a>
<script src="https://codersherlock.github.io//js/slash.js"></script>
<script src="https://codersherlock.github.io//js/jquery.fancybox.pack.js"></script>
<script type="text/javascript">
(function($){
$('.fancybox').fancybox();
})(jQuery);
</script></footer>
</div>
</div>
</body>
</html>
+8 -10
View File
@@ -1,21 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Github on Mil años de solitario</title>
<title>Github on Mil años de solitario </title>
<generator uri="https://gohugo.io">Hugo</generator>
<link>https://CoderSherlock.github.io/tags/github/</link>
<description>Recent content in Github on Mil años de solitario</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<managingEditor>haopengzhan@gmail.com (CoderSherlock)</managingEditor>
<webMaster>haopengzhan@gmail.com (CoderSherlock)</webMaster>
<lastBuildDate>Sat, 30 Jul 2016 18:10:20 -0400</lastBuildDate>
<atom:link href="https://CoderSherlock.github.io/tags/github/index.xml" rel="self" type="application/rss+xml" />
<author>CoderSherlock</author>
<updated>Sat, 30 Jul 2016 18:10:20 EDT</updated>
<item>
<title>Pokemon Go Hack</title>
<link>https://codersherlock.github.io/post/Pokemon-Go-Hack/</link>
<pubDate>Sat, 30 Jul 2016 18:10:20 -0400</pubDate>
<author>haopengzhan@gmail.com (CoderSherlock)</author>
<pubDate>Sat, 30 Jul 2016 18:10:20 EDT</pubDate>
<author>CoderSherlock</author>
<guid>https://codersherlock.github.io/post/Pokemon-Go-Hack/</guid>
<description>
@@ -39,4 +37,4 @@ Anyway, after coming back, I think I write too much on useless words, so let me
</item>
</channel>
</rss>
</rss>
+122 -101
View File
@@ -1,125 +1,146 @@
<!doctype html>
<html lang="en">
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hack &middot; Mil años de solitario</title>
<meta charset="utf-8">
<title>Mil años de solitario</title>
<meta name="author" content="map[name:CoderSherlock email:haopengzhan@gmail.com]">
<meta name="description" content="A boy who can&#39;t step into academia">
<meta name="description" content="">
<meta name="generator" content="Hugo 0.16" />
<meta name="twitter:card" content="summary">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="twitter:title" content="Hack &middot; Mil años de solitario">
<meta name="twitter:description" content="A boy who can&#39;t step into academia">
<link rel="canonical" href="https://CoderSherlock.github.io/tags/hack/">
<link href="https://codersherlock.github.io//favicon.png" rel="shortcut icon">
<link href="https://codersherlock.github.io//css/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="https://codersherlock.github.io//css/font-awesome.min.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300,700' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<meta property="og:type" content="article">
<meta property="og:title" content="Hack &middot; Mil años de solitario">
<meta property="og:description" content="A boy who can&#39;t step into academia">
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Oxygen:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/grids-responsive-min.css">
<link rel="stylesheet" href="https://codersherlock.github.io//css/all.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="alternate" type="application/rss+xml" title="Mil años de solitario" href="https://codersherlock.github.io//index.xml" />
</head>
<body>
<div id="layout" class="pure-g">
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="header">
<hgroup>
<h1 class="brand-title"><a href="https://codersherlock.github.io/">Mil años de solitario</a></h1>
<h2 class="brand-tagline"> A boy who can&#39;t step into academia </h2>
</hgroup>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a class="pure-button" href="https://codersherlock.github.io//index.xml"><i class="fa fa-rss"></i> rss</a>
</li>
</ul>
</nav>
</div>
<div class="container">
<div class="left-col">
<div class="intrude-less">
<header id="header" class="inner"><div class="profilepic">
<script src="https://codersherlock.github.io//js/md5.js"></script>
<script type="text/javascript">
$(function(){
$('.profilepic').append("<img src='http://www.gravatar.com/avatar/" + MD5('haopengzhan@gmail.com') + "?s=160' alt='Profile Picture' style='width: 160px;' />");
});
</script>
</div>
<nav id="main-nav"><ul class="main">
<li><a href="/">Blog</a></li>
<li><a href="http://about.me/shashankmehta">About</a></li>
<li><a href="/post/">Archives</a></li>
</ul>
<div class="content pure-u-1 pure-u-md-3-4">
<div>
<div class="posts">
<h1 class="content-subhead">30 Jul 2016, 18:10</h1>
<section class="post">
<header class="post-header">
<section class="aboutme">
<p>
A boy who can&#39;t step into academia
</p>
</section>
</nav>
<nav id="sub-nav">
<div class="social">
<a class="email" href='mailto:haopengzhan@gmail.com' title="Email">Email</a>
</div>
</nav>
</header>
</div>
</div>
<div class="mid-col">
<div class="mid-col-container">
<div id="content" class="inner">
<div itemscope itemtype="http://schema.org/Blog">
<a href="https://codersherlock.github.io/post/Pokemon-Go-Hack/" class="post-title">Pokemon Go Hack</a>
<section class="archives"><h1 class="year">2016</h1>
<p class="post-meta">
under
<a class="post-category post-category-2016-07" href="https://codersherlock.github.io//categories/2016-07">2016-07</a>
</p>
</header>
<article itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<span class="date"><time datetime='2016' itemprop="datePublished">Jul 30</time></span>
<br>
<span class="tags">
<div class="post-description">
<h1 id="catch-them-all-until-bored">Catch them all until bored</h1>
<a href="https://codersherlock.github.io//categories/2016-07"> 2016-07 </a>
<h2 id="preface">Preface</h2>
<p>I never imagined that I will truly write something for hacking a game. Though I have to admit that Pokemon Go is a huge heat and different from other games, it still hard to believe that I took movement to make it better(or worse?). I was a big fun of ingress, and thanks to one of my best friends, Kevin, who was also a huge fan to ingress, recommended me this game. Due to some well known reasons, Ingress didn&rsquo;t become popular at my country. But time flies, I break through the wall, and come to a free land which can play Niantic&rsquo;s game. Unfortunately, this time, the only thing restrict me from playing LBS game is limitation of my spare time. Working in the Lab makes me exhausted <strong>EVERYDAY</strong> and the place where I am now is so barren which even doesn&rsquo;t have much insects and birds(I mean Weedle and Pidgey).
<em>afk I have to battle a nearby gym now</em>
Anyway, after coming back, I think I write too much on useless words, so let me keep it straight forward. My imagination of this hacking project is very simple, which is making an auto bot helping me go through all experiences a Pokemon trainer will face. In first stage, my goal is making the bot smartly picking up a route to walk, catch all Pokemons and supply from PokeStops.</p>
</span>
</div>
<h1 class="title" itemprop="name"><a href="https://codersherlock.github.io/post/Pokemon-Go-Hack/">Pokemon Go Hack</a></h1>
</article>
<h2 id="todo-list">TODO List</h2>
<p>-[X] Test API
-[ ] Finish Walk Algorithm
-[ ] Finish other movement, etc. catch, hatch
-[ ] Smart Walking route
-[ ] Pokemon Predict (Thanks to Pokevision&rsquo;s idea)
-[ ] Become a Pokemon Master</p>
</div>
</section>
</div>
<div class="footer">
<div class="pure-menu pure-menu-horizontal pure-menu-open">
<ul>
<li>Powered by <a class="hugo" href="https://gohugo.io/" target="_blank">hugo</a></li>
</ul>
</div>
</div>
<script src="https://codersherlock.github.io//js/all.min.js"></script>
</div>
</div>
</section>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
</div>
</div>
<footer id="footer" class="inner">Copyright &copy; 2016
ga('create', '', 'auto');
ga('send', 'pageview');
CoderSherlock
</script>
Design credit: <a href="http://shashankmehta.in/archive/2012/greyshade.html">Shashank Mehta</a>
<script src="https://codersherlock.github.io//js/slash.js"></script>
<script src="https://codersherlock.github.io//js/jquery.fancybox.pack.js"></script>
<script type="text/javascript">
(function($){
$('.fancybox').fancybox();
})(jQuery);
</script></footer>
</div>
</div>
</body>
</html>
+8 -10
View File
@@ -1,21 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Hack on Mil años de solitario</title>
<title>Hack on Mil años de solitario </title>
<generator uri="https://gohugo.io">Hugo</generator>
<link>https://CoderSherlock.github.io/tags/hack/</link>
<description>Recent content in Hack on Mil años de solitario</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<managingEditor>haopengzhan@gmail.com (CoderSherlock)</managingEditor>
<webMaster>haopengzhan@gmail.com (CoderSherlock)</webMaster>
<lastBuildDate>Sat, 30 Jul 2016 18:10:20 -0400</lastBuildDate>
<atom:link href="https://CoderSherlock.github.io/tags/hack/index.xml" rel="self" type="application/rss+xml" />
<author>CoderSherlock</author>
<updated>Sat, 30 Jul 2016 18:10:20 EDT</updated>
<item>
<title>Pokemon Go Hack</title>
<link>https://codersherlock.github.io/post/Pokemon-Go-Hack/</link>
<pubDate>Sat, 30 Jul 2016 18:10:20 -0400</pubDate>
<author>haopengzhan@gmail.com (CoderSherlock)</author>
<pubDate>Sat, 30 Jul 2016 18:10:20 EDT</pubDate>
<author>CoderSherlock</author>
<guid>https://codersherlock.github.io/post/Pokemon-Go-Hack/</guid>
<description>
@@ -39,4 +37,4 @@ Anyway, after coming back, I think I write too much on useless words, so let me
</item>
</channel>
</rss>
</rss>