博文

目前显示的是标签为“#微信应用双开”的博文

I Built a Tiny YouTube Tool That Reached $500/Month — Here’s What I Learned

I didn't build a startup. I didn't raise funding. I didn't have a team of engineers. I simply built a small tool to solve a problem I personally had. And eventually, that little project started making money. **YTtoText reached $500/month.** Here's what happened. ## The Problem Was Almost Too Simple The original idea behind YTtoText was extremely simple. I was working with YouTube videos and constantly needed to find specific information inside long videos. Watching an entire 60-minute video just to find one sentence is incredibly inefficient. Then there was another problem. Copying subtitles manually is annoying. Downloading captions isn't always straightforward. And if you want to search through a long interview, podcast, tutorial, or lecture, the video itself isn't always the best format. I thought: **What if I could just turn the YouTube video into searchable text?** That became YTtoText. ## I Started With a Very Small MVP The first versi...

电脑端如何实现微信应用双开或多开?

图片
  每日金句   你相信什么,就会遇到什么! 前言 在日常工作和生活中,有时候因为一些特殊的需求,我们需要在一台电脑上双开,甚至多开微信。安卓手机端一版都支持应用双开比较容易。那么电脑端是如何实现微信或者其他软件的双开或多开呢? 微信双开或多开的方法 分享两种方法。 第一种:鼠标放在微信图标上,左键点击一下,选中微信后,多次快速点击enter键,即可实现双开或多开。本质在于,多次点击启动的动作发生在微信响应打开页面前就能成功,所以也常常因为手速的问题,要么打开了一个,或者要么就多个。 所以针对于此就有了第二种方法,bat文件方法。 1. 选中微信图标,点击属性,复制微信的地址位置; 2. 然后新建txt文档,输入命令行。 开头为 @echo off 命令行格式为:start "" + 微信地址,如果是双开就写两次,多开就写多次即可。 结束为 exit。 然后点击保存。 3.  修改新建的txt文档,另存为选择所有文件,命名方式为name.bat。 4. 点击保存好的bat文件,即可实现应用多开。 扩展 什么是Bat,这是一个计算机领域的一个术语。它是指批处理的文件扩展名。批处理文件(batch file)是一种包含了一系列的代码命令的文本文件,特点是这些命令是按照顺序执行的。所以回到上面的内容,可以看到微信应用双开的文件代码其实就是写了两行通知计算机打开微信两个窗口的命令。所以每次运行我们写好的bat文件就可以实现双开。 通俗来讲,bat文件就是我们经常听到的脚本。批处理文件就是广泛应用于windows的系统中的自动化任务和脚本编写。 以上就是关于应用双开的相关分享,希望对你有所帮助。