├── .clang-format ├── .github └── workflows │ ├── linux-aarch64-cpu-gcc.yyy │ ├── linux-qemu-aarch64-cpu-gcc.yyyy │ ├── linux-x64-cpu-clang.yyy │ ├── linux-x64-cpu-gcc.yyy │ ├── windows-x64-cpu-vs2017.yyy │ └── windows-x64-cpu-vs2019.yyy ├── .gitignore ├── .gitmodules ├── .travis.yml ├── 1bpp-monochrome-bitmap ├── .gitignore ├── 1bpp-monochrome-bitmap.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── bitmap │ │ └── monochrome │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── bitmap │ │ │ └── monochrome │ │ │ ├── BMPFile.java │ │ │ └── BitmapConvertor.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── bitmap │ └── monochrome │ └── ExampleUnitTest.java ├── 3guoheros ├── 3gyjz-android │ ├── .gitignore │ ├── 3gyjz-android.jks │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── jy_llk │ │ │ │ ├── Android.mk │ │ │ │ ├── SDL2 │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_image.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_ttf.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ │ ├── bass.h │ │ │ │ ├── charset.c │ │ │ │ ├── config.h │ │ │ │ ├── jymain.c │ │ │ │ ├── jymain.h │ │ │ │ ├── lauxlib.h │ │ │ │ ├── list.h │ │ │ │ ├── lua.h │ │ │ │ ├── luaconf.h │ │ │ │ ├── luafun.c │ │ │ │ ├── luafun.h │ │ │ │ ├── lualib.h │ │ │ │ ├── mainmap.c │ │ │ │ ├── piccache.c │ │ │ │ └── sdlfun.c │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── cn │ │ │ │ └── vip │ │ │ │ └── ldcr │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ ├── cn │ │ │ │ │ └── vip │ │ │ │ │ │ └── ldcr │ │ │ │ │ │ ├── DummyEdit.java │ │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ │ ├── SDLGenericMotionListener_API12.java │ │ │ │ │ │ ├── SDLInputConnection.java │ │ │ │ │ │ ├── SDLJoystickHandler.java │ │ │ │ │ │ ├── SDLJoystickHandler_API12.java │ │ │ │ │ │ ├── SDLMain.java │ │ │ │ │ │ └── SDLSurface.java │ │ │ │ └── org │ │ │ │ │ └── libsdl │ │ │ │ │ └── app │ │ │ │ │ └── SDLActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ldcr.PNG │ │ │ │ ├── layout │ │ │ │ └── activity_sdl.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── cn │ │ │ └── vip │ │ │ └── ldcr │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ └── settings.gradle ├── 3gyjz-pc │ ├── README.md │ └── desperate-angel-src │ │ ├── .gitignore │ │ ├── JYMINI.sln │ │ └── JYMINI │ │ ├── 017-lower-rho.ico │ │ ├── CANG.png │ │ ├── IMG.c │ │ ├── IMG_png.c │ │ ├── JYMINI.rc │ │ ├── JYMINI.vcxproj │ │ ├── JYMINI.vcxproj.filters │ │ ├── JYMINI1.rc │ │ ├── ReadMe.txt │ │ ├── SDL2.lib │ │ ├── SDL2 │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_image.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_ttf.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ │ ├── SDL2main.lib │ │ ├── SDL2static.lib │ │ ├── SDL_ttf.c │ │ ├── bass.h │ │ ├── bass.lib │ │ ├── bassmidi.h │ │ ├── bassmidi.lib │ │ ├── bitmap1.bmp │ │ ├── charset.c │ │ ├── config.h │ │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftautoh.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftcffdrv.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── ftxf86.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdriver.h │ │ │ ├── ftgloadr.h │ │ │ ├── ftmemory.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpic.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── internal.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svprop.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ ├── svwinfnt.h │ │ │ │ └── svxf86nm.h │ │ │ ├── sfnt.h │ │ │ ├── t1types.h │ │ │ └── tttypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ ├── tttags.h │ │ └── ttunpat.h │ │ ├── freetype2412.lib │ │ ├── ft2build.h │ │ ├── ftoption.h │ │ ├── icon2.bmp │ │ ├── jymain.c │ │ ├── jymain.h │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── libfreetype-6.lib │ │ ├── libpng16.lib │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── list.h │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.h │ │ ├── luaconf.h │ │ ├── luafun.c │ │ ├── luafun.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ ├── mainmap.c │ │ ├── miniz.h │ │ ├── piccache.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pngpriv.h │ │ ├── pngstruct.h │ │ ├── resource.h │ │ ├── resource1.h │ │ ├── sdlfun.c │ │ └── zlib.lib ├── README.md ├── 三国志英杰传复刻版12846开源 │ ├── Readme.txt │ ├── config.lua │ ├── script │ │ ├── jyconfig.lua │ │ ├── jymain.lua │ │ └── kdef.lua │ └── 游戏说明.txt └── 英杰传复刻版子MOD——纵横天下 42753开源 │ ├── JY_LLK │ ├── Readme.txt │ ├── config.lua │ └── script │ │ └── jymain.lua │ └── 游戏说明.txt ├── AI-FACES ├── PaddleLite.md ├── deepinsight-insightface │ └── deploy │ │ ├── lfw_insi_test.csv │ │ └── lfw_out_112.csv ├── docker.md ├── insightface-mxnet-ncnn-mnn.md ├── insightface.md ├── mnn │ └── mnn.md ├── mtcnn.md ├── ncnn-vulkan-neon.md ├── ocr-shiji.jpg ├── tnn-mace-tengine-opencl测试.md ├── tnn.md ├── tvm-insightface.md └── 百度腾讯阿里繁体竖排OCR测试.md ├── BingWallpage ├── .gitignore ├── BingWallpage.iml ├── build.gradle ├── libs │ ├── dom4j-2.0.0-RC1.jar │ └── jaxen-1.1.6.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── github │ │ └── yippeesoft │ │ └── bingwallpage │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── github │ │ │ └── yippeesoft │ │ │ └── bingwallpage │ │ │ ├── App.kt │ │ │ ├── BingWallBean.kt │ │ │ ├── BingWallBean1.java │ │ │ ├── MainActivity.java │ │ │ └── Net.kt │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── card_view.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── org │ └── github │ └── yippeesoft │ └── bingwallpage │ └── ExampleUnitTest.java ├── CMakeLists.txt ├── LICENSE ├── NotifyTools.iml ├── PeterCxy-Shelter ├── .gitignore ├── LICENSE ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── net │ │ │ └── typeblog │ │ │ └── shelter │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── aidl │ │ │ └── net │ │ │ │ └── typeblog │ │ │ │ └── shelter │ │ │ │ ├── services │ │ │ │ ├── IAppInstallCallback.aidl │ │ │ │ ├── IFileShuttleService.aidl │ │ │ │ ├── IFileShuttleServiceCallback.aidl │ │ │ │ ├── IGetAppsCallback.aidl │ │ │ │ ├── ILoadIconCallback.aidl │ │ │ │ ├── IShelterService.aidl │ │ │ │ └── IStartActivityProxy.aidl │ │ │ │ └── util │ │ │ │ ├── ApplicationInfoWrapper.aidl │ │ │ │ ├── IUriOpener.aidl │ │ │ │ └── UriForwardProxy.aidl │ │ ├── java │ │ │ ├── com │ │ │ │ └── ziv │ │ │ │ │ └── ntptimeservice │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── SntpClient.java │ │ │ └── net │ │ │ │ └── typeblog │ │ │ │ └── shelter │ │ │ │ ├── ShelterApplication.java │ │ │ │ ├── receivers │ │ │ │ └── ShelterDeviceAdminReceiver.java │ │ │ │ ├── services │ │ │ │ ├── FileShuttleService.java │ │ │ │ ├── FreezeService.java │ │ │ │ ├── KillerService.java │ │ │ │ └── ShelterService.java │ │ │ │ ├── ui │ │ │ │ ├── AppListAdapter.java │ │ │ │ ├── AppListFragment.java │ │ │ │ ├── BaseFragment.java │ │ │ │ ├── CameraProxyActivity.java │ │ │ │ ├── DummyActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── SettingsActivity.java │ │ │ │ └── SettingsFragment.java │ │ │ │ └── util │ │ │ │ ├── ApplicationInfoWrapper.java │ │ │ │ ├── AuthenticationUtility.java │ │ │ │ ├── CrossProfileDocumentsProvider.java │ │ │ │ ├── FileProviderProxy.java │ │ │ │ ├── InstallationProgressListener.java │ │ │ │ ├── LocalStorageManager.java │ │ │ │ ├── SettingsManager.java │ │ │ │ ├── UriForwardProxy.java │ │ │ │ └── Utility.java │ │ └── res │ │ │ ├── anim │ │ │ ├── scale_appear.xml │ │ │ └── scale_hide.xml │ │ │ ├── drawable │ │ │ ├── circle_accent.xml │ │ │ ├── ic_freeze_foreground.xml │ │ │ ├── ic_freeze_tinted.xml │ │ │ ├── ic_launcher_shelter_background.xml │ │ │ ├── ic_lock_open_white_24dp.xml │ │ │ ├── ic_notification_white_24dp.xml │ │ │ ├── ic_search_tinted_24dp.xml │ │ │ └── ic_settings_tinted_24dp.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_settings.xml │ │ │ ├── app_list_item.xml │ │ │ ├── fragment_list.xml │ │ │ └── progress_dialog.xml │ │ │ ├── menu │ │ │ └── main_activity_menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_freeze.xml │ │ │ ├── ic_freeze_round.xml │ │ │ ├── ic_launcher_egg.xml │ │ │ └── ic_launcher_egg_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_freeze.png │ │ │ ├── ic_freeze_round.png │ │ │ ├── ic_launcher_egg.png │ │ │ ├── ic_launcher_egg_background.png │ │ │ ├── ic_launcher_egg_foreground.png │ │ │ └── ic_launcher_egg_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_freeze.png │ │ │ ├── ic_freeze_round.png │ │ │ ├── ic_launcher_egg.png │ │ │ ├── ic_launcher_egg_background.png │ │ │ ├── ic_launcher_egg_foreground.png │ │ │ └── ic_launcher_egg_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_freeze.png │ │ │ ├── ic_freeze_round.png │ │ │ ├── ic_launcher_egg.png │ │ │ ├── ic_launcher_egg_background.png │ │ │ ├── ic_launcher_egg_foreground.png │ │ │ └── ic_launcher_egg_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_freeze.png │ │ │ ├── ic_freeze_round.png │ │ │ ├── ic_launcher_egg.png │ │ │ ├── ic_launcher_egg_background.png │ │ │ ├── ic_launcher_egg_foreground.png │ │ │ └── ic_launcher_egg_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_freeze.png │ │ │ ├── ic_freeze_round.png │ │ │ ├── ic_launcher_egg.png │ │ │ ├── ic_launcher_egg_background.png │ │ │ ├── ic_launcher_egg_foreground.png │ │ │ └── ic_launcher_egg_round.png │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-ru-rRU │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── ic_freeze_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── device_admin.xml │ │ │ ├── file_paths.xml │ │ │ └── preferences_settings.xml │ │ └── test │ │ └── java │ │ └── net │ │ └── typeblog │ │ └── shelter │ │ └── ExampleUnitTest.java ├── art │ ├── egg_b.svg │ ├── egg_b.svg.png │ ├── egg_f.svg │ ├── egg_f.svg.png │ └── ic_launcher_egg-web.png ├── build.gradle ├── gradle.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md ├── SeetaFaceEngine ├── FaceAlignment │ ├── CMakeLists.txt │ ├── README.md │ ├── data │ │ └── image_0001.png │ ├── doc │ │ └── aflw_nrmse.png │ ├── examples │ │ ├── FaceAlignment │ │ │ ├── FaceAlignment.vcxproj │ │ │ └── FaceAlignment.vcxproj.filters │ │ ├── examples.sln │ │ ├── examples.v12.suo │ │ └── examples │ │ │ ├── FaceDetection.dll │ │ │ ├── FaceDetection.lib │ │ │ ├── examples.vcxproj │ │ │ ├── examples.vcxproj.filters │ │ │ └── examples.vcxproj.user │ ├── include │ │ ├── cfan.h │ │ ├── common.h │ │ ├── face_alignment.h │ │ └── sift.h │ └── src │ │ ├── cfan.cpp │ │ ├── face_alignment.cpp │ │ ├── sift.cpp │ │ └── test │ │ └── face_alignment_test.cpp ├── FaceDetection │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── data │ │ └── 0_1_1.jpg │ ├── doc │ │ └── fddb_roc.png │ ├── examples │ │ ├── FaceDetection │ │ │ ├── FaceDetection.vcxproj │ │ │ └── FaceDetection.vcxproj.filters │ │ ├── examples.sln │ │ ├── examples.v12.suo │ │ └── examples │ │ │ ├── examples.vcxproj │ │ │ ├── examples.vcxproj.filters │ │ │ └── examples.vcxproj.user │ ├── include │ │ ├── classifier.h │ │ ├── classifier │ │ │ ├── lab_boosted_classifier.h │ │ │ ├── mlp.h │ │ │ └── surf_mlp.h │ │ ├── common.h │ │ ├── detector.h │ │ ├── face_detection.h │ │ ├── feat │ │ │ ├── lab_feature_map.h │ │ │ └── surf_feature_map.h │ │ ├── feature_map.h │ │ ├── fust.h │ │ ├── io │ │ │ ├── lab_boost_model_reader.h │ │ │ └── surf_mlp_model_reader.h │ │ ├── model_reader.h │ │ └── util │ │ │ ├── image_pyramid.h │ │ │ ├── math_func.h │ │ │ └── nms.h │ └── src │ │ ├── classifier │ │ ├── lab_boosted_classifier.cpp │ │ ├── mlp.cpp │ │ └── surf_mlp.cpp │ │ ├── face_detection.cpp │ │ ├── feat │ │ ├── lab_feature_map.cpp │ │ └── surf_feature_map.cpp │ │ ├── fust.cpp │ │ ├── io │ │ ├── lab_boost_model_reader.cpp │ │ └── surf_mlp_model_reader.cpp │ │ ├── test │ │ └── facedetection_test.cpp │ │ └── util │ │ ├── image_pyramid.cpp │ │ └── nms.cpp ├── FaceIdentification │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── data │ │ └── test_face_recognizer │ │ │ ├── crop_file_list.txt │ │ │ ├── crop_sdk_file_list.txt │ │ │ ├── feats.dat │ │ │ ├── images │ │ │ ├── compare_im │ │ │ │ ├── Aaron_Peirsol_0001.jpg │ │ │ │ └── Aaron_Peirsol_0004.jpg │ │ │ ├── crop │ │ │ │ ├── NF_200001_001.jpg │ │ │ │ ├── NF_200002_002.jpg │ │ │ │ ├── NF_200003_002.jpg │ │ │ │ ├── NF_200004_003.jpg │ │ │ │ ├── NF_200005_037.jpg │ │ │ │ ├── NF_200006_005.jpg │ │ │ │ ├── NF_200007_001.jpg │ │ │ │ ├── NF_200008_002.jpg │ │ │ │ ├── NF_200009_001.jpg │ │ │ │ ├── NF_200010_003.jpg │ │ │ │ ├── NF_200011_001.jpg │ │ │ │ ├── NF_200012_001.jpg │ │ │ │ ├── NF_200013_004.jpg │ │ │ │ ├── NF_200014_006.jpg │ │ │ │ ├── NF_200015_001.jpg │ │ │ │ ├── NF_200016_005.jpg │ │ │ │ ├── NF_200017_005.jpg │ │ │ │ ├── NF_200018_001.jpg │ │ │ │ ├── NF_200019_004.jpg │ │ │ │ ├── NF_200020_003.jpg │ │ │ │ ├── NF_200021_002.jpg │ │ │ │ ├── NF_200022_001.jpg │ │ │ │ ├── NF_200023_001.jpg │ │ │ │ ├── NF_200024_004.jpg │ │ │ │ ├── NF_200025_006.jpg │ │ │ │ ├── NF_200026_003.jpg │ │ │ │ ├── NF_200027_001.jpg │ │ │ │ ├── NF_200028_002.jpg │ │ │ │ ├── NF_200029_005.jpg │ │ │ │ ├── NF_200030_003.jpg │ │ │ │ ├── NF_200031_001.jpg │ │ │ │ ├── NF_200032_001.jpg │ │ │ │ ├── NF_200033_001.jpg │ │ │ │ ├── NF_200034_001.jpg │ │ │ │ ├── NF_200035_002.jpg │ │ │ │ ├── NF_200036_004.jpg │ │ │ │ ├── NF_200037_002.jpg │ │ │ │ ├── NF_200038_002.jpg │ │ │ │ ├── NF_200039_006.jpg │ │ │ │ ├── NF_200040_003.jpg │ │ │ │ ├── NF_200041_001.jpg │ │ │ │ ├── NF_200042_001.jpg │ │ │ │ ├── NF_200043_003.jpg │ │ │ │ ├── NF_200044_006.jpg │ │ │ │ ├── NF_200045_003.jpg │ │ │ │ ├── NF_200046_006.jpg │ │ │ │ ├── NF_200047_004.jpg │ │ │ │ ├── NF_200048_002.jpg │ │ │ │ ├── NF_200049_020.jpg │ │ │ │ └── NF_200050_002.jpg │ │ │ ├── crop_sdk │ │ │ │ ├── NF_200001_001.jpg │ │ │ │ ├── NF_200002_002.jpg │ │ │ │ ├── NF_200003_002.jpg │ │ │ │ ├── NF_200004_003.jpg │ │ │ │ ├── NF_200005_037.jpg │ │ │ │ ├── NF_200006_005.jpg │ │ │ │ ├── NF_200007_001.jpg │ │ │ │ ├── NF_200008_002.jpg │ │ │ │ ├── NF_200009_001.jpg │ │ │ │ ├── NF_200010_003.jpg │ │ │ │ ├── NF_200011_001.jpg │ │ │ │ ├── NF_200012_001.jpg │ │ │ │ ├── NF_200013_004.jpg │ │ │ │ ├── NF_200014_006.jpg │ │ │ │ ├── NF_200015_001.jpg │ │ │ │ ├── NF_200016_005.jpg │ │ │ │ ├── NF_200017_005.jpg │ │ │ │ ├── NF_200018_001.jpg │ │ │ │ ├── NF_200019_004.jpg │ │ │ │ ├── NF_200020_003.jpg │ │ │ │ ├── NF_200021_002.jpg │ │ │ │ ├── NF_200022_001.jpg │ │ │ │ ├── NF_200023_001.jpg │ │ │ │ ├── NF_200024_004.jpg │ │ │ │ ├── NF_200025_006.jpg │ │ │ │ ├── NF_200026_003.jpg │ │ │ │ ├── NF_200027_001.jpg │ │ │ │ ├── NF_200028_002.jpg │ │ │ │ ├── NF_200029_005.jpg │ │ │ │ ├── NF_200030_003.jpg │ │ │ │ ├── NF_200031_001.jpg │ │ │ │ ├── NF_200032_001.jpg │ │ │ │ ├── NF_200033_001.jpg │ │ │ │ ├── NF_200034_001.jpg │ │ │ │ ├── NF_200035_002.jpg │ │ │ │ ├── NF_200036_004.jpg │ │ │ │ ├── NF_200037_002.jpg │ │ │ │ ├── NF_200038_002.jpg │ │ │ │ ├── NF_200039_006.jpg │ │ │ │ ├── NF_200040_003.jpg │ │ │ │ ├── NF_200041_001.jpg │ │ │ │ ├── NF_200042_001.jpg │ │ │ │ ├── NF_200043_003.jpg │ │ │ │ ├── NF_200044_006.jpg │ │ │ │ ├── NF_200045_003.jpg │ │ │ │ ├── NF_200046_006.jpg │ │ │ │ ├── NF_200047_004.jpg │ │ │ │ ├── NF_200048_002.jpg │ │ │ │ ├── NF_200049_020.jpg │ │ │ │ └── NF_200050_002.jpg │ │ │ └── src │ │ │ │ ├── NF_200001_001.jpg │ │ │ │ ├── NF_200002_002.jpg │ │ │ │ ├── NF_200003_002.jpg │ │ │ │ ├── NF_200004_003.jpg │ │ │ │ ├── NF_200005_037.jpg │ │ │ │ ├── NF_200006_005.jpg │ │ │ │ ├── NF_200007_001.jpg │ │ │ │ ├── NF_200008_002.jpg │ │ │ │ ├── NF_200009_001.jpg │ │ │ │ ├── NF_200010_003.jpg │ │ │ │ ├── NF_200011_001.jpg │ │ │ │ ├── NF_200012_001.jpg │ │ │ │ ├── NF_200013_004.jpg │ │ │ │ ├── NF_200014_006.jpg │ │ │ │ ├── NF_200015_001.jpg │ │ │ │ ├── NF_200016_005.jpg │ │ │ │ ├── NF_200017_005.jpg │ │ │ │ ├── NF_200018_001.jpg │ │ │ │ ├── NF_200019_004.jpg │ │ │ │ ├── NF_200020_003.jpg │ │ │ │ ├── NF_200021_002.jpg │ │ │ │ ├── NF_200022_001.jpg │ │ │ │ ├── NF_200023_001.jpg │ │ │ │ ├── NF_200024_004.jpg │ │ │ │ ├── NF_200025_006.jpg │ │ │ │ ├── NF_200026_003.jpg │ │ │ │ ├── NF_200027_001.jpg │ │ │ │ ├── NF_200028_002.jpg │ │ │ │ ├── NF_200029_005.jpg │ │ │ │ ├── NF_200030_003.jpg │ │ │ │ ├── NF_200031_001.jpg │ │ │ │ ├── NF_200032_001.jpg │ │ │ │ ├── NF_200033_001.jpg │ │ │ │ ├── NF_200034_001.jpg │ │ │ │ ├── NF_200035_002.jpg │ │ │ │ ├── NF_200036_004.jpg │ │ │ │ ├── NF_200037_002.jpg │ │ │ │ ├── NF_200038_002.jpg │ │ │ │ ├── NF_200039_006.jpg │ │ │ │ ├── NF_200040_003.jpg │ │ │ │ ├── NF_200041_001.jpg │ │ │ │ ├── NF_200042_001.jpg │ │ │ │ ├── NF_200043_003.jpg │ │ │ │ ├── NF_200044_006.jpg │ │ │ │ ├── NF_200045_003.jpg │ │ │ │ ├── NF_200046_006.jpg │ │ │ │ ├── NF_200047_004.jpg │ │ │ │ ├── NF_200048_002.jpg │ │ │ │ ├── NF_200049_020.jpg │ │ │ │ └── NF_200050_002.jpg │ │ │ └── test_file_list.txt │ ├── examples │ │ ├── Identification │ │ │ ├── Identification.vcxproj │ │ │ └── Identification.vcxproj.filters │ │ ├── Tester │ │ │ ├── Tester.vcxproj │ │ │ ├── Tester.vcxproj.filters │ │ │ └── Tester.vcxproj.user │ │ ├── examples.sln │ │ └── examples.v12.suo │ ├── include │ │ ├── aligner.h │ │ ├── bias_adder_net.h │ │ ├── blob.h │ │ ├── bn_net.h │ │ ├── common.h │ │ ├── common_net.h │ │ ├── conv_net.h │ │ ├── eltwise_net.h │ │ ├── face_identification.h │ │ ├── hyper_param.h │ │ ├── inner_product_net.h │ │ ├── log.h │ │ ├── math_functions.h │ │ ├── max_pooling_net.h │ │ ├── net.h │ │ ├── net_factory.h │ │ ├── pad_net.h │ │ ├── recognizer.h │ │ ├── spatial_transform_net.h │ │ ├── tform_maker_net.h │ │ └── viplnet.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── bias_adder_net.cpp │ │ ├── blob.cpp │ │ ├── bn_net.cpp │ │ ├── common_net.cpp │ │ ├── conv_net.cpp │ │ ├── eltwise_net.cpp │ │ ├── inner_product_net.cpp │ │ ├── log.cpp │ │ ├── math_functions.cpp │ │ ├── max_pooling_net.cpp │ │ ├── net.cpp │ │ ├── pad_net.cpp │ │ ├── sftest │ │ │ ├── CMakeLists.txt │ │ │ ├── SeetaFace.cpp │ │ │ ├── SeetaFace.h │ │ │ └── sftest.cpp │ │ ├── spatial_transform_net.cpp │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── test_face_recognizer.cpp │ │ │ └── test_face_verification.cpp │ │ └── tform_maker_net.cpp │ └── tools │ │ ├── aligner.cpp │ │ └── face_identification.cpp ├── LICENSE ├── README.md └── SeetaFace_config.docx ├── WifiAdb1 ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── adbwifi │ │ │ ├── AdbUtilS.java │ │ │ ├── MainActivity.java │ │ │ └── NetWorkUtils.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── btn_style_one_disabled.9.png │ │ ├── btn_style_one_focused.9.png │ │ ├── btn_style_one_normal.9.png │ │ ├── btn_style_one_pressed.9.png │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── drawable │ │ └── btn_bg.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── menu │ │ └── main.xml │ │ ├── values-sw600dp │ │ └── dimens.xml │ │ ├── values-sw720dp-land │ │ └── dimens.xml │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── local.properties └── settings.gradle ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── libs │ ├── PhotoView.aar │ ├── dom4j-1.6.1.jar │ └── htmlparser.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── github │ │ └── yippee │ │ └── notifytools │ │ ├── AndroidTests.java │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ ├── com │ │ │ └── classic │ │ │ │ └── clearprocesses │ │ │ │ ├── ForceStopActivity.java │ │ │ │ ├── HelpService.java │ │ │ │ ├── JumpInfo.java │ │ │ │ └── PackageAdapter.java │ │ └── org │ │ │ └── github │ │ │ └── yippee │ │ │ └── notifytools │ │ │ ├── BootCompletedReceiver.java │ │ │ ├── FullActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MainApp.java │ │ │ ├── NotifyService.java │ │ │ ├── bean │ │ │ └── Heweather7bean.java │ │ │ ├── db │ │ │ ├── DBUtils.java │ │ │ ├── greendaogen │ │ │ │ ├── DaoMaster.java │ │ │ │ ├── DaoSession.java │ │ │ │ └── UserDao.java │ │ │ └── test │ │ │ │ └── User.java │ │ │ ├── debug │ │ │ └── Tests.java │ │ │ ├── java │ │ │ └── WardService.java │ │ │ ├── media │ │ │ ├── BmpUtils.java │ │ │ └── MediaMetas.java │ │ │ ├── service │ │ │ ├── HeWeatherService.java │ │ │ ├── JumpService.java │ │ │ ├── RobService.java │ │ │ ├── SimService.java │ │ │ ├── StringConverterFactory.java │ │ │ └── VcardService.java │ │ │ ├── tools.java │ │ │ ├── utils │ │ │ ├── CalcJump.java │ │ │ ├── CaptureHelper.java │ │ │ ├── FileUtil.java │ │ │ ├── LocalConst.java │ │ │ ├── Logs.java │ │ │ ├── PathUtils.java │ │ │ ├── QuotedPrintableCodec.java │ │ │ ├── SimUtils.java │ │ │ └── SysUtils.java │ │ │ ├── view │ │ │ ├── DrawImageView.java │ │ │ ├── FloatView.java │ │ │ └── PdfActivity.java │ │ │ └── voiceaacpcm │ │ │ └── VoicePcm.java │ └── res │ │ ├── drawable │ │ ├── bg_while.xml │ │ ├── ic_done_white_32dp.png │ │ ├── ic_keyboard_arrow_left_white_48dp.png │ │ ├── ic_keyboard_arrow_right_white_48dp.png │ │ ├── ic_keyboard_return_white_48dp.png │ │ └── ic_notify.png │ │ ├── layout │ │ ├── activity_full.xml │ │ ├── activity_main.xml │ │ ├── activity_pdf.xml │ │ ├── content_main.xml │ │ ├── content_pdf.xml │ │ ├── item_app_info.xml │ │ └── notification.xml │ │ ├── menu │ │ └── menu_pdf.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ ├── ic_clear.png │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-v24 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── help.xml │ └── test │ └── java │ └── org │ └── github │ └── yippee │ └── notifytools │ └── ExampleUnitTest.java ├── beanutils ├── .gitignore ├── beanutils.iml ├── build.gradle ├── libs │ ├── commons-collections-3.2.2.jar │ └── commons-logging-1.2.jar └── src │ └── main │ └── java │ ├── com │ └── googlecode │ │ └── openbeans │ │ ├── AppletInitializer.java │ │ ├── ArrayPersistenceDelegate.java │ │ ├── AwtChoicePersistenceDelegate.java │ │ ├── AwtColorPersistenceDelegate.java │ │ ├── AwtComponentPersistenceDelegate.java │ │ ├── AwtContainerPersistenceDelegate.java │ │ ├── AwtCursorPersistenceDelegate.java │ │ ├── AwtDimensionPersistenceDelegate.java │ │ ├── AwtFontPersistenceDelegate.java │ │ ├── AwtFontTextAttributePersistenceDelegate.java │ │ ├── AwtInsetsPersistenceDelegate.java │ │ ├── AwtListPersistenceDelegate.java │ │ ├── AwtMenuBarPersistenceDelegate.java │ │ ├── AwtMenuPersistenceDelegate.java │ │ ├── AwtMenuShortcutPersistenceDelegate.java │ │ ├── AwtPointPersistenceDelegate.java │ │ ├── AwtRectanglePersistenceDelegate.java │ │ ├── AwtScrollPanePersistenceDelegate.java │ │ ├── AwtSystemColorPersistenceDelegate.java │ │ ├── BeanDescriptor.java │ │ ├── BeanInfo.java │ │ ├── Beans.java │ │ ├── ClassPersistenceDelegate.java │ │ ├── CustomizedObjectInputStream.java │ │ ├── Customizer.java │ │ ├── DefaultPersistenceDelegate.java │ │ ├── DesignMode.java │ │ ├── Encoder.java │ │ ├── EventHandler.java │ │ ├── EventSetDescriptor.java │ │ ├── ExceptionListener.java │ │ ├── Expression.java │ │ ├── FeatureDescriptor.java │ │ ├── FieldPersistenceDelegate.java │ │ ├── IndexedPropertyChangeEvent.java │ │ ├── IndexedPropertyDescriptor.java │ │ ├── IntrospectionException.java │ │ ├── Introspector.java │ │ ├── MethodDescriptor.java │ │ ├── MethodPersistenceDelegate.java │ │ ├── NullPersistenceDelegate.java │ │ ├── ParameterDescriptor.java │ │ ├── PersistenceDelegate.java │ │ ├── PrimitiveWrapperPersistenceDelegate.java │ │ ├── PropertyChangeEvent.java │ │ ├── PropertyChangeListener.java │ │ ├── PropertyChangeListenerProxy.java │ │ ├── PropertyChangeSupport.java │ │ ├── PropertyDescriptor.java │ │ ├── PropertyEditor.java │ │ ├── PropertyEditorManager.java │ │ ├── PropertyEditorSupport.java │ │ ├── PropertyVetoException.java │ │ ├── ProxyPersistenceDelegate.java │ │ ├── SimpleBeanInfo.java │ │ ├── StandardBeanInfo.java │ │ ├── Statement.java │ │ ├── StaticFieldPersistenceDelegate.java │ │ ├── StringPersistenceDelegate.java │ │ ├── SwingAbstractButtonPersistenceDelegate.java │ │ ├── SwingBoxPersistenceDelegate.java │ │ ├── SwingDefaultComboBoxModelPersistenceDelegate.java │ │ ├── SwingJFramePersistenceDelegate.java │ │ ├── SwingJTabbedPanePersistenceDelegate.java │ │ ├── SwingToolTipManagerPersistenceDelegate.java │ │ ├── UtilCollectionPersistenceDelegate.java │ │ ├── UtilCollectionsPersistenceDelegate.java │ │ ├── UtilDatePersistenceDelegate.java │ │ ├── UtilListPersistenceDelegate.java │ │ ├── UtilMapPersistenceDelegate.java │ │ ├── VetoableChangeListener.java │ │ ├── VetoableChangeListenerProxy.java │ │ ├── VetoableChangeSupport.java │ │ ├── Visibility.java │ │ ├── XMLDecoder.java │ │ ├── XMLEncoder.java │ │ └── beancontext │ │ ├── BeanContext.java │ │ ├── BeanContextChild.java │ │ ├── BeanContextChildComponentProxy.java │ │ ├── BeanContextChildSupport.java │ │ ├── BeanContextContainerProxy.java │ │ ├── BeanContextEvent.java │ │ ├── BeanContextMembershipEvent.java │ │ ├── BeanContextMembershipListener.java │ │ ├── BeanContextProxy.java │ │ ├── BeanContextServiceAvailableEvent.java │ │ ├── BeanContextServiceProvider.java │ │ ├── BeanContextServiceProviderBeanInfo.java │ │ ├── BeanContextServiceRevokedEvent.java │ │ ├── BeanContextServiceRevokedListener.java │ │ ├── BeanContextServices.java │ │ ├── BeanContextServicesListener.java │ │ ├── BeanContextServicesSupport.java │ │ └── BeanContextSupport.java │ └── org │ └── apache │ ├── commons │ └── beanutils │ │ ├── BaseDynaBeanMapDecorator.java │ │ ├── BasicDynaBean.java │ │ ├── BasicDynaClass.java │ │ ├── BeanAccessLanguageException.java │ │ ├── BeanComparator.java │ │ ├── BeanIntrospectionData.java │ │ ├── BeanIntrospector.java │ │ ├── BeanMap.java │ │ ├── BeanPredicate.java │ │ ├── BeanPropertyValueChangeClosure.java │ │ ├── BeanPropertyValueEqualsPredicate.java │ │ ├── BeanToPropertyValueTransformer.java │ │ ├── BeanUtils.java │ │ ├── BeanUtilsBean.java │ │ ├── BeanUtilsBean2.java │ │ ├── ConstructorUtils.java │ │ ├── ContextClassLoaderLocal.java │ │ ├── ConversionException.java │ │ ├── ConvertUtils.java │ │ ├── ConvertUtilsBean.java │ │ ├── ConvertUtilsBean2.java │ │ ├── Converter.java │ │ ├── ConvertingWrapDynaBean.java │ │ ├── DefaultBeanIntrospector.java │ │ ├── DefaultIntrospectionContext.java │ │ ├── DynaBean.java │ │ ├── DynaBeanMapDecorator.java │ │ ├── DynaBeanPropertyMapDecorator.java │ │ ├── DynaClass.java │ │ ├── DynaProperty.java │ │ ├── FluentPropertyBeanIntrospector.java │ │ ├── IntrospectionContext.java │ │ ├── JDBCDynaClass.java │ │ ├── LazyDynaBean.java │ │ ├── LazyDynaClass.java │ │ ├── LazyDynaList.java │ │ ├── LazyDynaMap.java │ │ ├── MappedPropertyDescriptor.java │ │ ├── MethodUtils.java │ │ ├── MutableDynaClass.java │ │ ├── NestedNullException.java │ │ ├── PropertyUtils.java │ │ ├── PropertyUtilsBean.java │ │ ├── ResultSetDynaClass.java │ │ ├── ResultSetIterator.java │ │ ├── RowSetDynaClass.java │ │ ├── SuppressPropertiesBeanIntrospector.java │ │ ├── WeakFastHashMap.java │ │ ├── WrapDynaBean.java │ │ ├── WrapDynaClass.java │ │ ├── converters │ │ ├── AbstractArrayConverter.java │ │ ├── AbstractConverter.java │ │ ├── ArrayConverter.java │ │ ├── BigDecimalConverter.java │ │ ├── BigIntegerConverter.java │ │ ├── BooleanArrayConverter.java │ │ ├── BooleanConverter.java │ │ ├── ByteArrayConverter.java │ │ ├── ByteConverter.java │ │ ├── CalendarConverter.java │ │ ├── CharacterArrayConverter.java │ │ ├── CharacterConverter.java │ │ ├── ClassConverter.java │ │ ├── ConverterFacade.java │ │ ├── DateConverter.java │ │ ├── DateTimeConverter.java │ │ ├── DoubleArrayConverter.java │ │ ├── DoubleConverter.java │ │ ├── FileConverter.java │ │ ├── FloatArrayConverter.java │ │ ├── FloatConverter.java │ │ ├── IntegerArrayConverter.java │ │ ├── IntegerConverter.java │ │ ├── LongArrayConverter.java │ │ ├── LongConverter.java │ │ ├── NumberConverter.java │ │ ├── ShortArrayConverter.java │ │ ├── ShortConverter.java │ │ ├── SqlDateConverter.java │ │ ├── SqlTimeConverter.java │ │ ├── SqlTimestampConverter.java │ │ ├── StringArrayConverter.java │ │ ├── StringConverter.java │ │ ├── URLConverter.java │ │ └── package-info.java │ │ ├── expression │ │ ├── DefaultResolver.java │ │ ├── Resolver.java │ │ └── package-info.java │ │ ├── locale │ │ ├── BaseLocaleConverter.java │ │ ├── LocaleBeanUtils.java │ │ ├── LocaleBeanUtilsBean.java │ │ ├── LocaleConvertUtils.java │ │ ├── LocaleConvertUtilsBean.java │ │ ├── LocaleConverter.java │ │ ├── converters │ │ │ ├── BigDecimalLocaleConverter.java │ │ │ ├── BigIntegerLocaleConverter.java │ │ │ ├── ByteLocaleConverter.java │ │ │ ├── DateLocaleConverter.java │ │ │ ├── DecimalLocaleConverter.java │ │ │ ├── DoubleLocaleConverter.java │ │ │ ├── FloatLocaleConverter.java │ │ │ ├── IntegerLocaleConverter.java │ │ │ ├── LongLocaleConverter.java │ │ │ ├── ShortLocaleConverter.java │ │ │ ├── SqlDateLocaleConverter.java │ │ │ ├── SqlTimeLocaleConverter.java │ │ │ ├── SqlTimestampLocaleConverter.java │ │ │ ├── StringLocaleConverter.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ └── package-info.java │ └── harmony │ └── beans │ ├── Argument.java │ ├── BeansUtils.java │ ├── Command.java │ ├── Handler.java │ ├── editors │ ├── BooleanEditor.java │ ├── ByteEditor.java │ ├── ColorEditor.java │ ├── DoubleEditor.java │ ├── FloatEditor.java │ ├── FontEditor.java │ ├── IntEditor.java │ ├── LongEditor.java │ ├── ShortEditor.java │ └── StringEditor.java │ └── internal │ └── nls │ ├── Messages.java │ └── messages.properties ├── build.gradle ├── ch-mount.sh ├── china-poem ├── .gitignore ├── build.gradle ├── libs │ ├── hanlp-portable-1.3.4.jar │ └── pinyin4j-2.5.0.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── github │ │ └── yippee │ │ └── china_poem │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── github │ │ │ └── yippee │ │ │ └── china_poem │ │ │ ├── MainActivity.java │ │ │ ├── PoemApp.java │ │ │ ├── Test │ │ │ └── TestBeanUtils.java │ │ │ ├── Utils │ │ │ └── LogUtils.java │ │ │ ├── poem2db │ │ │ ├── DBCiManager.java │ │ │ ├── DBManager.java │ │ │ ├── DaoDBCiMaster.java │ │ │ ├── DaoDBMaster.java │ │ │ ├── Ts2Sqlite.java │ │ │ ├── TsBean.java │ │ │ ├── bean │ │ │ │ ├── SongCi.java │ │ │ │ └── Tangshi.java │ │ │ └── dao │ │ │ │ └── gen │ │ │ │ ├── DaoMaster.java │ │ │ │ ├── DaoSession.java │ │ │ │ ├── SongCiDao.java │ │ │ │ └── TangshiDao.java │ │ │ └── view │ │ │ ├── DataBuilder.java │ │ │ ├── DataBuilderGuava.java │ │ │ ├── DetailActivity.java │ │ │ ├── PoemAdapter.java │ │ │ ├── PoemDetailAdapter.java │ │ │ ├── Rx │ │ │ └── RxView.java │ │ │ ├── ViewBuilder.java │ │ │ └── bean │ │ │ └── ShiRenName.java │ └── res │ │ ├── drawable-v21 │ │ ├── android_logo.png │ │ ├── ic_menu_camera.xml │ │ ├── ic_menu_gallery.xml │ │ ├── ic_menu_manage.xml │ │ ├── ic_menu_send.xml │ │ ├── ic_menu_share.xml │ │ └── ic_menu_slideshow.xml │ │ ├── drawable │ │ ├── list_item_background.xml │ │ └── side_nav_bar.xml │ │ ├── layout │ │ ├── activity_detail.xml │ │ ├── activity_main.xml │ │ ├── app_bar_main.xml │ │ ├── content_detail.xml │ │ ├── content_main.xml │ │ ├── nav_header_main.xml │ │ ├── rv_detail_item.xml │ │ └── view_rv_item.xml │ │ ├── menu │ │ ├── activity_main_drawer.xml │ │ └── main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── drawables.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── org │ └── github │ └── yippee │ └── china_poem │ └── ExampleUnitTest.java ├── chinesecalendar ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── github │ │ └── yippee │ │ └── chinesecalendar │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── github │ │ │ └── yippee │ │ │ └── chinesecalendar │ │ │ ├── CalcLunar.java │ │ │ ├── ChineseCalendar.java │ │ │ ├── ChineseCalendarException.java │ │ │ ├── Consts.java │ │ │ ├── LunarHolidayStruct.java │ │ │ ├── SolarHolidayStruct.java │ │ │ ├── Utils.java │ │ │ └── WeekHolidayStruct.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── org │ └── github │ └── yippee │ └── chinesecalendar │ └── ExampleUnitTest.java ├── cplussharp ├── FireFoxPwdCrack │ ├── ffpwd.sln │ └── ffpwd │ │ ├── ReadMe.txt │ │ ├── Source.cpp │ │ ├── chrome.h │ │ ├── data.txt │ │ ├── ffpwd.cpp │ │ ├── ffpwd.vcxproj │ │ ├── ffpwd.vcxproj.filters │ │ ├── firefox.h │ │ ├── misc.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── callback │ ├── CsharpDll4Mfc │ │ ├── CSharpLib.snk │ │ ├── Class1.cs │ │ ├── CsharpDll4Mfc.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MfcCallCsharpDll │ │ ├── MfcCallCsharpDll.cpp │ │ ├── MfcCallCsharpDll.h │ │ ├── MfcCallCsharpDll.rc │ │ ├── MfcCallCsharpDll.vcxproj │ │ ├── MfcCallCsharpDll.vcxproj.filters │ │ ├── MfcCallCsharpDllDlg.cpp │ │ ├── MfcCallCsharpDllDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── MfcCallCsharpDll.ico │ │ │ └── MfcCallCsharpDll.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── MfcDll4Csharp │ │ ├── MfcDll4Csharp.cpp │ │ ├── MfcDll4Csharp.def │ │ ├── MfcDll4Csharp.h │ │ ├── MfcDll4Csharp.rc │ │ ├── MfcDll4Csharp.sln │ │ ├── MfcDll4Csharp.vcxproj │ │ ├── MfcDll4Csharp.vcxproj.filters │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── res │ │ │ └── MfcDll4Csharp.rc2 │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── callback │ │ ├── App.config │ │ ├── CsharpCallMfcDll.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── callback.sln ├── fluttertest │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── fluttertest │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── lib │ │ ├── main.dart │ │ └── main2.dart │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart ├── linuxdrv-hello │ ├── Makefile │ ├── demo │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── demo.c │ │ └── demo.h │ ├── hellolinuxdrv.c │ └── s-test-demo-drv │ │ ├── Android.mk │ │ └── mytest.c ├── ohos │ ├── lrzsz-0.12.20 │ │ ├── ABOUT-NLS │ │ ├── AUTHORS │ │ ├── BUILD.gn │ │ ├── COMPATABILITY │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.cvs │ │ ├── README.gettext │ │ ├── README.isdn4linux │ │ ├── README.tests │ │ ├── Specfile.in │ │ ├── THANKS │ │ ├── TODO │ │ ├── acconfig.h │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── argz.h │ │ ├── beos-runpiped.c │ │ ├── buildrpm │ │ ├── check.lrzsz │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ └── rules.in │ │ ├── fastcheck.beos │ │ ├── fastcheck.sh │ │ ├── install-sh │ │ ├── intl │ │ │ ├── ChangeLog │ │ │ ├── Makefile.in │ │ │ ├── VERSION │ │ │ ├── bindtextdom.c │ │ │ ├── cat-compat.c │ │ │ ├── cat-id-tbl.c │ │ │ ├── dcgettext.c │ │ │ ├── dgettext.c │ │ │ ├── explodename.c │ │ │ ├── finddomain.c │ │ │ ├── gettext.c │ │ │ ├── gettext.h │ │ │ ├── gettextP.h │ │ │ ├── hash-string.h │ │ │ ├── intl-compat.c │ │ │ ├── l10nflist.c │ │ │ ├── libgettext.h │ │ │ ├── linux-msg.sed │ │ │ ├── loadinfo.h │ │ │ ├── loadmsgcat.c │ │ │ ├── localealias.c │ │ │ ├── po2tbl.sed.in │ │ │ ├── textdomain.c │ │ │ └── xopen-msg.sed │ │ ├── lib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── alloca.c │ │ │ ├── ansi2knr.1 │ │ │ ├── ansi2knr.c │ │ │ ├── error.c │ │ │ ├── error.h │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ ├── getopt1.c │ │ │ ├── long-options.c │ │ │ ├── long-options.h │ │ │ ├── mkdir.c │ │ │ ├── mktime.c │ │ │ ├── stpcpy.c │ │ │ ├── strdup.c │ │ │ ├── strerror.c │ │ │ ├── strftime.c │ │ │ ├── strpbrk.c │ │ │ ├── strstr.c │ │ │ ├── strtol.c │ │ │ ├── strtoul.c │ │ │ ├── vasprintf.c │ │ │ ├── xstrtol.c │ │ │ ├── xstrtol.h │ │ │ ├── xstrtoul.c │ │ │ └── xstrtoul.h │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── lrz.1 │ │ │ └── lsz.1 │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── po │ │ │ ├── ChangeLog │ │ │ ├── Makefile.in.in │ │ │ ├── POTFILES.in │ │ │ ├── cat-id-tbl.c │ │ │ ├── de.gmo │ │ │ ├── de.po │ │ │ ├── lrzsz.pot │ │ │ └── stamp-cat-id │ │ ├── rpmrc │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ansi2knr.1 │ │ │ ├── ansi2knr.c │ │ │ ├── canit.c │ │ │ ├── config.h │ │ │ ├── crctab.c │ │ │ ├── lrz.c │ │ │ ├── lrzszbug.in │ │ │ ├── lsyslog.c │ │ │ ├── lsz.c │ │ │ ├── protname.c │ │ │ ├── rbsb.c │ │ │ ├── tcp.c │ │ │ ├── timing.c │ │ │ ├── timing.h │ │ │ ├── zglobal.h │ │ │ ├── zm.c │ │ │ ├── zmodem.h │ │ │ ├── zperr.c │ │ │ └── zreadline.c │ │ ├── stamp-h.in │ │ ├── systype.in │ │ └── testsuite │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── config │ │ │ └── unix.exp │ │ │ ├── lib │ │ │ └── lrzsz.exp │ │ │ └── lrzsz │ │ │ ├── abuse.exp │ │ │ ├── command.exp │ │ │ ├── compatability.exp │ │ │ ├── crc.exp │ │ │ ├── manage.exp │ │ │ ├── newer.exp │ │ │ ├── path.exp │ │ │ ├── resume.exp │ │ │ ├── timing.exp │ │ │ ├── uppercase.exp │ │ │ ├── window.exp │ │ │ ├── xmodem.exp │ │ │ ├── ymodem.exp │ │ │ ├── zmodem-crc16.exp │ │ │ ├── zmodem-escape.exp │ │ │ ├── zmodem-tcp.exp │ │ │ └── zmodem.exp │ ├── rzsz │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── README.md │ │ ├── crc.c │ │ ├── crc.doc │ │ ├── crctab.c │ │ ├── gz │ │ ├── mailer.rz │ │ ├── minirb.c │ │ ├── minirb.doc │ │ ├── rbsb.c │ │ ├── rz.c │ │ ├── rz.doc │ │ ├── sz.c │ │ ├── sz.doc │ │ ├── undos.c │ │ ├── undos.doc │ │ ├── zm.c │ │ ├── zmodem.h │ │ ├── zmr.c │ │ └── zupl.t │ ├── testJson │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .clangd │ │ ├── .gitignore │ │ ├── AppScope │ │ │ ├── app.json5 │ │ │ └── resources │ │ │ │ └── base │ │ │ │ ├── element │ │ │ │ └── string.json │ │ │ │ └── media │ │ │ │ └── app_icon.png │ │ ├── entry │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── hdctool │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── showimage.cpp │ │ │ │ │ ├── hello.cpp │ │ │ │ │ ├── snapshotsf │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── snapshot_utils.h │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── snapshot_display.cpp │ │ │ │ │ │ │ └── snapshot_utils.cpp │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ └── unittest │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── snapshot_display_test.cpp │ │ │ │ │ │ │ └── snapshot_utils_test.cpp │ │ │ │ │ └── types │ │ │ │ │ │ └── libentry │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── oh-package.json5 │ │ │ │ ├── ets │ │ │ │ │ ├── entryability │ │ │ │ │ │ └── EntryAbility.ts │ │ │ │ │ └── pages │ │ │ │ │ │ └── Index.ets │ │ │ │ ├── module.json5 │ │ │ │ └── resources │ │ │ │ │ ├── base │ │ │ │ │ ├── element │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ └── string.json │ │ │ │ │ ├── media │ │ │ │ │ │ └── icon.png │ │ │ │ │ └── profile │ │ │ │ │ │ └── main_pages.json │ │ │ │ │ ├── en_US │ │ │ │ │ └── element │ │ │ │ │ │ └── string.json │ │ │ │ │ └── zh_CN │ │ │ │ │ └── element │ │ │ │ │ └── string.json │ │ │ │ └── ohosTest │ │ │ │ ├── ets │ │ │ │ ├── test │ │ │ │ │ ├── Ability.test.ets │ │ │ │ │ └── List.test.ets │ │ │ │ ├── testability │ │ │ │ │ ├── TestAbility.ets │ │ │ │ │ └── pages │ │ │ │ │ │ └── Index.ets │ │ │ │ └── testrunner │ │ │ │ │ └── OpenHarmonyTestRunner.ts │ │ │ │ ├── module.json5 │ │ │ │ └── resources │ │ │ │ └── base │ │ │ │ ├── element │ │ │ │ ├── color.json │ │ │ │ └── string.json │ │ │ │ ├── media │ │ │ │ └── icon.png │ │ │ │ └── profile │ │ │ │ └── test_pages.json │ │ ├── hvigor │ │ │ ├── hvigor-config.json5 │ │ │ └── hvigor-wrapper.js │ │ ├── hvigorfile.ts │ │ ├── hvigorw │ │ ├── hvigorw.bat │ │ ├── local.properties │ │ └── oh-package.json5 │ └── testcmake │ │ ├── CMakeLists.txt │ │ └── testcmake.cpp ├── ros │ └── helloworld │ │ └── src │ │ └── hello │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── ros_ncnn │ │ │ ├── gpu_support.h │ │ │ ├── ncnn_config.h.in │ │ │ ├── ncnn_fast_rcnn.h │ │ │ ├── ncnn_hopenet.h │ │ │ ├── ncnn_posenet.h │ │ │ ├── ncnn_retinaface.h │ │ │ ├── ncnn_utils.h │ │ │ ├── ncnn_yolact.h │ │ │ ├── ncnn_yolo.h │ │ │ └── ncnn_yolov5.h │ │ ├── msg │ │ ├── Euler.msg │ │ ├── FaceObject.msg │ │ ├── Object.msg │ │ ├── Rectangle.msg │ │ └── Vector2D.msg │ │ ├── package.xml │ │ └── src │ │ ├── benchncnn.cpp │ │ ├── benchncnn_pub.cpp │ │ ├── img_pub.cpp │ │ ├── img_sub.cpp │ │ ├── listener.cpp │ │ ├── ncnn_retinaface.cpp │ │ ├── retinaface_node.cpp │ │ └── talker.cpp └── vscode │ ├── .clang-format │ ├── .vscode │ └── settings.json │ ├── CMakeLists.txt │ ├── gotest │ └── godemo │ │ ├── go.mod │ │ ├── godemo.go │ │ ├── greeter.c │ │ └── greeter.h │ ├── pytest │ ├── repo.py │ ├── test.py │ └── testso.c │ ├── pythonsodbg │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── CMakeLists.txt │ ├── addd.cpp │ ├── gdb.sh │ └── test.py │ ├── qt │ └── qttest │ │ ├── .clang-format │ │ ├── .vscode │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── MainWidget1.cpp │ │ ├── MainWidget1.h │ │ ├── launch │ │ ├── qtmain.cpp │ │ ├── workspace │ │ └── workspace.code-workspace │ ├── rusttest │ ├── autocxxtest │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── bob.h │ │ │ ├── main.rs │ │ │ └── tengine_c_api.h │ ├── bindgentest │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── src │ │ │ └── main.rs │ │ └── wrapper.h │ ├── greeting │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ └── ncnntengine2rs │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── c_api.h │ │ ├── ncnn_c_api.rs │ │ ├── ncnn_export.h │ │ ├── platform.h │ │ ├── src │ │ └── main.rs │ │ ├── tengine_c_api.h │ │ └── tengine_c_api.rs │ ├── test │ ├── .gitignore │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── CMakeSettings.json │ ├── main.cpp │ ├── sftests │ │ ├── CMakeLists.txt │ │ ├── test_boost.h │ │ ├── test_glog.h │ │ ├── test_spdlog.h │ │ └── tests.h │ ├── slibs │ │ ├── CMakeLists.txt │ │ ├── Slog.cpp │ │ └── Slog.h │ └── toolchains │ │ └── aarch64-linux-gnu.toolchain.cmake │ ├── tests │ ├── CMakeLists.txt │ └── slibs │ │ ├── CMakeLists.txt │ │ ├── Slog │ │ ├── Slog.cpp │ │ └── Slog.h │ ├── unittest │ ├── CMakeLists.txt │ ├── log4cplustest.cpp │ ├── scurltest.cpp │ ├── shttphandletest.cpp │ ├── singaltest.cpp │ ├── sjsontest.cpp │ ├── sloghandletest.cpp │ ├── sluatest.cpp │ ├── sxmltest.cpp │ └── xml2cxx │ │ ├── artifacts-pskel.cxx │ │ ├── artifacts-pskel.hxx │ │ ├── artifacts.cxx │ │ ├── artifacts.h │ │ ├── artifacts.hxx │ │ ├── artifacts.xml │ │ ├── artifacts.xsd │ │ └── note.md │ ├── utils │ ├── CMakeLists.txt │ ├── SignalHandle.cpp │ ├── SignalHandle.h │ ├── SlogHandle.cpp │ └── SlogHandle.h │ ├── vcpkg.json.bak │ └── vcpkg │ ├── AsioHttp.hpp │ ├── CMakeLists.txt │ ├── Hmac.hpp │ ├── HttpIot.hpp │ ├── Log.hpp │ ├── ReqBean.cpp │ ├── ReqBean.hpp │ ├── Utils.hpp │ ├── common.hpp │ ├── main.cpp │ └── root_certificates.hpp ├── demoCA ├── newcert.pem └── newkey.pem ├── docs ├── android-rk3399增加app.md ├── android-rk3399增加drv.md ├── android-rk3399编译.md ├── firefox-thunderbird编译.md ├── foams-笔记 │ ├── .foam │ │ └── templates │ │ │ └── your-first-template.md │ ├── _layouts │ │ ├── home.html │ │ └── page.html │ ├── assets │ │ └── css │ │ │ └── style.scss │ ├── attachments │ │ └── foam-icon.png │ ├── docs │ │ ├── features │ │ │ ├── daily-notes.md │ │ │ ├── graph-visualization.md │ │ │ ├── link-reference-definitions.md │ │ │ ├── note-properties.md │ │ │ ├── note-templates.md │ │ │ ├── spell-checking.md │ │ │ ├── tags-and-tag-explorer.md │ │ │ └── wikilinks.md │ │ └── how-to │ │ │ ├── Win应用.md │ │ │ ├── android应用开发.md │ │ │ ├── android编译.md │ │ │ ├── get-started-with-vscode.md │ │ │ ├── githubs.md │ │ │ ├── linux应用.md │ │ │ ├── misc开发.md │ │ │ ├── paste-images-from-clipboard.md │ │ │ ├── shortcut-list.md │ │ │ ├── termux.md │ │ │ ├── use-keyboard-shortcuts-for-editing.md │ │ │ ├── write-notes-in-foam.md │ │ │ ├── 笔记foam.md │ │ │ └── 笔记frida-hook.md │ ├── getting-started.md │ ├── inbox.md │ ├── readme.md │ └── todo.md ├── linux-drvice-hello.md ├── ohos.md ├── rk--rockchip-linux5x.md └── rk3399-debian-ros1.md ├── face-detection ├── OpenCVLibrary340 │ ├── build.gradle │ ├── lint.xml │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── aidl │ │ └── org │ │ │ └── opencv │ │ │ └── engine │ │ │ └── OpenCVEngineInterface.aidl │ │ ├── java │ │ └── org │ │ │ └── opencv │ │ │ ├── android │ │ │ ├── AsyncServiceHelper.java │ │ │ ├── BaseLoaderCallback.java │ │ │ ├── Camera2Renderer.java │ │ │ ├── CameraBridgeViewBase.java │ │ │ ├── CameraGLRendererBase.java │ │ │ ├── CameraGLSurfaceView.java │ │ │ ├── CameraRenderer.java │ │ │ ├── FpsMeter.java │ │ │ ├── InstallCallbackInterface.java │ │ │ ├── JavaCameraView.java │ │ │ ├── LoaderCallbackInterface.java │ │ │ ├── OpenCVLoader.java │ │ │ ├── StaticHelper.java │ │ │ └── Utils.java │ │ │ ├── calib3d │ │ │ ├── Calib3d.java │ │ │ ├── StereoBM.java │ │ │ ├── StereoMatcher.java │ │ │ └── StereoSGBM.java │ │ │ ├── core │ │ │ ├── Algorithm.java │ │ │ ├── Core.java │ │ │ ├── CvException.java │ │ │ ├── CvType.java │ │ │ ├── DMatch.java │ │ │ ├── KeyPoint.java │ │ │ ├── Mat.java │ │ │ ├── MatOfByte.java │ │ │ ├── MatOfDMatch.java │ │ │ ├── MatOfDouble.java │ │ │ ├── MatOfFloat.java │ │ │ ├── MatOfFloat4.java │ │ │ ├── MatOfFloat6.java │ │ │ ├── MatOfInt.java │ │ │ ├── MatOfInt4.java │ │ │ ├── MatOfKeyPoint.java │ │ │ ├── MatOfPoint.java │ │ │ ├── MatOfPoint2f.java │ │ │ ├── MatOfPoint3.java │ │ │ ├── MatOfPoint3f.java │ │ │ ├── MatOfRect.java │ │ │ ├── MatOfRect2d.java │ │ │ ├── Point.java │ │ │ ├── Point3.java │ │ │ ├── Range.java │ │ │ ├── Rect.java │ │ │ ├── Rect2d.java │ │ │ ├── RotatedRect.java │ │ │ ├── Scalar.java │ │ │ ├── Size.java │ │ │ ├── TermCriteria.java │ │ │ └── TickMeter.java │ │ │ ├── dnn │ │ │ ├── DictValue.java │ │ │ ├── Dnn.java │ │ │ ├── Layer.java │ │ │ └── Net.java │ │ │ ├── features2d │ │ │ ├── AKAZE.java │ │ │ ├── AgastFeatureDetector.java │ │ │ ├── BFMatcher.java │ │ │ ├── BOWImgDescriptorExtractor.java │ │ │ ├── BOWKMeansTrainer.java │ │ │ ├── BOWTrainer.java │ │ │ ├── BRISK.java │ │ │ ├── DescriptorExtractor.java │ │ │ ├── DescriptorMatcher.java │ │ │ ├── FastFeatureDetector.java │ │ │ ├── Feature2D.java │ │ │ ├── FeatureDetector.java │ │ │ ├── Features2d.java │ │ │ ├── FlannBasedMatcher.java │ │ │ ├── GFTTDetector.java │ │ │ ├── KAZE.java │ │ │ ├── MSER.java │ │ │ ├── ORB.java │ │ │ └── Params.java │ │ │ ├── imgcodecs │ │ │ └── Imgcodecs.java │ │ │ ├── imgproc │ │ │ ├── CLAHE.java │ │ │ ├── Imgproc.java │ │ │ ├── LineSegmentDetector.java │ │ │ ├── Moments.java │ │ │ └── Subdiv2D.java │ │ │ ├── ml │ │ │ ├── ANN_MLP.java │ │ │ ├── ANN_MLP_ANNEAL.java │ │ │ ├── Boost.java │ │ │ ├── DTrees.java │ │ │ ├── EM.java │ │ │ ├── KNearest.java │ │ │ ├── LogisticRegression.java │ │ │ ├── Ml.java │ │ │ ├── NormalBayesClassifier.java │ │ │ ├── ParamGrid.java │ │ │ ├── RTrees.java │ │ │ ├── SVM.java │ │ │ ├── SVMSGD.java │ │ │ ├── StatModel.java │ │ │ └── TrainData.java │ │ │ ├── objdetect │ │ │ ├── BaseCascadeClassifier.java │ │ │ ├── CascadeClassifier.java │ │ │ ├── HOGDescriptor.java │ │ │ └── Objdetect.java │ │ │ ├── osgi │ │ │ ├── OpenCVInterface.java │ │ │ └── OpenCVNativeLoader.java │ │ │ ├── photo │ │ │ ├── AlignExposures.java │ │ │ ├── AlignMTB.java │ │ │ ├── CalibrateCRF.java │ │ │ ├── CalibrateDebevec.java │ │ │ ├── CalibrateRobertson.java │ │ │ ├── MergeDebevec.java │ │ │ ├── MergeExposures.java │ │ │ ├── MergeMertens.java │ │ │ ├── MergeRobertson.java │ │ │ ├── Photo.java │ │ │ ├── Tonemap.java │ │ │ ├── TonemapDrago.java │ │ │ ├── TonemapDurand.java │ │ │ ├── TonemapMantiuk.java │ │ │ └── TonemapReinhard.java │ │ │ ├── utils │ │ │ └── Converters.java │ │ │ ├── video │ │ │ ├── BackgroundSubtractor.java │ │ │ ├── BackgroundSubtractorKNN.java │ │ │ ├── BackgroundSubtractorMOG2.java │ │ │ ├── DenseOpticalFlow.java │ │ │ ├── DualTVL1OpticalFlow.java │ │ │ ├── FarnebackOpticalFlow.java │ │ │ ├── KalmanFilter.java │ │ │ ├── SparseOpticalFlow.java │ │ │ ├── SparsePyrLKOpticalFlow.java │ │ │ └── Video.java │ │ │ └── videoio │ │ │ ├── VideoCapture.java │ │ │ ├── VideoWriter.java │ │ │ └── Videoio.java │ │ └── res │ │ └── values │ │ └── attrs.xml ├── OpenCVSamplefacedetection │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── org │ │ │ └── opencv │ │ │ └── samples │ │ │ └── facedetect │ │ │ ├── DetectionBasedTracker.java │ │ │ ├── FdActivity.java │ │ │ └── JpgFace.java │ │ ├── libs │ │ └── armeabi-v7a │ │ │ └── libdetection_based_tracker.so │ │ └── res │ │ ├── drawable │ │ └── icon.png │ │ ├── layout │ │ └── face_detect_surface_view.xml │ │ ├── raw │ │ └── lbpcascade_frontalface.xml │ │ └── values │ │ └── strings.xml ├── build.gradle ├── gradle.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── opencvjni │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── starnet │ │ │ └── opencvjni │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ ├── DetectionBasedTracker_jni.cpp │ │ │ └── DetectionBasedTracker_jni.h │ │ ├── libs │ │ │ └── armeabi-v7a │ │ │ │ └── libdetection_based_tracker.so │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── starnet │ │ └── opencvjni │ │ └── ExampleUnitTest.java ├── readme.md └── settings.gradle ├── fridaHookTest ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── frida │ │ │ └── hook │ │ │ └── test │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── xposed_init │ │ ├── java │ │ │ └── org │ │ │ │ └── frida │ │ │ │ └── hook │ │ │ │ └── test │ │ │ │ ├── FirstFragment.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── SecondFragment.java │ │ │ │ └── Tutorial.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ ├── fragment_first.xml │ │ │ └── fragment_second.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── navigation │ │ │ └── nav_graph.xml │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w1240dp │ │ │ └── dimens.xml │ │ │ ├── values-w600dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── frida │ │ └── hook │ │ └── test │ │ └── ExampleUnitTest.java ├── build.gradle └── testHook │ └── hookAcitivyOnResume.js ├── gradle.properties ├── gradlew ├── gradlew.bat ├── ideaJava ├── dbToJavaBean │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── dbToJavaBean.iml │ ├── dbToJavaBean1.iml │ └── src │ │ ├── dbRobot │ │ └── BeanRobot.java │ │ └── lib │ │ ├── gson-2.8.1.jar │ │ ├── jdbc-api-1.4.jar │ │ └── sqlite-jdbc-3.19.3.jar └── flutter_app1 │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ └── example │ │ │ │ │ │ └── flutter_app1 │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── io │ │ │ │ │ └── flutter │ │ │ │ │ └── java │ │ │ │ │ └── flutterjava.java │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ └── main.dart │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── imguieditor └── imgui-1.89.5 │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ ├── FUNDING.yml │ ├── issue_template.md │ ├── pull_request_template.md │ └── workflows │ │ ├── build.yml │ │ ├── scheduled.yml │ │ └── static-analysis.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── backends │ ├── imgui_impl_allegro5.cpp │ ├── imgui_impl_allegro5.h │ ├── imgui_impl_android.cpp │ ├── imgui_impl_android.h │ ├── imgui_impl_dx10.cpp │ ├── imgui_impl_dx10.h │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_dx12.cpp │ ├── imgui_impl_dx12.h │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_glut.cpp │ ├── imgui_impl_glut.h │ ├── imgui_impl_metal.h │ ├── imgui_impl_metal.mm │ ├── imgui_impl_opengl2.cpp │ ├── imgui_impl_opengl2.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_opengl3_loader.h │ ├── imgui_impl_osx.h │ ├── imgui_impl_osx.mm │ ├── imgui_impl_sdl2.cpp │ ├── imgui_impl_sdl2.h │ ├── imgui_impl_sdl3.cpp │ ├── imgui_impl_sdl3.h │ ├── imgui_impl_sdlrenderer.cpp │ ├── imgui_impl_sdlrenderer.h │ ├── imgui_impl_vulkan.cpp │ ├── imgui_impl_vulkan.h │ ├── imgui_impl_wgpu.cpp │ ├── imgui_impl_wgpu.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ └── vulkan │ │ ├── generate_spv.sh │ │ ├── glsl_shader.frag │ │ └── glsl_shader.vert │ ├── docs │ ├── BACKENDS.md │ ├── CHANGELOG.txt │ ├── CONTRIBUTING.md │ ├── EXAMPLES.md │ ├── FAQ.md │ ├── FONTS.md │ ├── README.md │ └── TODO.txt │ ├── examples │ ├── README.txt │ ├── example_allegro5 │ │ ├── README.md │ │ ├── example_allegro5.vcxproj │ │ ├── example_allegro5.vcxproj.filters │ │ ├── imconfig_allegro5.h │ │ └── main.cpp │ ├── example_android_opengl3 │ │ ├── CMakeLists.txt │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── java │ │ │ │ │ └── MainActivity.kt │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ └── main.cpp │ ├── example_apple_metal │ │ ├── README.md │ │ ├── example_apple_metal.xcodeproj │ │ │ └── project.pbxproj │ │ ├── iOS │ │ │ ├── Info-iOS.plist │ │ │ └── LaunchScreen.storyboard │ │ ├── macOS │ │ │ ├── Info-macOS.plist │ │ │ └── MainMenu.storyboard │ │ └── main.mm │ ├── example_apple_opengl2 │ │ ├── example_apple_opengl2.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.mm │ ├── example_emscripten_wgpu │ │ ├── Makefile │ │ ├── README.md │ │ └── main.cpp │ ├── example_glfw_metal │ │ ├── Makefile │ │ └── main.mm │ ├── example_glfw_opengl2 │ │ ├── Makefile │ │ ├── build_win32.bat │ │ ├── example_glfw_opengl2.vcxproj │ │ ├── example_glfw_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_glfw_opengl3 │ │ ├── Makefile │ │ ├── Makefile.emscripten │ │ ├── build_win32.bat │ │ ├── example_glfw_opengl3.vcxproj │ │ ├── example_glfw_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_glfw_vulkan │ │ ├── CMakeLists.txt │ │ ├── build_win32.bat │ │ ├── build_win64.bat │ │ ├── example_glfw_vulkan.vcxproj │ │ ├── example_glfw_vulkan.vcxproj.filters │ │ └── main.cpp │ ├── example_glut_opengl2 │ │ ├── Makefile │ │ ├── example_glut_opengl2.vcxproj │ │ ├── example_glut_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_null │ │ ├── Makefile │ │ ├── build_win32.bat │ │ └── main.cpp │ ├── example_sdl2_directx11 │ │ ├── build_win32.bat │ │ ├── example_sdl2_directx11.vcxproj │ │ ├── example_sdl2_directx11.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_metal │ │ ├── Makefile │ │ └── main.mm │ ├── example_sdl2_opengl2 │ │ ├── Makefile │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl2_opengl2.vcxproj │ │ ├── example_sdl2_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_opengl3 │ │ ├── Makefile │ │ ├── Makefile.emscripten │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl2_opengl3.vcxproj │ │ ├── example_sdl2_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_sdlrenderer │ │ ├── Makefile │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── default.custom.yaml │ │ ├── example_sdl2_sdlrenderer.vcxproj │ │ ├── example_sdl2_sdlrenderer.vcxproj.filters │ │ ├── luna_pinyin_simp.custom.yaml │ │ ├── main.cpp │ │ ├── weasel.custom.yaml │ │ ├── weasel_cfg.hpp │ │ └── weasel_cfggui.hpp │ ├── example_sdl2_vulkan │ │ ├── build_win32.bat │ │ ├── example_sdl2_vulkan.vcxproj │ │ ├── example_sdl2_vulkan.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl3_opengl3 │ │ ├── Makefile │ │ ├── Makefile.emscripten │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl3_opengl3.vcxproj │ │ ├── example_sdl3_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx10 │ │ ├── build_win32.bat │ │ ├── example_win32_directx10.vcxproj │ │ ├── example_win32_directx10.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx11 │ │ ├── build_win32.bat │ │ ├── example_win32_directx11.vcxproj │ │ ├── example_win32_directx11.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx12 │ │ ├── build_win32.bat │ │ ├── example_win32_directx12.vcxproj │ │ ├── example_win32_directx12.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx9 │ │ ├── build_win32.bat │ │ ├── example_win32_directx9.vcxproj │ │ ├── example_win32_directx9.vcxproj.filters │ │ └── main.cpp │ ├── imgui_examples.sln │ └── libs │ │ ├── emscripten │ │ ├── emscripten_mainloop_stub.h │ │ └── shell_minimal.html │ │ ├── glfw │ │ ├── COPYING.txt │ │ ├── include │ │ │ └── GLFW │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ ├── lib-vc2010-32 │ │ │ └── glfw3.lib │ │ └── lib-vc2010-64 │ │ │ └── glfw3.lib │ │ └── usynergy │ │ ├── README.txt │ │ ├── uSynergy.c │ │ └── uSynergy.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── misc │ ├── README.txt │ ├── cpp │ ├── README.txt │ ├── imgui_stdlib.cpp │ └── imgui_stdlib.h │ ├── debuggers │ ├── README.txt │ ├── imgui.gdb │ ├── imgui.natstepfilter │ └── imgui.natvis │ ├── fonts │ ├── Cousine-Regular.ttf │ ├── DroidSans.ttf │ ├── Karla-Regular.ttf │ ├── ProggyClean.ttf │ ├── ProggyTiny.ttf │ ├── Roboto-Medium.ttf │ └── binary_to_compressed_c.cpp │ ├── freetype │ ├── README.md │ ├── imgui_freetype.cpp │ └── imgui_freetype.h │ └── single_file │ └── imgui_single_file.h ├── java_js_2screen ├── .gitignore ├── build.gradle ├── javajs.html ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── yippeesoft │ │ └── java_js_2screen │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── yippeesoft │ │ │ └── java_js_2screen │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── org │ └── yippeesoft │ └── java_js_2screen │ └── ExampleUnitTest.java ├── javatest ├── .gitignore ├── build.gradle ├── c10test │ ├── build.gradle │ ├── nodejs │ │ ├── nodejs-websocket.js │ │ ├── nodejscli.js │ │ ├── socketio-client.js │ │ ├── socketioserver.js │ │ ├── util.js │ │ ├── websocketcli.js │ │ └── websocketsrv.js │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── github │ │ └── yippee │ │ └── netty │ │ ├── WebSocketServerHandler.java │ │ ├── WebSocketServerInitializer.java │ │ ├── WebSocketSrv.java │ │ ├── socketio │ │ └── SocketIOServers.java │ │ └── vertx │ │ └── WebsocketVertx.java ├── javatest.iml ├── mongodbTest │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── github │ │ └── yippee │ │ └── mongodbtest │ │ ├── MongoAsyncTest.java │ │ ├── MongoTest.java │ │ ├── RedisTest.java │ │ └── TestMain.java ├── sm34 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── github │ │ └── yp │ │ └── sm34.java └── src │ └── main │ └── java │ └── org │ └── github │ └── yippee │ ├── BpDeep.java │ ├── BpDeepTest.java │ └── tangshi │ ├── Ts2Sqlite.java │ ├── TsBean.java │ └── tangshi.sqlite ├── local.properties ├── nodejs ├── TsDev │ ├── .vscode │ │ └── launch.json │ ├── Test.ts │ ├── package.json │ └── tsconfig.json ├── dbtest │ └── mongodb.js ├── iptools │ ├── .babelrc │ ├── .electron-vue │ │ ├── build.config.js │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-runner.js │ │ ├── webpack.main.config.js │ │ ├── webpack.renderer.config.js │ │ └── webpack.web.config.js │ ├── .gitignore │ ├── .travis.yml │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── appveyor.yml │ ├── build │ │ └── icons │ │ │ └── logo.ico │ ├── iptools.code-workspace │ ├── package.json │ ├── run.bat │ ├── src │ │ ├── ScanIP.ts │ │ ├── httsrv │ │ │ ├── HttpCli.ts │ │ │ ├── HttpSrv.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── index.ejs │ │ ├── main │ │ │ ├── index.dev.js │ │ │ ├── index.js │ │ │ └── indexsf.js │ │ ├── renderer │ │ │ ├── App.vue │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── logo.ico │ │ │ │ └── logo.png │ │ │ ├── components │ │ │ │ ├── LandingPage.vue │ │ │ │ ├── LandingPage │ │ │ │ │ └── SystemInformation.vue │ │ │ │ ├── sf.ts │ │ │ │ └── sf.vue │ │ │ ├── main.ts │ │ │ ├── router │ │ │ │ └── index.js │ │ │ └── store │ │ │ │ ├── index.js │ │ │ │ └── modules │ │ │ │ ├── Counter.js │ │ │ │ └── index.js │ │ └── typings │ │ │ └── vue-shims.d.ts │ ├── static │ │ └── .gitkeep │ └── tsconfig.json ├── mpvue-screen │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── .postcssrc.js │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ ├── index.html │ ├── package.json │ ├── project.config.json │ ├── src │ │ ├── App.vue │ │ ├── app.json │ │ ├── components │ │ │ └── card.vue │ │ ├── main.js │ │ ├── pages │ │ │ ├── counter │ │ │ │ ├── index.vue │ │ │ │ ├── main.js │ │ │ │ └── store.js │ │ │ ├── index │ │ │ │ ├── index.vue │ │ │ │ └── main.js │ │ │ └── logs │ │ │ │ ├── index.vue │ │ │ │ ├── main.js │ │ │ │ └── main.json │ │ ├── theme │ │ │ └── var.scss │ │ └── utils │ │ │ └── index.js │ ├── srv │ │ ├── fly.js │ │ ├── index.htm │ │ └── wxupload-rec.js │ └── static │ │ ├── .gitkeep │ │ └── profile.png └── node-n-api │ └── hello │ ├── app.js │ ├── binding.gyp │ ├── package.json │ └── src │ ├── benchmark.h │ ├── benchncnn.cpp │ └── hello.cc ├── settings.gradle ├── submodules └── lua-5.3.6 │ ├── CMakeLists.txt │ ├── Makefile │ ├── README │ ├── doc │ ├── contents.html │ ├── index.css │ ├── logo.gif │ ├── lua.1 │ ├── lua.css │ ├── luac.1 │ ├── manual.css │ ├── manual.html │ ├── osi-certified-72x60.png │ └── readme.html │ └── src │ ├── CMakeLists.txt │ ├── Makefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── third ├── ChineseCalendar-c# │ ├── ConsoleApplication1.sln │ └── ConsoleApplication1 │ │ ├── App.config │ │ ├── ChineseCalendar.cs │ │ ├── ConsoleApplication1.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── xzqh.rar └── toolchains ├── aarch64-linux-gnu-c.toolchain.cmake ├── aarch64-linux-gnu.toolchain.cmake ├── arm-linux-gnueabi-c.toolchain.cmake ├── arm-linux-gnueabi.toolchain.cmake ├── arm-linux-gnueabihf.toolchain.cmake ├── himix100.toolchain.cmake ├── himix200.toolchain.cmake ├── hisiv300.toolchain.cmake ├── hisiv500.toolchain.cmake ├── hisiv600.toolchain.cmake ├── host-c.clang.toolchain.cmake ├── host-c.gcc.toolchain.cmake ├── host.clang-m32.toolchain.cmake ├── host.gcc-c++03.toolchain.cmake ├── host.gcc-m32.toolchain.cmake ├── host.gcc.toolchain.cmake ├── ios.toolchain.cmake ├── iossimxc-x64.toolchain.cmake ├── iossimxc.toolchain.cmake ├── iosxc-arm64.toolchain.cmake ├── iosxc.toolchain.cmake ├── jetson.toolchain.cmake ├── mips-mti-linux-gnu.toolchain.cmake ├── mips64el-linux-gnuabi64.toolchain.cmake ├── mipsel-linux-gnu.toolchain.cmake ├── mipsisa32r6el-linux-gnu.toolchain.cmake ├── mipsisa64r6el-linux-gnuabi64.toolchain.cmake ├── pi3.toolchain.cmake ├── powerpc64le-linux-gnu.toolchain.cmake ├── riscv32-unknown-elf.toolchain.cmake ├── riscv64-linux-gnu.toolchain.cmake ├── riscv64-unknown-elf.toolchain.cmake └── v831.toolchain.cmake /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/.gitmodules -------------------------------------------------------------------------------- /1bpp-monochrome-bitmap/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /1bpp-monochrome-bitmap/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /1bpp-monochrome-bitmap/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 1bpp-monochrome-bitmap 3 | 4 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/3gyjz-android.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/3gyjz-android.jks -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- 1 | #define SDL_REVISION "hg-10001:e12c38730512" 2 | #define SDL_REVISION_NUMBER 10001 3 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/charset.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/config.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/jymain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/jymain.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/jymain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/jymain.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/luafun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/luafun.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/luafun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/luafun.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/mainmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/mainmap.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/piccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/piccache.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/sdlfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/jni/jy_llk/sdlfun.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/java/cn/vip/ldcr/SDLMain.java: -------------------------------------------------------------------------------- 1 | package cn.vip.ldcr; 2 | 3 | /* compiled from: SDLActivity */ 4 | class SDLMain implements Runnable { 5 | SDLMain() { 6 | } 7 | 8 | public void run() { 9 | SDLActivity.nativeInit(SDLActivity.mSingleton.getArguments()); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/drawable/ldcr.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/drawable/ldcr.PNG -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 三国英杰传 3 | 4 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/017-lower-rho.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/017-lower-rho.ico -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/CANG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/CANG.png -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/JYMINI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/JYMINI.rc -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/JYMINI1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/JYMINI1.rc -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/ReadMe.txt -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/SDL2.lib -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- 1 | #define SDL_REVISION "hg-10001:e12c38730512" 2 | #define SDL_REVISION_NUMBER 10001 3 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/SDL2main.lib -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/SDL2static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/SDL2static.lib -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/bass.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/bass.lib -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/bassmidi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/bassmidi.lib -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/bitmap1.bmp -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/charset.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/config.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/freetype2412.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/freetype2412.lib -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/icon2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/icon2.bmp -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/jymain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/jymain.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/jymain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/jymain.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/libfreetype-6.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/libfreetype-6.lib -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/libpng16.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/libpng16.lib -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/luafun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/luafun.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/luafun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/luafun.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/mainmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/mainmap.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/piccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/piccache.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/resource.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/resource1.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/sdlfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/sdlfun.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI/zlib.lib -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/三国志英杰传复刻版12846开源/Readme.txt -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/三国志英杰传复刻版12846开源/config.lua -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/script/jyconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/三国志英杰传复刻版12846开源/script/jyconfig.lua -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/script/jymain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/三国志英杰传复刻版12846开源/script/jymain.lua -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/script/kdef.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/三国志英杰传复刻版12846开源/script/kdef.lua -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/游戏说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/三国志英杰传复刻版12846开源/游戏说明.txt -------------------------------------------------------------------------------- /3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/JY_LLK/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/JY_LLK/Readme.txt -------------------------------------------------------------------------------- /3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/JY_LLK/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/JY_LLK/config.lua -------------------------------------------------------------------------------- /3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/JY_LLK/script/jymain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/JY_LLK/script/jymain.lua -------------------------------------------------------------------------------- /3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/游戏说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/游戏说明.txt -------------------------------------------------------------------------------- /AI-FACES/ocr-shiji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/AI-FACES/ocr-shiji.jpg -------------------------------------------------------------------------------- /BingWallpage/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BingWallpage/libs/dom4j-2.0.0-RC1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/libs/dom4j-2.0.0-RC1.jar -------------------------------------------------------------------------------- /BingWallpage/libs/jaxen-1.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/libs/jaxen-1.1.6.jar -------------------------------------------------------------------------------- /BingWallpage/src/main/java/org/github/yippeesoft/bingwallpage/BingWallBean1.java: -------------------------------------------------------------------------------- 1 | package org.github.yippeesoft.bingwallpage; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * Created by sf on 2017/6/9. 7 | */ 8 | 9 | public class BingWallBean1 { 10 | 11 | 12 | } 13 | -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/BingWallpage/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BingWallpage/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /BingWallpage/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BingWallpage 3 | 4 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/aidl/net/typeblog/shelter/services/IAppInstallCallback.aidl: -------------------------------------------------------------------------------- 1 | // IAppInstallCallback.aidl 2 | package net.typeblog.shelter.services; 3 | 4 | interface IAppInstallCallback { 5 | void callback(int result); 6 | } 7 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/aidl/net/typeblog/shelter/services/IFileShuttleServiceCallback.aidl: -------------------------------------------------------------------------------- 1 | // IFileShuttleServiceCallback.aidl 2 | package net.typeblog.shelter.services; 3 | 4 | import net.typeblog.shelter.services.IFileShuttleService; 5 | 6 | interface IFileShuttleServiceCallback { 7 | void callback(in IFileShuttleService service); 8 | } 9 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/aidl/net/typeblog/shelter/services/IGetAppsCallback.aidl: -------------------------------------------------------------------------------- 1 | // IGetAppsCallback.aidl 2 | package net.typeblog.shelter.services; 3 | 4 | import net.typeblog.shelter.util.ApplicationInfoWrapper; 5 | 6 | interface IGetAppsCallback { 7 | void callback(in List apps); 8 | } 9 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/aidl/net/typeblog/shelter/services/ILoadIconCallback.aidl: -------------------------------------------------------------------------------- 1 | // ILoadIconCallback.aidl 2 | package net.typeblog.shelter.services; 3 | 4 | import android.graphics.Bitmap; 5 | 6 | interface ILoadIconCallback { 7 | void callback(in Bitmap icon); 8 | } 9 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/aidl/net/typeblog/shelter/services/IStartActivityProxy.aidl: -------------------------------------------------------------------------------- 1 | package net.typeblog.shelter.services; 2 | 3 | import android.content.Intent; 4 | 5 | interface IStartActivityProxy { 6 | void startActivity(in Intent intent); 7 | } 8 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/aidl/net/typeblog/shelter/util/ApplicationInfoWrapper.aidl: -------------------------------------------------------------------------------- 1 | // ApplicationInfoWrapper.aidl 2 | package net.typeblog.shelter.util; 3 | 4 | parcelable ApplicationInfoWrapper; -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/aidl/net/typeblog/shelter/util/IUriOpener.aidl: -------------------------------------------------------------------------------- 1 | // IUriOpener.aidl 2 | package net.typeblog.shelter.util; 3 | 4 | import android.os.ParcelFileDescriptor; 5 | 6 | interface IUriOpener { 7 | ParcelFileDescriptor openFile(in String mode); 8 | } 9 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/aidl/net/typeblog/shelter/util/UriForwardProxy.aidl: -------------------------------------------------------------------------------- 1 | // UriForwardProx.aidl 2 | package net.typeblog.shelter.util; 3 | 4 | parcelable UriForwardProxy; 5 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-anydpi-v26/ic_freeze.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-anydpi-v26/ic_freeze_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-anydpi-v26/ic_launcher_egg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-anydpi-v26/ic_launcher_egg_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_freeze.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_freeze_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_freeze_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_launcher_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_launcher_egg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_launcher_egg_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_launcher_egg_background.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_launcher_egg_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_launcher_egg_foreground.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_launcher_egg_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-hdpi/ic_launcher_egg_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_freeze.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_freeze_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_freeze_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_launcher_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_launcher_egg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_launcher_egg_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_launcher_egg_background.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_launcher_egg_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_launcher_egg_foreground.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_launcher_egg_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-mdpi/ic_launcher_egg_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_freeze.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_freeze_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_freeze_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_launcher_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_launcher_egg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_launcher_egg_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_launcher_egg_background.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_launcher_egg_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_launcher_egg_foreground.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_launcher_egg_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xhdpi/ic_launcher_egg_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_freeze.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_freeze_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_freeze_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_launcher_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_launcher_egg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_launcher_egg_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_launcher_egg_background.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_launcher_egg_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_launcher_egg_foreground.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_launcher_egg_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxhdpi/ic_launcher_egg_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_freeze.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_freeze_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_freeze_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_egg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_egg_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_egg_background.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_egg_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_egg_foreground.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_egg_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_egg_round.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/values/ic_freeze_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #26A69A 4 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/xml/device_admin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/art/egg_b.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/art/egg_b.svg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/art/egg_f.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/art/egg_f.svg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/art/ic_launcher_egg-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/PeterCxy-Shelter/art/ic_launcher_egg-web.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/data/image_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceAlignment/data/image_0001.png -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/doc/aflw_nrmse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceAlignment/doc/aflw_nrmse.png -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/examples/examples.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceAlignment/examples/examples.v12.suo -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/examples/examples/FaceDetection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceAlignment/examples/examples/FaceDetection.dll -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/examples/examples/FaceDetection.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceAlignment/examples/examples/FaceDetection.lib -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/examples/examples/examples.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/data/0_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceDetection/data/0_1_1.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/doc/fddb_roc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceDetection/doc/fddb_roc.png -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/examples/examples.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceDetection/examples/examples.v12.suo -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/feats.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/feats.dat -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/compare_im/Aaron_Peirsol_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/compare_im/Aaron_Peirsol_0001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/compare_im/Aaron_Peirsol_0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/compare_im/Aaron_Peirsol_0004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200001_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200001_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200002_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200002_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200003_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200003_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200004_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200004_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200005_037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200005_037.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200006_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200006_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200007_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200007_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200008_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200008_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200009_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200009_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200010_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200010_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200011_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200011_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200012_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200012_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200013_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200013_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200014_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200014_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200015_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200015_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200016_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200016_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200017_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200017_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200018_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200018_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200019_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200019_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200020_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200020_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200021_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200021_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200022_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200022_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200023_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200023_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200024_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200024_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200025_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200025_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200026_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200026_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200027_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200027_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200028_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200028_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200029_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200029_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200030_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200030_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200031_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200031_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200032_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200032_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200033_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200033_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200034_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200034_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200035_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200035_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200036_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200036_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200037_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200037_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200038_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200038_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200039_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200039_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200040_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200040_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200041_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200041_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200042_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200042_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200043_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200043_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200044_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200044_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200045_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200045_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200046_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200046_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200047_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200047_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200048_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200048_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200049_020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200049_020.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200050_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop/NF_200050_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200001_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200001_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200002_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200002_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200003_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200003_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200004_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200004_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200005_037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200005_037.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200006_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200006_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200007_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200007_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200008_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200008_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200009_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200009_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200010_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200010_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200011_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200011_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200012_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200012_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200013_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200013_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200014_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200014_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200015_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200015_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200016_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200016_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200017_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200017_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200018_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200018_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200019_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200019_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200020_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200020_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200021_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200021_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200022_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200022_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200023_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200023_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200024_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200024_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200025_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200025_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200026_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200026_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200027_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200027_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200028_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200028_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200029_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200029_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200030_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200030_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200031_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200031_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200032_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200032_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200033_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200033_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200034_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200034_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200035_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200035_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200036_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200036_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200037_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200037_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200038_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200038_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200039_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200039_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200040_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200040_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200041_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200041_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200042_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200042_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200043_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200043_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200044_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200044_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200045_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200045_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200046_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200046_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200047_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200047_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200048_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200048_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200049_020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200049_020.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200050_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/crop_sdk/NF_200050_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200001_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200001_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200002_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200002_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200003_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200003_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200004_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200004_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200005_037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200005_037.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200006_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200006_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200007_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200007_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200008_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200008_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200009_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200009_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200010_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200010_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200011_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200011_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200012_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200012_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200013_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200013_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200014_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200014_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200015_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200015_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200016_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200016_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200017_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200017_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200018_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200018_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200019_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200019_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200020_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200020_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200021_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200021_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200022_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200022_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200023_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200023_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200024_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200024_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200025_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200025_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200026_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200026_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200027_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200027_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200028_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200028_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200029_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200029_005.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200030_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200030_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200031_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200031_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200032_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200032_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200033_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200033_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200034_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200034_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200035_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200035_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200036_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200036_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200037_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200037_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200038_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200038_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200039_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200039_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200040_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200040_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200041_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200041_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200042_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200042_001.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200043_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200043_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200044_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200044_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200045_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200045_003.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200046_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200046_006.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200047_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200047_004.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200048_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200048_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200049_020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200049_020.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200050_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/data/test_face_recognizer/images/src/NF_200050_002.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/examples/Tester/Tester.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/examples/examples.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/FaceIdentification/examples/examples.v12.suo -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(VIPLNET_TEST_DIR ${PROJECT_SRC_DIR}/test) 2 | add_subdirectory(test) 3 | -------------------------------------------------------------------------------- /SeetaFaceEngine/SeetaFace_config.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/SeetaFaceEngine/SeetaFace_config.docx -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-hdpi/btn_style_one_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-hdpi/btn_style_one_disabled.9.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-hdpi/btn_style_one_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-hdpi/btn_style_one_focused.9.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-hdpi/btn_style_one_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-hdpi/btn_style_one_normal.9.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-hdpi/btn_style_one_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-hdpi/btn_style_one_pressed.9.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/WifiAdb1/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 安卓壁纸调试工具 5 | 一定不要卸载 6 | 安卓壁纸调试工具 7 | 8 | -------------------------------------------------------------------------------- /WifiAdb1/local.properties: -------------------------------------------------------------------------------- 1 | ## This file must *NOT* be checked into Version Control Systems, 2 | # as it contains information specific to your local configuration. 3 | # 4 | # Location of the SDK. This is only used by Gradle. 5 | # 6 | #Wed Apr 03 14:05:34 CST 2019 7 | sdk.dir=D\:\\Android\\android\\sdk 8 | -------------------------------------------------------------------------------- /WifiAdb1/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/libs/PhotoView.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/libs/PhotoView.aar -------------------------------------------------------------------------------- /app/libs/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/libs/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /app/libs/htmlparser.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/libs/htmlparser.jar -------------------------------------------------------------------------------- /app/src/main/java/org/github/yippee/notifytools/debug/Tests.java: -------------------------------------------------------------------------------- 1 | package org.github.yippee.notifytools.debug; 2 | 3 | /** 4 | * Created by sf on 2017/3/1. 5 | */ 6 | 7 | public class Tests { 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/java/org/github/yippee/notifytools/tools.java: -------------------------------------------------------------------------------- 1 | package org.github.yippee.notifytools; 2 | 3 | /** 4 | * Created by sf on 2017/2/16. 5 | */ 6 | 7 | public class tools { 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/java/org/github/yippee/notifytools/utils/LocalConst.java: -------------------------------------------------------------------------------- 1 | package org.github.yippee.notifytools.utils; 2 | 3 | /** 4 | * Created by sf on 2017/1/6. 5 | */ 6 | 7 | public class LocalConst { 8 | //http://console.heweather.com/my/service 9 | public static String heweatherKey="123123"; 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_while.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done_white_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/drawable/ic_done_white_32dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_arrow_left_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/drawable/ic_keyboard_arrow_left_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_arrow_right_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/drawable/ic_keyboard_arrow_right_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_return_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/drawable/ic_keyboard_return_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/drawable/ic_notify.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/mipmap-mdpi/ic_clear.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NotifyTools 3 | PdfActivity 4 | 5 | -------------------------------------------------------------------------------- /beanutils/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /beanutils/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'java' 2 | 3 | dependencies { 4 | compile fileTree(include: ['*.jar'], dir: 'libs') 5 | compile files('libs/commons-logging-1.2.jar') 6 | compile files('libs/commons-collections-3.2.2.jar') 7 | } 8 | 9 | sourceCompatibility = "1.7" 10 | targetCompatibility = "1.7" 11 | -------------------------------------------------------------------------------- /beanutils/libs/commons-collections-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/beanutils/libs/commons-collections-3.2.2.jar -------------------------------------------------------------------------------- /beanutils/libs/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/beanutils/libs/commons-logging-1.2.jar -------------------------------------------------------------------------------- /china-poem/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /china-poem/libs/hanlp-portable-1.3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/libs/hanlp-portable-1.3.4.jar -------------------------------------------------------------------------------- /china-poem/libs/pinyin4j-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/libs/pinyin4j-2.5.0.jar -------------------------------------------------------------------------------- /china-poem/src/main/res/drawable-v21/android_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/drawable-v21/android_logo.png -------------------------------------------------------------------------------- /china-poem/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /china-poem/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/china-poem/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /china-poem/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | #bbdefb 8 | 9 | -------------------------------------------------------------------------------- /chinesecalendar/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /chinesecalendar/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ChineseCalendar 3 | 4 | -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/FireFoxPwdCrack/ffpwd/data.txt -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/ffpwd.cpp: -------------------------------------------------------------------------------- 1 | // ffpwd.cpp : Defines the entry point for the console application. 2 | // 3 | 4 | #include "stdafx.h" 5 | #include "Source.cpp" 6 | 7 | int _tmain(int argc, _TCHAR* argv[]) 8 | { 9 | return main_(); 10 | } 11 | 12 | -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // ffpwd.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /cplussharp/callback/CsharpDll4Mfc/CSharpLib.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/CsharpDll4Mfc/CSharpLib.snk -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/MfcCallCsharpDll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/MfcCallCsharpDll/MfcCallCsharpDll.rc -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/res/MfcCallCsharpDll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/MfcCallCsharpDll/res/MfcCallCsharpDll.ico -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/res/MfcCallCsharpDll.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/MfcCallCsharpDll/res/MfcCallCsharpDll.rc2 -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/MfcCallCsharpDll/resource.h -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/stdafx.cpp: -------------------------------------------------------------------------------- 1 | 2 | // stdafx.cpp : source file that includes just the standard includes 3 | // MfcCallCsharpDll.pch will be the pre-compiled header 4 | // stdafx.obj will contain the pre-compiled type information 5 | 6 | #include "stdafx.h" 7 | 8 | 9 | -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/MfcCallCsharpDll/stdafx.h -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.cpp -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.def: -------------------------------------------------------------------------------- 1 | ; MfcDll4Csharp.def : Declares the module parameters for the DLL. 2 | 3 | LIBRARY 4 | 5 | EXPORTS 6 | ; Explicit exports can go here 7 | ExportedFunction -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.rc -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/res/MfcDll4Csharp.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/callback/MfcDll4Csharp/res/MfcDll4Csharp.rc2 -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // MfcDll4Csharp.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /cplussharp/callback/callback/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /cplussharp/callback/callback/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/app/src/main/java/com/example/fluttertest/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.fluttertest; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/fluttertest/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/fluttertest/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/fluttertest/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/fluttertest/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/fluttertest/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip 6 | -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/demo/Kconfig: -------------------------------------------------------------------------------- 1 | config DEMO 2 | tristate "Demo Register Driver" 3 | default y 4 | help 5 | This is the demo driver for android system. -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/demo/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_DEMO) += demo.o -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/s-test-demo-drv/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(CLEAR_VARS) 4 | 5 | LOCAL_SRC_FILES := mytest.c 6 | 7 | LOCAL_MODULE := mytest 8 | 9 | LOCAL_MODULE_TAGS := optional 10 | 11 | LOCAL_MODULE_PATH := $(TARGET_OUT_EXECUTABLES) 12 | 13 | include $(BUILD_EXECUTABLE) -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/AUTHORS: -------------------------------------------------------------------------------- 1 | Chuck Forsberg: original rz and sz programs (Public domain version) 2 | Matt Porter : Modification for versions 0.10 und 0.11 3 | mblack@csihq.com: Modifications for version 0.12a 4 | Uwe Ohse : Modifications for 0.12b und 0.12.1 5 | 6 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/ChangeLog -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/README -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/README.cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/README.cvs -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/Specfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/Specfile.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/THANKS: -------------------------------------------------------------------------------- 1 | There are undoubtly more people to thank, but here's a start: 2 | 3 | Philippe De Muyter 4 | Glenn Burkhardt 5 | Philip Cox 6 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/intl/ChangeLog -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/VERSION: -------------------------------------------------------------------------------- 1 | GNU gettext library from gettext-0.10.32 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/long-options.h: -------------------------------------------------------------------------------- 1 | #undef __P 2 | #if defined (__STDC__) && __STDC__ 3 | #define __P(args) args 4 | #else 5 | #define __P(args) () 6 | #endif 7 | 8 | void parse_long_options __P ((int _argc, char **_argv, 9 | void (*_version) (void), 10 | void (*_usage) (int))); 11 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/lib/strdup.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/xstrtoul.c: -------------------------------------------------------------------------------- 1 | #define STRING_TO_UNSIGNED 1 2 | #include "xstrtol.c" 3 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/xstrtoul.h: -------------------------------------------------------------------------------- 1 | #ifndef _xstrtoul_h_ 2 | #define _xstrtoul_h_ 1 3 | 4 | #define STRING_TO_UNSIGNED 1 5 | #include "xstrtol.h" 6 | 7 | #endif /* _xstrtoul_h_ */ 8 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/man/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = lrz.1 lsz.1 2 | EXTRA_DIST = lrz.1 lsz.1 3 | 4 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/POTFILES.in: -------------------------------------------------------------------------------- 1 | src/rbsb.c 2 | src/lsz.c 3 | src/zm.c 4 | src/zperr.c 5 | src/zreadline.c 6 | src/lrz.c 7 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/po/de.gmo -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/po/de.po -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/stamp-cat-id: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/rpmrc: -------------------------------------------------------------------------------- 1 | sourcedir: . 2 | builddir: . 3 | rpmdir: . 4 | srcrpmdir: . 5 | #rpmfilename: 6 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/timing.h: -------------------------------------------------------------------------------- 1 | double timing __P ((int reset,time_t *now)); 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/zglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/lrzsz-0.12.20/src/zglobal.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/testsuite/config/unix.exp: -------------------------------------------------------------------------------- 1 | proc lrzsz_version {} { 2 | global objdir 3 | set tmp [exec "$objdir/../src/lsz" "--version"] 4 | regexp "lrzsz. (\[0-9.\]+)" $tmp tmp version 5 | clone_output "$objdir/../src/lsz version $version\n" 6 | } 7 | proc lrzsz_exit {} {} 8 | 9 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/testsuite/lrzsz/resume.exp: -------------------------------------------------------------------------------- 1 | load_lib "lrzsz.exp" 2 | if $tracelevel then { 3 | strace $tracelevel 4 | } 5 | 6 | runresume sz-r $objdir/../src/lsz "-qr" \ 7 | $objdir/../src/lrz "-q" $z_test_files 8 | runresume rz-r $objdir/../src/lsz "-q" \ 9 | $objdir/../src/lrz "-qr" $z_test_files 10 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/testsuite/lrzsz/ymodem.exp: -------------------------------------------------------------------------------- 1 | load_lib "lrzsz.exp" 2 | if $tracelevel then { 3 | strace $tracelevel 4 | } 5 | 6 | runthem ymodem $objdir/../src/lsz "-q --ymodem" \ 7 | $objdir/../src/lrz "-q --ymodem" $y_test_files 8 | runthem ymodem-1k $objdir/../src/lsz "-q --ymodem --1024" \ 9 | $objdir/../src/lrz "-q --ymodem" $y_test_files 10 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/testsuite/lrzsz/zmodem-crc16.exp: -------------------------------------------------------------------------------- 1 | load_lib "lrzsz.exp" 2 | if $tracelevel then { 3 | strace $tracelevel 4 | } 5 | 6 | # check 16 bit crc 7 | # only sender knows this option 8 | runthem zmodem-crc16-sz $objdir/../src/lsz "-q --16-bit-crc" \ 9 | $objdir/../src/lrz "-q" $z_test_files 10 | -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.19) 2 | project(rzz) 3 | set(CMAKE_SYSTEM_NAME Generic) 4 | set(CMAKE_LINKER clang) 5 | set(CMAKE_CXX_LINKER clang++) 6 | add_definitions(-w) 7 | add_executable(rzz rz.c) -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/README.md: -------------------------------------------------------------------------------- 1 | # rzsz 2 | rzsz base on 3.48 3 | -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/gz: -------------------------------------------------------------------------------- 1 | exec zcommand "sz $*" 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | # BasedOnStyle: LLVM 3 | ColumnLimit: 0 4 | SortIncludes: false 5 | TabWidth: 4 6 | IndentWidth: 4 7 | UseTab: Never 8 | -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/.clang-tidy: -------------------------------------------------------------------------------- 1 | Checks: 'readability-system-capabilities' 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/.clangd: -------------------------------------------------------------------------------- 1 | CompileFlags: 2 | Add: [-Wunreachable-code-aggressive] 3 | Diagnostics: 4 | ClangTidy: 5 | Add: [misc-unused-parameters,misc-unused-local-variable,misc-unused-function] 6 | Remove: [] 7 | CheckOptions: 8 | misc-unused-parameters.StrictMode: 1 9 | 10 | UnusedIncludes: Strict -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /oh_modules 3 | /local.properties 4 | /.idea 5 | **/build 6 | /.hvigor 7 | .cxx 8 | /.clangd 9 | /.clang-format 10 | /.clang-tidy 11 | **/.test -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/AppScope/app.json5: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "bundleName": "com.example.testjson", 4 | "vendor": "example", 5 | "versionCode": 1000000, 6 | "versionName": "1.0.0", 7 | "icon": "$media:app_icon", 8 | "label": "$string:app_name" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- 1 | { 2 | "string": [ 3 | { 4 | "name": "app_name", 5 | "value": "testJson" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/testJson/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/main/cpp/types/libentry/index.d.ts: -------------------------------------------------------------------------------- 1 | export const add: (a: number, b: number) => number; -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/main/cpp/types/libentry/oh-package.json5: -------------------------------------------------------------------------------- 1 | { 2 | "name": "libentry.so", 3 | "types": "./index.d.ts", 4 | "version": "", 5 | "description": "Please describe the basic information." 6 | } -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- 1 | { 2 | "color": [ 3 | { 4 | "name": "start_window_background", 5 | "value": "#FFFFFF" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/main/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/testJson/entry/src/main/resources/base/media/icon.png -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- 1 | { 2 | "src": [ 3 | "pages/Index" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- 1 | import abilityTest from './Ability.test' 2 | 3 | export default function testsuite() { 4 | abilityTest() 5 | } -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/ohosTest/resources/base/element/color.json: -------------------------------------------------------------------------------- 1 | { 2 | "color": [ 3 | { 4 | "name": "start_window_background", 5 | "value": "#FFFFFF" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/ohosTest/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/ohos/testJson/entry/src/ohosTest/resources/base/media/icon.png -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/entry/src/ohosTest/resources/base/profile/test_pages.json: -------------------------------------------------------------------------------- 1 | { 2 | "src": [ 3 | "testability/pages/Index" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | "hvigorVersion": "2.1.1", 3 | "dependencies": { 4 | "@ohos/hvigor-ohos-plugin": "2.1.1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/hvigorfile.ts: -------------------------------------------------------------------------------- 1 | // Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. 2 | export { appTasks } from '@ohos/hvigor-ohos-plugin'; -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/oh-package.json5: -------------------------------------------------------------------------------- 1 | { 2 | "license": "", 3 | "devDependencies": { 4 | "@ohos/hypium": "1.0.6" 5 | }, 6 | "author": "", 7 | "name": "testjson", 8 | "description": "Please describe the basic information.", 9 | "main": "", 10 | "version": "1.0.0", 11 | "dependencies": {} 12 | } 13 | -------------------------------------------------------------------------------- /cplussharp/ohos/testcmake/testcmake.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("ssssssss\n"); 6 | return 1; 7 | } -------------------------------------------------------------------------------- /cplussharp/ros/helloworld/src/hello/include/ros_ncnn/ncnn_config.h.in: -------------------------------------------------------------------------------- 1 | #ifndef NCNN_CONFIG 2 | #define NCNN_CONFIG 3 | 4 | #cmakedefine GPU_SUPPORT 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /cplussharp/ros/helloworld/src/hello/msg/Euler.msg: -------------------------------------------------------------------------------- 1 | # Euler angles 2 | float32 roll 3 | float32 pitch 4 | float32 yaw 5 | -------------------------------------------------------------------------------- /cplussharp/ros/helloworld/src/hello/msg/FaceObject.msg: -------------------------------------------------------------------------------- 1 | # Face bounding box with marker positions 2 | Header header 3 | Rectangle boundingbox 4 | Vector2D[5] landmark 5 | float32 probability 6 | -------------------------------------------------------------------------------- /cplussharp/ros/helloworld/src/hello/msg/Object.msg: -------------------------------------------------------------------------------- 1 | # Face bounding box with marker positions 2 | Header header 3 | Rectangle boundingbox 4 | string label 5 | float32 probability 6 | -------------------------------------------------------------------------------- /cplussharp/ros/helloworld/src/hello/msg/Rectangle.msg: -------------------------------------------------------------------------------- 1 | # openCV style rectangle with size and 2D position 2 | Vector2D position 3 | Vector2D size 4 | -------------------------------------------------------------------------------- /cplussharp/ros/helloworld/src/hello/msg/Vector2D.msg: -------------------------------------------------------------------------------- 1 | # simple 2D vector 2 | float32 x 3 | float32 y 4 | -------------------------------------------------------------------------------- /cplussharp/vscode/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.configureSettings": { 3 | "CMAKE_TOOLCHAIN_FILE": "E:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake", 4 | }, 5 | } -------------------------------------------------------------------------------- /cplussharp/vscode/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.23) 2 | project(vscode) 3 | set(CMAKE_CXX_STANDARD 20) 4 | set(CMAKE_EXPORT_COMPILE_COMMANDS ON) 5 | 6 | # add_subdirectory(utils) add_subdirectory(unittest) 7 | if(BUILD_WITH_QT) 8 | add_subdirectory(qt/qttest) 9 | endif() 10 | add_subdirectory(vcpkg) 11 | -------------------------------------------------------------------------------- /cplussharp/vscode/gotest/godemo/go.mod: -------------------------------------------------------------------------------- 1 | module example.com/m/v2 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /cplussharp/vscode/gotest/godemo/greeter.c: -------------------------------------------------------------------------------- 1 | #include "greeter.h" 2 | #include 3 | 4 | int greet(const char *name, int year, char *out) { 5 | int n; 6 | 7 | n = sprintf(out, "Greetings, %s from %d! We come in peace :)", name, year); 8 | 9 | return n; 10 | } -------------------------------------------------------------------------------- /cplussharp/vscode/gotest/godemo/greeter.h: -------------------------------------------------------------------------------- 1 | #ifndef _GREETER_H 2 | #define _GREETER_H 3 | 4 | int greet(const char *name, int year, char *out); 5 | 6 | #endif 7 | 8 | //https://karthikkaranth.me/blog/calling-c-code-from-go/ -------------------------------------------------------------------------------- /cplussharp/vscode/pythonsodbg/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.linting.flake8Enabled": false, 3 | "python.linting.enabled": true, 4 | "python.linting.pylintEnabled": true, 5 | "cmake.configureOnOpen": true, 6 | "python.linting.mypyEnabled": false 7 | } -------------------------------------------------------------------------------- /cplussharp/vscode/pythonsodbg/addd.cpp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | extern "C" int addd(int a,int b) 5 | { 6 | 7 | 8 | return a+b; 9 | } -------------------------------------------------------------------------------- /cplussharp/vscode/pythonsodbg/gdb.sh: -------------------------------------------------------------------------------- 1 | sudo /usr/bin/gdb "$@" 2 | 3 | -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/vscode/qt/qttest/.vscode/launch.json -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.configureOnOpen": true 3 | } -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/autocxxtest/src/bob.h: -------------------------------------------------------------------------------- 1 | #ifndef BOB_H_ 2 | #define BOB_H_ 3 | #include 4 | namespace base { 5 | class Bob { 6 | public: 7 | Bob(std::string name) {printf("ssss %s\n",name.c_str());}; 8 | 9 | void do_a_thing() { printf("ssss\n");}; 10 | }; 11 | } 12 | #endif -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/bindgentest/wrapper.h: -------------------------------------------------------------------------------- 1 | #ifndef MY_FFI_PRATICES_WRAPPER_H 2 | #define MY_FFI_PRATICES_WRAPPER_H 3 | 4 | #include "tengine_c_api.h" 5 | // #include "c_api.h" 6 | #endif //MY_FFI_PRATICES_WRAPPER_H -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/greeting/.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 |     "version": "2.0.0", 4 |     "tasks": [ 5 |         { 6 |             "label": "build", 7 |             "type": "shell", 8 |             "command":"/home/sf/.cargo/bin/cargo", 9 |             "args": ["build"] 10 |         } 11 |     ] 12 | } -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/ncnntengine2rs/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /cplussharp/vscode/test/.gitignore: -------------------------------------------------------------------------------- 1 | boost-install-linux 2 | boost-install 3 | boost-install-x64 -------------------------------------------------------------------------------- /cplussharp/vscode/test/.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 3 | // for the documentation about the tasks.json format 4 | "version": "2.0.0", 5 | "tasks": [ 6 | {} 7 | ] 8 | } -------------------------------------------------------------------------------- /cplussharp/vscode/test/sftests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8) 2 | #option(USE_SPECIFIED "select to use specified function" OFF) 3 | #add_definitions(-DUSE_SPECIFIED) 4 | 5 | message("USE_SPECIFIED is ${TEST_SUB}") 6 | if(TEST_SUB ) 7 | MESSAGE( STATUS "this var key = ${TEST_SUB}.") 8 | endif() 9 | 10 | aux_source_directory(. DIR_LIBS_SRCS) 11 | -------------------------------------------------------------------------------- /cplussharp/vscode/test/sftests/tests.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef TEST_TESTS_H 3 | #define TEST_TESTS_H 4 | 5 | #include "test_glog.h" 6 | #include "test_spdlog.h" 7 | #include "test_boost.h" 8 | #endif -------------------------------------------------------------------------------- /cplussharp/vscode/test/slibs/Slog.cpp: -------------------------------------------------------------------------------- 1 | #include "Slog.h" 2 | 3 | void testLibs() 4 | { 5 | printf("test lib cmake %d\n", 1); 6 | } -------------------------------------------------------------------------------- /cplussharp/vscode/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(slibs) -------------------------------------------------------------------------------- /cplussharp/vscode/tests/slibs/Slog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/vscode/tests/slibs/Slog -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/xml2cxx/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/cplussharp/vscode/unittest/xml2cxx/note.md -------------------------------------------------------------------------------- /cplussharp/vscode/utils/SlogHandle.cpp: -------------------------------------------------------------------------------- 1 | #include "SlogHandle.h" 2 | namespace sfutils { 3 | 4 | } // namespace sfutils -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg.json.bak: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test", 3 | "version-semver": "1.0.0", 4 | "dependencies": [ 5 | "libhv", 6 | "boost-asio", 7 | "boost-log", 8 | "boost-beast", 9 | "openssl", 10 | "benchmark", 11 | "fmt", 12 | "nlohmann-json", 13 | "spdlog", 14 | "glog" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/foams-笔记/attachments/foam-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/docs/foams-笔记/attachments/foam-icon.png -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/笔记foam.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Foam 使用 3 | date: 2022-02-28 4 | type: 软件 5 | tags: Foam, 开源, 软件,应用 6 | --- 7 | 8 | # Foam 笔记 9 | 10 | 11 | ## 使用体验 12 | 13 | [foanm使用体验](https://sspai.com/post/70956) 14 | 15 | [入门](https://zhuanlan.zhihu.com/p/178536985) 16 | 17 | ### 元数据 18 | 19 | -------------------------------------------------------------------------------- /docs/foams-笔记/todo.md: -------------------------------------------------------------------------------- 1 | # Todo 2 | 3 | You can create todos in Foam. 4 | 5 | - [ ] cccc lite 6 | - [ ] frida 内置 7 | -------------------------------------------------------------------------------- /face-detection/OpenCVLibrary340/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /face-detection/OpenCVLibrary340/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /face-detection/OpenCVLibrary340/src/main/java/org/opencv/osgi/OpenCVInterface.java: -------------------------------------------------------------------------------- 1 | package org.opencv.osgi; 2 | 3 | /** 4 | * Dummy interface to allow some integration testing within OSGi implementation. 5 | */ 6 | public interface OpenCVInterface 7 | { 8 | } 9 | -------------------------------------------------------------------------------- /face-detection/OpenCVSamplefacedetection/src/main/libs/armeabi-v7a/libdetection_based_tracker.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/face-detection/OpenCVSamplefacedetection/src/main/libs/armeabi-v7a/libdetection_based_tracker.so -------------------------------------------------------------------------------- /face-detection/OpenCVSamplefacedetection/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/face-detection/OpenCVSamplefacedetection/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /face-detection/OpenCVSamplefacedetection/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | OCV Face Detection 4 | 5 | -------------------------------------------------------------------------------- /face-detection/gradle.properties: -------------------------------------------------------------------------------- 1 | android.useDeprecatedNdk=true -------------------------------------------------------------------------------- /face-detection/opencvjni/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /face-detection/opencvjni/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /face-detection/opencvjni/src/main/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -fexceptions 3 | APP_ABI := armeabi-v7a,arm64-v8a 4 | APP_PLATFORM := android-8 5 | -------------------------------------------------------------------------------- /face-detection/opencvjni/src/main/libs/armeabi-v7a/libdetection_based_tracker.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/face-detection/opencvjni/src/main/libs/armeabi-v7a/libdetection_based_tracker.so -------------------------------------------------------------------------------- /face-detection/opencvjni/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | OpenCVJni 3 | 4 | -------------------------------------------------------------------------------- /face-detection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/face-detection/readme.md -------------------------------------------------------------------------------- /face-detection/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':OpenCVLibrary340', ':opencvjni' 2 | include ':OpenCVSamplefacedetection' 3 | -------------------------------------------------------------------------------- /fridaHookTest/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /fridaHookTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | Tutorial -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/fridaHookTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 48dp 3 | -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/values-w1240dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 200dp 3 | -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 48dp 3 | -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/src/lib/gson-2.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/dbToJavaBean/src/lib/gson-2.8.1.jar -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/src/lib/jdbc-api-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/dbToJavaBean/src/lib/jdbc-api-1.4.jar -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/src/lib/sqlite-jdbc-3.19.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/dbToJavaBean/src/lib/sqlite-jdbc-3.19.3.jar -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/app/src/main/java/io/flutter/java/flutterjava.java: -------------------------------------------------------------------------------- 1 | class flutterjava{ 2 | 3 | } -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip 7 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/ideaJava/flutter_app1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://github.com/ocornut/imgui/wiki/Sponsors'] 2 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | (Click "Preview" to turn any http URL into a clickable link) 2 | 3 | 1. PLEASE CAREFULLY READ: [Contributing Guidelines](https://github.com/ocornut/imgui/blob/master/docs/CONTRIBUTING.md) 4 | 5 | 2. Clear this template before submitting your PR. 6 | 7 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/CMakeLists.txt -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ## -V: create SPIR-V binary 3 | ## -x: save binary output as text-based 32-bit hexadecimal numbers 4 | ## -o: output file 5 | glslangValidator -V -x -o glsl_shader.frag.u32 glsl_shader.frag 6 | glslangValidator -V -x -o glsl_shader.vert.u32 glsl_shader.vert 7 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- 1 | #version 450 core 2 | layout(location = 0) out vec4 fColor; 3 | 4 | layout(set=0, binding=0) uniform sampler2D sTexture; 5 | 6 | layout(location = 0) in struct { 7 | vec4 Color; 8 | vec2 UV; 9 | } In; 10 | 11 | void main() 12 | { 13 | fColor = In.Color * texture(sTexture, In.UV.st); 14 | } 15 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/example_android_opengl3/android/.gitignore: -------------------------------------------------------------------------------- 1 | .cxx 2 | .externalNativeBuild 3 | build/ 4 | *.iml 5 | 6 | .idea 7 | .gradle 8 | local.properties 9 | 10 | # Android Studio puts a Gradle wrapper here, that we don't want: 11 | gradle/ 12 | gradlew* 13 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/example_android_opengl3/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/example_null/build_win32.bat: -------------------------------------------------------------------------------- 1 | @REM Build for Visual Studio compiler. Run your copy of vcvars32.bat or vcvarsall.bat to setup command-line compiler. 2 | mkdir Debug 3 | cl /nologo /Zi /MD /I ..\.. %* *.cpp ..\..\*.cpp /FeDebug/example_null.exe /FoDebug/ /link gdi32.lib shell32.lib imm32.lib 4 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/example_sdl2_sdlrenderer/weasel.custom.yaml: -------------------------------------------------------------------------------- 1 | customization: 2 | distribution_code_name: Weasel 3 | distribution_version: 0.14.3 4 | generator: "Weasel::UIStyleSettings" 5 | modified_time: "Wed Apr 12 14:06:35 2023" 6 | rime_version: 1.5.3 7 | patch: 8 | "style/color_scheme": aqua 9 | "style/horizontal": true -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/libs/glfw/lib-vc2010-32/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/examples/libs/glfw/lib-vc2010-32/glfw3.lib -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/libs/glfw/lib-vc2010-64/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/examples/libs/glfw/lib-vc2010-64/glfw3.lib -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/libs/usynergy/README.txt: -------------------------------------------------------------------------------- 1 | 2 | uSynergy client -- Implementation for the embedded Synergy client library 3 | version 1.0.0, July 7th, 2012 4 | Copyright (c) 2012 Alex Evans 5 | 6 | This is a copy of the files once found at: 7 | https://github.com/symless/synergy-core/tree/790d108a56ada9caad8e56ff777d444485a69da9/src/micro 8 | 9 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/imguieditor/imgui-1.89.5/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /java_js_2screen/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/java_js_2screen/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Java_Js_2Screen 3 | 4 | -------------------------------------------------------------------------------- /javatest/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /javatest/src/main/java/org/github/yippee/tangshi/tangshi.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/javatest/src/main/java/org/github/yippee/tangshi/tangshi.sqlite -------------------------------------------------------------------------------- /nodejs/iptools/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist/electron/* 3 | dist/web/* 4 | build/* 5 | !build/icons 6 | node_modules/ 7 | npm-debug.log 8 | npm-debug.log.* 9 | thumbs.db 10 | !.gitkeep 11 | /dist 12 | -------------------------------------------------------------------------------- /nodejs/iptools/build/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/nodejs/iptools/build/icons/logo.ico -------------------------------------------------------------------------------- /nodejs/iptools/iptools.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": "." 5 | } 6 | ], 7 | "settings": {} 8 | } -------------------------------------------------------------------------------- /nodejs/iptools/src/httsrv/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "httsrv", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC" 11 | } 12 | -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/nodejs/iptools/src/renderer/assets/.gitkeep -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/nodejs/iptools/src/renderer/assets/logo.ico -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/nodejs/iptools/src/renderer/assets/logo.png -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/components/sf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/nodejs/iptools/src/renderer/components/sf.ts -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | 4 | import modules from './modules' 5 | 6 | Vue.use(Vuex) 7 | 8 | export default new Vuex.Store({ 9 | modules, 10 | strict: process.env.NODE_ENV !== 'production' 11 | }) 12 | -------------------------------------------------------------------------------- /nodejs/iptools/src/typings/vue-shims.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.vue' { 2 | import Vue from 'vue' 3 | export default Vue 4 | } 5 | declare module 'iview' { 6 | const iview: any; 7 | export default iview; 8 | } -------------------------------------------------------------------------------- /nodejs/iptools/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/nodejs/iptools/static/.gitkeep -------------------------------------------------------------------------------- /nodejs/mpvue-screen/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Editor directories and files 9 | .idea 10 | *.suo 11 | *.ntvs* 12 | *.njsproj 13 | *.sln 14 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | "postcss-mpvue-wxss": {} 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/dev-client.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | require('eventsource-polyfill') 3 | var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true') 4 | 5 | hotClient.subscribe(function (event) { 6 | if (event.action === 'reload') { 7 | window.location.reload() 8 | } 9 | }) 10 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/config/dev.env.js: -------------------------------------------------------------------------------- 1 | var merge = require('webpack-merge') 2 | var prodEnv = require('./prod.env') 3 | 4 | module.exports = merge(prodEnv, { 5 | NODE_ENV: '"development"' 6 | }) 7 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | mpvue-screen 6 | 7 | 8 |
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/main", 4 | "pages/logs/main", 5 | "pages/counter/main" 6 | ], 7 | "window": { 8 | "backgroundTextStyle": "light", 9 | "navigationBarBackgroundColor": "#fff", 10 | "navigationBarTitleText": "任意屏", 11 | "navigationBarTextStyle": "black" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/components/card.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 | 20 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | 4 | Vue.config.productionTip = false 5 | App.mpType = 'app' 6 | 7 | const app = new Vue(App) 8 | app.$mount() 9 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/counter/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/index/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/logs/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/logs/main.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } 4 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/theme/var.scss: -------------------------------------------------------------------------------- 1 | $bem-component-namespace: 'md'; 2 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/srv/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | kft 6 | 7 | 8 |
aaaaaaaaaaaaaaa
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/nodejs/mpvue-screen/static/.gitkeep -------------------------------------------------------------------------------- /nodejs/mpvue-screen/static/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/nodejs/mpvue-screen/static/profile.png -------------------------------------------------------------------------------- /nodejs/node-n-api/hello/app.js: -------------------------------------------------------------------------------- 1 | var addon = require('bindings')('hello'); 2 | 3 | console.log( addon.hello() ); // world 4 | 5 | -------------------------------------------------------------------------------- /nodejs/node-n-api/hello/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hello", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "bindings": "^1.5.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':chinesecalendar', ':BingWallpage', ':cbdb', ':china-poem', ':lib', ':java_js_2screen', 2 | ':1bpp-monochrome-bitmap', 3 | ':SfLogger', 4 | ':beanutils' -------------------------------------------------------------------------------- /submodules/lua-5.3.6/README: -------------------------------------------------------------------------------- 1 | 2 | This is Lua 5.3.6, released on 14 Sep 2020. 3 | 4 | For installation instructions, license details, and 5 | further information about Lua, see doc/readme.html. 6 | 7 | -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/index.css: -------------------------------------------------------------------------------- 1 | ul { 2 | list-style-type: none ; 3 | } 4 | 5 | ul.contents { 6 | padding: 0 ; 7 | } 8 | 9 | table { 10 | border: none ; 11 | border-spacing: 0 ; 12 | border-collapse: collapse ; 13 | } 14 | 15 | td { 16 | vertical-align: top ; 17 | padding: 0 ; 18 | text-align: left ; 19 | line-height: 1.25 ; 20 | width: 15% ; 21 | } 22 | -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/submodules/lua-5.3.6/doc/logo.gif -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/osi-certified-72x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/submodules/lua-5.3.6/doc/osi-certified-72x60.png -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lua.hpp: -------------------------------------------------------------------------------- 1 | // lua.hpp 2 | // Lua header files for C++ 3 | // <> not supplied automatically because Lua also compiles as C++ 4 | 5 | extern "C" { 6 | #include "lua.h" 7 | #include "lualib.h" 8 | #include "lauxlib.h" 9 | } 10 | -------------------------------------------------------------------------------- /third/ChineseCalendar-c#/ConsoleApplication1/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /third/xzqh.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/57b52ced667797267690264751084cc575b426e6/third/xzqh.rar -------------------------------------------------------------------------------- /toolchains/pi3.toolchain.cmake: -------------------------------------------------------------------------------- 1 | SET(CMAKE_SYSTEM_NANE Android) 2 | SET(CMAKE_SYSTEM_PROCESSOR "armv7l") 3 | SET(ANDROID_ARCH_NAME "arm") 4 | SET(UNIX true) 5 | SET(CMAKE_C_COMPILER "gcc") 6 | SET(CMAKE_CXX_COMPILER "g++") 7 | --------------------------------------------------------------------------------