(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
<TEMPLATE> | |
<INSTRUCTIONS> | |
Use the <CODEBASE> code as reference, and convert the high-level <TASK> into a set of very detailed step-by-step instructions that an AI coding agent can complete. | |
Only includes steps an AI coding agent can take. Do not include testing or any other work a human would do to confirm the task has been completed. | |
ALWAYS have the agent run a build when it is complete. Be specific and decisive about what the agent should do. | |
Do not include any additional meta instructions to the user. Use markdown formatting. | |
</INSTRUCTIONS> | |
<TASK> |
{"lastUpload":"2020-02-05T09:01:09.961Z","extensionVersion":"v3.4.3"} |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
{ | |
"images": [ | |
{ | |
"extent": "full-screen", | |
"idiom": "iphone", | |
"filename": "[email protected]", | |
"minimum-system-version": "7.0", | |
"orientation": "portrait", | |
"scale": "2x", | |
"subtype": "retina4" |
{
"AngularJS Component": {
"prefix": "ngc",
"description": "AngularJS component",
"body": [
"export class ${1:Component}Controller implements ng.IComponentController {",
"\n\tstatic \\$inject: string[] = ['\\$q', '\\$location', '\\$routeParams', 'dataService'];\n",
"\t$0\n",
"\tconstructor(",
function wxRefresh() {
var replaceQueryParam = (param, newval, search) => {
var regex = new RegExp('([?;&])' + param + '[^&;]*[;&]?');
var query = search.replace(regex, '$1').replace(/&$/, '');
return (query.length > 2 ? query + '&' : '?') + (newval ? param + '=' + newval : '');
};
window.location.replace(location.protocol +
var iframe = document.createElement('iframe');
document.body.appendChild(iframe);
xArray = window.frames[window.frames.length-1].Array;
var arr = new xArray(1,2,3); // [1,2,3]
// Boom!
arr instanceof Array; // false
// Boom!
function quicksort(head,...tail) { | |
if (!head) return []; | |
return quicksort(...tail.filter( _ => _ <= head)) | |
.concat([head]) | |
.concat(quicksort(...tail.filter( _ => _ > head ))) | |
} | |
// 传入参数quicksort(1,4,2,3)或quicksort(...[1,4,2,3]) |