A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.
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
| # AFF | |
| # 如果你想支持我,可以通过我的邀请链接购买机场 | |
| # 感谢支持 | |
| # 1. 倾城极速 邀请码: 0jiB5uAA https://qcjs.ovh/#/register?code=0jiB5uAA | |
| # 2. superbiu 邀请码: fACfjKC8 https://superbiu.com/#/register?code=fACfjKC8 | |
| # 一定要填我的邀请码,不填我哭给你看😭 | |
| # mihomo (Clash Meta) 懒人配置 | |
| # 版本 V1.22-250718 | |
| # https://gist.github.com/liuran001/5ca84f7def53c70b554d3f765ff86a33 |
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
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
These rules are adopted from the AngularJS commit conventions.
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
| cfhdojbkjhnklbpkdaibdccddilifddb Adblock Plus 10000000 | |
| gighmmpiobklfepjocnamgkkbiglidom AdBlock 10000000 | |
| efaidnbmnnnibpcajpcglclefindmkaj Adobe Acrobat 10000000 | |
| gomekmidlodglbbmalcneegieacbdmki Avast Online Security 10000000 | |
| eofcbnmajmjmplflapaojjnihcjkigck Avast SafePrice 10000000 | |
| chfdnecihphmhljaaejmgoiahnihplgn AVG Web TuneUp 10000000 | |
| flliilndjeohchalpbbcdekjklbdgfkk Avira Browser Safety 10000000 | |
| gpdjojdkbbmdfjfahjcgigfpmkopogic Pin It Button 10000000 | |
| lifbcibllhkdhoafpjfnlhfpfgnpldfl Skype 10000000 | |
| mallpejgeafdahhflmliiahjdpgbegpk FromDocToPDF 9298905 |
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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <body> | |
| <script src="http://d3js.org/d3.v2.min.js?2.10.0"></script> | |
| <script> | |
| var width = 960, | |
| height = 700; | |
| var svg = d3.select("body").append("svg") |
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
| // `promise` is some operation that may succeed (fulfill) or fail (reject) | |
| var newPromise = promise.then( | |
| function () { | |
| return delay(1000); | |
| }, | |
| writeError | |
| ); | |
| // If `promise` fulfills, `newPromise` will fulfill in 1000 ms. | |
| // If `promise` rejects and writing to the error log succeeds, |
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
| Q = require 'q' | |
| HTTP = require 'q-http' | |
| httpReadRetry = (url, timeout, times) -> | |
| HTTP.read(url).then( | |
| (content) -> | |
| {content} | |
| ,(error) -> | |
| if times is 0 | |
| throw new Error 'Cant read #{JSON.stringify(url)}' |
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
| #!/usr/bin/env python | |
| #encoding=utf-8 | |
| # Hacker Need Food! | |
| import json | |
| import os | |
| import sys | |
| from optparse import OptionParser | |
| import urllib, urllib2, cookielib |
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 getJSON(aUrl,sheetname) { | |
| //var sheetname = "test"; | |
| //var aUrl = "http://pipes.yahoo.com/pipes/pipe.run?_id=286bbb1d8d30f65b54173b3b752fa4d9&_render=json"; | |
| var response = UrlFetchApp.fetch(aUrl); // get feed | |
| var dataAll = Utilities.jsonParse(response.getContentText()); // | |
| var data = dataAll.value.items; | |
| for (i in data){ | |
| data[i].pubDate = new Date(data[i].pubDate); | |
| data[i].start = data[i].pubDate; | |
| } |
NewerOlder