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
{ | |
"@context": { | |
"name": "https://openintegrity.org/ns", | |
"entry": "https://openintegrity.org/ns/entry", | |
"platform": "https://openintegrity.org/ns/platform", | |
"score": "https://openintegrity.org/ns/score", | |
"policy": { | |
"@id":"https://openintegrity.org/ns/policy", | |
"@type": "https://openintegrity.org/ns/score/value" | |
}, |
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
npm test 11:47:10 | |
> [email protected] test .../tests | |
> chimp --offline --debug --host=seleniumhub.myhost.org --port=4444 --noSessionReuse | |
[chimp] loaded .../tests/chimp.js | |
[chimp] Chimp options are { watch: false, | |
watchTags: '@watch,@focus', | |
domainSteps: null, | |
e2eSteps: null, |
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
make devstack.provision | |
./provision.sh | |
Creating network "devstack_default" with the default driver | |
Creating volume "devstack_mysql_data" with default driver | |
Creating volume "devstack_mongo_data" with default driver | |
Creating volume "devstack_elasticsearch_data" with default driver | |
Creating edx.devstack.mysql | |
Creating edx.devstack.mongo | |
Waiting for MySQL | |
........MySQL ready |
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
# make devstack.provision | |
./provision.sh | |
Creating network "devstack_default" with the default driver | |
Creating volume "devstack_mysql_data" with default driver | |
Creating volume "devstack_mongo_data" with default driver | |
Creating volume "devstack_elasticsearch_data" with default driver | |
Creating edx.devstack.mongo | |
Creating edx.devstack.mysql | |
Waiting for MySQL | |
........MySQL ready |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>items</key> | |
<array> | |
<dict> | |
<key>assets</key> | |
<array> | |
<dict> |
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
more /Users/jmatsushita/Library/Developer/CoreSimulator/Devices/D217D90E-9017-43C6-8FA3-E17C1870E7B0/data/tmp/detox.last_launch_app_log.err | |
dyld: loaded: /Users/jmatsushita/Library/Developer/CoreSimulator/Devices/D217D90E-9017-43C6-8FA3-E17C1870E7B0/data/Containers/Bundle/Application/6962C310-5B38-4212-A5F9-012A660636DC/example.app/example | |
dyld: loaded: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++.1.dylib | |
dyld: loaded: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation | |
dyld: loaded: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib | |
dyld: loaded: /Applications/Xcode. |
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
module Main where | |
import Prelude | |
import Effect (Effect) | |
import Data.Foldable (fold) | |
import TryPureScript (h1, text, render) | |
data Nat m n = Nat (m ~> n) |
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
module Main where | |
import Prelude | |
import Effect (Effect) | |
import Data.Foldable (fold) | |
import TryPureScript (h1, text, render) | |
data Nat m n = Nat (m ~> n) | |
data NatR m n = NatR { nat :: (m ~> n) } |
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
module Main where | |
import Prelude | |
import Effect (Effect) | |
import Data.Foldable (fold) | |
import TryPureScript (h1, text, render) | |
data Nat m n = Nat (m ~> n) | |
data NatR m n = NatR { nat :: (m ~> n) } |
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
Comonadic explorations | |
- Is day convolution as comonadic composition really free? What's the difference with Kenneth's Distribute based composition? | |
- How do specific comonads compose? | |
- cursors -> apart | |
- The cursor like intuition, extended to a range, starts feeing exactly like a lens !? | |
- If the data space has this comonadic structure, how does it compose with the ui components? | |
- If we can model time also as a comonadic cofree module/pattern, how do we sync with an event loop? Seems like the shape of the time dimension(s?) define a clock type!!! Actions are a time dimension :O ?!? I think that's also the coeffect/effect dimension (tricky with cursors on data, does it depends on whether a query is sent or should we abstract that out?). | |
- Chris's Zippers feel like Pairing |