This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Formily LLM 文档 | |
| ## 核心文档 | |
| --- | |
| title: Formily - 阿里巴巴统一前端表单解决方案 | |
| order: 10 | |
| hero: | |
| title: Alibaba Formily | |
| desc: 阿里巴巴统一前端表单解决方案 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| PRODID:-//Custom Calendar//mxm.dk// | |
| BEGIN:VEVENT | |
| SUMMARY:火车票提醒 - 订票日期: 2023-12-31 | |
| DTSTART;VALUE=DATE-TIME:20231217T035000Z | |
| DTEND;VALUE=DATE-TIME:20231217T081000Z | |
| DTSTAMP;VALUE=DATE-TIME:20240416T052334Z | |
| UID:2023-12-17-weiainijiujiu@126.com | |
| END:VEVENT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* @flow */ | |
| import type Watcher from './watcher' | |
| import { remove } from '../util/index' | |
| import config from '../config' | |
| let uid = 0 | |
| /** | |
| * A dep is an observable that can have multiple |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try { | |
| module.exports = Promise | |
| } catch (e) {} | |
| function Promise(executor) { | |
| var self = this | |
| self.data = undefined | |
| self.status = 'pending' | |
| self.onResolvedCallbacks = [] | |
| self.onRejectedCallbacks = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name=0 | |
| for files in `ls` | |
| do | |
| # 指定后缀名 | |
| hname=".mp4" | |
| # 指定文件名(这里采用加1的方式) | |
| name=$(echo "$name + 1"|bc) | |
| # 拼接成完整文件名 | |
| filename=$name$hname | |
| # 修改文件名 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package sort; | |
| import edu.princeton.cs.algs4.In; | |
| import edu.princeton.cs.algs4.StdOut; | |
| public class sortTemplate<T>{ | |
| public static void sort(Comparable[] a){ | |
| } | |
| public static void exch(Comparable[] a, int i, int j){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // check whether current browser encodes a char inside attribute values | |
| function shouldDecode (content, encoded) { | |
| var div = document.createElement('div'); | |
| div.innerHTML = "<div a=\"" + content + "\"/>"; | |
| return div.innerHTML.indexOf(encoded) > 0 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @border-base-color:#cccccc; | |
| .hide{ | |
| display: none; | |
| } | |
| .show{ | |
| display: block; | |
| } | |
| .fl{ | |
| float: left; | |
| display: inline; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| if (!Event.prototype.preventDefault) { | |
| Event.prototype.preventDefault=function() { | |
| this.returnValue=false; | |
| }; | |
| } | |
| if (!Event.prototype.stopPropagation) { | |
| Event.prototype.stopPropagation=function() { | |
| this.cancelBubble=true; | |
| }; |
NewerOlder