V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  ajan  ›  全部回复第 1 页 / 共 46 页
回复总数  904
1  2  3  4  5  6  7  8  9  10 ... 46  
Adobe Acrobat 免费三件套
这三件套的入口相当深,免费,无需登录直接可用,但注意:「国内的用户访问这几个地址可能会 Access Denied ,找个普通的代理服务器即可」。

PDF 转 WOrd
https://www.adobe.com/acrobat/online/pdf-to-word.html

PDF 转 Excel

https://www.adobe.com/acrobat/online/pdf-to-excel.html
PDF 转 PPT
https://www.adobe.com/acrobat/online/pdf-to-ppt.html
5 天前
回复了 Hilalum 创建的主题 Apple 咋没人说苹果有快充了
120W 的快充路过
Google PDF 查看器(老 APP 了,现在 Google Play Store 好像找不到),
云端硬盘( Google 家的,带有 PDF 查看功能)
浏览器端的

https://stuk.github.io/jszip/

```javascript
var zip = new JSZip();
zip.file("Hello.txt", "Hello World\n");
var img = zip.folder("images");
img.file("smile.gif", imgData, { base64: true });
zip.generateAsync({type:"blob"}).then(function(content) {
// see FileSaver.js
saveAs(content, "example.zip");
});
```
8 天前
回复了 bboring 创建的主题 iPhone iPhone 16 有什么亮点吗?
买手机不送充电头,算不算创新?
9 天前
回复了 Ritr 创建的主题 分享创造 一键使屏幕像素化,介意同事窥屏必备
有点意思
ToDesk 云电脑
网易 GameViewer

未用过,不知道实际情况如何
16 天前
回复了 e4fjui 创建的主题 分享创造 开发了一款文件加密分享的安卓应用
@jeesk

LocalSend 可以设置 多个接收者,可以试试看。
(附近的设备 右侧的齿轮图标)
star
@NoManPlay

@gongquanlin

我猜你们不知道 uni-app 有 cli 模式,不需要 HBuilder 。

https://uniapp.dcloud.net.cn/quickstart-cli.html

我们做了很多项目了,挺好的。
macOS 的 AppStore
62 天前
回复了 star505 创建的主题 浏览器 各位 v 友在用什么手机浏览器,求推荐
1. Alook
2. Chrome
3. 狐猴
62 天前
回复了 furlxy 创建的主题 Windows 昨天重装了次 windows
Ventoy: U 盘启动盘(制作)工具;
https://ventoy.net

微 PE:PE 系统(只需要 iso ,放入 U 盘即可);
https://www.wepe.com.cn

Windows 10 64-bit : Windows 原版镜像;

Atlas: 系统精简工具,系统安装后使用;

Atlas 工具&剧本下载:
https://atlasos.net

使用说明 & Windows 镜像下载(官网连接);
https://docs.atlasos.net/getting-started/installation/#prerequisites

-----
搞完后就能安逸的干活了
早点和 leader 反馈
75 天前
回复了 Irisxx 创建的主题 程序员 iOS WebKit 和 JS 交互
用 js 注入 css 到页面,可以不用等页面加载完成、DOM 渲染完成;
---------
var el = document.createElement('style');
el.setAttribute('type', 'text/css');
el.innerText = '#krpanoSWFObject > div:nth-child(1) > div:nth-child(2) > div:nth-child(8){display: none !important;}';
document.head.appendChild(el);
75 天前
回复了 Irisxx 创建的主题 程序员 iOS WebKit 和 JS 交互
document.querySelector('#krpanoSWFObject > div:nth-child(1) > div:nth-child(2) > div:nth-child(8)')?.remove()
75 天前
回复了 mfyhx1417 创建的主题 Android adb 有什么办法播放手机系统提示音
@mfyhx1417

我用的是雷电模拟器,在 Windows 命令行中测试的,完全正常。

// 杀掉 HTML 预览器
adb shell am force-stop com.android.htmlviewer

// 利用 HTML 预览器(正常情况下不会被精简掉的系统组件) 来播放音频,模拟器里没有音频播放器,
adb shell am start -a android.intent.action.VIEW --activity-clear-task -d file:///sdcard/Music/notift.mp3 -t audio/mp3

// 发送 HOME 键事件(回到桌面)
adb shell input keyevent 3
76 天前
回复了 mfyhx1417 创建的主题 Android adb 有什么办法播放手机系统提示音
@mfyhx1417

试试看,我这边测试 OK

adb shell am force-stop com.android.htmlviewer && adb shell am start -a android.intent.action.VIEW --activity-clear-task -d file:///sdcard/Music/notift.mp3 -t text/html && adb shell input keyevent 3
@IdealYouth9 my-tv 更新太频繁了,吃不消
加个预览功能吧
1  2  3  4  5  6  7  8  9  10 ... 46  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5820 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 39ms · UTC 02:06 · PVG 10:06 · LAX 19:06 · JFK 22:06
Developed with CodeLauncher
♥ Do have faith in what you're doing.