All Projects → bingoyao → answer-helper

bingoyao / answer-helper

Licence: other
“学习强国《挑战答题》”辅助工具

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to answer-helper

Dockpanelsuite
DockPanel Suite - The Visual Studio inspired docking library for .NET WinForms
Stars: ✭ 1,326 (+9371.43%)
Mutual labels:  windows-forms
clipsync-windows
Clipboard which sync with Android and Windows Platform.
Stars: ✭ 20 (+42.86%)
Mutual labels:  windows-forms
DotNetWithCMake
Your swiss army knife for creating .NET assemblies with CMake and integrating unmanaged code.
Stars: ✭ 50 (+257.14%)
Mutual labels:  windows-forms
Simple Video Cutter
Windows-based tool for efficient browsing and cutting video footage
Stars: ✭ 102 (+628.57%)
Mutual labels:  windows-forms
Fontawesome.sharp
A library for using Font Awesome in WPF & Windows Forms applications
Stars: ✭ 185 (+1221.43%)
Mutual labels:  windows-forms
CrazyCat
Winform版围住神经猫
Stars: ✭ 14 (+0%)
Mutual labels:  windows-forms
Bulk Crap Uninstaller
Remove large amounts of unwanted applications quickly.
Stars: ✭ 1,212 (+8557.14%)
Mutual labels:  windows-forms
Microsoft.Toolkit.Win32
This repository contains all controls for WPF and WinForms to simplify and demonstrate usage of UWP controls
Stars: ✭ 345 (+2364.29%)
Mutual labels:  windows-forms
Opentouryo
”Open棟梁”は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET用アプリケーション フレームワークです。 (”OpenTouryo” , is an application framework for .NET which was developed using the accumulated know-how with a long track record in .NET application development.)
Stars: ✭ 233 (+1564.29%)
Mutual labels:  windows-forms
Reservation-System
Airline Reservation System is an online Airline Ticket Reservation Application built using Windows Forms, C#, MS SQL Server.
Stars: ✭ 18 (+28.57%)
Mutual labels:  windows-forms
Ookii Dialogs Winforms
Common dialog classes for Windows Forms applications
Stars: ✭ 130 (+828.57%)
Mutual labels:  windows-forms
Monogame.forms
MonoGame.Forms is the easiest way of integrating a MonoGame render window into your Windows Forms project. It should make your life much easier, when you want to create your own editor environment.
Stars: ✭ 165 (+1078.57%)
Mutual labels:  windows-forms
chat-app
Multithreading TCP server and client communicating over TCP/IP - Windows Forms Application.
Stars: ✭ 39 (+178.57%)
Mutual labels:  windows-forms
Open Exam Suite
This project seeks to create an open source exam designer and simulator that will be solace for those wanting to take any simulated examinations.
Stars: ✭ 101 (+621.43%)
Mutual labels:  windows-forms
Scraps
Scrap.TF Raffle Joining Bot
Stars: ✭ 24 (+71.43%)
Mutual labels:  windows-forms
Servicebusexplorer
The Service Bus Explorer allows users to connect to a Service Bus namespace and administer messaging entities in an easy manner. The tool provides advanced features like import/export functionality or the ability to test topic, queues, subscriptions, relay services, notification hubs and events hubs.
Stars: ✭ 1,259 (+8892.86%)
Mutual labels:  windows-forms
Nekomata
AniList/Kitsu to MyAnimeList List XML Exporter for Windows (DISCONTINUED)
Stars: ✭ 54 (+285.71%)
Mutual labels:  windows-forms
WinForms.FC UI
👀 FC_UI (Fun-Code User Interface) - библиотека пользовательских элементов управления (user control) для WinForms (.Net Framework / .Net Core).
Stars: ✭ 18 (+28.57%)
Mutual labels:  windows-forms
Active-Directory-Search
👤 This Active Directory Search tool was written in C# and VB.NET Windows Forms and exports the results from LDAP to csv format.
Stars: ✭ 19 (+35.71%)
Mutual labels:  windows-forms
RawInputProcessor
Provides a way to distinguish input from multiple keyboards
Stars: ✭ 37 (+164.29%)
Mutual labels:  windows-forms

answer-helper “学习强国《挑战答题》”辅助工具

使用

环境

Visual Studio 2015 Professional PostgreSQL 10

投屏工具

只要能将手机屏幕投影到电脑即可。这里使用了AirDroid(无需root)。

百度AI客户端

登录百度AI开放平台,进入控制台,新建文字识别应用。

题库

题库文件

题库文件可以使用网上现成的,也可以自己收集,要求是纯文本,并且每一行是一个题目(含答案)。 项目中提供了一个已收集好的题库文件questionSource.txt

配置PostGre数据库

检索题目时使用了模糊查询,只能使用Postgre数据库 新建数据库 answer_helper 新建表 qiangguo

CREATE TABLE public.qiangguo
(
    question text COLLATE pg_catalog."default" NOT NULL,
    id integer NOT NULL GENERATED ALWAYS AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 2147483647 CACHE 1 ),
    "enrollTime" timestamp with time zone NOT NULL,
    CONSTRAINT qiangguo_pkey PRIMARY KEY (id)
)
WITH (
    OIDS = FALSE
)
TABLESPACE pg_default;

-- Index: question_idx

-- DROP INDEX public.question_idx;

CREATE INDEX question_idx
    ON public.qiangguo USING gist
    (question COLLATE pg_catalog."default" gist_trgm_ops)
    TABLESPACE pg_default;

导入题库到数据库

运行项目->点击->应用管理->文件导入->选择题库文件导入

应用设置

找到AnswerHelper.exe.config文件,将userSettings中各项根据自己实际配置改写。

辅助答题

设置投屏区域

将手机投屏到电脑后,进入挑战答题,点击“设置截图区域”,选中题目区域后双击左键选中区域确定,截图时单击右键取消。 设置好截图区域后不要移动投屏软件位置。

题库辅助答题

题目出现后点击题库辅助答题可在题库中检索相似题目,较新的题目题库中可能检索不到。

网络辅助答题

题目出现后点击浏览器辅助答题可使用内置浏览器从网络检索题目,检索到结果后可点击左右箭头查看其它结果。浏览结果时,可以屏蔽经常出现而又没有正确答案的网站。 从网络检索题目将耗费较多时间,而且也有检索不到的风险。

自动搜索

题目出现后点击自动搜索将先使用题库搜索结果,未找到结果时自动使用网络搜索。

demo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].