├── .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 ├── 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 /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/linux-aarch64-cpu-gcc.yyy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.github/workflows/linux-aarch64-cpu-gcc.yyy -------------------------------------------------------------------------------- /.github/workflows/linux-qemu-aarch64-cpu-gcc.yyyy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.github/workflows/linux-qemu-aarch64-cpu-gcc.yyyy -------------------------------------------------------------------------------- /.github/workflows/linux-x64-cpu-clang.yyy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.github/workflows/linux-x64-cpu-clang.yyy -------------------------------------------------------------------------------- /.github/workflows/linux-x64-cpu-gcc.yyy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.github/workflows/linux-x64-cpu-gcc.yyy -------------------------------------------------------------------------------- /.github/workflows/windows-x64-cpu-vs2017.yyy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.github/workflows/windows-x64-cpu-vs2017.yyy -------------------------------------------------------------------------------- /.github/workflows/windows-x64-cpu-vs2019.yyy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.github/workflows/windows-x64-cpu-vs2019.yyy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/.travis.yml -------------------------------------------------------------------------------- /1bpp-monochrome-bitmap/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /1bpp-monochrome-bitmap/1bpp-monochrome-bitmap.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/1bpp-monochrome-bitmap/1bpp-monochrome-bitmap.iml -------------------------------------------------------------------------------- /1bpp-monochrome-bitmap/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/1bpp-monochrome-bitmap/build.gradle -------------------------------------------------------------------------------- /1bpp-monochrome-bitmap/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/1bpp-monochrome-bitmap/proguard-rules.pro -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/.gitignore -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/3gyjz-android.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/3gyjz-android.jks -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/build.gradle -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/Application.mk -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/Android.mk -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/SDL2/SDL.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/bass.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/charset.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/config.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/jymain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/jymain.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/jymain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/jymain.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/lauxlib.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/list.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/lua.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/luaconf.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/luafun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/luafun.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/luafun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/luafun.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/lualib.h -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/mainmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/mainmap.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/piccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/piccache.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/jni/jy_llk/sdlfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/jni/jy_llk/sdlfun.c -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/app/proguard-rules.pro -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/build.gradle -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-android/gradle.properties -------------------------------------------------------------------------------- /3guoheros/3gyjz-android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-pc/README.md -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-pc/desperate-angel-src/.gitignore -------------------------------------------------------------------------------- /3guoheros/3gyjz-pc/desperate-angel-src/JYMINI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/3gyjz-pc/desperate-angel-src/JYMINI.sln -------------------------------------------------------------------------------- /3guoheros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/README.md -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/三国志英杰传复刻版12846开源/Readme.txt -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/三国志英杰传复刻版12846开源/config.lua -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/script/jyconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/三国志英杰传复刻版12846开源/script/jyconfig.lua -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/script/jymain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/三国志英杰传复刻版12846开源/script/jymain.lua -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/script/kdef.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/三国志英杰传复刻版12846开源/script/kdef.lua -------------------------------------------------------------------------------- /3guoheros/三国志英杰传复刻版12846开源/游戏说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/三国志英杰传复刻版12846开源/游戏说明.txt -------------------------------------------------------------------------------- /3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/游戏说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/3guoheros/英杰传复刻版子MOD——纵横天下 42753开源/游戏说明.txt -------------------------------------------------------------------------------- /AI-FACES/PaddleLite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/PaddleLite.md -------------------------------------------------------------------------------- /AI-FACES/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/docker.md -------------------------------------------------------------------------------- /AI-FACES/insightface-mxnet-ncnn-mnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/insightface-mxnet-ncnn-mnn.md -------------------------------------------------------------------------------- /AI-FACES/insightface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/insightface.md -------------------------------------------------------------------------------- /AI-FACES/mnn/mnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/mnn/mnn.md -------------------------------------------------------------------------------- /AI-FACES/mtcnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/mtcnn.md -------------------------------------------------------------------------------- /AI-FACES/ncnn-vulkan-neon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/ncnn-vulkan-neon.md -------------------------------------------------------------------------------- /AI-FACES/ocr-shiji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/ocr-shiji.jpg -------------------------------------------------------------------------------- /AI-FACES/tnn-mace-tengine-opencl测试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/tnn-mace-tengine-opencl测试.md -------------------------------------------------------------------------------- /AI-FACES/tnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/tnn.md -------------------------------------------------------------------------------- /AI-FACES/tvm-insightface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/tvm-insightface.md -------------------------------------------------------------------------------- /AI-FACES/百度腾讯阿里繁体竖排OCR测试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/AI-FACES/百度腾讯阿里繁体竖排OCR测试.md -------------------------------------------------------------------------------- /BingWallpage/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BingWallpage/BingWallpage.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/BingWallpage.iml -------------------------------------------------------------------------------- /BingWallpage/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/build.gradle -------------------------------------------------------------------------------- /BingWallpage/libs/dom4j-2.0.0-RC1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/libs/dom4j-2.0.0-RC1.jar -------------------------------------------------------------------------------- /BingWallpage/libs/jaxen-1.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/libs/jaxen-1.1.6.jar -------------------------------------------------------------------------------- /BingWallpage/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/proguard-rules.pro -------------------------------------------------------------------------------- /BingWallpage/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /BingWallpage/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /BingWallpage/src/main/res/layout/card_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/src/main/res/layout/card_view.xml -------------------------------------------------------------------------------- /BingWallpage/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /BingWallpage/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /BingWallpage/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/BingWallpage/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/LICENSE -------------------------------------------------------------------------------- /NotifyTools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/NotifyTools.iml -------------------------------------------------------------------------------- /PeterCxy-Shelter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/.gitignore -------------------------------------------------------------------------------- /PeterCxy-Shelter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/LICENSE -------------------------------------------------------------------------------- /PeterCxy-Shelter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/README.md -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/app/build.gradle -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/app/proguard-rules.pro -------------------------------------------------------------------------------- /PeterCxy-Shelter/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /PeterCxy-Shelter/art/egg_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/art/egg_b.svg -------------------------------------------------------------------------------- /PeterCxy-Shelter/art/egg_b.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/art/egg_b.svg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/art/egg_f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/art/egg_f.svg -------------------------------------------------------------------------------- /PeterCxy-Shelter/art/egg_f.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/art/egg_f.svg.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/art/ic_launcher_egg-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/art/ic_launcher_egg-web.png -------------------------------------------------------------------------------- /PeterCxy-Shelter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/build.gradle -------------------------------------------------------------------------------- /PeterCxy-Shelter/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/gradle.properties -------------------------------------------------------------------------------- /PeterCxy-Shelter/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/gradlew -------------------------------------------------------------------------------- /PeterCxy-Shelter/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/PeterCxy-Shelter/gradlew.bat -------------------------------------------------------------------------------- /PeterCxy-Shelter/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/README.md -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/CMakeLists.txt -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/README.md -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/data/image_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/data/image_0001.png -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/doc/aflw_nrmse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/doc/aflw_nrmse.png -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/include/cfan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/include/cfan.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/include/common.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/include/sift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/include/sift.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/src/cfan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/src/cfan.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceAlignment/src/sift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceAlignment/src/sift.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/CMakeLists.txt -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/README.md -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/data/0_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/data/0_1_1.jpg -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/doc/fddb_roc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/doc/fddb_roc.png -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/include/classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/include/classifier.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/include/common.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/include/detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/include/detector.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/include/fust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/include/fust.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/include/util/nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/include/util/nms.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/src/fust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/src/fust.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceDetection/src/util/nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceDetection/src/util/nms.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/CMakeLists.txt -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/README.md -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/include/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/include/blob.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/include/log.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/include/net.h -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/src/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/src/blob.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/src/bn_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/src/bn_net.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/src/log.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/src/net.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/FaceIdentification/src/pad_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/FaceIdentification/src/pad_net.cpp -------------------------------------------------------------------------------- /SeetaFaceEngine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/LICENSE -------------------------------------------------------------------------------- /SeetaFaceEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/README.md -------------------------------------------------------------------------------- /SeetaFaceEngine/SeetaFace_config.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/SeetaFaceEngine/SeetaFace_config.docx -------------------------------------------------------------------------------- /WifiAdb1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/build.gradle -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/drawable/btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/res/drawable/btn_bg.xml -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /WifiAdb1/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /WifiAdb1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/build.gradle -------------------------------------------------------------------------------- /WifiAdb1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/gradlew -------------------------------------------------------------------------------- /WifiAdb1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/gradlew.bat -------------------------------------------------------------------------------- /WifiAdb1/import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/import-summary.txt -------------------------------------------------------------------------------- /WifiAdb1/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/WifiAdb1/local.properties -------------------------------------------------------------------------------- /WifiAdb1/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/PhotoView.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/libs/PhotoView.aar -------------------------------------------------------------------------------- /app/libs/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/libs/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /app/libs/htmlparser.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/libs/htmlparser.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_while.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/drawable/bg_while.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done_white_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/drawable/ic_done_white_32dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/drawable/ic_notify.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/layout/activity_full.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/layout/activity_pdf.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_pdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/layout/content_pdf.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_app_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/layout/item_app_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/layout/notification.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_pdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/menu/menu_pdf.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/mipmap-mdpi/ic_clear.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v24/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/values-v24/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/app/src/main/res/xml/help.xml -------------------------------------------------------------------------------- /beanutils/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /beanutils/beanutils.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/beanutils/beanutils.iml -------------------------------------------------------------------------------- /beanutils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/beanutils/build.gradle -------------------------------------------------------------------------------- /beanutils/libs/commons-collections-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/beanutils/libs/commons-collections-3.2.2.jar -------------------------------------------------------------------------------- /beanutils/libs/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/beanutils/libs/commons-logging-1.2.jar -------------------------------------------------------------------------------- /ch-mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ch-mount.sh -------------------------------------------------------------------------------- /china-poem/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /china-poem/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/build.gradle -------------------------------------------------------------------------------- /china-poem/libs/hanlp-portable-1.3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/libs/hanlp-portable-1.3.4.jar -------------------------------------------------------------------------------- /china-poem/libs/pinyin4j-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/libs/pinyin4j-2.5.0.jar -------------------------------------------------------------------------------- /china-poem/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/proguard-rules.pro -------------------------------------------------------------------------------- /china-poem/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/layout/activity_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/layout/activity_detail.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/layout/app_bar_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/layout/app_bar_main.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/layout/content_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/layout/content_detail.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/layout/rv_detail_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/layout/rv_detail_item.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/layout/view_rv_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/layout/view_rv_item.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /china-poem/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/china-poem/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /chinesecalendar/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /chinesecalendar/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/chinesecalendar/build.gradle -------------------------------------------------------------------------------- /chinesecalendar/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/chinesecalendar/proguard-rules.pro -------------------------------------------------------------------------------- /chinesecalendar/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/chinesecalendar/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /chinesecalendar/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/chinesecalendar/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd.sln -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/ReadMe.txt -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/Source.cpp -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/chrome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/chrome.h -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/data.txt -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/ffpwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/ffpwd.cpp -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/ffpwd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/ffpwd.vcxproj -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/firefox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/firefox.h -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/misc.h -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/stdafx.cpp -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/stdafx.h -------------------------------------------------------------------------------- /cplussharp/FireFoxPwdCrack/ffpwd/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/FireFoxPwdCrack/ffpwd/targetver.h -------------------------------------------------------------------------------- /cplussharp/callback/CsharpDll4Mfc/CSharpLib.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/CsharpDll4Mfc/CSharpLib.snk -------------------------------------------------------------------------------- /cplussharp/callback/CsharpDll4Mfc/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/CsharpDll4Mfc/Class1.cs -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcCallCsharpDll/ReadMe.txt -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcCallCsharpDll/resource.h -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcCallCsharpDll/stdafx.cpp -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcCallCsharpDll/stdafx.h -------------------------------------------------------------------------------- /cplussharp/callback/MfcCallCsharpDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcCallCsharpDll/targetver.h -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.h -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcDll4Csharp/MfcDll4Csharp.rc -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcDll4Csharp/ReadMe.txt -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcDll4Csharp/Resource.h -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcDll4Csharp/stdafx.cpp -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcDll4Csharp/stdafx.h -------------------------------------------------------------------------------- /cplussharp/callback/MfcDll4Csharp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/MfcDll4Csharp/targetver.h -------------------------------------------------------------------------------- /cplussharp/callback/callback/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/callback/App.config -------------------------------------------------------------------------------- /cplussharp/callback/callback/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/callback/Form1.Designer.cs -------------------------------------------------------------------------------- /cplussharp/callback/callback/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/callback/Form1.cs -------------------------------------------------------------------------------- /cplussharp/callback/callback/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/callback/Form1.resx -------------------------------------------------------------------------------- /cplussharp/callback/callback/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/callback/Program.cs -------------------------------------------------------------------------------- /cplussharp/callback/callback/callback.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/callback/callback/callback.sln -------------------------------------------------------------------------------- /cplussharp/fluttertest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/.gitignore -------------------------------------------------------------------------------- /cplussharp/fluttertest/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/.metadata -------------------------------------------------------------------------------- /cplussharp/fluttertest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/README.md -------------------------------------------------------------------------------- /cplussharp/fluttertest/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/analysis_options.yaml -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/android/.gitignore -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/android/app/build.gradle -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/android/build.gradle -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/android/gradle.properties -------------------------------------------------------------------------------- /cplussharp/fluttertest/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/android/settings.gradle -------------------------------------------------------------------------------- /cplussharp/fluttertest/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/lib/main.dart -------------------------------------------------------------------------------- /cplussharp/fluttertest/lib/main2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/lib/main2.dart -------------------------------------------------------------------------------- /cplussharp/fluttertest/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/pubspec.yaml -------------------------------------------------------------------------------- /cplussharp/fluttertest/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/fluttertest/test/widget_test.dart -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/linuxdrv-hello/Makefile -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/demo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/linuxdrv-hello/demo/Kconfig -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/demo/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_DEMO) += demo.o -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/linuxdrv-hello/demo/demo.c -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/demo/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/linuxdrv-hello/demo/demo.h -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/hellolinuxdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/linuxdrv-hello/hellolinuxdrv.c -------------------------------------------------------------------------------- /cplussharp/linuxdrv-hello/s-test-demo-drv/mytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/linuxdrv-hello/s-test-demo-drv/mytest.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/ABOUT-NLS -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/AUTHORS -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/BUILD.gn -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/COMPATABILITY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/COMPATABILITY -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/COPYING -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/ChangeLog -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/INSTALL -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/Makefile.am -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/Makefile.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/NEWS -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/README -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/README.cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/README.cvs -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/README.gettext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/README.gettext -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/README.isdn4linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/README.isdn4linux -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/README.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/README.tests -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/Specfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/Specfile.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/THANKS -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/TODO -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/acconfig.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/acinclude.m4 -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/aclocal.m4 -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/argz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/argz.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/beos-runpiped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/beos-runpiped.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/buildrpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/buildrpm -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/check.lrzsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/check.lrzsz -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/config.guess -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/config.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/config.h.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/config.sub -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/configure -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/configure.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/debian/changelog -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/debian/control -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/debian/copyright -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/debian/rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/debian/rules.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/fastcheck.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/fastcheck.beos -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/fastcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/fastcheck.sh -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/install-sh -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/ChangeLog -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/Makefile.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/VERSION -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/bindtextdom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/bindtextdom.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/cat-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/cat-compat.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/cat-id-tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/cat-id-tbl.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/dcgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/dcgettext.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/dgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/dgettext.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/explodename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/explodename.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/finddomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/finddomain.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/gettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/gettext.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/gettext.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/gettextP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/gettextP.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/hash-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/hash-string.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/intl-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/intl-compat.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/l10nflist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/l10nflist.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/libgettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/libgettext.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/linux-msg.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/linux-msg.sed -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/loadinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/loadinfo.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/loadmsgcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/loadmsgcat.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/localealias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/localealias.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/intl/textdomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/intl/textdomain.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/Makefile.am -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/Makefile.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/alloca.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/ansi2knr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/ansi2knr.1 -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/ansi2knr.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/error.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/error.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/getopt.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/getopt.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/getopt1.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/mkdir.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/mktime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/mktime.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/stpcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/stpcpy.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/strdup.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/strerror.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/strftime.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/strpbrk.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/strstr.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/strtol.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/strtoul.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/vasprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/vasprintf.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/xstrtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/xstrtol.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/lib/xstrtol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/xstrtol.h -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/lib/xstrtoul.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/man/Makefile.am -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/man/Makefile.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/man/lrz.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/man/lrz.1 -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/man/lsz.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/man/lsz.1 -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/missing -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/mkinstalldirs -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/po/ChangeLog -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/po/Makefile.in.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/po/POTFILES.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/cat-id-tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/po/cat-id-tbl.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/po/de.gmo -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/po/de.po -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/lrzsz.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/po/lrzsz.pot -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/po/stamp-cat-id: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/rpmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/rpmrc -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/Makefile.am -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/Makefile.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/ansi2knr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/ansi2knr.1 -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/ansi2knr.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/canit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/canit.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/config.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/crctab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/crctab.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/lrz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/lrz.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/lrzszbug.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/lrzszbug.in -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/lsyslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/lsyslog.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/lsz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/lsz.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/protname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/protname.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/rbsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/rbsb.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/tcp.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/timing.c -------------------------------------------------------------------------------- /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/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/zglobal.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/zm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/zm.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/zmodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/zmodem.h -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/zperr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/zperr.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/src/zreadline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/src/zreadline.c -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/lrzsz-0.12.20/systype.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/lrzsz-0.12.20/systype.in -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/COPYING -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/Makefile -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/README -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/README.md -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/crc.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/crc.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/crc.doc -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/crctab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/crctab.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/gz: -------------------------------------------------------------------------------- 1 | exec zcommand "sz $*" 2 | -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/mailer.rz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/mailer.rz -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/minirb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/minirb.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/minirb.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/minirb.doc -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/rbsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/rbsb.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/rz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/rz.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/rz.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/rz.doc -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/sz.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/sz.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/sz.doc -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/undos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/undos.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/undos.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/undos.doc -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/zm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/zm.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/zmodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/zmodem.h -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/zmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/zmr.c -------------------------------------------------------------------------------- /cplussharp/ohos/rzsz/zupl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/rzsz/zupl.t -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/.clang-format -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/.clang-tidy -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/.clangd -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/.gitignore -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/AppScope/app.json5 -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/hvigorfile.ts -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/hvigorw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/hvigorw -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/hvigorw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/hvigorw.bat -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/local.properties -------------------------------------------------------------------------------- /cplussharp/ohos/testJson/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testJson/oh-package.json5 -------------------------------------------------------------------------------- /cplussharp/ohos/testcmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testcmake/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/ohos/testcmake/testcmake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ohos/testcmake/testcmake.cpp -------------------------------------------------------------------------------- /cplussharp/ros/helloworld/src/hello/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/ros/helloworld/src/hello/package.xml -------------------------------------------------------------------------------- /cplussharp/vscode/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/.clang-format -------------------------------------------------------------------------------- /cplussharp/vscode/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/.vscode/settings.json -------------------------------------------------------------------------------- /cplussharp/vscode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/gotest/godemo/go.mod: -------------------------------------------------------------------------------- 1 | module example.com/m/v2 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /cplussharp/vscode/gotest/godemo/godemo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/gotest/godemo/godemo.go -------------------------------------------------------------------------------- /cplussharp/vscode/gotest/godemo/greeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/gotest/godemo/greeter.c -------------------------------------------------------------------------------- /cplussharp/vscode/gotest/godemo/greeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/gotest/godemo/greeter.h -------------------------------------------------------------------------------- /cplussharp/vscode/pytest/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/pytest/repo.py -------------------------------------------------------------------------------- /cplussharp/vscode/pytest/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/pytest/test.py -------------------------------------------------------------------------------- /cplussharp/vscode/pytest/testso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/pytest/testso.c -------------------------------------------------------------------------------- /cplussharp/vscode/pythonsodbg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/pythonsodbg/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/pythonsodbg/addd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/pythonsodbg/addd.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/pythonsodbg/gdb.sh: -------------------------------------------------------------------------------- 1 | sudo /usr/bin/gdb "$@" 2 | 3 | -------------------------------------------------------------------------------- /cplussharp/vscode/pythonsodbg/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/pythonsodbg/test.py -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/qt/qttest/.clang-format -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.configureOnOpen": true 3 | } -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/qt/qttest/.vscode/tasks.json -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/qt/qttest/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/MainWidget1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/qt/qttest/MainWidget1.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/MainWidget1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/qt/qttest/MainWidget1.h -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/qt/qttest/launch -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/qtmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/qt/qttest/qtmain.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/qt/qttest/workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/qt/qttest/workspace -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/autocxxtest/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/rusttest/autocxxtest/build.rs -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/bindgentest/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/rusttest/bindgentest/build.rs -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/greeting/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/rusttest/greeting/Cargo.toml -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/greeting/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/rusttest/greeting/src/main.rs -------------------------------------------------------------------------------- /cplussharp/vscode/rusttest/ncnntengine2rs/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /cplussharp/vscode/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/.gitignore -------------------------------------------------------------------------------- /cplussharp/vscode/test/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/.vscode/launch.json -------------------------------------------------------------------------------- /cplussharp/vscode/test/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/.vscode/settings.json -------------------------------------------------------------------------------- /cplussharp/vscode/test/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/.vscode/tasks.json -------------------------------------------------------------------------------- /cplussharp/vscode/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/test/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/CMakeSettings.json -------------------------------------------------------------------------------- /cplussharp/vscode/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/main.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/test/sftests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/sftests/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/test/sftests/test_boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/sftests/test_boost.h -------------------------------------------------------------------------------- /cplussharp/vscode/test/sftests/test_glog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/sftests/test_glog.h -------------------------------------------------------------------------------- /cplussharp/vscode/test/sftests/test_spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/sftests/test_spdlog.h -------------------------------------------------------------------------------- /cplussharp/vscode/test/sftests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/sftests/tests.h -------------------------------------------------------------------------------- /cplussharp/vscode/test/slibs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/slibs/CMakeLists.txt -------------------------------------------------------------------------------- /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/test/slibs/Slog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/test/slibs/Slog.h -------------------------------------------------------------------------------- /cplussharp/vscode/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(slibs) -------------------------------------------------------------------------------- /cplussharp/vscode/tests/slibs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/tests/slibs/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/tests/slibs/Slog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/tests/slibs/Slog -------------------------------------------------------------------------------- /cplussharp/vscode/tests/slibs/Slog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/tests/slibs/Slog.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/tests/slibs/Slog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/tests/slibs/Slog.h -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/log4cplustest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/log4cplustest.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/scurltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/scurltest.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/shttphandletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/shttphandletest.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/singaltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/singaltest.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/sjsontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/sjsontest.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/sloghandletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/sloghandletest.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/sluatest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/sluatest.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/sxmltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/sxmltest.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/xml2cxx/artifacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/xml2cxx/artifacts.h -------------------------------------------------------------------------------- /cplussharp/vscode/unittest/xml2cxx/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/unittest/xml2cxx/note.md -------------------------------------------------------------------------------- /cplussharp/vscode/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/utils/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/utils/SignalHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/utils/SignalHandle.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/utils/SignalHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/utils/SignalHandle.h -------------------------------------------------------------------------------- /cplussharp/vscode/utils/SlogHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/utils/SlogHandle.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/utils/SlogHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/utils/SlogHandle.h -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg.json.bak -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/AsioHttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/AsioHttp.hpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/CMakeLists.txt -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/Hmac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/Hmac.hpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/HttpIot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/HttpIot.hpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/Log.hpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/ReqBean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/ReqBean.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/ReqBean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/ReqBean.hpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/Utils.hpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/common.hpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/main.cpp -------------------------------------------------------------------------------- /cplussharp/vscode/vcpkg/root_certificates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/cplussharp/vscode/vcpkg/root_certificates.hpp -------------------------------------------------------------------------------- /demoCA/newcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/demoCA/newcert.pem -------------------------------------------------------------------------------- /demoCA/newkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/demoCA/newkey.pem -------------------------------------------------------------------------------- /docs/android-rk3399增加app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/android-rk3399增加app.md -------------------------------------------------------------------------------- /docs/android-rk3399增加drv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/android-rk3399增加drv.md -------------------------------------------------------------------------------- /docs/android-rk3399编译.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/android-rk3399编译.md -------------------------------------------------------------------------------- /docs/firefox-thunderbird编译.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/firefox-thunderbird编译.md -------------------------------------------------------------------------------- /docs/foams-笔记/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/_layouts/home.html -------------------------------------------------------------------------------- /docs/foams-笔记/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/_layouts/page.html -------------------------------------------------------------------------------- /docs/foams-笔记/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/assets/css/style.scss -------------------------------------------------------------------------------- /docs/foams-笔记/attachments/foam-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/attachments/foam-icon.png -------------------------------------------------------------------------------- /docs/foams-笔记/docs/features/daily-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/features/daily-notes.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/features/note-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/features/note-properties.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/features/note-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/features/note-templates.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/features/spell-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/features/spell-checking.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/features/wikilinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/features/wikilinks.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/Win应用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/Win应用.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/android应用开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/android应用开发.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/android编译.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/android编译.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/githubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/githubs.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/linux应用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/linux应用.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/misc开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/misc开发.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/shortcut-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/shortcut-list.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/termux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/termux.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/笔记foam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/笔记foam.md -------------------------------------------------------------------------------- /docs/foams-笔记/docs/how-to/笔记frida-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/docs/how-to/笔记frida-hook.md -------------------------------------------------------------------------------- /docs/foams-笔记/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/getting-started.md -------------------------------------------------------------------------------- /docs/foams-笔记/inbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/inbox.md -------------------------------------------------------------------------------- /docs/foams-笔记/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/readme.md -------------------------------------------------------------------------------- /docs/foams-笔记/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/foams-笔记/todo.md -------------------------------------------------------------------------------- /docs/linux-drvice-hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/linux-drvice-hello.md -------------------------------------------------------------------------------- /docs/ohos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/ohos.md -------------------------------------------------------------------------------- /docs/rk--rockchip-linux5x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/rk--rockchip-linux5x.md -------------------------------------------------------------------------------- /docs/rk3399-debian-ros1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/docs/rk3399-debian-ros1.md -------------------------------------------------------------------------------- /face-detection/OpenCVLibrary340/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/OpenCVLibrary340/build.gradle -------------------------------------------------------------------------------- /face-detection/OpenCVLibrary340/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/OpenCVLibrary340/lint.xml -------------------------------------------------------------------------------- /face-detection/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/build.gradle -------------------------------------------------------------------------------- /face-detection/gradle.properties: -------------------------------------------------------------------------------- 1 | android.useDeprecatedNdk=true -------------------------------------------------------------------------------- /face-detection/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/gradlew -------------------------------------------------------------------------------- /face-detection/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/gradlew.bat -------------------------------------------------------------------------------- /face-detection/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/local.properties -------------------------------------------------------------------------------- /face-detection/opencvjni/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /face-detection/opencvjni/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/opencvjni/build.gradle -------------------------------------------------------------------------------- /face-detection/opencvjni/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/opencvjni/proguard-rules.pro -------------------------------------------------------------------------------- /face-detection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/readme.md -------------------------------------------------------------------------------- /face-detection/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/face-detection/settings.gradle -------------------------------------------------------------------------------- /fridaHookTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/fridaHookTest/.gitignore -------------------------------------------------------------------------------- /fridaHookTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /fridaHookTest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/fridaHookTest/app/build.gradle -------------------------------------------------------------------------------- /fridaHookTest/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/fridaHookTest/app/proguard-rules.pro -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/fridaHookTest/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /fridaHookTest/app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | Tutorial -------------------------------------------------------------------------------- /fridaHookTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/fridaHookTest/build.gradle -------------------------------------------------------------------------------- /fridaHookTest/testHook/hookAcitivyOnResume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/fridaHookTest/testHook/hookAcitivyOnResume.js -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/dbToJavaBean/.classpath -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/dbToJavaBean/.project -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/dbToJavaBean.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/dbToJavaBean/dbToJavaBean.iml -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/dbToJavaBean1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/dbToJavaBean/dbToJavaBean1.iml -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/src/lib/gson-2.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/dbToJavaBean/src/lib/gson-2.8.1.jar -------------------------------------------------------------------------------- /ideaJava/dbToJavaBean/src/lib/jdbc-api-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/dbToJavaBean/src/lib/jdbc-api-1.4.jar -------------------------------------------------------------------------------- /ideaJava/flutter_app1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/.gitignore -------------------------------------------------------------------------------- /ideaJava/flutter_app1/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/.metadata -------------------------------------------------------------------------------- /ideaJava/flutter_app1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/README.md -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/android/.gitignore -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/android/app/build.gradle -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/app/src/main/java/io/flutter/java/flutterjava.java: -------------------------------------------------------------------------------- 1 | class flutterjava{ 2 | 3 | } -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/android/build.gradle -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/android/gradle.properties -------------------------------------------------------------------------------- /ideaJava/flutter_app1/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/android/settings.gradle -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/ios/.gitignore -------------------------------------------------------------------------------- /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/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ideaJava/flutter_app1/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/ios/Runner/main.m -------------------------------------------------------------------------------- /ideaJava/flutter_app1/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/lib/main.dart -------------------------------------------------------------------------------- /ideaJava/flutter_app1/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/pubspec.yaml -------------------------------------------------------------------------------- /ideaJava/flutter_app1/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/ideaJava/flutter_app1/test/widget_test.dart -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/.editorconfig -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/.gitattributes -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://github.com/ocornut/imgui/wiki/Sponsors'] 2 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/.gitignore -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/CMakeLists.txt -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/LICENSE.txt -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/docs/BACKENDS.md -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/docs/EXAMPLES.md -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/docs/FAQ.md -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/docs/FONTS.md -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/docs/README.md -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/docs/TODO.txt -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/examples/README.txt -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/examples/example_android_opengl3/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imconfig.h -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imgui.cpp -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imgui.h -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imgui_demo.cpp -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imgui_draw.cpp -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imgui_internal.h -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imgui_tables.cpp -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imgui_widgets.cpp -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imstb_rectpack.h -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imstb_textedit.h -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/imstb_truetype.h -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/misc/README.txt -------------------------------------------------------------------------------- /imguieditor/imgui-1.89.5/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/imguieditor/imgui-1.89.5/misc/cpp/README.txt -------------------------------------------------------------------------------- /java_js_2screen/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /java_js_2screen/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/java_js_2screen/build.gradle -------------------------------------------------------------------------------- /java_js_2screen/javajs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/java_js_2screen/javajs.html -------------------------------------------------------------------------------- /java_js_2screen/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/java_js_2screen/proguard-rules.pro -------------------------------------------------------------------------------- /java_js_2screen/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/java_js_2screen/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/java_js_2screen/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/java_js_2screen/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /java_js_2screen/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/java_js_2screen/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /javatest/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /javatest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/build.gradle -------------------------------------------------------------------------------- /javatest/c10test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/c10test/build.gradle -------------------------------------------------------------------------------- /javatest/c10test/nodejs/nodejs-websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/c10test/nodejs/nodejs-websocket.js -------------------------------------------------------------------------------- /javatest/c10test/nodejs/nodejscli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/c10test/nodejs/nodejscli.js -------------------------------------------------------------------------------- /javatest/c10test/nodejs/socketio-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/c10test/nodejs/socketio-client.js -------------------------------------------------------------------------------- /javatest/c10test/nodejs/socketioserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/c10test/nodejs/socketioserver.js -------------------------------------------------------------------------------- /javatest/c10test/nodejs/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/c10test/nodejs/util.js -------------------------------------------------------------------------------- /javatest/c10test/nodejs/websocketcli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/c10test/nodejs/websocketcli.js -------------------------------------------------------------------------------- /javatest/c10test/nodejs/websocketsrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/c10test/nodejs/websocketsrv.js -------------------------------------------------------------------------------- /javatest/javatest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/javatest.iml -------------------------------------------------------------------------------- /javatest/mongodbTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/mongodbTest/build.gradle -------------------------------------------------------------------------------- /javatest/sm34/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/javatest/sm34/pom.xml -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/local.properties -------------------------------------------------------------------------------- /nodejs/TsDev/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/TsDev/.vscode/launch.json -------------------------------------------------------------------------------- /nodejs/TsDev/Test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/TsDev/Test.ts -------------------------------------------------------------------------------- /nodejs/TsDev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/TsDev/package.json -------------------------------------------------------------------------------- /nodejs/TsDev/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/TsDev/tsconfig.json -------------------------------------------------------------------------------- /nodejs/dbtest/mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/dbtest/mongodb.js -------------------------------------------------------------------------------- /nodejs/iptools/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.babelrc -------------------------------------------------------------------------------- /nodejs/iptools/.electron-vue/build.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.electron-vue/build.config.js -------------------------------------------------------------------------------- /nodejs/iptools/.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.electron-vue/build.js -------------------------------------------------------------------------------- /nodejs/iptools/.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /nodejs/iptools/.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /nodejs/iptools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.gitignore -------------------------------------------------------------------------------- /nodejs/iptools/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.travis.yml -------------------------------------------------------------------------------- /nodejs/iptools/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.vscode/launch.json -------------------------------------------------------------------------------- /nodejs/iptools/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/.vscode/tasks.json -------------------------------------------------------------------------------- /nodejs/iptools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/README.md -------------------------------------------------------------------------------- /nodejs/iptools/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/appveyor.yml -------------------------------------------------------------------------------- /nodejs/iptools/build/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/build/icons/logo.ico -------------------------------------------------------------------------------- /nodejs/iptools/iptools.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/iptools.code-workspace -------------------------------------------------------------------------------- /nodejs/iptools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/package.json -------------------------------------------------------------------------------- /nodejs/iptools/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/run.bat -------------------------------------------------------------------------------- /nodejs/iptools/src/ScanIP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/ScanIP.ts -------------------------------------------------------------------------------- /nodejs/iptools/src/httsrv/HttpCli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/httsrv/HttpCli.ts -------------------------------------------------------------------------------- /nodejs/iptools/src/httsrv/HttpSrv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/httsrv/HttpSrv.ts -------------------------------------------------------------------------------- /nodejs/iptools/src/httsrv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/httsrv/package.json -------------------------------------------------------------------------------- /nodejs/iptools/src/httsrv/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/httsrv/tsconfig.json -------------------------------------------------------------------------------- /nodejs/iptools/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/index.ejs -------------------------------------------------------------------------------- /nodejs/iptools/src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/main/index.dev.js -------------------------------------------------------------------------------- /nodejs/iptools/src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/main/index.js -------------------------------------------------------------------------------- /nodejs/iptools/src/main/indexsf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/main/indexsf.js -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/renderer/App.vue -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/renderer/assets/logo.ico -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/renderer/assets/logo.png -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/components/sf.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/components/sf.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/renderer/components/sf.vue -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/renderer/main.ts -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/renderer/router/index.js -------------------------------------------------------------------------------- /nodejs/iptools/src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/renderer/store/index.js -------------------------------------------------------------------------------- /nodejs/iptools/src/typings/vue-shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/src/typings/vue-shims.d.ts -------------------------------------------------------------------------------- /nodejs/iptools/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs/iptools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/iptools/tsconfig.json -------------------------------------------------------------------------------- /nodejs/mpvue-screen/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/.babelrc -------------------------------------------------------------------------------- /nodejs/mpvue-screen/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/.editorconfig -------------------------------------------------------------------------------- /nodejs/mpvue-screen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/.gitignore -------------------------------------------------------------------------------- /nodejs/mpvue-screen/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/.postcssrc.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/README.md -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/build.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/check-versions.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/dev-client.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/dev-server.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/utils.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/vue-loader.conf.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/webpack.base.conf.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/config/dev.env.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/config/index.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/index.html -------------------------------------------------------------------------------- /nodejs/mpvue-screen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/package.json -------------------------------------------------------------------------------- /nodejs/mpvue-screen/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/project.config.json -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/App.vue -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/app.json -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/components/card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/components/card.vue -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/main.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/counter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/pages/counter/index.vue -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/counter/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/pages/counter/main.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/counter/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/pages/counter/store.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/pages/index/index.vue -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/index/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/pages/index/main.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/logs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/pages/logs/index.vue -------------------------------------------------------------------------------- /nodejs/mpvue-screen/src/pages/logs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/pages/logs/main.js -------------------------------------------------------------------------------- /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/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/src/utils/index.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/srv/fly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/srv/fly.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/srv/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/srv/index.htm -------------------------------------------------------------------------------- /nodejs/mpvue-screen/srv/wxupload-rec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/srv/wxupload-rec.js -------------------------------------------------------------------------------- /nodejs/mpvue-screen/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs/mpvue-screen/static/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/mpvue-screen/static/profile.png -------------------------------------------------------------------------------- /nodejs/node-n-api/hello/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/node-n-api/hello/app.js -------------------------------------------------------------------------------- /nodejs/node-n-api/hello/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/node-n-api/hello/binding.gyp -------------------------------------------------------------------------------- /nodejs/node-n-api/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/node-n-api/hello/package.json -------------------------------------------------------------------------------- /nodejs/node-n-api/hello/src/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/node-n-api/hello/src/benchmark.h -------------------------------------------------------------------------------- /nodejs/node-n-api/hello/src/benchncnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/node-n-api/hello/src/benchncnn.cpp -------------------------------------------------------------------------------- /nodejs/node-n-api/hello/src/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/nodejs/node-n-api/hello/src/hello.cc -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/settings.gradle -------------------------------------------------------------------------------- /submodules/lua-5.3.6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/CMakeLists.txt -------------------------------------------------------------------------------- /submodules/lua-5.3.6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/Makefile -------------------------------------------------------------------------------- /submodules/lua-5.3.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/README -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/contents.html -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/index.css -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/logo.gif -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/lua.1 -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/lua.css -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/luac.1 -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/manual.css -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/manual.html -------------------------------------------------------------------------------- /submodules/lua-5.3.6/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/doc/readme.html -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/CMakeLists.txt -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/Makefile -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lapi.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lapi.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lauxlib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lauxlib.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lbaselib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lbitlib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lcode.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lcode.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lcorolib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lctype.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lctype.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ldblib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ldebug.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ldebug.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ldo.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ldo.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ldump.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lfunc.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lfunc.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lgc.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lgc.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/linit.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/liolib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/llex.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/llex.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/llimits.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lmathlib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lmem.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lmem.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/loadlib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lobject.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lobject.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lopcodes.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lopcodes.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/loslib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lparser.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lparser.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lprefix.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lstate.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lstate.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lstring.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lstring.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lstrlib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ltable.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ltable.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ltablib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ltm.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/ltm.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lua.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lua.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lua.hpp -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/luac.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/luaconf.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lualib.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lundump.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lundump.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lutf8lib.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lvm.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lvm.h -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lzio.c -------------------------------------------------------------------------------- /submodules/lua-5.3.6/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/submodules/lua-5.3.6/src/lzio.h -------------------------------------------------------------------------------- /third/xzqh.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/third/xzqh.rar -------------------------------------------------------------------------------- /toolchains/aarch64-linux-gnu-c.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/aarch64-linux-gnu-c.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/aarch64-linux-gnu.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/aarch64-linux-gnu.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/arm-linux-gnueabi-c.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/arm-linux-gnueabi-c.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/arm-linux-gnueabi.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/arm-linux-gnueabi.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/arm-linux-gnueabihf.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/arm-linux-gnueabihf.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/himix100.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/himix100.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/himix200.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/himix200.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/hisiv300.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/hisiv300.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/hisiv500.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/hisiv500.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/hisiv600.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/hisiv600.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/host-c.clang.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/host-c.clang.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/host-c.gcc.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/host-c.gcc.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/host.clang-m32.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/host.clang-m32.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/host.gcc-c++03.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/host.gcc-c++03.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/host.gcc-m32.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/host.gcc-m32.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/host.gcc.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/host.gcc.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/ios.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/iossimxc-x64.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/iossimxc-x64.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/iossimxc.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/iossimxc.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/iosxc-arm64.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/iosxc-arm64.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/iosxc.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/iosxc.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/jetson.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/jetson.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/mips-mti-linux-gnu.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/mips-mti-linux-gnu.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/mipsel-linux-gnu.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/mipsel-linux-gnu.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/pi3.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/pi3.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/riscv32-unknown-elf.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/riscv32-unknown-elf.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/riscv64-linux-gnu.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/riscv64-linux-gnu.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/riscv64-unknown-elf.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/riscv64-unknown-elf.toolchain.cmake -------------------------------------------------------------------------------- /toolchains/v831.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yippeesoft/NotifyTools/HEAD/toolchains/v831.toolchain.cmake --------------------------------------------------------------------------------