随笔 - 79, 文章 - 9, 评论 - 4, 阅读 - 22110
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

05 2022 档案

摘要:课程:https://time.geekbang.org/course/intro/100052401 kbnoe 多端统一开发工具 官网: https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/extended 阅读全文

posted @ 2022-05-31 13:16 pencilCool 阅读(62) 评论(0) 推荐(0) 编辑

摘要:https://time.geekbang.org/column/article/465228 const 关键字 定义的量 vs 字面量常量 相同的:其值在第一次出现时便被确定,且无法在后续程序中被修改。 通常来说,在 C 语言中,使用 const 关键字修饰的变量定义语句,我们更倾向于称它们为“ 阅读全文

posted @ 2022-05-31 08:32 pencilCool 阅读(333) 评论(0) 推荐(0) 编辑

摘要:https://www.geeksforgeeks.org/c-programming-language/?ref=ghm C Primer Plus https://time.geekbang.org/column/article/464550 阅读全文

posted @ 2022-05-31 08:20 pencilCool 阅读(18) 评论(0) 推荐(0) 编辑

摘要:https://www.npmtrends.com/react-native typescript typescript playground https://www.typescriptlang.org/play 阅读全文

posted @ 2022-05-29 17:34 pencilCool 阅读(12) 评论(0) 推荐(0) 编辑

摘要:翻译自: https://audiokit.io/ 什么是AudioKit? AudioKit 是一个由代码仓库, packages, libraries, 算法, APP, playgrounds, 测试, and 脚步 组成的整个音频开发生态系统,由音频程序员、应用程序开发人员、工程师、研究人员 阅读全文

posted @ 2022-05-29 16:27 pencilCool 阅读(324) 评论(0) 推荐(0) 编辑

摘要:https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API/Tutorial index.html <!DOCTYPE html> <html> <head> </head> <body> <canvas id="canvas"></can 阅读全文

posted @ 2022-05-28 09:23 pencilCool 阅读(22) 评论(0) 推荐(0) 编辑

摘要:翻译自:https://bashooka.com/coding/web-audio-javascript-libraries/ Web Audio API使你能在网页中用javascript建立令人惊讶的复杂的音频应用。因此,这里有一些有用的Javascript库,它们会使使用Web Audio A 阅读全文

posted @ 2022-05-23 20:48 pencilCool 阅读(2149) 评论(0) 推荐(0) 编辑

摘要:DeepL + PengDu Mac App Lesson 1 A private conversation私人谈话 Why did the writer complain to the people behind him? Last week I went to the theatre. I ha 阅读全文

posted @ 2022-05-22 20:44 pencilCool 阅读(96) 评论(0) 推荐(0) 编辑

摘要:环境配置 python3 -m venv venv/ source venv/bin/activate pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.al 阅读全文

posted @ 2022-05-22 20:32 pencilCool 阅读(35) 评论(0) 推荐(0) 编辑

摘要:git config git config --global alias.co checkout git config --global alias.br branch git config --global alias.ci commit git config --global alias.st 阅读全文

posted @ 2022-05-18 08:12 pencilCool 阅读(44) 评论(0) 推荐(0) 编辑

摘要:翻译笔记 : https://learning.oreilly.com/library/view/music-theory-3e/9781465454102/xhtml/introduction.xhtml#p6 资源: https://www.dk.com/us/information/music 阅读全文

posted @ 2022-05-17 23:55 pencilCool 阅读(44) 评论(0) 推荐(0) 编辑

摘要:MATLAB是一种专门用于科学计算的编程语言,使许多数学和工程任务变得直观,同时保持对计算机的高级控制。它被用于不同的领域,包括统计、金融、生物医学工程、计算机视觉、无线通信、机器人和经济学。更具体到音频方面,MATLAB是DSP的一种通用语言。 还有一些专门为处理音频而创建的编程语言 Csound 阅读全文

posted @ 2022-05-16 23:34 pencilCool 阅读(46) 评论(0) 推荐(0) 编辑

摘要:第2章介绍了使用MATLAB语言进行编程。 第3章讨论了处理音频信号的基础知识,以及将音频可视化的常用方法。 第4章对MATLAB编程环境进行了概述。 第5章介绍了几种控制结构的编程结构。 第6章讨论了振幅处理的基础知识,包括增益缩放和直流偏移。 第7章介绍了常见音频测试信号的合成。从这里开始,主题 阅读全文

posted @ 2022-05-16 23:16 pencilCool 阅读(39) 评论(0) 推荐(0) 编辑

摘要:brew install autojump [[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh swiftenv https://github.com/kylef/swiftenv brew in 阅读全文

posted @ 2022-05-12 19:59 pencilCool 阅读(19) 评论(0) 推荐(0) 编辑

摘要:Objective-c block syntax How Do I Declare A Block in Objective-C? As a local variable: returnType (^blockName)(parameterTypes) = ^returnType(parameter 阅读全文

posted @ 2022-05-12 09:33 pencilCool 阅读(15) 评论(0) 推荐(0) 编辑

摘要:Grammarly DeepL 翻译器 https://hemingwayapp.com/ 阅读全文

posted @ 2022-05-10 19:21 pencilCool 阅读(24) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示