自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

yeshen.org

个人公众号:生的就酱

  • 博客(20)
  • 资源 (43)
  • 收藏
  • 关注

原创 linux C 读文件

之前看书有点影响,然后匆忙之间被叫读取一下 /proc/cpuinfo 没能立刻写出来,做个笔记吧。#include <jni.h>#include <string>#include <sys/utsname.h>#include <sys/system_properties.h>#include <cstdlib>#include <fcntl.h>#include <unistd.h

2017-08-31 19:43:35 491

原创 android x86 系统升级

make -j8 efi_imgcd out/target/product/x86_64adb push initrd.img /data/xd_tmp/adb push ramdisk.img /data/xd_tmp/adb push system.sfs /data/xd_tmp/adb push kernel /data/xd_tmp/adb shellsucd /datamk

2017-08-30 15:50:31 1333 1

原创 ubuntu14 编译openjdk8

openjdk7,可以参考 ubuntu14 编译 openjdk7git clone https://github.com/dmlloyd/openjdk/tree/jdk8u/jdk8ucd openjdkvim build.shexport LANG=Cexport CCACHE_DISABLE=1export ALLOW_DOWNLOADS=trueexport HOTSPOT_B

2017-08-26 15:34:05 307

原创 android_x86 添加预安装APP

背景是这样的,我做了一个系统的APP,监控用的,要打包进ROM里面,找了一下,找到了 https://sourceforge.net/p/android-x86/device_generic_common/ci/cm-13.0-x86/tree/app/就是把app放在这个目录,就会自动安装 device/generic/common/app## Put your apks here.

2017-08-24 10:58:41 3350

转载 android cpu usage

转载自 https://webcache.googleusercontent.com/search?q=cache:dHimivlr4GEJ:https://stackoverflow.com/questions/12471496/android-how-to-track-the-cpu-usage-of-a-running-app-on-device-programmatically+&cd=

2017-08-23 16:25:05 891

原创 Java对象的生成

昨天编译了openjdk(ps:怎么编译?),今天刚好有空,整理一下java的生成对象的过程吧。随手写一个 vim Test.javapublic final class Test{ public String me = "Yeshen"; public static void main(String[] args){ Test t

2017-08-20 20:43:49 1303

原创 ubuntu14 编译 openjdk7

昨晚复习了一下深入JVM虚拟机,下午想着把代码拉下来自己编译一下把。 发现已经有人做过类似的事情了,权当给自己做个笔记把。本机环境是(就是编译android6.0的官方推荐环境了) ubuntu14, openjdk7参考了: https://ayonel.me/index.php/2017/01/05/compile_openjdk/sudo apt-get install build-e

2017-08-19 20:25:54 473

原创 android源代码在mac上的自动生成代码

最近把linux的代码拉到mac上,然后明明没做什么,就是有一堆变更。yeshen at MacBook-Pro ~/Documents/seeyoutime/android6 on master ● λ git statusOn branch masterYour branch is behind 'origin/master' by 6 commits, and can be fast-fo

2017-08-19 17:41:38 593

原创 Multiple adb connections over WiFi

先放问题和解决方案吧。问题:We are two people and want to connect to a android device from each respective notebook. When one person is connected, the other person gets a device is offline error.Is it possible to c

2017-08-18 22:30:15 383

转载 android x86 Download、 Buildnig and Running

>https://sourceforge.net/p/android-x86/wiki/Downloading%20and%20Building/>https://sourceforge.net/p/android-x86/wiki/Installation/Download and BuildnigIntroductionThis pa

2017-08-17 16:03:01 1930 2

原创 python 自定义协议

前面说到最近在写python的一些东西,然后和另外一位小伙伴定义了协议,然后昨天我有一部分东西没理解对,昨天上午我自己重写了一遍接收和发送的全部逻辑,昨天下午补了压力测试的脚本,自测没问题之后告知联调的小伙伴。 结果上午还是出了一点问题,然后我们两对代码,他写了一个python的实现。还好最后我这边没问题。(我也害怕是我这边出问题啊,所以我自己的代码都自己检查了好几遍) 简单放一下他的实现:im

2017-08-16 11:58:23 4853 3

原创 python 并发测试

最近在写一个简单的配置服务器,用私有协议,用python写。用途是给某些局域网的机器提供配置服务。挺有趣的 :)顺手写了一下并发的自测的代码:def go(server_ip): print 'test'def press_go(ip): os.fork() os.fork() os.fork() for i in range(0, 25):

2017-08-15 17:24:51 2956

原创 gitlab 强制提交

类似文章之前在自己的电脑上强制提交了不少次。然后刚才发现之前部署的gitlab强制提交不了。 git push -f origin master报错Counting objects: 6, done.Delta compression using up to 8 threads.Compressing objects: 100% (6/6), done.Writing ...

2017-08-15 09:17:58 24295 1

转载 ubuntu图形界面登录不了

http://blog.csdn.net/jokemilk/article/details/9904405sudo apt-get install --reinstall ubuntu-desktop sudo reboot

2017-08-07 18:30:55 1526

原创 socket 的关闭

用python在写一个东西,用socket监听一个端口,但是重启的时候总是会报错 [ERROR] Address already in use检查了一下端口 netstat -an | grep 9200 tcp4 0 0 127.0.0.1.9200 127.0.0.1.60481 TIME_WAITsocket close

2017-08-07 13:24:48 380

原创 python 控制adb

import os os.system(“adb -s ‘192.168.0.113’ shell ps | grep org.yeshen.test | awk ‘{print$2}’ | wc -l”)

2017-08-06 15:20:20 1511

原创 android 批量打渠道包

之前写的脚本了,今天偶然发现,贴代码上来做个记录把。 应用场景是: 在应用分发的时候,要给不同渠道渠道包,简单说就是每个包里面有一个key是不同的。应用市场的key可以是:anzhi #安智市场360 #360助手xiaomi #小米应用超市mumayi #木蚂蚁wandoujia #豌豆荚baidu #百度市场huawei #华为市场lenovo #联想市场meizu #魅

2017-08-06 11:54:30 1211

原创 terminal 分屏

ubuntu sudo apt-get install terminatormac brew install iterm2

2017-08-03 11:57:45 9760 3

转载 httpbin

转载来自 http://httpbin.org/httpbin(1): HTTP Request & Response ServiceFreely hosted in HTTP, HTTPS, & EU flavors by Kenneth Reitz & Runscope.BONUSPOINTSnow.httpbin.org The current time, in a variety of

2017-08-02 12:11:43 3041

原创 java代码从初始化到具象执行

好吧,其实很多看代码的方法是书上没有的,看两位老大的讨论技术细节,我记下了方法。方法 vim Test.javapublic final class Test{ public static final String s1 = &amp;quot;hello&amp;quot;; public static void main(String[] args){ ...

2017-08-01 20:16:39 442

wireshark-4.4.0.dmg

wireshark_4.4.0.dmg

2024-09-08

chrome浏览器Take back your browser

https://www.bromite.org/ The main goal is to provide a no-clutter browsing experience without privacy-invasive features and with the addition of a fast ad-blocking engine. Minimal UI changes are applied to help curbing the idea of “browser as an advertisement platform”. All patches are published under GNU/GPL v3 to enable other open source projects’ usage. Bromite is only available for Android Marshmallow (v6.0, API level 23) and above.

2024-01-10

Google-chrome-browser 74.0.3729

"A number of fixes and improvements."[r 185] Creating private class fields in JavaScript is now much cleaner You can detect when the user has requested a reduced motion experience CSS transition events Adds new feature policy APIs to check if features are enabled or not[r 186] Removal of PaymentAddress's languageCode property No popups during page unload Deprecation of drive-by downloads in sandboxed iframes[r 187] Android version: Translate any web page instantly by selecting Translate from the menu[r 188]

2019-05-07

Google chrome browser 65.0.3325

"A number of fixes and improvements."[r 153] New extension UI The CSS Paint API allows you to programmatically generate an image The Server Timing API allows web servers to provide performance timing information via HTTP headers The new CSS display: contents property can make boxes disappear Fixed a bug that affected some timestamps The syntax for specifying HSL and HSLA, and RGB and RGBA coordinates for the color property now match the CSS Color 4 spec There's a new feature policy that allows you to control synchronous XHRs through an HTTP header or the iframe allow attribute[r 154] Last version available for OS X 10.9. Android version: Set language preferences for web content in Settings > Languages Turn on the prompt for simplified view for all supported articles in Settings > Accessibility settings Share and delete downloads more easily on the Downloads page[r 155] Disable screen capture on incognite mode [4]

2019-05-07

Google chrome browser 64.0.3282

"A number of fixes and improvements."[r 149] Support for ResizeObservers, will notify you when an element’s content rectangle has changed its size. Modules can now access to host specific metadata with import.meta. The pop-up blocker gets stronger. window.alert&#40;&#41; no longer changes tab focus. Chrome now supports named captures in regular expressions. The default preload value for &lt;audio&gt; and &lt;video&gt; elements is now metadata. You can now use Request.prototype.cache to view the cache mode of a Request and determine whether a request is a reload request. Using the Focus Management API, you can now focus an element without scrolling to it with the preventScroll attribute.[r 150] Extensions page generates packages in CRX3 format now.[r 151] Android version: Prevents sites with abusive ad experiences from opening new windows or tabs without your permission. "Stability and performance improvements."[r 152]

2019-05-07

Google chrome browser 58.0.3029

chrome历史浏览器 version 58 &quot;A number of fixes and improvements.&quot;[r 134] IndexedDB 2.0 Workers and SharedWorkers in data-URLs. Android version: Useful actions like “Find in page” available in apps that open web pages using Chrome More frequently updated article suggestions on the New Tab page Use recently visited search engines as your default search engine See Physical Web suggestions, based on your surroundings, in the address bar Bug fixes and performance improvements[r 135]

2019-05-07

xwalk_core_library/23.53.589.4

A web runtime built on Chrome. xwalk_core_library/23.53.589.4. Crosswalk is an app runtime based on Chromium/Blink. It is an open source project started by the Intel Open Source Technology Center (http://www.01.org) As of February 2017, Crosswalk is not being developed anymore. The last Crosswalk relase is 23.

2019-05-02

eclipse_for_andriod(mac64)

Mac OS X (Cocoa) 64-bit Eclipse for Android Developers (includes Incubating components) https://www.eclipse.org/downloads/packages/release/neon/3/eclipse-android-developers-includes-incubating-components Package Description An IDE for developers creating Android applications. This package includes: Eclipse Git Team Provider Eclipse Java Development Tools Maven Integration for Eclipse Mylyn Task List Code Recommenders Tools for Java Developers Eclipse XML Editors and Tools Detailed features list

2018-11-30

eclipse_for_andriod(window64)

Eclipse for Android Developers (includes Incubating components) https://www.eclipse.org/downloads/packages/release/neon/3/eclipse-android-developers-includes-incubating-components Package Description An IDE for developers creating Android applications. This package includes: Eclipse Git Team Provider Eclipse Java Development Tools Maven Integration for Eclipse Mylyn Task List Code Recommenders Tools for Java Developers Eclipse XML Editors and Tools Detailed features list

2018-11-30

eclipse_for_andriod(linux64)

Eclipse for Android Developers (includes Incubating components) https://www.eclipse.org/downloads/packages/release/neon/3/eclipse-android-developers-includes-incubating-components Package Description An IDE for developers creating Android applications. This package includes: Eclipse Git Team Provider Eclipse Java Development Tools Maven Integration for Eclipse Mylyn Task List Code Recommenders Tools for Java Developers Eclipse XML Editors and Tools Detailed features list

2018-11-30

android-sdk- windows-1 .0_r1.zip

https://developer.android.com/sdk/older_releases android-sdk- windows-1 .0_r1.zip md5sum : d69f4ee93d4010f726c04302662fd999

2018-11-30

android_sdk_linux_m3-rc20a.zip

android_sdk_linux_m3-rc20a.zip -> Linux (i386) -> md5sum : 2660b4029039b7d714e59827e9a9a11d -> https://developer.android.com/sdk/older_releases

2018-11-30

android_sdk_darwin_m3-rc20a.zip

android_sdk_darwin_m3-rc20a.zip -> Mac OS X (intel) -> md5: 564876ada22872e50c2866806de9fc5c

2018-11-30

intel_houdini32

Houdini library for ARM code execution on Intel processors.

2018-11-12

archonpackager

https://play.google.com/store/apps/details?id=me.bpear.archonpackager ARChon Packager (formerly Chrome APK Packager) is a convenient way to produce Chrome ARChon Custom Runtime packages directly from your phone. Stuck? http://www.omgchrome.com/chrome-apk-packager-android-app/ You can generate chrome packages from either APKs on your phones storage, or from apps installed on your phone (It will pull APK) Open the App, select an APK or App from list. App Name and package name are both pulled from the APK and put into the manifest.json file. Everything is then zipped together in a ChromeAPK folder on your phones storage. Requires https://github.com/vladikoff/chromeos-apk/blob/master/archon.md ARChon Custom Runtime which allows for "unlimited" number of android apps to be installed. (Google Runtime is limited to 4 apps.)

2018-10-14

Archon Simple App

墙内资源备份,官网: https://github.com/vladikoff/chromeos-apk/releases/download/v3.0.0/com.uberspot.a2048.android-ARChon-runtime.zip Download the Sample App, extract it, load it as an unpacked extention, press "Launch". Convert other apps with tools listed below. More details here: https://github.com/vladikoff/chromeos-apk/blob/master/archon.md

2018-10-14

archon 64x86

墙内资源备份,最新看官网: https://archon-runtime.github.io/ 必要的信息: ARChon 2.1.0 Beta (ARC 41.4410.238.0) Intel x86 Chrome 64-bit / Chrome OS 64-bit MD5:94b5bf91fa45de29875fa47b7e7c85aa

2018-10-14

Linux驱动程序教程:如何编写简单的Linux设备驱动程序

Linux驱动程序教程:如何编写简单的Linux设备驱动程序 demo

2018-09-01

软媒魔方pcmaster6

官网:http://mofang.ruanmei.com/ 版本:6.21正式版|时间:2016年12月8日|大小:12.2MB 适用:Win10/Win8.1/Win8/Win7/Vista/XP 软媒魔方6支持64位和32位的所有主流Windows系统,从优化大师发展为一款系统增强套装,自动化、智能化解决各种电脑问题。软媒魔方内置20余款强大、绿色化的知名组件,清理、美化、桌面增强、系统雷达、通知区万年历、优化加速、安全守护、软件管家、电脑医生、虚拟光驱、U盘装机等等

2018-07-18

WiresharkPortable_2.6.1.paf.exe

Wireshark development thrives thanks to the volunteer contributions of networking experts around the globe and is the continuation of a project started by Gerald Combs in 1998.

2018-07-18

Wireshark_2.6.1_win_64.exe

Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions.

2018-07-18

wireshark-2.6.1.tar.xz

Wireshark has a rich feature set which includes the following: Deep inspection of hundreds of protocols, with more being added all the time Live capture and offline analysis Standard three-pane packet browser Multi-platform: Runs on Windows, Linux, macOS, Solaris, FreeBSD, NetBSD, and many others Captured network data can be browsed via a GUI, or via the TTY-mode TShark utility The most powerful display filters in the industry Rich VoIP analysis Read/write many different capture file formats: tcpdump (libpcap), Pcap NG, Catapult DCT2000, Cisco Secure IDS iplog, Microsoft Network Monitor, Network General Sniffer® (compressed and uncompressed), Sniffer® Pro, and NetXray®, Network Instruments Observer, NetScreen snoop, Novell LANalyzer, RADCOM WAN/LAN Analyzer, Shomiti/Finisar Surveyor, Tektronix K12xx, Visual Networks Visual UpTime, WildPackets EtherPeek/TokenPeek/AiroPeek, and many others Capture files compressed with gzip can be decompressed on the fly Live data can be read from Ethernet, IEEE 802.11, PPP/HDLC, ATM, Bluetooth, USB, Token Ring, Frame Relay, FDDI, and others (depending on your platform) Decryption support for many protocols, including IPsec, ISAKMP, Kerberos, SNMPv3, SSL/TLS, WEP, and WPA/WPA2 Coloring rules can be applied to the packet list for quick, intuitive analysis Output can be exported to XML, PostScript®, CSV, or plain text

2018-07-18

Wireshark 2.6.1 Intel 64.dmg

The current stable release of Wireshark is 2.6.1 Wireshark is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. Wireshark development thrives thanks to the volunteer contributions of networking experts around the globe and is the continuation of a project started by Gerald Combs in 1998.

2018-07-18

cobertura-2.1.1-bin

Cobertura is a free Java code coverage reporting tool. It is based on jcoverage 1.0.5. See the Cobertura web page and wiki for more details. Since 2.0.0, Cobertura versions follow the Semantic versioning guidelines.

2018-05-09

boot2docker

Error with pre-create check: "Get https://github-cloud.s3.amazonaws.com/releases/14930729/b1e1c6ca-319d-11e7-8ca4-328ef7d1d6cb.iso?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAISTNZFOVBIJMK3TQ%2F20170517%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20170517T012905Z&X-Amz-Expires=300&X-Amz-Signature=1dcf27996f4b4838694300d72bd3d5ff5907d682af99bed00330a1a655384f8a&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dboot2docker.iso&response-content-type=application%2Foctet-stream: dial tcp 54.231.33.163:443: getsockopt: operation timed out"

2017-05-17

Internationalize.7z

http://blog.csdn.net/yeshennet/article/details/53198825

2016-11-17

Andor et al. (2016).

A TensorFlow implementation of the models described in Andor et al. (2016).

2016-05-14

magicwifi.exe

模拟wifi 魔方

2016-05-04

wireshark-2.0.2.tar.bz2

wireshark-2.0.2.tar.bz2

2016-03-02

Wireshark-win64-2.0.2.exe

Wireshark-win64-2.0.2.exe

2016-03-02

Wireshark-win32-2.0.2.exe

Wireshark-win32-2.0.2.exe

2016-03-02

StarUML-v2.6.0.msi

StarUML is one of the most popular UML tools in the world. It has been downloaded over than 4 millions and used in more than 150 countries. http://staruml.io/

2016-02-24

hidpi-canvas-1.0.9.zip

Currently this plugin handles most general cross browser drawing functions, but feel free to send Pull Requests as you find functions you need supported. If the function simply needs all or some of it's arguments multiplied by the ratio, it should simply require you to add it to the ratioArgs object, following the proper pattern. It currently leaves images alone, so to retinize images on your canvas, simply duplicate the getPixelRatio function in your code and divide your image dimensions by the provided ratio.

2016-01-29

windows 下使用linux命令行的工具

:也一样是windows 下使用linux命令行的工具 运行GetGnuWin32-0.6.3.exe,并指定安装目录。 进入安装目录的GetGnuWin32子目录,GetGnuWin32子目录是GetGnuWin32-0.6.3.exe自动建立的 运行download.bat,这个过程会从网络上下载所有linux命令程序,所以需要等待很长时间,大家可以出去打打酱油什么的 运行install.bat,到此安装结束,大家可以开始使用各种linux命令了。 from:http://www.cnblogs.com/adgnat/archive/2011/07/16/2108098.html

2014-08-10

windows下Linux命令行小工具

下载后,解压到指定目录,添加该指定路径+/wbin路径到系统环境变量Path中,这样就可以在Windows下使用Linux命令

2014-08-10

百度地图、定位demo

百度地图、定位的demo,挺有用的,有兴趣弄百度地图API开发的可以看看

2013-06-11

Kext_Utility.app.v2.5.1.zip

这是windos 下装黑苹果时需要的补丁,很有用,推荐给你!

2012-10-27

MacDrive.v8.0.7.38.rar

这是windos下装黑苹果的必备软件,不错的资源,推荐下载,有玩黑苹果的盆友可以看看。

2012-10-27

HD_Install_Helper_v0.3.rar

这是windos 下装黑苹果的必备软件之一,不错的资源,推荐下载,详细使用说明见百度

2012-10-27

Java_HFSExplorer.rar

这是在Windows上安装苹果lion操作系统必不可少的软件,不错的软件,推荐下载

2012-10-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除