草庐IT

coffee-script-source

全部标签

Meet Pan Juan, The Only Female Apache Member in China: How an Open-Source Project Grows from

"It'salrighttofollowtheApacheWay,butfindingMyWayisessentialaswell."–PanJuanApacheShardingSphere,atopApacheprojectandthefirstdatabasemiddlewareoftheApacheSoftwareFoundation,isgainingwiderinfluenceinChinaandabroad.Inthisarticle,weinvitedMs.PanJuan(TristaPan),thecorefoundingmemberofApacheShardingSphere

Meet Liu Yu from StreamNative: My Growth Path to Open Source in China

AsopensourcegainedpopularityinChinain2016,theemergenceofthecountry'sfirstopen-sourceprojectsandstartupshelpedtomakethetermmorevisible.Thatyear,LiuYu,whograduatedmerely12monthsearlier,wasintroducedtoopensourcebyaccidentandgraduallytransformedintoanopen-sourceprofessionalalongtheway.Inthisarticle,wein

Meet Liu Yu from StreamNative: My Growth Path to Open Source in China

AsopensourcegainedpopularityinChinain2016,theemergenceofthecountry'sfirstopen-sourceprojectsandstartupshelpedtomakethetermmorevisible.Thatyear,LiuYu,whograduatedmerely12monthsearlier,wasintroducedtoopensourcebyaccidentandgraduallytransformedintoanopen-sourceprofessionalalongtheway.Inthisarticle,wein

Alibaba Koordinator: An Open Source and Cloud Native Hybrid Deployment System

OnApril6,2022,Koordinator,Alibaba'scloud-nativehybriddeploymenttechnology,declareditsofficialopensource.Aspertheintroduction,KoordinatorhasbeenutilizedinAlibaba'slarge-scaleapplicationsformanyyearsandplayedavitalroleintheNovember 11OnlineShoppingFestivalin2021,whichreducednearly50percentofcomputinge

Alibaba Koordinator: An Open Source and Cloud Native Hybrid Deployment System

OnApril6,2022,Koordinator,Alibaba'scloud-nativehybriddeploymenttechnology,declareditsofficialopensource.Aspertheintroduction,KoordinatorhasbeenutilizedinAlibaba'slarge-scaleapplicationsformanyyearsandplayedavitalroleintheNovember 11OnlineShoppingFestivalin2021,whichreducednearly50percentofcomputinge

使用Fody时,CS-SCRIPT动态代码无法找到程序集

FODY会将相关的程序集处理成资源文件,CS_SCRIPT强制要求引用的程序集必须是文件@@@codepublic overrideIEvaluatorReferenceAssembly(Assemblyassembly) { if (assembly!=null)//thischeckisneededwhentryingtoloadpartialnameassembliesthatresultinnull { if (assembly.Location.IsEmpty()) th

使用Fody时,CS-SCRIPT动态代码无法找到程序集

FODY会将相关的程序集处理成资源文件,CS_SCRIPT强制要求引用的程序集必须是文件@@@codepublic overrideIEvaluatorReferenceAssembly(Assemblyassembly) { if (assembly!=null)//thischeckisneededwhentryingtoloadpartialnameassembliesthatresultinnull { if (assembly.Location.IsEmpty()) th

Java Script 原型链原理与继承

所有对象都有隐式原型;原型也是对象,也有隐式原型.functionUser(){}console.log(User.prototype);functionUser(){}varu=newUser();console.log(u.hasOwnProperty);Object.prototype.hasOwnProperty因为Object的原型上有这个函数,所以同一条原型链上的u1也能使用它.console.log(u.hasOwnProperty===Object.prototype.hasOwnProperty);Object.prototype.a=1;functionUser(){}va

Java Script 原型链原理与继承

所有对象都有隐式原型;原型也是对象,也有隐式原型.functionUser(){}console.log(User.prototype);functionUser(){}varu=newUser();console.log(u.hasOwnProperty);Object.prototype.hasOwnProperty因为Object的原型上有这个函数,所以同一条原型链上的u1也能使用它.console.log(u.hasOwnProperty===Object.prototype.hasOwnProperty);Object.prototype.a=1;functionUser(){}va

Java Script 循环,数组,对象,判断,阶乘,查找-综合运用合集

 输出100个helloworld.for(vari=1;iconsole.log("helloworld");}创建一个包含1~100的数组.vararray=[];for(vari=1;iarray.push(i);}console.log(array);定义一个数组,遍历输出它的每一项.vararray=[55,45,77,88,99,101,120];for(vari=0;iconsole.log(array[i]);}输出1-100的所有奇数.for(vari=1;iif(i%2!==0){console.log(i);}}定义一个数组,输出数组中所有的奇数.vararray=[44