LoveIt

https://github.com/dillonzq/LoveIt

比现在我用的PaperMod更简洁美观的hugo主题

点击上方图片,查看案例网站

DataWrapper

https://www.datawrapper.de/

可视化工具网站,操作简洁,好用

点击查看网站


frappe

https://github.com/frappe/frappe

消除 97.42%* 的软件开发工作

点击查看网站

Parrot_Paraphraser

每年上半年都是毕业季,学生都会为论文降重倍感煎熬。

一个实用且功能丰富的句子改写(可以将低英文论文重复率)框架,以文本形式增强人类意图,为会话引擎构建健壮的 NLU 模型。 由 Prithiviraj Damodaran 创建。

from parrot import Parrot
import torch
import warnings
warnings.filterwarnings("ignore")

''' 
uncomment to get reproducable paraphrase generations
def random_state(seed):
  torch.manual_seed(seed)
  if torch.cuda.is_available():
    torch.cuda.manual_seed_all(seed)

random_state(1234)
'''

#Init models (make sure you init ONLY once if you integrate this to your code)
parrot = Parrot(model_tag="prithivida/parrot_paraphraser_on_T5")

phrases = ["Can you recommed some upscale restaurants in Newyork?",
           "What are the famous places we should not miss in Russia?"
]

for phrase in phrases:
	print("-"*100)
  print("Input_phrase: ", phrase)
  print("-"*100)
  para_phrases = parrot.augment(input_phrase=phrase, use_gpu=False)
  for para_phrase in para_phrases:
   print(para_phrase)

Run

----------------------------------------------------------------------
Input_phrase: Can you recommed some upscale restaurants in Newyork?
----------------------------------------------------------------------
list some excellent restaurants to visit in new york city?
what upscale restaurants do you recommend in new york?
i want to try some upscale restaurants in new york?
recommend some upscale restaurants in newyork?
can you recommend some high end restaurants in newyork?
can you recommend some upscale restaurants in new york?
can you recommend some upscale restaurants in newyork?
----------------------------------------------------------------------
Input_phrase: What are the famous places we should not miss in Russia
----------------------------------------------------------------------
what should we not miss when visiting russia?
recommend some of the best places to visit in russia?
list some of the best places to visit in russia?
can you list the top places to visit in russia?
show the places that we should not miss in russia?
list some famous places which we should not miss in russia?

中文不能直接用,不过也有解决思路。

  1. 先将中文转为英文
  2. 再使用parrot将英文转为多种英文表达
  3. 多种英文表达转化为多种中文表达

Knot

https://github.com/Lojii/Knot

Knot 是一款iOS端抓包工具(没有其他的科学转发功能,单纯的抓包工具),包含所有完整代码(Network+UI),使用MITM(中间人攻击)技术,用swift编写,目前实现了http(s)解析。已实现功能

  • http、https流量抓取
  • 流量解析、多格式导出、过程分析
  • 可抓取局域网内其他设备与外界通信数据
  • CA证书安装、导出
  • 中英文国际化
  • 过滤规则配置、导出

pixel-punk-avatars

https://github.com/pixegami/pixel-punk-avatars

使用Python一键生成1000张nft样式的头像。


tabler

https://github.com/tabler/tabler

Tabler 完全响应并与所有现代浏览器兼容。 由于其现代、用户友好的设计,您可以创建一个用户会喜欢的功能齐全的界面! 选择您需要的布局和组件并对其进行自定义,以使您的设计一致且引人注目。 每个组件的创建都注重细节,使您的界面美观! 给我演示


RPA-Python

点击查看rpa项目网站

RPA是英文机器人处理自动化(Robotic Process Automation)的简称。日常生活中有很多重复性的工作可以通过自动化脚本或软件实现。 我想起来大洋彼岸一位程序员。每次他的工作总是超额完成,多次在公司受到老板的表扬和提薪。

知乎上有个类似的话题,

点击查看rpa项目网站

了解课程

点击上方图片购买课程

点击进入详情页