ICode9

精准搜索请尝试: 精确搜索
  • macOS change default shell from zsh to bash All In One2022-08-15 03:00:52

    macOS change default shell from zsh to bash All In One $ cat /etc/shells # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells. /bin/bash /bin/csh /bin/dash /bin/ks

  • git tag All In One2022-08-15 02:00:49

    git tag All In One # 查看所有 tags $ git tag git delete tag # 删除 tag v1.1.1 ✅ $ git tag -d v1.1.1 $ git push origin :refs/tags/v1.1.1 # 删除 tag v1.1.2 ✅ $ git tag -d v1.1.2 $ git push origin :refs/tags/v1.1.2 publish github package https://www.cn

  • LeetCode Pow(x, n)算法题解 All In One2022-08-14 01:01:08

    LeetCode Pow(x, n)算法题解 All In One js / ts 实现 Pow(x, n) 50. Pow(x, n) https://leetcode.cn/problems/powx-n/ https://www.youtube.com/watch?v=ZTACajQOb2E refs ©xgqfrms 2012-2020 www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问! 原创文

  • Linux exit nano editor All In One2022-08-08 03:00:37

    Linux exit nano editor All In One macOS $ nano ./env.js # exit $ Control + X # not save $ n n 不保存修改 y 保存修改,Enter 退出 修改文件名,会自动创建一个新的文件副本,保存修改的内容,原文件不会被修改掉; ^X means Ctrl + X for macOS ^X means Contrl + X

  • CSS 3D Card Effect All In One2022-08-02 19:33:44

    CSS 3D Card Effect All In One 3D Conf Ticket / 3D 鼠标跟随卡片 // css 3d animation See the Pen Untitled by xgqfrms (@xgqfrms) on CodePen. ViteConf 2022 https://viteconf.org/welcome https://viteconf.org/tickets/xgqfrms Web Components & UI Compo

  • Gatsby plugins All In One2022-08-02 01:00:48

    Gatsby plugins All In One refs ©xgqfrms 2012-2020 www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问! 原创文章,版权所有©️xgqfrms, 禁止转载

  • yarn 1.x & yarn 2.x All In One2022-07-27 00:33:39

    yarn 1.x & yarn 2.x All In One yarn 1 $ npm install --global yarn https://classic.yarnpkg.com/en/docs/install#mac-stable https://github.com/yarnpkg/yarn yarn 2 corepack $ corepack enable $ yarn init -2 https://github.com/yarnpkg/berry https://y

  • PyScript All In One2022-07-24 00:34:17

    PyScript All In One Run Python in Your HTML <link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" /> <script defer src="https://pyscript.net/alpha/pyscript.js"></script> https://github.

  • Solid.js All In One2022-07-23 22:03:42

    Solid.js All In One Simple and performant reactivity for building user interfaces. https://www.solidjs.com/ 性能对比 refs ©xgqfrms 2012-2020 www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问! 原创文章,版权所有©️xgqfrms, 禁止转载

  • webfullstack All In One2022-07-19 18:31:39

    webfullstack All In One 微信公众号 http://weixin.qq.com/r/4zgcBJfEYsodrdNn923x https://web-full-stack.xgqfrms.xyz/ KOL 关键意见领袖(Key Opinion Leader, 简称 KOL)是营销学上的概念,通常被定义为:拥有更多、更准确的产品信息,且为相关群体所接受或信任,并对该群体的购买行

  • HuaWei Honor Band 4 disassembly tutorials All In One2022-07-17 12:34:25

    HuaWei Honor Band 4 disassembly tutorials All In One 荣耀手环 4 拆解教程 Honor Band 4 Charging Problem Fix 荣耀手环 4 无法充电问题修复 problem can't turn on & can't charge anymore 无法开机, 无法充电了 solution ✅ clean pins & retry 清洁充电指针 & 重试

  • Linux Bash :wq! All In One2022-07-16 00:34:41

    Linux Bash :wq! All In One ✅ :wq! !== :!wq ❌ vim command bug /bin/bash: q: 未找到命令 # 强制退出并保存 :wq! refs https://www.cnblogs.com/xgqfrms/p/10904594.html https://www.cnblogs.com/xgqfrms/p/16481735.html https://www.cnblogs.com/Mobro/p/9376364.

  • Raspberry Pi 4 B 8G All In One2022-07-15 22:37:29

    Raspberry Pi 4 B 8G All In One 单板机, Raspberry Pi 4 B, BCM2711 SoC, 8GB DDR4 RAM, USB 3.0, PoE启用 https://www.raspberrypi.com/products/raspberry-pi-4-model-b/ 平价购买渠道 期货 可延期交货 交付周期内将会有更多库存,大约为 23-7-17 (您现在可以预订货品了 订

  • Linux 关机命令 All In One2022-07-14 16:06:47

    Linux 关机命令 All In One raspberry pi 关机命令 # 关闭电源 $ sudo poweroff # 立即关机 $ sudo shutdown -h now # 立即重启 $ sudo shutdown -r now -h === host -r === reboot LEMP PHP https://www.cnblogs.com/xgqfrms/p/5361895.html refs ©xgqfrms 2

  • VNC Viewer All In One2022-07-14 01:31:30

    VNC Viewer All In One VNC Virtual Network Computing VNC,为一种使用RFB协议的屏幕画面分享及远程操作软件。 此软件借由网络,可发送键盘与鼠标的动作及即时的屏幕画面。 VNC与操作系统无关,因此可跨平台使用,例如可用Windows连线到某Linux的电脑,反之亦同。 甚至在没有安装客户端

  • Vite 运行 TypeScript 文件原理剖析 All In One2022-07-14 00:32:30

    Vite 运行 TypeScript 文件原理剖析 All In One Vanilla + TypeScript # create project $ yarn create vite # install $ yarn # dev $ yarn dev ESM import './style.css' const app = document.querySelector<HTMLDivElement>('#app')! app.inne

  • GitHub Code Review 教程 All In One2022-07-09 02:00:43

    GitHub Code Review 教程 All In One https://github.com/features/code-review steps create PR click goto commit files https://github.com/xgqfrms-GitHub/git-combine-history-commits/pull/2/commits/9e4f554210da2a089018c71ed18013e781e92bf1 add a review mess

  • GitHub Actions & GITHUB_TOKEN All In One2022-07-08 20:01:46

    GitHub Actions & GITHUB_TOKEN All In One Actions secrets # usage https://github.com/xgqfrms/GitHub-Actions-All-in-One/settings/secrets/actions step by step tutorials add https://github.com/xgqfrms/wcui/settings/secrets/actions new GIT_COM

  • js string format All In One2022-07-07 23:04:43

    js string format All In One /* String.prototype.format = function() { var s = this; for (var i = 0, j = arguments.length; i < j; i++) s = s.replace("{" + (i) + "}", arguments[i]); return (s); } */ String.prototy

  • js parser HTML template string to DOM element All In One2022-07-06 17:04:03

    js parser HTML template string to DOM element All In One DOMParser

  • rollup & package.json All In One2022-07-06 16:36:14

    rollup & package.json All In One $ npm install @rollup/plugin-json --save-dev $ yarn add -D @rollup/plugin-json import json from '@rollup/plugin-json'; export default { input: 'src/index.js', output: { dir: 'output&

  • iframe & contentDocument & contentWindow All In One2022-07-06 10:03:10

    iframe & contentDocument & contentWindow All In One js get iframe document content / js get iframe window contentDocument // const iframeDocument = document.getElementsByTagName("iframe")[0].contentDocument; const iframeDocument = doc

  • 庆祝香港回归祖国 25 周年大会 All In One2022-07-01 16:35:03

    庆祝香港回归祖国 25 周年大会 All In One refs http://www.news.cn/gangao/zt/hk25/index.htm ©xgqfrms 2012-2020 www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问! 原创文章,版权所有©️xgqfrms, 禁止转载

  • js Object.freeze All In One2022-06-26 01:01:39

    js Object.freeze All In One const obj = {a: 1, b: 2} // {a: 1, b: 2} const fobj = Object.freeze(obj); //{a: 1, b: 2} fobj.a; //1 fobj.a = 2; // 2 ❌ 无法修改属性的值 fobj; // {a: 1, b: 2} fobj.c = 3; // 3 ❌ 无法添加新的属性 fobj; // {a: 1, b: 2} Object

  • 浏览器 HTTP 缓存 All In One2022-06-24 17:31:13

    浏览器 HTTP 缓存 All In One 强缓存 & 协商缓存 HTTP Caching HTTP/1.1 304 Not Modified HTTP/1.1 200 OK https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching https://httpwg.org/specs/rfc9111.html caches 类型 private caches 私有缓存 私有缓存是绑定到特定客

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有