-
Updated
Jul 14, 2020 - Swift
reactive
Here are 1,649 public repositories matching this topic...
-
Updated
Jul 16, 2020 - TypeScript
The core documentation on how to make requests says to use xxxNow to make request from a client, but those methods are deprecated, e.g., getNow.
Hi all,
I recently migrate from Untyped actor to typed, but the Useful Test framework is not working anymore.
I cannot find any documentation of how to make works TestProbe and TestActorRefwith Akka actor Typed
Regards
-
Updated
Sep 17, 2019 - Java
This is to fix: Nozbe/WatermelonDB#186
Right now, deleting records is not very efficient in WatermelonDB.
Say you have models like this: Blog has_many Post has_many Comment. If you want to delete a blog post, you also have to delete all its posts, and all their comments. This happens one-by-one currently. What we need is the ability to efficiently (and atomically if
There is a document on the subject, but it's lacking in a few ways:
- It does not state what exactly the default placement strategy is.
- It does not state whether one can override the default strategy for all grains.
- It does not explain how each of the built-in strategies work ([random, prefer local,
看了fish-redux的todoList demo,发现里面连接全局状态的方法是使用visitor
visitor: (String path, Page<Object, dynamic> page) {
/// 只有特定的范围的 Page 才需要建立和 AppStore 的连接关系
/// 满足 Page<T> ,T 是 GlobalBaseState 的子类
if (page.isTypeof<GlobalBaseState>()) {
/// 建立 AppStore 驱动 PageStore 的单向数据连接
/// 1. 参数1 AppStore
/// 2. 参数2 当 AppStore.state 变化时, PageStore.state 该如何变化
Animated List
Background
I decided to test my effects without using the Angular TestBed because this should be faster then using the entire TestBed when I only want to test the effect in isolation (https://ngrx.io/guide/effects/testing#setup-without-testbed). I am using Jest as test runner.
Repro-Steps
Consider this simplified, generic approach I used.
it('should get data-
Updated
Jul 12, 2020
Since tslint is deprecated, we should migrate the project to use eslint with the typescript plugins instead.
This work has been (sort of) started in realm/realm-js#2794.
This issue probably belongs in some other repo, and as part of some larger effort, but starting here.
- Visit https://shiny.rstudio.com/tutorial/
- Start watching the training video (https://vimeo.com/131218530)
- Try to turn on captions, there aren't any
- Ditto, no doubt, for many other such assets
We definitely need to be adding captions to any new video materials we produce; I'll be l
I'm new in Akka and trying to self-define a dispatcher in my code. But there are so few akka dotnet examples available, and most of them are using config files..
Could I create a dispatcher in code, i.e., like the follows:
public Dispatcher myDispatcher = new Dispatcher(new DispatcherConfigurator(ConfigurationFactory.ParseString(@"akka.actor.default-dispatcher { type = ""Akka.Dispatch.TaskDisp
-
Updated
Jul 16, 2020 - TypeScript
Hi! I am just getting into ReactiveX but am really enjoying it so far. With 3.0 coming out a lot of the old code snippets are out of data and although it's not too difficult to transpose, a lot of the old examples don't cover things like creating Observable from scratch etc.
Are there any plans to work on some training material? If so, I would be happy to send across a list of things that would
Feature Request
Is your feature request related to a problem? Please describe
N/A
Describe the solution you'd like
Would it be possible to expose the erro
Motivation
Some IDEs like IntelliJ don't display the javadoc custom tags at all in their javadoc popup.
As a consequence, discovering information about the discard and continue support might be difficult.
Searching the HTML version or the source to look for information about support might still be acceptable, but the tags should not be the only places where eg. a caveat or structuring im
According to the generated build
The commands to launch are the following :
docker pull andypetrella/spark-notebook:0.7.0-scala-2.11.8-spark-2.1.1-hadoop-2.7.2-with-hive
docker run -p 9001:9001 andypetrella/spark-notebook:0.7.0-scala-2.11.8-spark-2.1.1-hadoop-2.7.2-with-hive
Using that image (and I think it i
I am struggling to test a verticle isolated and all documentation and examples found only show how to test rest endpoints.
Something as simple as this, always fails with timeout
@Rule
public RunTestOnContext rule = new RunTestOnContext();
@Rule
public Timeout timeout = Timeout.seconds(5L);
@Test
public void should_run_verticle(TestContext context) {-
Updated
Jul 25, 2019 - JavaScript
-
Updated
Jul 15, 2020 - TypeScript
I'm planning on building an app that needs to be SEO friendly, do we have a guide to implement SSR with effector?
The idea is to be able to write the following to override the log configuration in dev-mode.
lagomDevSettings ++= Seq(
"logger.resource" -> "logback-dev.xml"
)Currently, you are not able to use middleware per handler in "clean way" (you can still manually wrap the handler function, or have separated router).
It would be nice to be able to add middleware per handler.
As a good reference point, you can use chi router: https://github.com/go-chi/chi
This should be a really easy one, but I can't seem to find a solution. How do you secure content registered with StaticContentSupport? I'd like to have /protected static content and open static content, with Routing looking something like this:
return Routing.builder()
.register(WebSecurity.create(getSecurity()))
.register("/protected", StaticContentSupport.builder(protectedPath).welcomeFil
-
Updated
Jul 7, 2020 - Swift
Improve this page
Add a description, image, and links to the reactive topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the reactive topic, visit your repo's landing page and select "manage topics."


In #10199 we added symbolic methods to TypeMap, but as signaled by @NthPortal we should avoid this.
Triggered by:
I'm a bit late to the party here, but multiple (non-implicit) parameters to a symbolic/infix method are highly discouraged, and planned to be deprecated. See scala/scala-dev#496 and lampepfl/dotty#4311 (comment).
_Originally posted by @n