Trending repository
-
Updated
Aug 29, 2021 - Jupyter Notebook
November 01, 2021 - December 01, 2021 • Online
Open source projects built in or receiving significant contributions from India :india:
Cloudback secures your GitHub repositories with recurrent data backups.
Right now any StyleSheet
has a list of functions without a default implementation. Implementing a StyleSheet
is really annoying, because you have to override all of the functions and not just the thing you want to change.
I recently wanted to just change the border_radius of a text_input and I had to write the following code.
impl StyleSheet for Styles {
fn active(&self) ->
This is a reminder for me or a task if anyone wants :P
Basically, The last two questions aren't really regex's questions.
To do:
TBH these white splashes are quite painful.
This usercss helps:
.tox .tox-dialog-wrap__backdrop {
background-color: #303030 !important;
}
Though I think that should work out of the box. Could you fix that?
Thanks
<img width="1533" alt="Screenshot 2021-08-14 at 16 01 35" src="https://user-images.githubusercontent.com/295225/129450537-77840706-6909-446a-8aaa-d8c0cee81b1
We need to use reset_sortable_fields
instead of the current set_sortable_fields
.
There is no impact on the usage, only on the code base consistency
The new GrpcDataRuntime (https://github.com/jina-ai/jina/blob/master/jina/peapods/runtimes/grpc/__init__.py) does not support sharding at the moment. Thus a Flow should not specify this runtime and a sharded pod at the same time.
Right now this will not raise any error, but silently produce unexpected behavior. This is undesirable and the Flow should rather check this condition and raise an app
Windows developers use AppVeyor to continuously run their tests and deploy apps to cloud or on-premise environments. AppVeyor CI can update the build status on your GitHub pull requests, upload build artifacts to project release and deploy successful builds. AppVeyor is not just a build tool, but it's the place of Windows CI knowledge accumulation - thanks to AppVeyor's vibrant community!
We badly started implementing some props mutation.
There are usually two cases:
propsData
Solution 1
Migrate the propsData (usually initial-states) to the root
.vue
file away from the.js
entry pointSolution 2
Use a sync modifier and change the data flow according to vue documentations