- Test WCE
- ISSUE with creating a user locally on API / DB to allow testing.
- Get an access token for the DB.
- Test API can sort channels by these fields (maybe use API explorer)
- update UI defaults (the defaults in API have already been updated) for channel to have platform: stb and group: leads and subscribers, when no data for platform and UG (say, old channel) is provided by API.
- Test API can sort channels by these fields (maybe use API explorer)
This file contains 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
const PASS = ['32']; // green | |
const FAIL = ['31', '1']; // red, bold | |
function logStyle(ansiEscapeCodes, text) { | |
console.log(`\x1b[${ansiEscapeCodes.join(';')}m${text}\x1b[0m`); | |
} | |
class Tester { | |
constructor() {} |
This file contains 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
{ | |
"followers": [ | |
{ | |
"login": "rubys", | |
"id": 4815, | |
"node_id": "MDQ6VXNlcjQ4MTU=", | |
"avatar_url": "https://avatars1.githubusercontent.com/u/4815?v=4", | |
"gravatar_id": "", | |
"url": "https://api.github.com/users/rubys", | |
"html_url": "https://github.com/rubys", |
This file contains 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
/** very simple spreadsheet idea. try 1 **/ | |
function link(cell, transform) { | |
let el; | |
return R` | |
${key:cell.key} | |
<td class=cell> | |
<input bond=${e => el = e} input=${el.value = transform(el.value)}> | |
</td> | |
`; |
This file contains 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
// select widget | |
// window open | |
// alert / confirm / prompt | |
// permission request | |
the places where the browser platform bleeds into the "rest of the world" / the "outside world" / the "other platforms" / native / etc | |
This file contains 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
How to make a ? | |
- better native? | |
Use browser native, | |
window.open, select, alert, confirm, prompt, file, print. | |
OR |
This file contains 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
canvas with circles no overlap | |
each circle has text or image inside | |
clicking a circle moves it to page center and keeps other circles in same position around it | |
scrolling vertically we move over regions of circles chronologically more distant in time |
This file contains 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
// api tests | |
function * on() { | |
while(true) { | |
select( | |
option('plan1'), | |
option('plan2'), | |
option('plan3') | |
); | |
const [select, input] = yield 'input'; |
This file contains 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
// r.js | |
// imports | |
import {CODE,BROWSER_SIDE} from './common.js'; | |
import {S} from './ssr.js'; | |
import T from './types.js'; | |
// backwards compatible alias | |
const skip = markup; | |
const attrskip = attrmarkup; |