repo_name
stringlengths 4
136
| issue_id
stringlengths 5
10
| text
stringlengths 37
4.84M
|
---|---|---|
dotnet/efcore | 677420960 | Title: Improve .Find() and .Load() performance
Question:
username_0: - [ ] Create benchmarks
- [ ] Simple/composite keys
- [ ] Reference/collection/many-to-many navigations
- [ ] Replace usage of `ValueBuffer` with `object[]` or embed the values in the query directly
- [ ] Cache/precompile the generated queries
Answers:
username_1: Related: #6105 |
Boscop/web-view | 379798226 | Title: Transparent frame doesn't work anymore on latest webview-sys's commit
Question:
username_0: Hey there,
The full window transparency doesn't work anymore on https://github.com/zserge/webview 's latest commit.
It used to work with an old revision:
```bash
cd webview-sys/webview
git checkout 02aa1dcf62a15f2c1e2197a07642e9c474ac32fa
```
FYI with the latest commit:
<img width="807" alt="screenshot 2018-11-12 14 17 10" src="https://user-images.githubusercontent.com/1245245/48352851-cb42ed80-e685-11e8-885f-21dd783eb811.png">
But should be (the frame is over my terminal):
<img width="782" alt="screenshot 2018-11-12 14 17 42" src="https://user-images.githubusercontent.com/1245245/48352862-d564ec00-e685-11e8-8aa9-37098eb5d8a7.png">
Which is useful to make beautiful HTML widgets.
Answers:
username_1: I can still reproduce this behavior. Is there a workaround to create transparent windows? |
e7-tools/gear-reader | 765660590 | Title: Changing rating formula
Question:
username_0: Henlo, thanks for your hard work with this OCR
Can you make some changes to the formula?
HP = 500 = 1%, Attack = 100 = 1% is unfair and does not accurately represent the values of flats. While mostly undesirable, flat stats should be converting to the "average" equivalent of % values.
Same for def flats, which are scoring a total of 0 on your dashboard.
For gears with pentarolled flat defense values,[ such as this ](https://media.discordapp.net/attachments/744027442477400084/787791262186471424/Screenshot_20201213-132046.jpg?width=698&height=702), rating it a total of 0 despite having a significant impact to eHP isn't an accurate rating.
[Using this user's sheet for base stats at level 60: ](https://docs.google.com/spreadsheets/d/1gULlfAl4PODjdsPbYz787W9CKxIGukKiXTbYm1RHoc4/edit#gid=1497660014)
The average stats across the board are:
Attack: 988.1935
HP: 5387.548
Def: 607.871
In which case, we should account the flat stats as:
Attack = 100 = 10.1%
HP = 500 = 9.2%
Def = 100 = 16.67% |
facebook/prophet | 295170978 | Title: trend rate changepoint plot in documentation example
Question:
username_0: I am using python implementation. Really appreciate all the work that has been put into prophet. In the documentation on changepoints do you have code examples to create the first two plots that you can share?
thanks
Answers:
username_1: All of the documentation is generated from IPython notebooks, so it is available here:
https://github.com/facebook/prophet/blob/master/notebooks/trend_changepoints.ipynb
Those particular figures were generated only in Python but if you need them in R I hope the translation should be fairly straightforward. Actually in the v0.3 branch here, the R version has a tool for layering the locations of significant changepoints that may also be of interest if you need it in R: https://github.com/facebook/prophet/blob/v0.3/R/R/utils.R
Status: Issue closed
username_0: thanks for the speedy response |
netsiphd/netrd | 452620442 | Title: docs broken for NonBacktrackingSpectral
Question:
username_0: relevant snippet from the docs build:
```
reading sources... [100%] utilities
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute N
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute o
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute n
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute B
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute a
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute c
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute k
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute t
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute r
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute a
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute c
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute k
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute i
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute n
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute g
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute S
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute p
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute e
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute c
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute t
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute r
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute a
WARNING: missing attribute mentioned in :members: or __all__: module netrd.distance, attribute l
```<issue_closed>
Status: Issue closed |
TencentCloudBase/cloudbase-templates | 1084033121 | Title: 你好,模板 `uni-app-starter` 不存在,可以建一个吗
Question:
username_0: 你好,模板 `uni-app-starter` 不存在,可以建一个吗?
采用uniapp+cloudbase模式
Answers:
username_1: uniapp 这里依赖 unicloud 自己开通云服务,使用CLI的体验不是很好
Status: Issue closed
username_0: Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you authored the thread.Message ID: ***@***.***> |
willowtreeapps/assertk | 558724146 | Title: IDEA: new string assertions
Question:
username_0: hi all, i've got some ideas around new assertions:
* String.isBase64Encoded
* String.isUuid
* String.isUrl
* String.isOffsetDateTime
* String.isLocalDateTime
what do you think? any feedback would be highly appreciated.
~christoph
```kotlin
private val BASE64_PATTERN = Pattern.compile("^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)?\$")
fun Assert<String>.isBase64Encoded() {
given { actual ->
if (BASE64_PATTERN.matcher(actual).matches()) return
expected("to be valid Base64 encoded but was: ${show(actual)}")
}
}
fun Assert<String>.isUuid() {
given {
try {
UUID.fromString(it)
} catch (e: IllegalArgumentException) {
expected("to be a valid UUID: ${e.message}")
}
}
}
fun Assert<String>.isUrl() {
given {
try {
URL(it)
} catch (e: MalformedURLException) {
expected("to be a valid URL: ${e.message}")
}
}
}
fun Assert<String>.isOffsetDateTime() {
given {
try {
OffsetDateTime.parse(it, DateTimeFormatter.ISO_OFFSET_DATE_TIME)
} catch (e: DateTimeParseException) {
expected("to be a valid ISO offset date time (2019-12-25T17:04:38.59Z): '$it'")
}
}
}
fun Assert<String>.isLocalDateTime() {
given {
try {
LocalDateTime.parse(it, DateTimeFormatter.ISO_LOCAL_DATE_TIME)
} catch (e: DateTimeParseException) {
expected("to be a valid ISO local date time (2019-12-25T17:04:38.59): '$it'")
}
}
}
```
Answers:
username_1: Hm, not really a fan of these, I feel like it encourages having stringly typed values instead of storing stuff in those actual types. Wouldn't be against having new assertions on `URL`, `LocalDateTime` etc though.
username_0: i see your point, and agree: our models should have proper types, rather than going for "stringly types" 😆
the reason why i am in need of those is because of writing integration tests against generated data transfer objects (based on JSON) whose types are basically all strings (or numbers/booleans).
if this still goes against the philosophy of assertk, i fully understand. in that case => issue closed 😉
username_1: Json integration tests is an interesting problem space that I don't think assertk is really equipped for, at least not in the core. I'd advise you to look at solutions like [pact](https://github.com/pact-foundation) which imo solve the problem in a better, more useful way.
username_0: thanks for the hint regarding pact, looks good.
"at least not in the core" ... which might be an indicator to have other assertk libs around the core (like hamcrest is doing it).
Status: Issue closed
|
dart-lang/sdk | 530022790 | Title: Compiler error reported
Question:
username_0: Error compiling dartdevc module:casatunes|web/main.ddc.js
We're sorry, you've found a bug in our compiler.
You can report this bug at:
https://github.com/dart-lang/sdk/issues/labels/web-dev-compiler
Please include the information below in your report, along with
any other information that may help us track it down. Thanks!
-------------------- %< --------------------
dartdevc -k arguments: --dart-sdk-summary=/usr/local/Cellar/dart/2.6.1/libexec/lib/_internal/ddc_sdk.dill --modules=amd --no-summarize -o web/main.ddc.js --source-map --summary=packages/meta/meta.ddc.dill=packages/meta/meta --summary=packages/collection/src/utils.ddc.dill=packages/collection/src/utils --summary=packages/collection/src/algorithms.ddc.dill=packages/collection/src/algorithms --summary=packages/collection/src/iterable_zip.ddc.dill=packages/collection/src/iterable_zip --summary=packages/collection/src/comparators.ddc.dill=packages/collection/src/comparators --summary=packages/collection/src/priority_queue.ddc.dill=packages/collection/src/priority_queue --summary=packages/collection/src/canonicalized_map.ddc.dill=packages/collection/src/canonicalized_map --summary=packages/collection/collection.ddc.dill=packages/collection/collection --summary=packages/logging/logging.ddc.dill=packages/logging/logging --summary=packages/path/path.ddc.dill=packages/path/path --summary=packages/stack_trace/src/chain.ddc.dill=packages/stack_trace/src/chain --summary=packages/meta/dart2js.ddc.dill=packages/meta/dart2js --summary=packages/angular/src/core/change_detection/change_detection.ddc.dill=packages/angular/src/core/change_detection/change_detection --summary=packages/angular/src/core/application_tokens.ddc.dill=packages/angular/src/core/application_tokens --summary=packages/angular/core.ddc.dill=packages/angular/core --summary=packages/angular/di.ddc.dill=packages/angular/di --summary=packages/angular/src/core/change_detection/change_detection.template.ddc.dill=packages/angular/src/core/change_detection/change_detection.template --summary=packages/angular/di.template.ddc.dill=packages/angular/di.template --summary=packages/intl/date_symbols.ddc.dill=packages/intl/date_symbols --summary=packages/intl/number_symbols.ddc.dill=packages/intl/number_symbols --summary=packages/intl/number_symbols_data.ddc.dill=packages/intl/number_symbols_data --summary=packages/intl/src/plural_rules.ddc.dill=packages/intl/src/plural_rules --summary=packages/intl/intl.ddc.dill=packages/intl/intl --summary=packages/angular/src/core/application_tokens.template.ddc.dill=packages/angular/src/core/application_tokens.template --summary=packages/angular/core.template.ddc.dill=packages/angular/core.template --summary=packages/js/js_util.ddc.dill=packages/js/js_util --summary=packages/js/js.ddc.dill=packages/js/js --summary=packages/angular/src/bootstrap/modules.ddc.dill=packages/angular/src/bootstrap/modules --summary=packages/angular/angular.ddc.dill=packages/angular/angular --summary=packages/angular_components/interfaces/has_disabled.ddc.dill=packages/angular_components/interfaces/has_disabled --summary=packages/angular/src/bootstrap/run.template.ddc.dill=packages/angular/src/bootstrap/run.template --summary=packages/angular/angular.template.ddc.dill=packages/angular/angular.template --summary=packages/angular_components/model/ui/icon.ddc.dill=packages/angular_components/model/ui/icon --summary=packages/angular_components/material_icon/material_icon.ddc.dill=packages/angular_components/material_icon/material_icon --summary=packages/angular_components/utils/browser/feature_detector/feature_detector.ddc.dill=packages/angular_components/utils/browser/feature_detector/feature_detector --summary=packages/angular_components/utils/browser/events/events.ddc.dill=packages/angular_components/utils/browser/events/events --summary=packages/quiver/strings.ddc.dill=packages/quiver/strings --summary=packages/angular_components/utils/angular/properties/properties.ddc.dill=packages/angular_components/utils/angular/properties/properties --summary=packages/angular_components/mixins/has_tab_index.ddc.dill=packages/angular_components/mixins/has_tab_index --summary=packages/angular_components/utils/disposer/disposer.ddc.dill=packages/angular_components/utils/disposer/disposer --summary=packages/angular_components/utils/disposer/disposable_callback.ddc.dill=packages/angular_components/utils/disposer/disposable_callback --summary=packages/angular_components/utils/rate_limit_utils/rate_limit_utils.ddc.dill=packages/angular_components/utils/rate_limit_utils/rate_limit_utils --summary=packages/angular_components/src/utils/async/async_update_scheduler.ddc.dill=packages/angular_components/src/utils/async/async_update_scheduler --summary=packages/angular_components/utils/async/async.ddc.dill=packages/angular_components/utils/async/async --summary=packages/angular_components/utils/browser/dom_service/dom_service.ddc.dill=packages/angular_components/utils/browser/dom_service/dom_service --summary=packages/angular_components/src/laminate/enums/base.ddc.dill=packages/angular_components/src/laminate/enums/base --summary=packages/angular_components/laminate/enums/position.ddc.dill=packages/angular_components/laminate/enums/position --summary=packages/angular_components/laminate/enums/visibility.ddc.dill=packages/angular_components/laminate/enums/visibility --summary=packages/angular_components/src/laminate/ruler/ruler_interface.ddc.dill=packages/angular_components/src/laminate/ruler/ruler_interface --summary=packages/angular_components/laminate/ruler/dom_ruler.ddc.dill=packages/angular_components/laminate/ruler/dom_ruler --summary=packages/angular_components/focus/focus_interface.ddc.dill=packages/angular_components/focus/focus_interface --summary=packages/angular_components/annotations/rtl_annotation.ddc.dill=packages/angular_components/annotations/rtl_annotation --summary=packages/angular_components/laminate/enums/alignment.ddc.dill=packages/angular_components/laminate/enums/alignment --summary=packages/angular_components/src/laminate/popup/dom_popup_source.ddc.dill=packages/angular_components/src/laminate/popup/dom_popup_source --summary=packages/angular_components/laminate/overlay/constants.ddc.dill=packages/angular_components/laminate/overlay/constants --summary=packages/quiver/core.ddc.dill=packages/quiver/core --summary=packages/dart_internal/extract_type_arguments.ddc.dill=packages/dart_internal/extract_type_arguments --summary=packages/observable/observable.ddc.dill=packages/observable/observable --summary=packages/angular_components/utils/angular/reference/reference.ddc.dill=packages/angular_components/utils/angular/reference/reference --summary=packages/angular_components/src/laminate/popup/popup_hierarchy.ddc.dill=packages/angular_components/src/laminate/popup/popup_hierarchy --summary=packages/angular_components/laminate/popup/popup.ddc.dill=packages/angular_components/laminate/popup/popup --summary=packages/angular_components/content/deferred_content_aware.ddc.dill=packages/angular_components/content/deferred_content_aware --summary=packages/angular_components/utils/angular/imperative_view/imperative_view.ddc.dill=packages/angular_components/utils/angular/imperative_view/imperative_view --summary=packages/angular_components/laminate/portal/portal.ddc.dill=packages/angular_components/laminate/portal/portal --summary=packages/angular_components/laminate/overlay/zindexer.ddc.dill=packages/angular_components/laminate/overlay/zindexer --summary=packages/angular_components/src/laminate/overlay/overlay_ref.ddc.dill=packages/angular_components/src/laminate/overlay/overlay_ref --summary=packages/angular_components/laminate/overlay/overlay.ddc.dill=packages/angular_components/laminate/overlay/overlay --summary=packages/angular_components/src/laminate/components/modal/modal_controller_directive.ddc.dill=packages/angular_components/src/laminate/components/modal/modal_controller_directive --summary=packages/angular_components/src/model/action/async_action.ddc.dill=packages/angular_components/src/model/action/async_action --summary=packages/angular_components/model/action/async_action.ddc.dill=packages/angular_components/model/action/async_action --summary=packages/angular_components/laminate/components/modal/modal.ddc.dill=packages/angular_components/laminate/components/modal/modal --summary=packages/angular_components/focus/focus.ddc.dill=packages/angular_components/focus/focus --summary=packages/angular_components/button_decorator/button_decorator.ddc.dill=packages/angular_components/button_decorator/button_decorator --summary=packages/angular_components/material_button/material_button_base.ddc.dill=packages/angular_components/material_button/material_button_base --summary=packages/angular/src/meta.ddc.dill=packages/angular/src/meta --summary=packages/angular/meta.ddc.dill=packages/angular/meta --summary=packages/angular_components/utils/color/color.ddc.dill=packages/angular_components/utils/color/color --summary=packages/angular_components/utils/color/material.ddc.dill=packages/angular_components/utils/color/material --summary=packages/angular_components/material_ripple/material_ripple.ddc.dill=packages/angular_components/material_ripple/material_ripple --summary=packages/angular_components/material_button/material_fab.ddc.dill=packages/angular_components/material_button/material_fab --summary=packages/angular_forms/src/directives.ddc.dill=packages/angular_forms/src/directives --summary=packages/angular_forms/angular_forms.ddc.dill=packages/angular_forms/angular_forms --summary=packages/angular_components/mixins/focusable_mixin.ddc.dill=packages/angular_components/mixins/focusable_mixin --summary=packages/angular_components/utils/id_generator/id_generator.ddc.dill=packages/angular_components/utils/id_generator/id_generator --summary=packages/angular_components/forms/error_renderer.ddc.dill=packages/angular_components/forms/error_renderer --summary=packages/angular_components/material_input/deferred_validator.ddc.dill=packages/angular_components/material_input/deferred_validator --summary=packages/angular_components/material_input/base_material_input.ddc.dill=packages/angular_components/material_input/base_material_input --summary=packages/angular_components/material_input/material_input_default_value_accessor.ddc.dill=packages/angular_components/material_input/material_input_default_value_accessor --summary=packages/casatunes/app_component.css.shim.ddc.dill=packages/casatunes/app_component.css.shim --summary=packages/angular/src/common/directives/ng_for_identity.ddc.dill=packages/angular/src/common/directives/ng_for_identity --summary=packages/angular/experimental.ddc.dill=packages/angular/experimental --summary=packages/angular_components/framework_stabilizers/framework_stabilizers.ddc.dill=packages/angular_components/framework_stabilizers/framework_stabilizers --summary=packages/angular_components/framework_stabilizers/testability.ddc.dill=packages/angular_components/framework_stabilizers/testability --summary=packages/angular_components/utils/browser/dom_service/dom_service_webdriver_testability.ddc.dill=packages/angular_components/utils/browser/dom_service/dom_service_webdriver_testability --summary=packages/angular_components/utils/browser/dom_service/angular_2.ddc.dill=packages/angular_components/utils/browser/dom_service/angular_2 --summary=packages/angular_components/material_input/material_input_multiline.ddc.dill=packages/angular_components/material_input/material_input_multiline --summary=packages/angular_components/material_input/material_input.ddc.dill=packages/angular_components/material_input/material_input --summary=packages/angular_components/model/collection/combined_list.ddc.dill=packages/angular_components/model/collection/combined_list --summary=packages/angular_components/model/ui/accepts_width.ddc.dill=packages/angular_components/model/ui/accepts_width --summary=packages/quiver/iterables.ddc.dill=packages/quiver/iterables --summary=packages/quiver/collection.ddc.dill=packages/quiver/collection --summary=packages/built_collection/built_collection.ddc.dill=packages/built_collection/built_collection --summary=packages/angular_components/model/formatters/formatter.ddc.dill=packages/angular_components/model/formatters/formatter --summary=packages/angular_components/model/ui/display_name.ddc.dill=packages/angular_components/model/ui/display_name --summary=packages/angular_components/model/collection/labeled_list.ddc.dill=packages/angular_components/model/collection/labeled_list --summary=packages/angular_components/model/a11y/active_item.ddc.dill=packages/angular_components/model/a11y/active_item --summary=packages/angular_components/model/observable/observable.ddc.dill=packages/angular_components/model/observable/observable --summary=packages/angular_components/model/menu/menu_item_affix.ddc.dill=packages/angular_components/model/menu/menu_item_affix --summary=packages/angular_components/model/menu/menu.ddc.dill=packages/angular_components/model/menu/menu --summary=packages/angular_components/material_menu/menu_popup_wrapper.ddc.dill=packages/angular_components/material_menu/menu_popup_wrapper --summary=packages/quiver/time.ddc.dill=packages/quiver/time --summary=packages/fixnum/fixnum.ddc.dill=packages/fixnum/fixnum --summary=packages/protobuf/protobuf.ddc.dill=packages/protobuf/protobuf --summary=packages/angular_components/material_datepicker/proto/date.pb.ddc.dill=packages/angular_components/material_datepicker/proto/date.pb --summary=packages/angular_components/material_datepicker/proto/date_range.pb.ddc.dill=packages/angular_components/material_datepicker/proto/date_range.pb --summary=packages/angular_components/utils/comparators/comparators.ddc.dill=packages/angular_components/utils/comparators/comparators --summary=packages/angular_components/model/date/date.ddc.dill=packages/angular_components/model/date/date --summary=packages/angular_components/material_datepicker/range.ddc.dill=packages/angular_components/material_datepicker/range --summary=packages/angular_components/material_datepicker/preset.ddc.dill=packages/angular_components/material_datepicker/preset --summary=packages/angular_components/content/deferred_content.ddc.dill=packages/angular_components/content/deferred_content --summary=packages/angular_components/material_input/material_input_error_keys.ddc.dill=packages/angular_components/material_input/material_input_error_keys --summary=packages/angular_components/material_input/material_number_validators.ddc.dill=packages/angular_components/material_input/material_number_validators --summary=packages/angular_components/material_input/material_number_accessor.ddc.dill=packages/angular_components/material_input/material_number_accessor --summary=packages/angular_components/material_input/material_percent_directive.ddc.dill=packages/angular_components/material_input/material_percent_directive --summary=packages/angular_components/material_tab/material_tab.ddc.dill=packages/angular_components/material_tab/material_tab --summary=packages/angular_components/material_select/activation_handler.ddc.dill=packages/angular_components/material_select/activation_handler --summary=packages/angular_components/material_datepicker/comparison_option.ddc.dill=packages/angular_components/material_datepicker/comparison_option --summary=packages/angular_components/material_datepicker/comparison.ddc.dill=packages/angular_components/material_datepicker/comparison --summary=packages/angular_components/material_datepicker/model.ddc.dill=packages/angular_components/material_datepicker/model --summary=packages/angular_components/utils/browser/window/module.ddc.dill=packages/angular_components/utils/browser/window/module --summary=packages/angular_components/src/utils/angular/managed_zone/managed_zone.ddc.dill=packages/angular_components/src/utils/angular/managed_zone/managed_zone --summary=packages/angular_components/utils/angular/managed_zone/angular_2.ddc.dill=packages/angular_components/utils/angular/managed_zone/angular_2 --summary=packages/angular_components/model/math/box.ddc.dill=packages/angular_components/model/math/box --summary=packages/angular_components/laminate/overlay/module.ddc.dill=packages/angular_components/laminate/overlay/module --summary=packages/angular_components/laminate/popup/module.ddc.dill=packages/angular_components/laminate/popup/module --summary=packages/angular_components/model/date/time_zone_aware_clock.ddc.dill=packages/angular_components/model/date/time_zone_aware_clock --summary=packages/angular_components/material_datepicker/module.ddc.dill=packages/angular_components/material_datepicker/module --summary=packages/angular_components/material_tab/tab_mixin.ddc.dill=packages/angular_components/material_tab/tab_mixin --summary=packages/angular_components/model/selection/selection_model.ddc.dill=packages/angular_components/model/selection/selection_model --summary=packages/angular_components/material_radio/material_radio.ddc.dill=packages/angular_components/material_radio/material_radio --summary=packages/angular_components/model/ui/has_renderer.ddc.dill=packages/angular_components/model/ui/has_renderer --summary=packages/angular_components/material_select/display_name.ddc.dill=packages/angular_components/material_select/display_name --summary=packages/angular_components/focus/focus_list.ddc.dill=packages/angular_components/focus/focus_list --summary=packages/angular_components/focus/focus_item.ddc.dill=packages/angular_components/focus/focus_item --summary=packages/angular_components/material_tab/tab_change_event.ddc.dill=packages/angular_components/material_tab/tab_change_event --summary=packages/angular_components/material_tab/tab_button.ddc.dill=packages/angular_components/material_tab/tab_button --summary=packages/angular_components/material_tab/fixed_material_tab_strip.ddc.dill=packages/angular_components/material_tab/fixed_material_tab_strip --summary=packages/angular_components/theme/module.ddc.dill=packages/angular_components/theme/module --summary=packages/angular_components/app_layout/material_drawer_base.ddc.dill=packages/angular_components/app_layout/material_drawer_base --summary=packages/angular_components/app_layout/material_persistent_drawer.ddc.dill=packages/angular_components/app_layout/material_persistent_drawer --summary=packages/angular_components/theme/dark_theme.ddc.dill=packages/angular_components/theme/dark_theme --summary=packages/angular_components/material_button/material_button.ddc.dill=packages/angular_components/material_button/material_button --summary=packages/angular_components/focus/keyboard_only_focus_indicator.ddc.dill=packages/angular_components/focus/keyboard_only_focus_indicator --summary=packages/angular_components/material_datepicker/config.ddc.dill=packages/angular_components/material_datepicker/config --summary=packages/angular_components/model/date/date_formatter.ddc.dill=packages/angular_components/model/date/date_formatter --summary=packages/angular_components/material_checkbox/material_checkbox.ddc.dill=packages/angular_components/material_checkbox/material_checkbox --summary=packages/angular_components/mixins/material_dropdown_base.ddc.dill=packages/angular_components/mixins/material_dropdown_base --summary=packages/angular_components/model/ui/has_factory.ddc.dill=packages/angular_components/model/ui/has_factory --summary=packages/angular_components/dynamic_component/dynamic_component.ddc.dill=packages/angular_components/dynamic_component/dynamic_component --summary=packages/angular_components/glyph/glyph.ddc.dill=packages/angular_components/glyph/glyph --summary=packages/angular_components/model/selection/selection_options.ddc.dill=packages/angular_components/model/selection/selection_options --summary=packages/angular_components/model/selection/selection_container.ddc.dill=packages/angular_components/model/selection/selection_container --summary=packages/angular_components/material_select/material_select_item.ddc.dill=packages/angular_components/material_select/material_select_item --summary=packages/angular_components/material_datepicker/calendar.ddc.dill=packages/angular_components/material_datepicker/calendar --summary=packages/angular_components/material_datepicker/date_input.ddc.dill=packages/angular_components/material_datepicker/date_input --summary=packages/angular_components/material_datepicker/date_range_input.ddc.dill=packages/angular_components/material_datepicker/date_range_input --summary=packages/angular_components/src/utils/angular/scroll_host/scroll_host_interface.ddc.dill=packages/angular_components/src/utils/angular/scroll_host/scroll_host_interface --summary=packages/angular_components/utils/angular/scroll_host/interface.ddc.dill=packages/angular_components/utils/angular/scroll_host/interface --summary=packages/angular_components/src/utils/angular/scroll_host/pan_controller_impl.ddc.dill=packages/angular_components/src/utils/angular/scroll_host/pan_controller_impl --summary=packages/angular_components/utils/angular/scroll_host/angular_2.ddc.dill=packages/angular_components/utils/angular/scroll_host/angular_2 --summary=packages/async/async.ddc.dill=packages/async/async --summary=packages/angular_components/utils/showhide/showhide.ddc.dill=packages/angular_components/utils/showhide/showhide --summary=packages/angular_components/src/model/selection/interfaces/selectable.ddc.dill=packages/angular_components/src/model/selection/interfaces/selectable --summary=packages/angular_components/model/selection/select.ddc.dill=packages/angular_components/model/selection/select --summary=packages/angular_components/material_list/material_list_size.ddc.dill=packages/angular_components/material_list/material_list_size --summary=packages/angular_components/material_list/material_list.ddc.dill=packages/angular_components/material_list/material_list --summary=packages/angular_components/model/ui/template_support.ddc.dill=packages/angular_components/model/ui/template_support --summary=packages/angular_components/material_select/material_select_base.ddc.dill=packages/angular_components/material_select/material_select_base --summary=packages/angular_components/material_select/material_select.ddc.dill=packages/angular_components/material_select/material_select --summary=packages/angular_components/src/material_datepicker/sequential.ddc.dill=packages/angular_components/src/material_datepicker/sequential --summary=packages/angular_components/material_datepicker/next_prev_buttons.ddc.dill=packages/angular_components/material_datepicker/next_prev_buttons --summary=packages/angular_components/material_datepicker/date_range_editor_host.ddc.dill=packages/angular_components/material_datepicker/date_range_editor_host --summary=packages/angular_components/material_select/shift_click_selection.ddc.dill=packages/angular_components/material_select/shift_click_selection --summary=packages/angular_components/mixins/track_layout_changes.ddc.dill=packages/angular_components/mixins/track_layout_changes --summary=packages/angular_components/material_select/handles_aria.ddc.dill=packages/angular_components/material_select/handles_aria --summary=packages/angular_components/material_select/material_select_dropdown_item.ddc.dill=packages/angular_components/material_select/material_select_dropdown_item --summary=packages/angular_components/mixins/button_wrapper.ddc.dill=packages/angular_components/mixins/button_wrapper --summary=packages/angular_components/model/a11y/active_item_directive.ddc.dill=packages/angular_components/model/a11y/active_item_directive --summary=packages/angular_components/model/selection/string_selection_options.ddc.dill=packages/angular_components/model/selection/string_selection_options --summary=packages/angular_components/mixins/selection_input_adapter.ddc.dill=packages/angular_components/mixins/selection_input_adapter --summary=packages/angular_components/utils/angular/css/css.ddc.dill=packages/angular_components/utils/angular/css/css --summary=packages/angular_components/model/ui/toggle.ddc.dill=packages/angular_components/model/ui/toggle --summary=packages/angular_components/material_popup/material_popup.ddc.dill=packages/angular_components/material_popup/material_popup --summary=packages/angular_components/material_select/dropdown_button.ddc.dill=packages/angular_components/material_select/dropdown_button --summary=packages/angular_components/model/a11y/keyboard_handler_mixin.ddc.dill=packages/angular_components/model/a11y/keyboard_handler_mixin --summary=packages/angular_components/material_select/material_dropdown_select.ddc.dill=packages/angular_components/material_select/material_dropdown_select --summary=packages/angular_components/material_toggle/material_toggle.ddc.dill=packages/angular_components/material_toggle/material_toggle --summary=packages/angular_components/material_list/material_list_item.ddc.dill=packages/angular_components/material_list/material_list_item --summary=packages/angular_components/src/material_datepicker/comparison_range_editor.ddc.dill=packages/angular_components/src/material_datepicker/comparison_range_editor --summary=packages/angular_components/src/material_datepicker/calendar_listener.ddc.dill=packages/angular_components/src/material_datepicker/calendar_listener --summary=packages/angular_components/material_datepicker/material_calendar_picker.ddc.dill=packages/angular_components/material_datepicker/material_calendar_picker --summary=packages/angular_components/material_datepicker/material_month_picker.ddc.dill=packages/angular_components/material_datepicker/material_month_picker --summary=packages/angular_components/src/material_tooltip/tooltip_controller.ddc.dill=packages/angular_components/src/material_tooltip/tooltip_controller --summary=packages/angular_components/model/ui/toggle.template.ddc.dill=packages/angular_components/model/ui/toggle.template --summary=packages/angular_components/src/laminate/enums/base.template.ddc.dill=packages/angular_components/src/laminate/enums/base.template --summary=packages/angular_components/laminate/enums/alignment.template.ddc.dill=packages/angular_components/laminate/enums/alignment.template --summary=packages/angular_components/model/action/delayed_action.ddc.dill=packages/angular_components/model/action/delayed_action --summary=packages/angular_components/annotations/rtl_annotation.template.ddc.dill=packages/angular_components/annotations/rtl_annotation.template --summary=packages/angular_components/focus/focus_interface.template.ddc.dill=packages/angular_components/focus/focus_interface.template --summary=packages/angular_components/laminate/enums/visibility.template.ddc.dill=packages/angular_components/laminate/enums/visibility.template --summary=packages/angular_components/laminate/enums/position.template.ddc.dill=packages/angular_components/laminate/enums/position.template --summary=packages/angular_components/src/laminate/ruler/ruler_interface.template.ddc.dill=packages/angular_components/src/laminate/ruler/ruler_interface.template --summary=packages/angular_components/utils/disposer/disposer.template.ddc.dill=packages/angular_components/utils/disposer/disposer.template --summary=packages/angular_components/utils/disposer/disposable_callback.template.ddc.dill=packages/angular_components/utils/disposer/disposable_callback.template --summary=packages/angular_components/utils/rate_limit_utils/rate_limit_utils.template.ddc.dill=packages/angular_components/utils/rate_limit_utils/rate_limit_utils.template --summary=packages/angular_components/src/utils/async/async_update_scheduler.template.ddc.dill=packages/angular_components/src/utils/async/async_update_scheduler.template --summary=packages/angular_components/utils/async/async.template.ddc.dill=packages/angular_components/utils/async/async.template --summary=packages/angular_components/utils/browser/dom_service/dom_service.template.ddc.dill=packages/angular_components/utils/browser/dom_service/dom_service.template --summary=packages/angular_components/laminate/ruler/dom_ruler.template.ddc.dill=packages/angular_components/laminate/ruler/dom_ruler.template --summary=packages/angular_components/src/laminate/popup/dom_popup_source.template.ddc.dill=packages/angular_components/src/laminate/popup/dom_popup_source.template --summary=packages/angular_components/utils/browser/window/module.template.ddc.dill=packages/angular_components/utils/browser/window/module.template --summary=packages/angular_components/utils/angular/imperative_view/imperative_view.template.ddc.dill=packages/angular_components/utils/angular/imperative_view/imperative_view.template --summary=packages/angular_components/laminate/portal/portal.template.ddc.dill=packages/angular_components/laminate/portal/portal.template --summary=packages/angular_components/laminate/overlay/zindexer.template.ddc.dill=packages/angular_components/laminate/overlay/zindexer.template --summary=packages/angular_components/src/laminate/overlay/overlay_ref.template.ddc.dill=packages/angular_components/src/laminate/overlay/overlay_ref.template --summary=packages/angular_components/src/utils/angular/managed_zone/managed_zone.template.ddc.dill=packages/angular_components/src/utils/angular/managed_zone/managed_zone.template --summary=packages/angular_components/utils/angular/managed_zone/angular_2.template.ddc.dill=packages/angular_components/utils/angular/managed_zone/angular_2.template --summary=packages/angular_components/framework_stabilizers/framework_stabilizers.template.ddc.dill=packages/angular_components/framework_stabilizers/framework_stabilizers.template --summary=packages/angular_components/framework_stabilizers/testability.template.ddc.dill=packages/angular_components/framework_stabilizers/testability.template --summary=packages/angular_components/utils/browser/dom_service/dom_service_webdriver_testability.template.ddc.dill=packages/angular_components/utils/browser/dom_service/dom_service_webdriver_testability.template --summary=packages/angular/experimental.template.ddc.dill=packages/angular/experimental.template --summary=packages/angular_components/utils/browser/dom_service/angular_2.template.ddc.dill=packages/angular_components/utils/browser/dom_service/angular_2.template --summary=packages/angular_components/model/math/box.template.ddc.dill=packages/angular_components/model/math/box.template --summary=packages/angular_components/laminate/overlay/constants.template.ddc.dill=packages/angular_components/laminate/overlay/constants.template --summary=packages/angular_components/laminate/overlay/module.template.ddc.dill=packages/angular_components/laminate/overlay/module.template --summary=packages/angular_components/laminate/popup/module.template.ddc.dill=packages/angular_components/laminate/popup/module.template --summary=packages/angular_components/material_popup/material_popup.scss.css.shim.ddc.dill=packages/angular_components/material_popup/material_popup.scss.css.shim --summary=packages/angular_components/utils/angular/reference/reference.template.ddc.dill=packages/angular_components/utils/angular/reference/reference.template --summary=packages/angular_components/utils/browser/feature_detector/feature_detector.template.ddc.dill=packages/angular_components/utils/browser/feature_detector/feature_detector.template --summary=packages/angular_components/utils/browser/events/events.template.ddc.dill=packages/angular_components/utils/browser/events/events.template --summary=packages/angular_components/utils/angular/properties/properties.template.ddc.dill=packages/angular_components/utils/angular/properties/properties.template --summary=packages/angular_components/src/laminate/popup/popup_hierarchy.template.ddc.dill=packages/angular_components/src/laminate/popup/popup_hierarchy.template --summary=packages/angular_components/laminate/popup/popup.template.ddc.dill=packages/angular_components/laminate/popup/popup.template --summary=packages/angular_components/content/deferred_content_aware.template.ddc.dill=packages/angular_components/content/deferred_content_aware.template --summary=packages/angular_components/mixins/material_dropdown_base.template.ddc.dill=packages/angular_components/mixins/material_dropdown_base.template --summary=packages/angular/src/runtime/interpolate.ddc.dill=packages/angular/src/runtime/interpolate --summary=packages/angular_components/laminate/overlay/overlay.template.ddc.dill=packages/angular_components/laminate/overlay/overlay.template --summary=packages/angular_components/utils/id_generator/id_generator.template.ddc.dill=packages/angular_components/utils/id_generator/id_generator.template --summary=packages/angular_components/material_popup/material_popup.template.ddc.dill=packages/angular_components/material_popup/material_popup.template --summary=packages/angular_components/content/deferred_content.template.ddc.dill=packages/angular_components/content/deferred_content.template --summary=packages/angular_components/material_tooltip/module.ddc.dill=packages/angular_components/material_tooltip/module --summary=packages/angular_components/src/material_tooltip/tooltip_controller.template.ddc.dill=packages/angular_components/src/material_tooltip/tooltip_controller.template --summary=packages/angular_components/material_tooltip/module.template.ddc.dill=packages/angular_components/material_tooltip/module.template --summary=packages/angular/meta.template.ddc.dill=packages/angular/meta.template --summary=packages/angular_components/model/action/delayed_action.template.ddc.dill=packages/angular_components/model/action/delayed_action.template --summary=packages/angular/src/runtime/text_binding.ddc.dill=packages/angular/src/runtime/text_binding --summary=packages/angular_components/utils/angular/css/css.template.ddc.dill=packages/angular_components/utils/angular/css/css.template --summary=packages/angular/src/core/change_detection/directive_change_detector.ddc.dill=packages/angular/src/core/change_detection/directive_change_detector --summary=packages/angular_components/src/material_tooltip/icon_tooltip.ddc.dill=packages/angular_components/src/material_tooltip/icon_tooltip --summary=packages/angular_components/material_tooltip/material_tooltip.ddc.dill=packages/angular_components/material_tooltip/material_tooltip --summary=packages/angular_components/utils/angular/managed_zone/interface.ddc.dill=packages/angular_components/utils/angular/managed_zone/interface --summary=packages/angular_components/material_datepicker/date_range_editor.ddc.dill=packages/angular_components/material_datepicker/date_range_editor --summary=packages/angular_components/utils/browser/dom_iterator/dom_iterator.ddc.dill=packages/angular_components/utils/browser/dom_iterator/dom_iterator --summary=packages/angular_components/focus/focus_trap.ddc.dill=packages/angular_components/focus/focus_trap --summary=packages/angular_components/material_datepicker/material_date_range_picker.ddc.dill=packages/angular_components/material_datepicker/material_date_range_picker --summary=packages/angular_components/material_spinner/material_spinner.ddc.dill=packages/angular_components/material_spinner/material_spinner --summary=packages/angular_components/material_yes_no_buttons/material_yes_no_buttons.ddc.dill=packages/angular_components/material_yes_no_buttons/material_yes_no_buttons --summary=packages/angular_components/utils/angular/id/id.ddc.dill=packages/angular_components/utils/angular/id/id --summary=packages/angular_components/material_expansionpanel/material_expansionpanel.ddc.dill=packages/angular_components/material_expansionpanel/material_expansionpanel --summary=packages/angular_components/material_expansionpanel/material_expansionpanel_auto_dismiss.ddc.dill=packages/angular_components/material_expansionpanel/material_expansionpanel_auto_dismiss --summary=packages/angular_components/material_select/material_select_searchbox.ddc.dill=packages/angular_components/material_select/material_select_searchbox --summary=packages/angular_components/material_dialog/material_dialog.ddc.dill=packages/angular_components/material_dialog/material_dialog --summary=packages/angular_components/utils/color/palette.ddc.dill=packages/angular_components/utils/color/palette --summary=packages/angular_components/scorecard/scorecard_bar.ddc.dill=packages/angular_components/scorecard/scorecard_bar --summary=packages/angular_components/scorecard/scorecard.ddc.dill=packages/angular_components/scorecard/scorecard --summary=packages/angular_components/scorecard/scoreboard.ddc.dill=packages/angular_components/scorecard/scoreboard --summary=packages/angular_components/material_select/material_dropdown_select_accessor.ddc.dill=packages/angular_components/material_select/material_dropdown_select_accessor --summary=packages/angular_components/material_menu/common/menu_root.ddc.dill=packages/angular_components/material_menu/common/menu_root --summary=packages/angular_components/material_menu/menu_root.ddc.dill=packages/angular_components/material_menu/menu_root --summary=packages/angular_components/focus/focus_activable_item.ddc.dill=packages/angular_components/focus/focus_activable_item --summary=packages/angular_components/material_datepicker/material_datepicker.ddc.dill=packages/angular_components/material_datepicker/material_datepicker --summary=packages/angular_components/material_datepicker/material_time_picker.ddc.dill=packages/angular_components/material_datepicker/material_time_picker --summary=packages/angular_components/material_datepicker/material_date_time_picker.ddc.dill=packages/angular_components/material_datepicker/material_date_time_picker --summary=packages/angular_components/app_layout/material_temporary_drawer.ddc.dill=packages/angular_components/app_layout/material_temporary_drawer --summary=packages/angular_components/app_layout/material_stackable_drawer.ddc.dill=packages/angular_components/app_layout/material_stackable_drawer --summary=packages/angular_components/material_tab/material_tab_panel.ddc.dill=packages/angular_components/material_tab/material_tab_panel --summary=packages/angular_components/material_stepper/material_step.ddc.dill=packages/angular_components/material_stepper/material_step --summary=packages/angular_components/material_stepper/common.ddc.dill=packages/angular_components/material_stepper/common --summary=packages/angular_components/material_stepper/material_stepper.ddc.dill=packages/angular_components/material_stepper/material_stepper --summary=packages/angular_components/model/ui/highlighted_text_model.ddc.dill=packages/angular_components/model/ui/highlighted_text_model --summary=packages/angular_components/model/ui/highlight_provider.ddc.dill=packages/angular_components/model/ui/highlight_provider --summary=packages/angular_components/highlighted_text/highlighted_text.scss.css.shim.ddc.dill=packages/angular_components/highlighted_text/highlighted_text.scss.css.shim --summary=packages/angular_components/model/ui/highlighted_text_model.template.ddc.dill=packages/angular_components/model/ui/highlighted_text_model.template --summary=packages/angular_components/highlighted_text/highlighted_text.ddc.dill=packages/angular_components/highlighted_text/highlighted_text --summary=packages/angular_components/highlighted_text/highlighted_text.template.ddc.dill=packages/angular_components/highlighted_text/highlighted_text.template --summary=packages/angular_components/model/ui/highlight_provider.template.ddc.dill=packages/angular_components/model/ui/highlight_provider.template --summary=packages/angular_components/highlighted_text/highlighted_value.ddc.dill=packages/angular_components/highlighted_text/highlighted_value --summary=packages/angular_components/model/ui/has_renderer.template.ddc.dill=packages/angular_components/model/ui/has_renderer.template --summary=packages/angular_components/highlighted_text/highlighted_value.template.ddc.dill=packages/angular_components/highlighted_text/highlighted_value.template --summary=packages/angular_components/model/ui/highlight_assistant.ddc.dill=packages/angular_components/model/ui/highlight_assistant --summary=packages/angular_components/mixins/highlight_assistant_mixin.ddc.dill=packages/angular_components/mixins/highlight_assistant_mixin --summary=packages/angular_components/material_input/input_wrapper.ddc.dill=packages/angular_components/material_input/input_wrapper --summary=packages/angular_components/stop_propagation/stop_propagation.ddc.dill=packages/angular_components/stop_propagation/stop_propagation --summary=packages/angular_components/material_input/material_auto_suggest_input.ddc.dill=packages/angular_components/material_input/material_auto_suggest_input --summary=packages/quiver/check.ddc.dill=packages/quiver/check --summary=packages/angular_components/material_slider/material_slider.ddc.dill=packages/angular_components/material_slider/material_slider --summary=packages/angular_components/material_chips/material_chip.ddc.dill=packages/angular_components/material_chips/material_chip --summary=packages/angular_components/material_chips/material_chips.ddc.dill=packages/angular_components/material_chips/material_chips --summary=packages/angular_components/src/material_tree/group/material_tree_group.ddc.dill=packages/angular_components/src/material_tree/group/material_tree_group --summary=packages/angular_components/material_tree/material_tree.ddc.dill=packages/angular_components/material_tree/material_tree --summary=packages/angular_components/reorder_list/reorder_events.ddc.dill=packages/angular_components/reorder_list/reorder_events --summary=packages/angular_components/material_menu/affix/base_affix.ddc.dill=packages/angular_components/material_menu/affix/base_affix --summary=packages/angular_components/material_menu/menu_item_affix_list.ddc.dill=packages/angular_components/material_menu/menu_item_affix_list --summary=packages/angular_components/material_progress/material_progress.ddc.dill=packages/angular_components/material_progress/material_progress --summary=packages/angular_components/material_expansionpanel/material_expansionpanel_set.ddc.dill=packages/angular_components/material_expansionpanel/material_expansionpanel_set --summary=packages/angular_components/model/menu/selectable_menu.ddc.dill=packages/angular_components/model/menu/selectable_menu --summary=packages/angular_components/material_menu/material_menu.ddc.dill=packages/angular_components/material_menu/material_menu --summary=packages/angular_components/material_menu/material_fab_menu.ddc.dill=packages/angular_components/material_menu/material_fab_menu --summary=packages/angular_components/utils/keyboard/keyboard.ddc.dill=packages/angular_components/utils/keyboard/keyboard --summary=packages/angular_components/reorder_list/reorder_list.ddc.dill=packages/angular_components/reorder_list/reorder_list --summary=packages/angular_components/auto_dismiss/auto_dismiss.ddc.dill=packages/angular_components/auto_dismiss/auto_dismiss --summary=packages/angular_components/material_menu/dropdown_menu.ddc.dill=packages/angular_components/material_menu/dropdown_menu --summary=packages/angular_components/angular_components.ddc.dill=packages/angular_components/angular_components --summary=packages/casatunes/src/todo_list/todo_list_component.ddc.dill=packages/casatunes/src/todo_list/todo_list_component --summary=packages/pedantic/pedantic.ddc.dill=packages/pedantic/pedantic --summary=packages/charcode/ascii.ddc.dill=packages/charcode/ascii --summary=packages/charcode/html_entity.ddc.dill=packages/charcode/html_entity --summary=packages/charcode/charcode.ddc.dill=packages/charcode/charcode --summary=packages/term_glyph/src/generated/ascii_glyph_set.ddc.dill=packages/term_glyph/src/generated/ascii_glyph_set --summary=packages/source_span/source_span.ddc.dill=packages/source_span/source_span --summary=packages/string_scanner/src/eager_span_scanner.ddc.dill=packages/string_scanner/src/eager_span_scanner --summary=packages/typed_data/typed_buffers.ddc.dill=packages/typed_data/typed_buffers --summary=packages/typed_data/typed_data.ddc.dill=packages/typed_data/typed_data --summary=packages/http_parser/http_parser.ddc.dill=packages/http_parser/http_parser --summary=packages/http/src/base_client.ddc.dill=packages/http/src/base_client --summary=packages/http/http.ddc.dill=packages/http/http --summary=packages/casatunes_rest/api.ddc.dill=packages/casatunes_rest/api --summary=packages/casatunes/app_component.ddc.dill=packages/casatunes/app_component --summary=packages/angular_components/utils/color/color.template.ddc.dill=packages/angular_components/utils/color/color.template --summary=packages/angular_components/utils/color/material.template.ddc.dill=packages/angular_components/utils/color/material.template --summary=packages/angular_components/material_ripple/material_ripple.scss.css.ddc.dill=packages/angular_components/material_ripple/material_ripple.scss.css --summary=packages/angular_components/material_ripple/material_ripple.template.ddc.dill=packages/angular_components/material_ripple/material_ripple.template --summary=packages/angular_components/material_button/material_button.scss.css.shim.ddc.dill=packages/angular_components/material_button/material_button.scss.css.shim --summary=packages/angular_components/interfaces/has_disabled.template.ddc.dill=packages/angular_components/interfaces/has_disabled.template --summary=packages/angular_components/mixins/has_tab_index.template.ddc.dill=packages/angular_components/mixins/has_tab_index.template --summary=packages/angular_components/src/laminate/components/modal/modal_controller_directive.template.ddc.dill=packages/angular_components/src/laminate/components/modal/modal_controller_directive.template --summary=packages/angular_components/src/model/action/async_action.template.ddc.dill=packages/angular_components/src/model/action/async_action.template --summary=packages/angular_components/model/action/async_action.template.ddc.dill=packages/angular_components/model/action/async_action.template --summary=packages/angular_components/laminate/components/modal/modal.template.ddc.dill=packages/angular_components/laminate/components/modal/modal.template --summary=packages/angular_components/focus/focus.template.ddc.dill=packages/angular_components/focus/focus.template --summary=packages/angular_components/button_decorator/button_decorator.template.ddc.dill=packages/angular_components/button_decorator/button_decorator.template --summary=packages/angular_components/material_button/material_button_base.template.ddc.dill=packages/angular_components/material_button/material_button_base.template --summary=packages/angular_components/theme/module.template.ddc.dill=packages/angular_components/theme/module.template --summary=packages/angular_components/theme/dark_theme.template.ddc.dill=packages/angular_components/theme/dark_theme.template --summary=packages/angular_components/material_button/material_button.template.ddc.dill=packages/angular_components/material_button/material_button.template --summary=packages/angular_components/model/selection/selection_model.template.ddc.dill=packages/angular_components/model/selection/selection_model.template --summary=packages/angular_components/utils/browser/dom_iterator/dom_iterator.template.ddc.dill=packages/angular_components/utils/browser/dom_iterator/dom_iterator.template --summary=packages/angular_components/focus/focus_trap.scss.css.shim.ddc.dill=packages/angular_components/focus/focus_trap.scss.css.shim --summary=packages/angular_components/focus/focus_trap.template.ddc.dill=packages/angular_components/focus/focus_trap.template --summary=packages/angular_components/focus/focus_activable_item.template.ddc.dill=packages/angular_components/focus/focus_activable_item.template --summary=packages/angular/src/runtime/queries.ddc.dill=packages/angular/src/runtime/queries --summary=packages/angular_components/model/ui/accepts_width.template.ddc.dill=packages/angular_components/model/ui/accepts_width.template --summary=packages/angular_components/model/formatters/formatter.template.ddc.dill=packages/angular_components/model/formatters/formatter.template --summary=packages/angular_components/model/ui/display_name.template.ddc.dill=packages/angular_components/model/ui/display_name.template --summary=packages/angular_components/model/collection/combined_list.template.ddc.dill=packages/angular_components/model/collection/combined_list.template --summary=packages/angular_components/model/a11y/active_item.template.ddc.dill=packages/angular_components/model/a11y/active_item.template --summary=packages/angular_components/model/ui/icon.template.ddc.dill=packages/angular_components/model/ui/icon.template --summary=packages/angular_components/model/menu/menu_item_affix.template.ddc.dill=packages/angular_components/model/menu/menu_item_affix.template --summary=packages/angular_components/model/collection/labeled_list.template.ddc.dill=packages/angular_components/model/collection/labeled_list.template --summary=packages/angular_components/model/observable/observable.template.ddc.dill=packages/angular_components/model/observable/observable.template --summary=packages/angular_components/model/menu/menu.template.ddc.dill=packages/angular_components/model/menu/menu.template --summary=packages/angular_components/material_menu/menu_popup_wrapper.template.ddc.dill=packages/angular_components/material_menu/menu_popup_wrapper.template --summary=packages/angular_components/material_menu/affix/base_affix.template.ddc.dill=packages/angular_components/material_menu/affix/base_affix.template --summary=packages/angular_components/dynamic_component/dynamic_component.template.ddc.dill=packages/angular_components/dynamic_component/dynamic_component.template --summary=packages/angular_components/material_menu/menu_item_affix_list.scss.css.shim.ddc.dill=packages/angular_components/material_menu/menu_item_affix_list.scss.css.shim --summary=packages/angular_components/material_menu/menu_item_affix_list.template.ddc.dill=packages/angular_components/material_menu/menu_item_affix_list.template --summary=packages/angular_components/model/a11y/keyboard_handler_mixin.template.ddc.dill=packages/angular_components/model/a11y/keyboard_handler_mixin.template --summary=packages/angular_components/material_icon/material_icon.scss.css.shim.ddc.dill=packages/angular_components/material_icon/material_icon.scss.css.shim --summary=packages/angular_components/material_icon/material_icon.template.ddc.dill=packages/angular_components/material_icon/material_icon.template --summary=packages/angular_components/src/model/selection/interfaces/selectable.template.ddc.dill=packages/angular_components/src/model/selection/interfaces/selectable.template --summary=packages/angular_components/model/selection/select.template.ddc.dill=packages/angular_components/model/selection/select.template --summary=packages/angular_components/model/menu/selectable_menu.template.ddc.dill=packages/angular_components/model/menu/selectable_menu.template --summary=packages/angular_components/material_list/material_list_size.template.ddc.dill=packages/angular_components/material_list/material_list_size.template --summary=packages/angular_components/material_list/material_list.scss.css.shim.ddc.dill=packages/angular_components/material_list/material_list.scss.css.shim --summary=packages/angular_components/material_list/material_list.template.ddc.dill=packages/angular_components/material_list/material_list.template --summary=packages/angular_components/model/selection/selection_options.template.ddc.dill=packages/angular_components/model/selection/selection_options.template --summary=packages/angular_components/model/ui/has_factory.template.ddc.dill=packages/angular_components/model/ui/has_factory.template --summary=packages/angular_components/model/selection/selection_container.template.ddc.dill=packages/angular_components/model/selection/selection_container.template --summary=packages/angular_components/material_select/activation_handler.template.ddc.dill=packages/angular_components/material_select/activation_handler.template --summary=packages/angular_components/material_select/material_select_item.scss.css.shim.ddc.dill=packages/angular_components/material_select/material_select_item.scss.css.shim --summary=packages/angular_components/glyph/glyph.scss.css.shim.ddc.dill=packages/angular_components/glyph/glyph.scss.css.shim --summary=packages/angular_components/glyph/glyph.template.ddc.dill=packages/angular_components/glyph/glyph.template --summary=packages/angular_components/material_checkbox/material_checkbox.scss.css.shim.ddc.dill=packages/angular_components/material_checkbox/material_checkbox.scss.css.shim --summary=packages/angular_forms/angular_forms.template.ddc.dill=packages/angular_forms/angular_forms.template --summary=packages/angular_components/material_checkbox/material_checkbox.template.ddc.dill=packages/angular_components/material_checkbox/material_checkbox.template --summary=packages/angular_components/material_select/material_select_item.template.ddc.dill=packages/angular_components/material_select/material_select_item.template --summary=packages/angular_components/model/a11y/active_item_directive.template.ddc.dill=packages/angular_components/model/a11y/active_item_directive.template --summary=packages/angular_components/material_menu/common/menu_root.template.ddc.dill=packages/angular_components/material_menu/common/menu_root.template --summary=packages/angular_components/material_menu/menu_root.template.ddc.dill=packages/angular_components/material_menu/menu_root.template --summary=packages/angular_components/material_menu/menu_popup.scss.css.shim.ddc.dill=packages/angular_components/material_menu/menu_popup.scss.css.shim --summary=packages/angular_components/mixins/focusable_mixin.template.ddc.dill=packages/angular_components/mixins/focusable_mixin.template --summary=packages/angular_components/focus/keyboard_only_focus_indicator.template.ddc.dill=packages/angular_components/focus/keyboard_only_focus_indicator.template --summary=packages/angular_components/src/material_tooltip/icon_tooltip.scss.css.shim.ddc.dill=packages/angular_components/src/material_tooltip/icon_tooltip.scss.css.shim --summary=packages/angular_components/material_tooltip/material_tooltip.template.ddc.dill=packages/angular_components/material_tooltip/material_tooltip.template --summary=packages/angular_components/material_menu/menu_item_groups.scss.css.shim.ddc.dill=packages/angular_components/material_menu/menu_item_groups.scss.css.shim --summary=packages/angular_components/material_menu/material_menu.template.ddc.dill=packages/angular_components/material_menu/material_menu.template --summary=packages/angular_components/button_decorator/button_decorator.scss.css.shim.ddc.dill=packages/angular_components/button_decorator/button_decorator.scss.css.shim --summary=packages/angular_components/material_select/dropdown_button.scss.css.shim.ddc.dill=packages/angular_components/material_select/dropdown_button.scss.css.shim --summary=packages/angular_components/mixins/button_wrapper.template.ddc.dill=packages/angular_components/mixins/button_wrapper.template --summary=packages/angular_components/material_select/dropdown_button.template.ddc.dill=packages/angular_components/material_select/dropdown_button.template --summary=packages/angular_components/material_menu/dropdown_menu.template.ddc.dill=packages/angular_components/material_menu/dropdown_menu.template --summary=packages/angular_components/material_menu/material_fab_menu.scss.css.shim.ddc.dill=packages/angular_components/material_menu/material_fab_menu.scss.css.shim --summary=packages/angular_components/material_list/material_list_item.scss.css.shim.ddc.dill=packages/angular_components/material_list/material_list_item.scss.css.shim --summary=packages/angular_components/material_list/material_list_item.template.ddc.dill=packages/angular_components/material_list/material_list_item.template --summary=packages/angular_components/material_button/material_fab.scss.css.shim.ddc.dill=packages/angular_components/material_button/material_fab.scss.css.shim --summary=packages/angular_components/material_button/material_fab.template.ddc.dill=packages/angular_components/material_button/material_fab.template --summary=packages/angular_components/mixins/track_layout_changes.template.ddc.dill=packages/angular_components/mixins/track_layout_changes.template --summary=packages/angular_components/material_menu/material_fab_menu.template.ddc.dill=packages/angular_components/material_menu/material_fab_menu.template --summary=packages/angular_components/material_input/input_wrapper.template.ddc.dill=packages/angular_components/material_input/input_wrapper.template --summary=packages/angular_components/material_dialog/material_dialog.scss.css.shim.ddc.dill=packages/angular_components/material_dialog/material_dialog.scss.css.shim --summary=packages/angular_components/material_dialog/material_dialog.template.ddc.dill=packages/angular_components/material_dialog/material_dialog.template --summary=packages/angular_components/src/utils/angular/scroll_host/scroll_host_interface.template.ddc.dill=packages/angular_components/src/utils/angular/scroll_host/scroll_host_interface.template --summary=packages/angular_components/utils/angular/scroll_host/interface.template.ddc.dill=packages/angular_components/utils/angular/scroll_host/interface.template --summary=packages/angular_components/src/utils/angular/scroll_host/pan_controller_impl.template.ddc.dill=packages/angular_components/src/utils/angular/scroll_host/pan_controller_impl.template --summary=packages/angular_components/utils/angular/scroll_host/angular_2.template.ddc.dill=packages/angular_components/utils/angular/scroll_host/angular_2.template --summary=packages/angular_components/material_stepper/material_stepper.scss.css.shim.ddc.dill=packages/angular_components/material_stepper/material_stepper.scss.css.shim --summary=packages/angular_components/material_spinner/material_spinner.scss.css.shim.ddc.dill=packages/angular_components/material_spinner/material_spinner.scss.css.shim --summary=packages/angular_components/material_spinner/material_spinner.template.ddc.dill=packages/angular_components/material_spinner/material_spinner.template --summary=packages/angular_components/material_yes_no_buttons/material_yes_no_buttons.scss.css.shim.ddc.dill=packages/angular_components/material_yes_no_buttons/material_yes_no_buttons.scss.css.shim --summary=packages/angular_components/material_yes_no_buttons/material_yes_no_buttons.template.ddc.dill=packages/angular_components/material_yes_no_buttons/material_yes_no_buttons.template --summary=packages/angular_components/material_stepper/common.template.ddc.dill=packages/angular_components/material_stepper/common.template --summary=packages/angular_components/material_stepper/material_step.template.ddc.dill=packages/angular_components/material_stepper/material_step.template --summary=packages/angular_components/material_stepper/material_stepper.template.ddc.dill=packages/angular_components/material_stepper/material_stepper.template --summary=packages/angular_components/utils/angular/id/id.template.ddc.dill=packages/angular_components/utils/angular/id/id.template --summary=packages/angular_components/material_expansionpanel/material_expansionpanel.scss.css.shim.ddc.dill=packages/angular_components/material_expansionpanel/material_expansionpanel.scss.css.shim --summary=packages/angular_components/material_expansionpanel/material_expansionpanel.template.ddc.dill=packages/angular_components/material_expansionpanel/material_expansionpanel.template --summary=packages/angular_components/material_expansionpanel/material_expansionpanel_auto_dismiss.template.ddc.dill=packages/angular_components/material_expansionpanel/material_expansionpanel_auto_dismiss.template --summary=packages/angular_components/material_input/material_input_error_keys.template.ddc.dill=packages/angular_components/material_input/material_input_error_keys.template --summary=packages/angular_components/material_input/material_number_validators.template.ddc.dill=packages/angular_components/material_input/material_number_validators.template --summary=packages/angular_components/material_select/handles_aria.template.ddc.dill=packages/angular_components/material_select/handles_aria.template --summary=packages/angular_components/material_select/material_select_dropdown_item.scss.css.shim.ddc.dill=packages/angular_components/material_select/material_select_dropdown_item.scss.css.shim --summary=packages/angular_components/material_select/material_select_dropdown_item.template.ddc.dill=packages/angular_components/material_select/material_select_dropdown_item.template --summary=packages/angular_components/app_layout/material_drawer_base.template.ddc.dill=packages/angular_components/app_layout/material_drawer_base.template --summary=packages/angular_components/material_select/shift_click_selection.template.ddc.dill=packages/angular_components/material_select/shift_click_selection.template --summary=packages/angular_components/material_select/material_select_base.template.ddc.dill=packages/angular_components/material_select/material_select_base.template --summary=packages/angular_components/model/ui/template_support.template.ddc.dill=packages/angular_components/model/ui/template_support.template --summary=packages/angular_components/material_select/material_dropdown_select.scss.css.shim.ddc.dill=packages/angular_components/material_select/material_dropdown_select.scss.css.shim --summary=packages/angular_components/model/selection/string_selection_options.template.ddc.dill=packages/angular_components/model/selection/string_selection_options.template --summary=packages/angular_components/mixins/selection_input_adapter.template.ddc.dill=packages/angular_components/mixins/selection_input_adapter.template --summary=packages/angular_components/material_select/material_dropdown_select.template.ddc.dill=packages/angular_components/material_select/material_dropdown_select.template --summary=packages/angular_components/material_select/material_dropdown_select_accessor.template.ddc.dill=packages/angular_components/material_select/material_dropdown_select_accessor.template --summary=packages/angular_components/model/date/time_zone_aware_clock.template.ddc.dill=packages/angular_components/model/date/time_zone_aware_clock.template --summary=packages/angular_components/material_datepicker/proto/date.pb.template.ddc.dill=packages/angular_components/material_datepicker/proto/date.pb.template --summary=packages/angular_components/material_datepicker/proto/date_range.pb.template.ddc.dill=packages/angular_components/material_datepicker/proto/date_range.pb.template --summary=packages/angular_components/utils/comparators/comparators.template.ddc.dill=packages/angular_components/utils/comparators/comparators.template --summary=packages/angular_components/model/date/date.template.ddc.dill=packages/angular_components/model/date/date.template --summary=packages/angular_components/material_datepicker/range.template.ddc.dill=packages/angular_components/material_datepicker/range.template --summary=packages/angular_components/material_datepicker/comparison_option.template.ddc.dill=packages/angular_components/material_datepicker/comparison_option.template --summary=packages/angular_components/material_datepicker/comparison.template.ddc.dill=packages/angular_components/material_datepicker/comparison.template --summary=packages/angular_components/material_datepicker/model.template.ddc.dill=packages/angular_components/material_datepicker/model.template --summary=packages/angular_components/material_datepicker/module.template.ddc.dill=packages/angular_components/material_datepicker/module.template --summary=packages/angular_components/material_datepicker/calendar.template.ddc.dill=packages/angular_components/material_datepicker/calendar.template --summary=packages/angular_components/src/material_datepicker/calendar_listener.template.ddc.dill=packages/angular_components/src/material_datepicker/calendar_listener.template --summary=packages/angular_components/material_datepicker/material_calendar_picker.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/material_calendar_picker.scss.css.shim --summary=packages/angular_components/material_datepicker/material_calendar_picker.template.ddc.dill=packages/angular_components/material_datepicker/material_calendar_picker.template --summary=packages/angular_components/material_tab/material_tab.scss.css.shim.ddc.dill=packages/angular_components/material_tab/material_tab.scss.css.shim --summary=packages/angular_components/material_tab/material_tab.template.ddc.dill=packages/angular_components/material_tab/material_tab.template --summary=packages/angular_components/material_tab/tab_mixin.template.ddc.dill=packages/angular_components/material_tab/tab_mixin.template --summary=packages/angular_components/material_input/deferred_validator.template.ddc.dill=packages/angular_components/material_input/deferred_validator.template --summary=packages/angular_components/forms/error_renderer.template.ddc.dill=packages/angular_components/forms/error_renderer.template --summary=packages/angular_components/material_input/base_material_input.template.ddc.dill=packages/angular_components/material_input/base_material_input.template --summary=packages/angular_components/material_datepicker/material_date_time_picker.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/material_date_time_picker.scss.css.shim --summary=packages/angular_components/material_input/material_input_multiline.scss.css.shim.ddc.dill=packages/angular_components/material_input/material_input_multiline.scss.css.shim --summary=packages/angular_components/material_input/material_input.scss.css.shim.ddc.dill=packages/angular_components/material_input/material_input.scss.css.shim --summary=packages/angular_components/material_input/material_input_multiline.template.ddc.dill=packages/angular_components/material_input/material_input_multiline.template --summary=packages/angular_components/material_input/material_input_default_value_accessor.template.ddc.dill=packages/angular_components/material_input/material_input_default_value_accessor.template --summary=packages/angular_components/material_input/material_input.template.ddc.dill=packages/angular_components/material_input/material_input.template --summary=packages/angular_components/material_datepicker/material_time_picker.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/material_time_picker.scss.css.shim --summary=packages/angular_components/material_datepicker/material_time_picker.template.ddc.dill=packages/angular_components/material_datepicker/material_time_picker.template --summary=packages/angular_components/material_datepicker/material_datepicker.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/material_datepicker.scss.css.shim --summary=packages/angular_components/material_datepicker/date_input.template.ddc.dill=packages/angular_components/material_datepicker/date_input.template --summary=packages/angular_components/material_datepicker/material_datepicker.template.ddc.dill=packages/angular_components/material_datepicker/material_datepicker.template --summary=packages/angular_components/material_datepicker/material_date_time_picker.template.ddc.dill=packages/angular_components/material_datepicker/material_date_time_picker.template --summary=packages/angular_components/material_datepicker/material_month_picker.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/material_month_picker.scss.css.shim --summary=packages/angular_components/material_datepicker/material_month_picker.template.ddc.dill=packages/angular_components/material_datepicker/material_month_picker.template --summary=packages/angular_components/app_layout/material_stackable_drawer.scss.css.shim.ddc.dill=packages/angular_components/app_layout/material_stackable_drawer.scss.css.shim --summary=packages/angular_components/app_layout/material_temporary_drawer.scss.css.shim.ddc.dill=packages/angular_components/app_layout/material_temporary_drawer.scss.css.shim --summary=packages/angular_components/app_layout/material_temporary_drawer.template.ddc.dill=packages/angular_components/app_layout/material_temporary_drawer.template --summary=packages/angular_components/app_layout/material_stackable_drawer.template.ddc.dill=packages/angular_components/app_layout/material_stackable_drawer.template --summary=packages/angular_components/focus/focus_list.template.ddc.dill=packages/angular_components/focus/focus_list.template --summary=packages/angular_components/material_chips/material_chip.scss.css.shim.ddc.dill=packages/angular_components/material_chips/material_chip.scss.css.shim --summary=packages/angular_components/material_chips/material_chip.template.ddc.dill=packages/angular_components/material_chips/material_chip.template --summary=packages/angular_components/material_chips/material_chips.scss.css.shim.ddc.dill=packages/angular_components/material_chips/material_chips.scss.css.shim --summary=packages/angular_components/material_chips/material_chips.template.ddc.dill=packages/angular_components/material_chips/material_chips.template --summary=packages/angular_components/material_expansionpanel/material_expansionpanel_set.template.ddc.dill=packages/angular_components/material_expansionpanel/material_expansionpanel_set.template --summary=packages/angular_components/stop_propagation/stop_propagation.template.ddc.dill=packages/angular_components/stop_propagation/stop_propagation.template --summary=packages/angular_components/material_input/material_number_accessor.template.ddc.dill=packages/angular_components/material_input/material_number_accessor.template --summary=packages/angular_components/material_input/material_percent_directive.template.ddc.dill=packages/angular_components/material_input/material_percent_directive.template --summary=packages/angular_components/material_radio/material_radio.scss.css.shim.ddc.dill=packages/angular_components/material_radio/material_radio.scss.css.shim --summary=packages/angular_components/material_radio/material_radio_group.scss.css.shim.ddc.dill=packages/angular_components/material_radio/material_radio_group.scss.css.shim --summary=packages/angular_components/material_radio/material_radio.template.ddc.dill=packages/angular_components/material_radio/material_radio.template --summary=packages/angular_components/material_select/material_select_searchbox.scss.css.shim.ddc.dill=packages/angular_components/material_select/material_select_searchbox.scss.css.shim --summary=packages/angular_components/material_select/material_select_searchbox.template.ddc.dill=packages/angular_components/material_select/material_select_searchbox.template --summary=packages/angular_components/material_datepicker/next_prev_buttons.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/next_prev_buttons.scss.css.shim --summary=packages/angular_components/src/material_datepicker/sequential.template.ddc.dill=packages/angular_components/src/material_datepicker/sequential.template --summary=packages/angular_components/material_datepicker/next_prev_buttons.template.ddc.dill=packages/angular_components/material_datepicker/next_prev_buttons.template --summary=packages/angular_components/scorecard/scorecard_bar.template.ddc.dill=packages/angular_components/scorecard/scorecard_bar.template --summary=packages/angular_components/utils/color/palette.template.ddc.dill=packages/angular_components/utils/color/palette.template --summary=packages/angular_components/scorecard/scorecard.scss.css.shim.ddc.dill=packages/angular_components/scorecard/scorecard.scss.css.shim --summary=packages/angular_components/scorecard/scorecard.template.ddc.dill=packages/angular_components/scorecard/scorecard.template --summary=packages/angular_components/scorecard/scoreboard.scss.css.shim.ddc.dill=packages/angular_components/scorecard/scoreboard.scss.css.shim --summary=packages/angular_components/scorecard/scoreboard.template.ddc.dill=packages/angular_components/scorecard/scoreboard.template --summary=packages/angular_components/material_select/display_name.template.ddc.dill=packages/angular_components/material_select/display_name.template --summary=packages/angular_components/material_select/material_select.scss.css.shim.ddc.dill=packages/angular_components/material_select/material_select.scss.css.shim --summary=packages/angular_components/focus/focus_item.template.ddc.dill=packages/angular_components/focus/focus_item.template --summary=packages/angular_components/material_select/material_select.template.ddc.dill=packages/angular_components/material_select/material_select.template --summary=packages/angular_components/material_tab/tab_button.scss.css.shim.ddc.dill=packages/angular_components/material_tab/tab_button.scss.css.shim --summary=packages/angular_components/material_tab/tab_button.template.ddc.dill=packages/angular_components/material_tab/tab_button.template --summary=packages/angular_components/material_tab/fixed_material_tab_strip.scss.css.shim.ddc.dill=packages/angular_components/material_tab/fixed_material_tab_strip.scss.css.shim --summary=packages/angular_components/material_tab/tab_change_event.template.ddc.dill=packages/angular_components/material_tab/tab_change_event.template --summary=packages/angular_components/material_tab/fixed_material_tab_strip.template.ddc.dill=packages/angular_components/material_tab/fixed_material_tab_strip.template --summary=packages/angular_components/material_progress/material_progress.scss.css.shim.ddc.dill=packages/angular_components/material_progress/material_progress.scss.css.shim --summary=packages/angular_components/material_progress/material_progress.template.ddc.dill=packages/angular_components/material_progress/material_progress.template --summary=packages/angular_components/material_datepicker/date_range_input.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/date_range_input.scss.css.shim --summary=packages/angular_components/material_datepicker/date_range_input.template.ddc.dill=packages/angular_components/material_datepicker/date_range_input.template --summary=packages/angular_components/app_layout/material_persistent_drawer.template.ddc.dill=packages/angular_components/app_layout/material_persistent_drawer.template --summary=packages/angular_components/model/ui/highlight_assistant.template.ddc.dill=packages/angular_components/model/ui/highlight_assistant.template --summary=packages/angular_components/mixins/highlight_assistant_mixin.template.ddc.dill=packages/angular_components/mixins/highlight_assistant_mixin.template --summary=packages/angular_components/material_input/material_auto_suggest_input.scss.css.shim.ddc.dill=packages/angular_components/material_input/material_auto_suggest_input.scss.css.shim --summary=packages/angular_components/material_input/material_input_wrapper.scss.css.shim.ddc.dill=packages/angular_components/material_input/material_input_wrapper.scss.css.shim --summary=packages/angular_components/material_input/material_auto_suggest_input.template.ddc.dill=packages/angular_components/material_input/material_auto_suggest_input.template --summary=packages/angular_components/reorder_list/reorder_list.scss.css.shim.ddc.dill=packages/angular_components/reorder_list/reorder_list.scss.css.shim --summary=packages/angular_components/reorder_list/reorder_events.template.ddc.dill=packages/angular_components/reorder_list/reorder_events.template --summary=packages/angular_components/utils/keyboard/keyboard.template.ddc.dill=packages/angular_components/utils/keyboard/keyboard.template --summary=packages/angular_components/reorder_list/reorder_list.template.ddc.dill=packages/angular_components/reorder_list/reorder_list.template --summary=packages/angular_components/material_datepicker/date_range_editor_host.template.ddc.dill=packages/angular_components/material_datepicker/date_range_editor_host.template --summary=packages/angular_components/material_toggle/material_toggle.scss.css.shim.ddc.dill=packages/angular_components/material_toggle/material_toggle.scss.css.shim --summary=packages/angular_components/material_toggle/material_toggle.template.ddc.dill=packages/angular_components/material_toggle/material_toggle.template --summary=packages/angular_components/src/material_datepicker/comparison_range_editor.scss.css.shim.ddc.dill=packages/angular_components/src/material_datepicker/comparison_range_editor.scss.css.shim --summary=packages/angular_components/utils/showhide/showhide.template.ddc.dill=packages/angular_components/utils/showhide/showhide.template --summary=packages/angular_components/utils/angular/managed_zone/interface.template.ddc.dill=packages/angular_components/utils/angular/managed_zone/interface.template --summary=packages/angular_components/material_datepicker/date_range_editor.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/date_range_editor.scss.css.shim --summary=packages/angular_components/material_datepicker/preset.template.ddc.dill=packages/angular_components/material_datepicker/preset.template --summary=packages/angular_components/model/date/date_formatter.template.ddc.dill=packages/angular_components/model/date/date_formatter.template --summary=packages/angular_components/material_datepicker/date_range_editor.template.ddc.dill=packages/angular_components/material_datepicker/date_range_editor.template --summary=packages/angular_components/material_datepicker/material_date_range_picker.scss.css.shim.ddc.dill=packages/angular_components/material_datepicker/material_date_range_picker.scss.css.shim --summary=packages/angular_components/material_datepicker/config.template.ddc.dill=packages/angular_components/material_datepicker/config.template --summary=packages/angular_components/material_datepicker/material_date_range_picker.template.ddc.dill=packages/angular_components/material_datepicker/material_date_range_picker.template --summary=packages/angular_components/auto_dismiss/auto_dismiss.template.ddc.dill=packages/angular_components/auto_dismiss/auto_dismiss.template --summary=packages/angular_components/material_slider/material_slider.scss.css.shim.ddc.dill=packages/angular_components/material_slider/material_slider.scss.css.shim --summary=packages/angular_components/material_slider/material_slider.template.ddc.dill=packages/angular_components/material_slider/material_slider.template --summary=packages/angular_components/src/material_tree/group/material_tree_group.scss.css.shim.ddc.dill=packages/angular_components/src/material_tree/group/material_tree_group.scss.css.shim --summary=packages/angular_components/material_tree/material_tree.template.ddc.dill=packages/angular_components/material_tree/material_tree.template --summary=packages/angular_components/material_tab/material_tab_panel.scss.css.shim.ddc.dill=packages/angular_components/material_tab/material_tab_panel.scss.css.shim --summary=packages/angular_components/material_tab/material_tab_panel.template.ddc.dill=packages/angular_components/material_tab/material_tab_panel.template --summary=packages/angular_components/angular_components.template.ddc.dill=packages/angular_components/angular_components.template --summary=packages/casatunes/app_component.template.ddc.dill=packages/casatunes/app_component.template --packages=file:///<KEY>kernel_builder_exIOU7/.packages --module-name=web/main --multi-root-scheme=org-dartlang-app --multi-root=. --track-widget-creation --inline-source-map --libraries-file=file:///usr/local/Cellar/dart/2.6.1/libexec/lib/libraries.json --used-inputs-file=/<KEY>ddk_builder_Sxm9Fg/used_inputs.txt web/main.dart
dart --version: 2.6.1 (Mon Nov 11 13:12:24 2019 +0100) on "macos_x64"
Bad state: Empty input given.
#0 BinaryBuilder._checkEmptyInput (package:kernel/binary/ast_from_binary.dart:457:29)
#1 BinaryBuilder.readComponent.<anonymous closure> (package:kernel/binary/ast_from_binary.dart:474:7)
#2 Timeline.timeSync (dart:developer/timeline.dart:161:22)
#3 BinaryBuilder.readComponent (package:kernel/binary/ast_from_binary.dart:472:21)
#4 ProcessedOptions.loadComponent (package:front_end/src/base/processed_options.dart:410:10)
#5 initializeIncrementalCompiler (package:front_end/src/api_unstable/modular_incremental_compilation.dart:207:29)
<asynchronous suspension>
#6 initializeIncrementalCompiler (package:front_end/src/api_unstable/ddc.dart:153:10)
<asynchronous suspension>
#7 _compile (package:dev_compiler/src/kernel/command.dart:277:27)
<asynchronous suspension>
#8 compile (package:dev_compiler/src/kernel/command.dart:42:18)
<asynchronous suspension>
#9 compile (package:dev_compiler/src/compiler/shared_command.dart:394:12)
#10 _CompilerWorker.performRequest.<anonymous closure> (file:///b/s/w/ir/cache/builder/sdk/pkg/dev_compiler/bin/dartdevc.dart:64:13)
#11 _rootRun (dart:async/zone.dart:1124:13)
#12 _CustomZone.run (dart:async/zone.dart:1021:19)
#13 _runZoned (dart:async/zone.dart:1516:10)
#14 runZoned (dart:async/zone.dart:1463:12)
#15 _CompilerWorker.performRequest (file:///b/s/w/ir/cache/builder/sdk/pkg/dev_compiler/bin/dartdevc.dart:62:24)
<asynchronous suspension>
#16 AsyncWorkerLoop.run.<anonymous closure> (package:bazel_worker/src/worker/async_worker_loop.dart:33:41)
#17 _rootRun (dart:async/zone.dart:1124:13)
#18 _CustomZone.run (dart:async/zone.dart:1021:19)
#19 _runZoned (dart:async/zone.dart:1516:10)
#20 runZoned (dart:async/zone.dart:1463:12)
#21 AsyncWorkerLoop.run (package:bazel_worker/src/worker/async_worker_loop.dart:33:26)
<asynchronous suspension>
#22 main (file:///b/s/w/ir/cache/builder/sdk/pkg/dev_compiler/bin/dartdevc.dart:28:57)
<asynchronous suspension>
#23 _startIsolate.<anonymous closure> (dart:isolate-patch/isolate_patch.dart:301:32)
#24 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Answers:
username_1: @username_0 can you please give your dart sdk version? (`dart --version` or `flutter --version`)
username_2: @username_0 - thanks for filing the issue!
@username_1 I found the version midway through the error message:
```
dart --version: 2.6.1 (Mon Nov 11 13:12:24 2019 +0100) on "macos_x64"
```
I believe this is the same as #38102, so I'm closing it as a duplicate.
Status: Issue closed
|
Rust-SDL2/rust-sdl2 | 1130919889 | Title: Relative mouse mode
Question:
username_0: When I turn call the function to enable it I can still see the mouse cursor, and I get absolute mouse cursor positions logged. I've stripped my code down to the below which shows it:
```
extern crate sdl2;
use sdl2::event::Event;
fn main() {
let context = sdl2::init().expect("Failed to init sdl2");
context.mouse().set_relative_mouse_mode(true);
let mut canvas = context
.video()
.expect("Failed to get video")
.window("Relative mouse test", 640, 480)
.build()
.expect("Failed to build window")
.into_canvas()
.build()
.expect("Failed to build canvas");
let mut event_pump = context
.event_pump()
.expect("Failed to get event pump");
let mut running = true;
while running {
for event in event_pump.poll_iter() {
match event {
Event::Quit { .. } => running = false,
Event::MouseMotion { x, y, .. } => {
println!("{}, {}", x, y);
}
_ => {}
}
}
canvas.present();
}
}
```
I tried this on Debian Linux, and Mac OSX
```
▶ rustc -V
rustc 1.58.1 (db9d1b20b 2022-01-20)
▶ cargo -V
cargo 1.58.0 (f01b232bc 2022-01-19)
▶ cat Cargo.toml
[package]
name = "relative-mouse-mode"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.sdl2]
version = "0.35.2"
features = ["bundled"]
▶ uname -a
Linux t450s 5.10.0-11-amd64 #1 SMP Debian 5.10.92-1 (2022-01-18) x86_64 GNU/Linux
```
Any chance someone could point me where I'm going wrong?
Thanks!
Daniel
Answers:
username_1: `context.mouse().set_relative_mouse_mode(true);` needs to be done after the window creation.
Interestingly enough the mouse position won't be reset, but at least the cursor is hidden so it's a start.
Status: Issue closed
username_0: Perfect, thank you! |
webpack/webpack.js.org | 186607060 | Title: Fresh Look: Colors & Fonts
Question:
username_0: ## 1. Colors
<img src="https://cloud.githubusercontent.com/assets/8946207/19899432/21c043bc-a086-11e6-90eb-b0e25d534cea.png" width="350" />
- The blues are picked up from the logo.
- Cools greys have a slight blue tint and are used in the sidebar, level 2 text etc.
- Neutrals are used as body copy (dark) or body copy background (light)
- Accent color — green is used in code highlighting to make the code section a stand out a bit — since we use blue shades everywhere else in the rest of the website.
I'm not married to the idea having green as an accent color, but it seemed to complement the primary colors well.
### Code
<img src="https://cloud.githubusercontent.com/assets/8946207/19899871/9f17e81e-a087-11e6-94f3-af6f094b3972.png" width="650" />
## 2. Fonts
The existing design uses a combination of 8 font families / weights / styles including Cabin, Geomanist and the icon font.
#### Proposed font stack
1) Roboto or Source Sans Pro for body copy and headings (regular/bold/regular italic).
2) System specific monospace font — Monaco (Mac), Menlo (Mac/iOS), Deja Vu Sans (Linux), Consolas (Windows) Droid Mono (Android), fallback to Fira Code.
The code fonts supplied with OS'es look pretty good and there's little reason to download a new font.
3) Icon font using a subset of material design icons.
This comes out to be a total of 4 font combinations that a user has to download, hence avoiding FOUT (which can last a good 3-4 seconds for each font style on slower networks)
#### Readability
<img width="1235" alt="screen shot 2016-11-01 at 11 43 39 pm" src="https://cloud.githubusercontent.com/assets/8946207/19901406/105d5dd8-a08d-11e6-97f2-0a8284b4da3e.png">
_(Click to enlarge image or see [codepen example](http://codepen.io/username_0/pen/pEMOdj))_
Answers:
username_1: Green is complement. Have you considered some orange or would that be pushing it?
username_0: @username_1 I did try orange ( which is infact a literal complement of blue), but the warm and cold color combination didn't seem to go to well.
username_2: Yea honestly I was thinking maybe we can get away with a blue grey scheme and then a separate one for syntax highlighting. I'm not in love with the current yellow-orange but I'm also not sure if the green is better. What color were you thinking for links?
username_0: Honestly, I'm a little inspired by the green in [Vue JS docs](https://vuejs.org/guide/#Relation-to-Custom-Elements) a. The link color, in body copy, is blue with a light blue underline
---

.
username_2: Actually, seeing it in those docs, I do kind of like the green for links.
username_0: That's cool. What about the typography?
username_2: Native fonts for code sound good 👍. Again I'm not sure I'm really sold on changing the base font, if we were to choose one of the others maybe Source Sans Pro but honestly they're all fairly similar.
If we get rid of Geomanist, we could just use an SVG or PNG for the logo (which I believe @username_3 already mentioned switching back to). However, as suggested by a few people, it's also being used for the headings. @username_3, what do you think about the fonts?
username_0: Should I go forward and make a PR for the color related changes then?
username_2: Yea definitely, once you update the base color scheme in _vars I'll help update the rest of the site.
username_3: Sorry for being unresponsive. It's hard to filter the important issues :)
Thx @username_0 for your work. I like the proposed color scheme 👍 . Especially the green is a nice accent. Where can I find it on the current site?

I'm not quite happy with the shades, especially dark blue on dark backgrounds is not ideal. We need to ensure that all font colors maintain a [4.5:1 contrast (ideally 7:1 for regular text)](http://webaim.org/resources/contrastchecker/).
---
I agree on simplifying the font stack. 👍 for using a system font for monospaced fonts. We can also use a different font for body text, but I would like to use the Geomanist font for the headlines or decoration stuff.
username_2: @username_3 agreed on the syntax highlighting issues. Even the other color, tussock, didn't work very well for links within the code blocks. Personally, I like the darker schemes for syntax highlighting a bit more but maybe going with a lighter one as you, @username_0, had in your mockups and picking a new prism theme wouldn't be such a bad idea. We could even customize a theme if someone wants to dig into that 😁
username_3: I like dark color themes too :)
Status: Issue closed
username_2: Closing as the [_vars.scss partial](https://github.com/webpack/webpack.js.org/blob/master/styles/partials/_vars.scss) has been updated to reflect the new color scheme. |
gocarina/gocsv | 553303332 | Title: Possible dead code in marshall
Question:
username_0: In your `marshall` method you have the following code:
`for dupField.Kind() == reflect.Interface || dupField.Kind() == reflect.Ptr {
if dupField.IsNil() {
return value, nil
}
dupField = dupField.Elem()
}`
This code seems dead to me because you do the same check in `writeTo` so it shouldn't be possible for this code to run. Can you please elucidate your reasoning here or remove this piece? |
Kitware/vtk-js | 230789763 | Title: OBJ Reader appends "index.obj" to URLs
Question:
username_0: My OBJ file lives at a URL that does not end in ".obj", and this is causing the reader to append "index.obj" to the end of the URL. This was unexpected behavior to me, is there a way to instruct the reader not to add this to the URL?
Answers:
username_1: Yes by using { fullpath: true } as option in the setUrl.
See https://github.com/Kitware/vtk-js/blob/master/Sources/IO/Misc/OBJReader/index.js#L182-L183
Status: Issue closed
username_0: Great, thanks!
username_1: BTW if you are doing some generic girder plugin, you might want to use [StandaloneSceneLoader](https://kitware.github.io/vtk-js/examples/StandaloneSceneLoader.html) as it is use [here](https://kitware.github.io/vtk-js/examples/StandaloneSceneLoader/index.html?fileURL=https://data.kitware.com/api/v1/file/5878eb978d777f05f44b1427/download) with girder and is also meant to load OBJ file.
username_0: Thanks for the tip, I actually have a minimal setup working now with the following:
const renderWindow = vtkRenderWindow.newInstance();
const renderer = vtkRenderer.newInstance();
renderWindow.addRenderer(renderer);
const reader = vtkObjReader.newInstance();
const mapper = vtkMapper.newInstance();
mapper.setInputConnection(reader.getOutputPort());
const actor = vtkActor.newInstance();
actor.setMapper(mapper);
renderer.addActor(actor);
const container = this.$('.g-surface-viewer-container')[0];
const glwindow = vtkOpenGLRenderWindow.newInstance();
glwindow.setContainer(container);
renderWindow.addView(glwindow);
const interactor = vtkRenderWindowInteractor.newInstance();
interactor.setView(glwindow);
reader.setUrl(this.model.downloadUrl(), {fullpath: true}).then(() => {
renderer.resetCamera();
renderWindow.render();
interactor.initialize();
interactor.bindEvents(container);
});
<img width="579" alt="screen shot 2017-05-23 at 2 11 34 pm" src="https://cloud.githubusercontent.com/assets/555959/26369137/c618af8c-3fc1-11e7-8b05-e91e6c22ae61.png">
username_1: Awesome! Thanks for sharing... |
astropy/astroquery | 816397582 | Title: astroquery.alma appears to return an incomplete and duplicated antenna listing
Question:
username_0: Using the following:
```
from astroquery.alma import Alma
alchemi_data = Alma.query(payload={'project_code':'2017.1.00161.L'},public_data=False)
alchemi_data['antenna_arrays'][1057]
```
...it appears that the antenna_arrays listing contains multiple instances of a given antenna (but on different antenna pads)...
```
Out[6]: 'A001:DA44 A001:DV07 A002:DA46 A002:DA51 A005:DV25 A007:DV05 A008:DA42 A008:DV07 A010:DA50 A010:DV13 A011:DV21 A015:DA64 A016:DA44 A016:DV11 A022:DV23 A023:DA41 A023:DA42 A024:DA49 A025:DA46 A025:DV02 A026:DA57 A027:DV06 A033:DA53 A034:DA50 A034:DA55 A035:DA43 A035:DA47 A036:DA45 A039:DV14 A040:DA51 A040:DA55 A042:DV08 A043:DA60 A044:DV03 A044:DV11 A045:DV01 A047:DV15 A048:DA62 A048:DV02 A049:DA47 A049:DV03 A050:DV13 A058:DA41 A058:DA43 A060:DV17 A062:DV10 A066:DV04 A068:DA65 A069:DV16 A070:DA48 A070:DA62 A072:DV20 A073:DA54 A073:DA59 A074:DV09 A075:DA52 A075:DV18 A076:DA59 A076:DA63 A082:DA52 A082:DA54 A083:DV22 A085:DA48 A085:DA63 A086:DA58 A086:DV...'
```
Several antennas are repeated in the above listing (i.e. DV07). Is this listing the combination of all antenna pad:antenna pairs that were observed in all sessions observed for a given scheduling block?
Also, it appears that the listing is incomplete, as the string ends with "...".
Answers:
username_1: @username_0 have you verified that the antenna number issue is an astroquery issue, not an ALMA archive issue?
The `...` issue is real, apparently. @username_2, where are string limit lengths being imposed? Is that upstream or in our tooling here?
username_0: @username_1 I am not sure how I would check the ALMA archive side of this issue. The antenna_arrays column does not seem to be provided with the ALMA archive web interface.
username_2: `Alma.help_tap()` shows that the size of `antenna_arrays` field is limited to 660 which is the size of the `...` values. I'm going to enquire ALMA developers about that limitation.
username_3: Hi all, the solution for this should be implemented in an ALMA archive release coming out at the end of May. |
mdn/browser-compat-data | 907507749 | Title: api.SpeechSynthesisUtterance.lang - <PUT TITLE HERE>
Question:
username_0: <!-- Tips: where applicable, specify browser name, browser version, and mobile operating system version -->
#### What information was incorrect, unhelpful, or incomplete?
#### What did you expect to see?
#### Did you test this? If so, how?
<!-- Do not make changes below this line -->
<details>
<summary>MDN page report details</summary>
* Query: `api.SpeechSynthesisUtterance.lang`
* MDN URL: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisUtterance/lang
* Report started: 2021-05-31T14:11:33.044Z
</details> |
forax/beautiful_logger | 325254644 | Title: has been compiled by a more recent version of the Java Runtime (class file version 53.0)
Question:
username_0: Salut,
J'ai assisté à ta super conf devoxx 2018 sur le logger.
Du coup j'ai voulu l'essayer.
Avec java 8:
```
... has been compiled by a more recent version of the Java Runtime (class file version 53.0), this version of the Java Runtime only recognizes class file versions up to 52.0
```
Il semblerait qu'il soit compilé en java 9.
Je n'ai pas réussi à builder (je suis sous windows + l'extraction du tar.gz ne m'est pas autorisée)
Où puis'je trouver une version pour java 8?
Merci.
Answers:
username_1: Ok, je pense que j'ai ma petite idée de pourquoi,
juste pour confirmer, tu peux me donner le nom de la classe qui merde ?
username_1: La dernière version (0.9.8) devrait avoir fixer les différents bugs que j'ai stupidement introduit en ajoutant le support de la version 11 (entre autre).
Est-ce que tu peux vérifier que cela marche de ton coté ?
username_0: Message d'origine:
```
Exception in thread "main" java.lang.UnsupportedClassVersionError: Unsupported class file version 53.0, this version of the Java Runtime only recognizes class file versions up to 52.0
at sun.misc.Unsafe.defineAnonymousClass(Native Method)
at com.github.username_1.beautifullogger.LoggerImpl.loggerClass(LoggerImpl.java:509)
at com.github.username_1.beautifullogger.LoggerImpl.<clinit>(LoggerImpl.java:502)
at com.github.username_1.beautifullogger.LoggerConfig.fromClass(LoggerConfig.java:243)
at com.github.username_1.beautifullogger.LoggerConfig.fromClass(LoggerConfig.java:233)
at com.esyo.sharedesk.channels.ScreenServerApp.<init>(ScreenServerApp.java:126)
at com.esyo.sharedesk.channels.ScreenServerApp.main(ScreenServerApp.java:36)
```
ok en 0.9.8, MERCI !
Status: Issue closed
|
moodleou/moodle-filter_embedquestion | 851338239 | Title: This question may not be embedded here.
Question:
username_0: Hi all,
I think I followed the workflow to embed a question, but I get this message and not question: "This question may not be embedded here."
Any idea why? Thanks for your support.
Regards,
J.
Answers:
username_0: Well, I created a new question from scratch and it works. So it's not a problem, I will recreate/copy the question, no problem.
Sorry for the noise!
Status: Issue closed
|
Prosumma/CoreDataQueryInterface | 152108679 | Title: Add cdqi build phase instructions to the README
Question:
username_0: @patgoley
I see where you're headed: You want the `cdqi` script to run on each build, right before the compilation phase, so that if changes were made to the model, they are picked up automatically. I think that's an excellent idea. We should add sample build phrase scripts to the documentation for Carthage, CocoaPods (if possible), etc. Developers can of course customize them as they see fit.<issue_closed>
Status: Issue closed |
whatwg/infra | 217290803 | Title: String splitting algorithms could use optional "nesting characters"
Question:
username_0: When splitting strings, it's reasonably common to only want to split on "top-level" instances of the split chars, and have "nesting" characters, like parens, within which you don't look for the splitting characters. For example, splitting a string on commas, but the string can contain functions with comma-separated arguments.
Most of the strings I work with get passed
Answers:
username_1: It seems your comment got cut off. Is this used outside CSS parsers? Because inside CSS, you need to handle all kinds of other CSS rarities too such as escapes and then you might as well invoke the CSS parser to be sure.
username_0: Comment was cut off and I finished editting immediately, but apparently not before you checked the thread. Check again. ^_^
username_2: srcset parser has something like this, but without a stack (it uses a dumb state machine).
username_0: Looks like srcset only looks for parens to account for possible future CSS functions? Right now the only valid descriptors are 1w, 1x, and 1h.
If that's the case, then the algo is broken - it'll misparse at times once that starts being allowed. It needs to track nesting, and you're making my point for me. ^_^
username_1: If srcset needs to be compatible with CSS it also needs to handle escapes and should just be defined by the CSS parser, I think.
username_2: It's not for CSS but for future descriptors like integrity(). The algorithm is intentionally "simple" and CSS compat is not a goal.
username_1: I think I'll need this at least for `Content-Type` and possibly other HTTP headers, but I'm not sure yet whether I want those to operate on strings or bytes. |
CaptainMeatloaf/TurtleBot | 287493822 | Title: Welcome function
Question:
username_0: the function would simply print the statement
"Welcome. Visit gettingstarted.turtlecoin.lol for wallets and mining.turtlecoin.lol for mining. Share your wallet address on #wallets for a introductory tip."
Answers:
username_1: I'd propose making this automatic when someone joins, not manually triggered
username_2: I'm open to suggestions to other community resources, but I just wanted to keep it short so it actually gets read from start to finish.
Welcome %Uset%!Get Started -> **GetStarted.Turtlecoin.lol** start mining -> **Mining.TurtleCoin.lol**. When your wallet has been created, post it in #wallets so people can tip you
username_1: There is the option of making the message longer and sending it via DM too
username_2: The DM, in my opinion, should be a URL list of our community resources. At the least, those URLs should contain all of our DNS forwards to the various resources.
username_1: A list of those would be useful
username_2: Working on it
username_2: ```
www.turtlecoin.lol - Web Page
blog.turtlecoin.lol - Dev Blog
chat.turtlecoin.lol - Community Chat
meta.turtlecoin.lol - Meta-forum (proposals, bugs, notes)
twitter.turtlecoin.lol - Official Twitter
reddit.turtlecoin.lol - Community Subreddit
github.turtlecoin.lol - Source Code
download.turtlecoin.lol - Releases
getstarted.turtlecoin.lol - Getting Started Guide
mining.turtlecoin.lol - Mining Guide
wiki.turtlecoin.lol - TurtleCoin Wiki
wallet.turtlecoin.lol - TurtleCoin Paper Wallet
supply.turtlecoin.lol - Info about TRTL Supply
```
Status: Issue closed
username_1: This has been replaced with a welcome channel instead. |
elifesciences/package-ejp-raw-output-zip | 376836608 | Title: Reviewing editor details
Question:
username_0: ## Problem / Motivation
WHO: Production/Bot/Production Vendor
WHEN: Between Export from EJP/xPub and delivery to production vendor
WHERE: In eLife bot processes
WHAT: Senior editor details
WHY: Differences between EJP output and final XML (EJP could not match our requirements exactly)
## Proposed solution
Output from ejp:
```<contrib-group content-type="section"><contrib contrib-type="assoc_ed" id="author-24218"><name><surname>Frank</surname><given-names><NAME>.</given-names></name><role>Reviewing Editor</role><aff><institution>Brown University</institution><country>United States</country></aff></contrib></contrib-group>```
Final XML:
```<contrib-group content-type="section">```
...
```<contrib contrib-type="editor" id="author-10"><name><surname>Collings</surname><given-names>Andy</given-names></name><role>Reviewing Editor</role><aff><institution>eLife Sciences</institution><country>United Kingdom</country></aff></contrib></contrib-group>```
Differences:
EJP @contrib-type is"assoc_ed"; final XML is "editor"
## Clarification needed and assumptions
- This is repeated in the sub-article decision letter
- In the kitchen sink the EJP ID is present in the main article xml but not the sub-article. Is this a mistake? And why is the senior editor EJP ID not in the Kitchen sink but this is?
---
## Tasks
- [ ] Could the details required for the decision letter sub-article be taken from this XML? Would need this detail to be stored and then pulled in and matched up with the right paper when the decision letter is processed.
- [ ] Make the changes necessary to deliver to production
## Technical notes
@username_1
## User interface / Wireframes
NA
Answers:
username_1: I'm seeing in the input XML for what I think is an Insight article has empty tags for the editor records, I assume they can be ignored:
```
<contrib-group content-type="section">
<contrib contrib-type="assoc_ed" id="author-">
<name>
<surname/>
<given-names/>
</name>
<role>Reviewing Editor</role>
<aff>
<institution/>
<country/>
</aff>
</contrib>
</contrib-group>
<contrib-group content-type="section">
<contrib contrib-type="editor" id="author-">
<name>
<surname/>
<given-names/>
</name>
<role>Senior Editor</role>
<aff>
<institution/>
<country/>
</aff>
</contrib>
</contrib-group>
```
username_0: Hi @username_1 Feature content will have a whole load of their own tickets! For research articles I think this should never be empty and so this is something we'd need validation on. |
ArctosDB/arctos | 347191464 | Title: Copyright Status Attribute
Question:
username_0: From #1610
**Table**
CTATTRIBUTE_TYPE
**Value**
copyright status
**Definition**
describes the rights of the copyright holder listed for the object
**Collection type**
If the code table includes a "Collection" column. Ex: ART, EH
**Attribute data type**
controlled vocabulary
**Attribute value**
**In Copyright**: Item is protected by copyright and/or related rights.
**In Copyright - Rights-Holder(s) Unlocatable or Unidentifiable**: Item is protected by copyright and/or related rights. However, for this Item, either (a) no rights-holder(s) have been identified or (b) one or more rights-holder(s) have been identified but none have been located. See also: http://rightsstatements.org/vocab/InC-RUU/1.0/
**Copyright Undetermined**: The copyright and related rights status of this Item has been reviewed by the organization that has made the Item available, but the organization was unable to make a conclusive determination as to the copyright status of the Item. See also: http://rightsstatements.org/vocab/UND/1.0/
**Copyright Not Evaluated**: The copyright and related rights status of this Item has not been evaluated. See also: http://rightsstatements.org/vocab/CNE/1.0/
**Public Domain**: Item is in the Public Domain.
**License Agreement**: Item is in copyright and a license agreement is secured with copyright holder.
We can record the copyright statement specific to the object in the remarks.
**Attribute units**
None
**Context**
Does this work? Does it look okay @username_2 and @marecaguthrie ? Would anyone else be using this attribute that would find some other value useful?
Answers:
username_1: Are we waiting for more feedback from others before creating this attribute? Also, the copyright holder agent is still not displaying in an agent box when added to a record. In addition, does the media license that we requested also still need more discussion before it can be created?
username_2: If so, I'm good with it.
username_3: I created the attribute, but I can't or don't know how to create the code table of controlled vocabulary. I didn't find anything in the handbook on this.
@username_4 ?
username_4: Table created
Status: Issue closed
username_2: Can you please add this attribute to UAM:EH also?
username_4: It should already be available
<img width="339" alt="screen shot 2018-08-09 at 8 08 00 am" src="https://user-images.githubusercontent.com/5720791/43907906-6a749e2e-9bab-11e8-9d84-1ce80be2aa9c.png">
username_2: You're right! It's there. thanks |
syrenio/XMLText | 145150448 | Title: anyAttribute
Question:
username_0: da kann man dann bei einem Element jedes Attribute angeben - jedes das im XML Schema Namespace definiert ist!
See also XML in a nutshell page 306-307.
xs:any allows, among other, to specify “namespace” and “processContents”<issue_closed>
Status: Issue closed |
jefelewis/react-native-ultimate-modal-picker | 904833430 | Title: react native android DropdownList onChange not working
Question:
username_0: My Code
`<View>
<DropdownList
title="반려동물"
items={items}
defaultValue={'반려동물을 선택해주세요.'}
onChange={(item: string) => {
const targetItem = items.find(petItem => petItem.value === item);
dispatch({type: 'ANIMALINSERT', animal_type: item});
dispatch({
type: 'ANIMALIDINSERT',
animal_type_id: targetItem.key,
});
}}
customStyleCancelText={{
cancelTextLight: {
fontSize: 15,
fontWeight: '500',
color: '#FF5924',
},
cancelTextDark: {
fontSize: 15,
fontWeight: '500',
color: '#FF5924',
},
}}
/>
</View>`
onChange android not working
Answers:
username_1: +1 |
loomnetwork/dashboard | 458380770 | Title: Wallet: Incorrect validation during withdraw
Question:
username_0: @nutchy We still have validation issues, Not allowing to use decimal place values

Answers:
username_0: @nutchy We still have validation issues, Not allowing to use decimal place values

username_0: Good to be closed.

Status: Issue closed
|
MidwestFurryFandom/art_show | 375710569 | Title: Art Show Reports Menu Page
Question:
username_0: I would like a page of buttons to all of the different reports. Each of these reports will have an issue related to it that I will link to this issue.
0) Mass Print all Receipts - https://github.com/MidwestFurryFandom/art_show/issues/167
1) Piece Status Check - https://github.com/MidwestFurryFandom/art_show/issues/168
2) High Bids Door - https://github.com/MidwestFurryFandom/art_show/issues/169
3) Mature Auction - https://github.com/MidwestFurryFandom/art_show/issues/170
4) General Auction - https://github.com/MidwestFurryFandom/art_show/issues/171
5) Grand Summaries - https://github.com/MidwestFurryFandom/art_show/issues/172
6) Artist Invoice (payout) - https://github.com/MidwestFurryFandom/art_show/issues/173
7) Bidder Pick Up - https://github.com/MidwestFurryFandom/art_show/issues/177
9) Space Banners - https://github.com/MidwestFurryFandom/art_show/issues/174
Exports:
1)Artists - https://github.com/MidwestFurryFandom/art_show/issues/175
2)Bidders - https://github.com/MidwestFurryFandom/art_show/issues/176<issue_closed>
Status: Issue closed |
jlippold/tweakCompatible | 567222171 | Title: `Notchification` working on iOS 13.3
Question:
username_0: ```
{
"packageId": "com.c1d3r.notchification",
"action": "working",
"userInfo": {
"arch32": false,
"packageId": "com.c1d3r.notchification",
"deviceId": "iPhone8,2",
"url": "http://cydia.saurik.com/package/com.c1d3r.notchification/",
"iOSVersion": "13.3",
"packageVersionIndexed": false,
"packageName": "Notchification",
"category": "Tweaks",
"repository": "BigBoss",
"name": "Notchification",
"installed": "2.0.2-3",
"packageIndexed": true,
"packageStatusExplaination": "A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.",
"id": "com.c1d3r.notchification",
"commercial": false,
"packageInstalled": true,
"tweakCompatVersion": "0.1.5",
"shortDescription": "Beautiful animated notifications for all device",
"latest": "2.0.2-3",
"author": "c1d3r",
"packageStatus": "Unknown"
},
"base64": "<KEY>",
"chosenStatus": "working",
"notes": ""
}
```<issue_closed>
Status: Issue closed |
LiangYuxuan/Details_ExplosiveOrbs | 853788567 | Title: Request - Show only hit data
Question:
username_0: Great plugin!
This is more a request than an issue, I couldn't figure out where to put requests.
Would be nice to have a toggle, or an extra custom display available in the dropdown to hide "target" data; All I want to see is the hits. People are getting confused about how many splosions they are actually helping with - some folks cycle targets but don't actually hit them.
I figured out how to do this in the core.lua (by editing Engine:GetDisplayText and Engine:FormatDisplayText) but I thought I'd see if you could make it optional.

Answers:
username_1: I also want this. Can you tell me more specifically what you change in the core.lua? |
nutonomy/nuscenes-devkit | 469899855 | Title: Assertion error
Question:
username_0: Hi ,
I'm using this package [(https://github.com/traveller59/second.pytorch)]. nuscenes-devkit is installed as per the instructions.
When i execute this:
python3 create_data.py nuscenes_data_prep --root-path=/home/ubuntu/nuscene_trainval --version="v1.0-trainval" --dataset_name="nuscene"--max_sweeps=10
I'm getting the following error,
assert name in REGISTERED_DATASET_CLASSES, f"available class: {REGISTERED_DATASET_CLASSES}"
AssertionError: available class: {'KittiDataset': <class 'second.data.kitti_dataset.KittiDataset'>, 'NuScenesDataset': <class 'second.data.nuscenes_dataset.NuScenesDataset'>, 'NuScenesDatasetD8': <class 'second.data.nuscenes_dataset.NuScenesDatasetD8'>, 'NuScenesDatasetD8Velo': <class 'second.data.nuscenes_dataset.NuScenesDatasetD8Velo'>, 'NuScenesDatasetVelo': <class 'second.data.nuscenes_dataset.NuScenesDatasetVelo'>, 'NuScenesDatasetD7': <class 'second.data.nuscenes_dataset.NuScenesDatasetD7'>, 'NuScenesDatasetD6': <class 'second.data.nuscenes_dataset.NuScenesDatasetD6'>, 'NuScenesDatasetD5': <class 'second.data.nuscenes_dataset.NuScenesDatasetD5'>, 'NuScenesDatasetD4': <class 'second.data.nuscenes_dataset.NuScenesDatasetD4'>, 'NuScenesDatasetD3': <class 'second.data.nuscenes_dataset.NuScenesDatasetD3'>, 'NuScenesDatasetD2': <class 'second.data.nuscenes_dataset.NuScenesDatasetD2'>, 'NuScenesDatasetD2Velo': <class 'second.data.nuscenes_dataset.NuScenesDatasetD2Velo'>}
Any idea/help will be appreciated.
thanks.
Answers:
username_1: Hi. Please note that that repository does not belong to us. Generally it is best to ask the authors in their own repo. Looking at their readme, it looks like you specified the wrong dataset_name. It should be `--dataset_name="NuscenesDataset"`.
Status: Issue closed
username_2: The dataset name should be written as `--dataset_name="NuScenesDataset"`, the error also points that out, that the name can only be one of the class names listed. Refer to the third line |
OctopusDeploy/Issues | 295754256 | Title: Variable value disappears when opening editor
Question:
username_0: reported internally: https://octopusdeploy.slack.com/archives/C80H394RK/p1518149548000113
The text value is not showing up in the editor when you click "open editor"
Status: Issue closed
Answers:
username_2: Release Note: Fixed a bug which prevented variable value from being displayed in the variable editor popup |
adjust/ios_sdk | 166761544 | Title: Using 4.8.0 with Criteo?
Question:
username_0: I want to use `ADJCriteo` with `4.8.0` currently I was using the `criteo` branch for that.
Can I get it with `4.8.0`?
Answers:
username_1: Hi @username_0
Thanks for reporting this, will be enabled ASAP.
username_1: Hi @username_0
Can you explain us a bit what is the exact problem you are facing with? `ADJCriteo` is part of the `4.8.0` release, if you check the current `criteo` branch, here it is: https://github.com/adjust/ios_sdk/tree/criteo/Adjust/Criteo
username_0: @username_1
When I go for Carthage github `"adjust/ios_sdk" ~> 4.8.0` I miss the `ADJCriteo`.
Do I have the latest version of Adjust, when I am using `"adjust/ios_sdk" "criteo"`?
username_0: Its was a bit confusing for me, but I am just updating `"adjust/ios_sdk" "criteo"` now (:
Status: Issue closed
username_1: Yeah, that's how it should be used. :) 👍 |
jpillora/node-echo-server | 215592674 | Title: Create a docker image
Question:
username_0: A docker image of it is really useful =D
Status: Issue closed
Answers:
username_1: This project is no longer maintained, please see the Go rewrite https://github.com/username_1/go-echo-server. There you can download premade binaries and optionally run them inside a docker container (`docker run -v bin:/bin ubuntu /bin`). Alternatively, feel free to send a PR and I'll give you commit access. |
burberius/eve-esi | 475437408 | Title: OAuth doesn't support a way to get/set codeVerifier string
Question:
username_0: The issue I'm having is that OAuth itself isn't serializeable, and therefore I can't stash it in my session store (the callback may be served on another app instance, so I can't just keep it in memory).
If there were a getter/setter for the codeVerifier, I could simply stash the string in my session and recreate an identical OAuth in the callback handler.
I can work on a PR for this if you'd like, or if there is a design issue I'm missing please let me know.
Answers:
username_1: I have made a PR #103 with the changes and have asked the other devs to review it.
username_1: I won’t have time to do the release today and probably not tomorrow either. So, currently planning to do the release this weekend.
username_1: Released in 3.5.0
Status: Issue closed
|
awslabs/aws-sdk-android-samples | 280423072 | Title: AWS IoT MqttException(0) : Already connected, Similar to #131.
Question:
username_0: Hi, Can I connect AWSIotMqttManager use **Sample Cognito Developer Authentication**? thanks.
I have run CognitoSyncDemo and AndroidPubSubWebSocket successful.
The way CognitoSyncDemo is used **8.To add support for Developer authenticated identities using the Sample Cognito Developer Authentication application (Optional)**.
The way AndroidPubSubWebSocket is used **Developer Unauthenticated**.
Now, I got [DeveloperAuthenticationProvider](https://github.com/awslabs/aws-sdk-android-samples/blob/master/CognitoSyncDemo/src/com/amazonaws/cognito/sync/demo/CognitoSyncClientManager.java) in CognitoSyncDemo. Next, I use DeveloperAuthenticationProvider connect to AWSIotMqttManager.
in [CognitoSyncDemo-CognitoSyncClientManager](https://github.com/awslabs/aws-sdk-android-samples/blob/master/CognitoSyncDemo/src/com/amazonaws/cognito/sync/demo/CognitoSyncClientManager.java) add method code:
`
public static void connectIot() {
AWSIotMqttManager mqttManager = new AWSIotMqttManager("correct", "correct");
mqttManager.setAutoReconnect(false);
mqttManager.connect(credentialsProvider, new AWSIotMqttClientStatusCallback() {
@Override
public void onStatusChanged(final AWSIotMqttClientStatus status, final Throwable throwable) {
Log.d("connectIot", "Status = " + String.valueOf(status) + " throwable:" + throwable);
}
});
}
`
in [CognitoSyncDemo-DeveloperAuthenticationTask](https://github.com/awslabs/aws-sdk-android-samples/blob/master/CognitoSyncDemo/src/com/amazonaws/cognito/sync/demo/DeveloperAuthenticationTask.java) line 61 add code:
`CognitoSyncClientManager.connectIot()`
Now, I login use with [MainActivity-btnLoginDevAuth](https://github.com/awslabs/aws-sdk-android-samples/blob/master/CognitoSyncDemo/src/com/amazonaws/cognito/sync/demo/MainActivity.java).
When **method-connectIot()** running is completed.
I got Log and can't use AWSIotMqttManager:
`com.amazonaws.cognito.sync.demo D/connectIot: Status = Connecting throwable:null
com.amazonaws.cognito.sync.demo D/connectIot: Status = ConnectionLost throwable:MqttException (0) - java.io.IOException: Already connected`
So what should I do?
Answers:
username_0: it's good now, lack policy.
aws iot attach-principal-policy --policy-name PubSubPolicy --principal us-east-1:uuid(user id)
Status: Issue closed
username_0: in [CognitoSyncDemo-DeveloperAuthenticationTask](https://github.com/awslabs/aws-sdk-android-samples/blob/master/CognitoSyncDemo/src/com/amazonaws/cognito/sync/demo/DeveloperAuthenticationTask.java) line 61 add code:
`CognitoSyncClientManager.connectIot()`
Now, I login use with [MainActivity-btnLoginDevAuth](https://github.com/awslabs/aws-sdk-android-samples/blob/master/CognitoSyncDemo/src/com/amazonaws/cognito/sync/demo/MainActivity.java).
When **method-connectIot()** running is completed.
I got Log and can't use AWSIotMqttManager:
`com.amazonaws.cognito.sync.demo D/connectIot: Status = Connecting throwable:null
com.amazonaws.cognito.sync.demo D/connectIot: Status = ConnectionLost throwable:MqttException (0) - java.io.IOException: Already connected`
I want to get Authentication AWSIotMqttManager, what should I do?
Status: Issue closed
|
Kinark/Materialize-stepper | 315718597 | Title: Key press Enter in inputs go back steps in stepper horizontal.
Question:
username_0: How can I deactivate it?
Answers:
username_1: Since there was no answer, I'll be closing this issue for now.
Feel free to reopen it anytime you want.
Status: Issue closed
username_2: This was happening to me as well with a vertical stepper. To anyone else who comes across this, I resolved it by ensuring all buttons (except the submit button) had an explicit type attribute set to `button` |
edgarroman/zappa-django-guide | 254373591 | Title: S3 bucket needs to be created?
Question:
username_0: https://github.com/username_1/zappa-django-guide/blame/master/docs/walk_core.md#L53 mentions precreating the S3 bucket, but there's no instruction above about it.
Status: Issue closed
Answers:
username_1: You're right - thanks!
username_1: Permissions will be handled by the zappa tool, but essentially you need the IAM user running the zappa tool to have full control of the s3 bucket. No public access needed
username_2: sorry i thought this issue was for the static bucket. i understand zappa sets up the lambda bucket ok. |
SteveRuble/MichaelsPlace | 200533789 | Title: Liability Disclaimer
Question:
username_0: From Michael's Place: Is it possible to add a prompt with a disclaimer regarding liability when someone would like to open a case? Maybe a box to check that says MP is not liable for......? We could get that language to you for a disclaimer if that's a possibility. |
yargs/yargs | 208674385 | Title: Bot performance when using subcommands.
Question:
username_0: While writing a chat bot using subcommands, there's a very noticeable delay between issuing the bot a command and actually getting a response from the bot. I also notice in very naive tests (i.e. only running the bot methods and not how the bot behaves when issued a command) that the command object doesn't get covered, which led me to find that the builder gets called in `runCommand()`.
```js
this._parser = yargs()
this._parser.command({
'command': '!ch <cmd>',
'builder': yargs => {
yargs.command(dice(this))
yargs.command(uptime(this))
}
})
```
I'm wondering if it would be possible to apply the builder only once when the command is added instead of every time it is run. @username_1 What do you think?
Answers:
username_1: @username_0 I know some folks appreciate the fact that yargs' builder/handler are invoked lazily -- since it allows them to conditionally require dependencies when the methods are invoked ... maybe we could get the best of both worlds by introducing the concept of a cache? don't re-runt he builder if its been run before (but don't pre-run it).
Unfortunately, this might take a bit of refactoring; the command module is getting a little bit gnarly -- thoughts and help appreciated. |
ros-industrial/yak | 567182623 | Title: tsdf_max_weight
Question:
username_0: Hi, I'm new to Kinfu and trying to get myself familiar with it. In "kinfu.hpp" there is a member variable "int tsdf_max_weight" but it seems to be lack of description. Could you please brief me about what it does? Thanks!
Answers:
username_1: Each voxel in the TSDF volume contains 32 bits of data: a half-precision float (16 bits) representing the signed distance to the nearest surface, and an unsigned short integer (16 bits) representing the voxel weight. The weight is essentially the number of times the voxel's distance value has been updated by incoming depth images.
The weight is used when updating voxel distance data. The relevant function can be found in [this library's CUDA code](https://github.com/ros-industrial/yak/blob/9a615cc538d4e1430ee08c22d6ccac183a22198c/yak/src/cuda/tsdf_volume.cu#L102). The new distance value is a weighted average of the voxel's previous distance value and the voxel's distance in the latest depth image. This means that a region of the reconstructed surface that uses data from just a few images will quickly shift if the latest images show that it's shaped differently, while surfaces that have many observations will be less sensitive to changes.
I hope that this clarifies things a little bit!
username_0: @username_1 Thanks for the helpful reply!
Status: Issue closed
|
asfadmin/CIRRUS-DAAC | 616156460 | Title: daac bucket creation does not enable logging for protected and public buckets
Question:
username_0: To gather EMS distribution metrics the protected and public buckets need to have access logging enabled per this Cumulus documentation.
https://nasa.github.io/cumulus/docs/deployment/server_access_logging
the CIRRUS-DAAC daac module does not currently support this<issue_closed>
Status: Issue closed |
certbot/certbot | 539943023 | Title: Document how pinning works
Question:
username_0: This repo has a somewhat complex, custom system of pinnings allowing us to test Certbot with:
* The latest version of all dependencies
* A stable, tested version of our dependencies which is reused in development environments, Docker images, and certbot-auto
* The oldest version of our dependencies we need to support to allow various stable distros to continue to upgrade Certbot where they cannot upgrade libraries due to the risk of breaking other software
* The oldest version of other Certbot components that claim to be supported. For example, if `certbot-apache` says it requires `certbot>=1.0`, we test the plugin with `certbot==1.0` in addition to the version in `master`.
I'd ideally like to remove some of this testing when we're more reliant on our own distribution, but in the meantime, we should document how all this works somewhere. |
galaxyproject/tools-iuc | 274962619 | Title: MultiQC - escape element_identifiers
Question:
username_0: `$element_identifier` should be escaped when used as filenames (see https://github.com/galaxyproject/tools-iuc/commit/b47bba4052185e45c39c5de35d0c42f7b3ea4a49). One potentital issue is that we'd like the "Sample Name" for each file to match up as much as possible so MultQC can connect the data (it produces some nice summaries).<issue_closed>
Status: Issue closed |
mtsml/django-jack | 700478010 | Title: レイアウト修正
Question:
username_0: MDBでサンプル通り実装しているのに上手くいかなくて悩んでいたら、SideNavはPRO専用Componentだった
Answers:
username_0: MDBでサンプル通り実装しているのに上手くいかなくて悩んでいたら、SideNavはPRO専用Componentだった
username_0: navbar改善後のレイアウト
TOP画面

チャンネル一覧

チャンネル詳細画面

動画詳細画面

検索画面

Status: Issue closed
|
remisharrock/c-programming-with-linux-MOOC-issues-tracker | 365561526 | Title: Taskgrader
Question:
username_0: Which course: 4 Pointers and Memory Management What type of content: Taskgrader URL: https://courses.edx.org/courses/course-v1:Dartmouth_IMTx+DART.IMT.C.03+1T2018/courseware/5c40ed165b45423496c1c8c8fdca08d9/91f8edcd857f410b82baa1860866f4ae/?child=last Description: the solution proposed is a hello world program other comments: your name: Godefroy screenshot: cant paste the link of the dropbox file didn't receive it as fas as I know Codecast timing: Tasgrader code submitted: Operating system: Apple's macOS (formerly OS X) which web browser? Chrome Status actuel:
Status: Issue closed
Answers:
username_1: Resolved |
inukshuk/jekyll-scholar | 154908926 | Title: None
Question:
username_0: Is it common practice to put the different links into a single file? For example, you could simply add fields like 'arxiv', 'ha;' etc. -- wouldn't that be easier? I think that's the approach I would take.
If it is common usage to put all these links into the URL field like that, we could add this filter to jekyll-scholar; otherwise it's probably too specific.<issue_closed>
Status: Issue closed |
t6nand/hybridblurdetector | 473208797 | Title: Question on the decision tree method
Question:
username_0: Hello, friend. I am a student in HongKong and doing research on the methods to evaluate the blur extent of images. I find that your method(HWT) is from a paper(http://www.cs.cmu.edu/~htong/pdf/ICME04_tong.pdf) but I don't know if there is a similar paper for method(decision tree). Because I want to know more and the principle of decision tree in blur extent evaluation, thanks a lot! |
jfranco1701/STEM-Capstone-2019 | 413192825 | Title: Gather requirements
Question:
username_0: 1. How do students sign up? Open signup, or 'email you a code' approach.
2. Define data model (fields)
3. Permissions, how does user get promoted to a certain 'role'.
Answers:
username_1: 4. What’s the difference between the roles (counselor vs. teacher vs. parent)
username_1: How should events be added/approved?
username_2: 7. Should we concentrate on looks or functionality
Status: Issue closed
|
arshadansari27/fitranginew | 75115017 | Title: My Stream - Possible Enhancement while posting Links
Question:
username_0: Whenever i post any link through my post ....it is just get posted as a link ....There is any solution where it will also generate thumbnail of that like? Like it happen in Facebook or other Social network.
Answers:
username_1: this my friend is a sub project.. there may be some opensource aolution to this .. lemme look and if there is, it wud be awesome ...
username_0: Okkz..It will be awesome :)
username_2: it can be done with https://www.url2png.com/ @username_1 |
justinethier/cyclone | 154386935 | Title: Improved error handling
Question:
username_0: The compiler needs to start throwing errors if a function is called with the wrong number of arguments. For example, if a function requires 1 argument but is called with 0, an error should be thrown. Otherwise the compile program will crash in a strange way.
Status: Issue closed
Answers:
username_0: Closing as a duplicate of #83 |
jenkinsci/bitbucket-branch-source-plugin | 699367613 | Title: Ignore committers does not work
Question:
username_0: ### Your checklist for this issue
- [x] Jenkins version
2.249.1
- [x] Plugin version
2.9.2
- [x] Bitbucket server and version
Bitbucket Server 6.6.1
### Description
Setting ignored committers for a multibranch pipeline with a bitbucket source does not work. The description says the webhook is configured accordingly, but the integrated webhook approach in bitbucket server does not allow this setting.
We really need this feature to ignore the Jenkins as committer itself or ignore by commit message.
Kind regards,
Michael
Answers:
username_1: @username_0 Which "ignored committers" setting? Could show a screenshot?
username_0: 
This is a checkout behaviour setting
username_1: @username_0
Ah, you're using this: https://github.com/jenkinsci/bitbucket-branch-source-plugin/blob/b5a8011f6a03cc8860f2c8ebd039f44086f31d6a/src/test/java/com/cloudbees/jenkins/plugins/bitbucket/WebhookConfigurationTraitTest.java
Have you looked at https://github.com/jenkinsci/ignore-committer-strategy-plugin ?
username_0: I'll take a look and test it, was not aware that it supports organizationalFolder of bitbucket as its a bit outdated.
Nonetheless the provided bitbucket trait ignore committers seems to be legacy for not native webhooks?
username_1: I'm not sure. I don't have bandwidth to delve much on this issue currently.
username_2: The plugin https://github.com/jenkinsci/ignore-committer-strategy-plugin is def what your looking for. I made the same mistake when I started.
username_3: I ran into the same problem, with configuring the ignored commiter and it not being working diving into debugging. Wouldn't it be better to remove the internal plugin and just mentioning in the documentation that if you should use another plugin to do that, instead of leaving an essentially non working function in the code?
username_4: Hi, I confirm, this feature of the plugin is not working, I tried either email, name, or more options and it does not work.
username_5: I can confirm too that this feature is not working for us.
username_6: any updates? |
reactor/reactor-core | 518435568 | Title: Processors are inefficient when subscriptions are frequent
Question:
username_0: <!--- Provide a general summary of the issue in the Title above -->
<!--- /!\ Make sure to follow the Contribution Guidelines, notably for security issues and questions:
https://github.com/reactor/.github/blob/master/CONTRIBUTING.md
https://pivotal.io/security
https://github.com/reactor/.github/blob/master/CONTRIBUTING.md#question-do-you-have-a-question
-->
## Motivation
I have service A that holds reactive (grpc-reactive in my case) subscription to service B. Users of service A can ask service A to propagate this subscription to them (in my case, via websocket), so service A works as proxy. It is required, that service A holds exactly one subscription to service B, no matter how many users are subscribed to service A at the moment.
```
User 1 User 2 User 3
|_____ | ________|
| | | (websocket)
| | |
Service A
|
| (grpc)
|
Service B
```
I use DirectProcessor for this (this is Kotlin):
```kotlin
@Service
class ServiceA(private val serviceBStub: ServiceBStub) {
val downstreamProcessor = DirectProcessor.create<Message>()
// called at application start up
fun subscribeToUpstream() {
serviceBStub.getMessageFlux()
.retryBackOff(...)
.doOnNext { downstreamProcessor.onNext(it) }
.subscribe()
}
// used by service A users
fun subscribe(): Flux<Message> {
return downstreamProcessor.toFlux()
.onBackpressureDrop()
}
}
```
Using Processors is the only solution I know that allows keeping subscription to service B in "hot" state and using of a retry semantics for it. If there is a better way, please point it out to me.
The problem is the way DirectProcessor handles the list of its Inners. They are stored in static array, which is being reallocated on every subscribe and unsubscribe call. If the rate of subscription correlates with the rate of opening of some webpage, it leads to a huge GC-pressure.

This is a flight record of the service A during a session of load-testing. As you can see, while 17.4 Gb were allocated as `byte[]` by netty and Jackson, 6.35 Gb were allocated inside ReplayProcessor alone just during subscription/unsubscription (ReplayProcessor was used in this particular launch, but situation is the same for DirectProcessor).
## Desired solution
I would like to propose to add another Processor, let's say `MulticastProcessor`, that will support frequent addition/removal of subscribers. It will allow `null` elements in its array of Inners. It will be parameterized by `0 < load factor < 1`, in the same way as HashMap is, and will only reallocate array when it is full (increasing capacity), or when `#(not null elements)/#(all elements)` ratio is lower than the load factor (decreasing capacity). `onNext()` method will iterate over the array of inners and propagate messages only to the not-null Inners.
I have made a small proof-of-concept of it (with great help of @OlegDokuka ) and it shows ~4 times smaller GC-pressure in similar to my scenario benchmarks.
Please tell me if this sounds as an appropriate solution and whether I can try to implement and contribute it myself.
Answers:
username_1: Most `Processor` usage doesn't exhibit such large consumer volatility hence the default behavior is using copy-on-write for few consumers and many signals.
Consumer management via `null` has the problem that you have to eventually shrink the array based on some metric, which itself may be expensive to maintain. In addition, if the array somehow becomes large with lots of nulls, the emission will waste a lot of time skipping those entries.
You could use a hash-set behind a lock, but you should not call `onNext` while holding a lock thus every `onNext` has to create a snapshot of the hash-set and then emit to each entry. This of course adds more allocation. You could cache this snapshot but depending on the consumer volatility, you may end up synchronizing, allocating on every `onNext` and `subscribe` call, making it the worst.
username_0: Thanks for the quick response!
Yes, consumer management via `null` requires shrink strategy. But if implemented as described in my original post, it would be cheap to maintain. It would need to remember the amount of not-null Inners in the array and compare it to the size of the array on each unsubscribe. If the ratio is lower than a specified threshold, then the array should be shrinked.
And yes, there is a trade off between amount of allocations and amount of pointers skipped during emissions. And that is why I suggest to implement an additional Processor allowing to tune it.
username_1: I suggest implementing your `Processor`/stategy in your own project with benchmarks demonstrating its properties compared to the standard `Processor`s. Since such implementation is a standalone class, you can even have your own library and publish them as alternatives.
username_2: Sorry I never chimed in this issue, doing a bit of issue management right now and indeed the way to go is to implement that efficient but specific `Processor` in your own project.
Status: Issue closed
|
matplotlib/matplotlib | 644529564 | Title: Cannot load font from a file-like object
Question:
username_0: I am working on a Python module that uses matplotlib and which will be redistributed through PyPI. This module contains fonts resources (as .ttf files). It seems that the [`font_manager`](https://matplotlib.org/api/font_manager_api.html?highlight=font_manager#module-matplotlib.font_manager) module only contain API to load fonts using a path, rather than using a file-like object. Ideally, I'd like to use [`importlib_resources`](https://importlib-resources.readthedocs.io/en/latest/using.html):
```python
import importlib.resources as pkg_resources
from . import fonts
ttf = pkg_resources.open_binary(fonts, '04B_03__.TTF')
# load ttf in matplotlib
```
Is there a way to load fonts from a file-like object? Otherwise, may I ask for advice on how to include fonts in Python packages that will be redistributed?
Answers:
username_1: You can use https://docs.python.org/3/library/importlib.html#importlib.resources.path to extract the resource to a real file.
Adapting font_manager to work with in-memory files would be... not impossible, but a lot of work and I'm not sure it's worth it, so I would suggest closing this. |
PaloAltoNetworks/panhandler | 382737110 | Title: Need new type def for GPCS
Question:
username_0: GPCS requires a different type of commit after pushing XML snippets to panorama. We can switch on the the snippet type.
Proposed types:
panorama-vm
panorama-pa
panoram-gpcs
pan-os
rest-api
netconf
Answers:
username_0: current snippets will need rework in vistoq demo portal
username_0: Simplified list:
pan
pan-gpcs
rest
netconf
pan and pan-gpcs differ only in their *default* handing of the commit model, though both can be overridden as needed.
Status: Issue closed
username_0: Closing this as we have a panos-gpcs action type |
jupyterhub/the-littlest-jupyterhub | 555804087 | Title: Shibboleth authentication
Question:
username_0: Has anyone successfully added a shibboleth authentication to TLJH? If so, can you please share some details? The [Remote User Authenticator](https://github.com/cwaldbieser/jhub_remote_user_authenticator) looks promising, but the documentation is not very extensive.
Any ideas? |
vuejs/vue-class-component | 472114973 | Title: Argument of type 'typeof Xxx' is not assignable to parameter of type 'VueClass<Vue>'
Question:
username_0: <!--
Please make sure to provide a **minimal and self-contained reproduction** if you are reporting a bug.
You can use the following jsfiddle template or make an example github repository.
https://jsfiddle.net/username_2/nm55jnjk/
For usage questions, please use the following resources:
* Ask on the forum https://forum.vuejs.org
* Ask on the chat room https://chat.vuejs.org
* Look for / ask questions on Stack Overflow
-->
```
"vue": "2.6.10"
"vue-class-component": "7.0.2"
"vue-property-decorator": "8.1.0"
"typescript": "3.4.3",
```
```
interface A extends Vue {
code: string;
}
@Component({})
export default class Rs extends Vue<A> {
mounted() {
console.info(this.code);
}
}
```
```
(alias) Component<Vue>(options: ComponentOptions<Vue, DefaultData<Vue>, DefaultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>, Record<string, any>> & ThisType<Vue>): <VC>(target: VC) => VC (+1 overload)
import Component
Argument of type 'typeof Rs' is not assignable to parameter of type 'VueClass<Vue>'.
Type 'typeof Rs' is not assignable to type 'VueConstructor<Vue>'.
Types of parameters 'options' and 'options' are incompatible.
Type 'ComponentOptions<Vue, DefaultData<Vue>, DefaultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>, Record<string, any>> | undefined' is not assignable to type 'ThisTypedComponentOptionsWithArrayProps<Vue, A, object, object, never> | undefined'.
Type 'ComponentOptions<Vue, DefaultData<Vue>, DefaultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>, Record<string, any>>' is not assignable to type 'ThisTypedComponentOptionsWithArrayProps<Vue, A, object, object, never>'.
Type 'ComponentOptions<Vue, DefaultData<Vue>, DefaultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>, Record<string, any>>' is not assignable to type 'ComponentOptions<Vue, DataDef<A, Record<never, any>, Vue>, object, object, never[], Record<never, any>>'.
Types of property 'data' are incompatible.
Type 'object | ((this: Vue) => object) | undefined' is not assignable to type 'A | ((this: Readonly<Record<never, any>> & Vue) => A) | undefined'.
Type 'object' is not assignable to type 'A | ((this: Readonly<Record<never, any>> & Vue) => A) | undefined'.
Type 'object' is not assignable to type '(this: Readonly<Record<never, any>> & Vue) => A'.ts(2345)
```
```
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
[Truncated]
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}
```
Answers:
username_1: Maybe try to replace `@Component({})` by `@Component`
username_2: Don't use `Vue<A>` for super class as it occurs mismatching in sub class type. Create `A` as extended component and use it as a super class, or use `extends Vue implements A` should fix your problem.
Status: Issue closed
username_3: No, is not =(
username_2: At least on my end the error disappeared. If you are sure this is a bug of the lib issue, please open a new issue with **self-contained reproduction**. |
Arx-Game/arxcode | 397204958 | Title: Favor Notifications
Question:
username_0: Obviously that would changed to "X org has disfavored you" for disfavors.
I also think it might be helpful for these to go into org informs. Probably a similar template except it would be "X org has favored Y character." It just lets the other people with high enough access to see org informs keep track.
Answers:
username_1: Sounds good to me. A post to the prestige changes board might make sense too, or something similar to that.
username_0: I would love posts for all of them although I wonder if others would hate that. I think a weekly roundup bbpost that goes at cron with those other prestige updates might be a good option. I KNOW HOW MUCH YOU LOVE ADDING THINGS TO CRON. |
flowable/flowable-engine | 535602102 | Title: Unexpected Nullpointer returned
Question:
username_0: **Describe the bug**
In the file `modules/flowable-spring-boot/flowable-spring-boot-starters/flowable-spring-boot-autoconfigure/src/main/java/org/flowable/spring/boot/environment/FlowableLiquibaseEnvironmentPostProcessor.java` on line the methode `SpringBootVersion.getVersion()` is called and expected to return a string.
However, this class is able to determine the Spring Boot version in all environments - as described in the [Docs](https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/SpringBootVersion.html)
This goes unchecked and can cause a nullPointerException
**Expected behavior**
A clear and concise description of what you expected to happen.
Handle the return of a null value like in the file `modules/flowable-spring-boot/flowable-spring-boot-starters/flowable-spring-boot-autoconfigure/src/main/java/org/flowable/spring/boot/environment/FlowableDefaultPropertiesEnvironmentPostProcessor.java`, for example using this code:
```
protected String getLiquibaseProperty() {
String liquibaseProperty = "liquibase.enabled";
String springBootVersion = SpringBootVersion.getVersion();
if (springBootVersion != null && springBootVersion.startsWith("2")) {
liquibaseProperty = "spring." + liquibaseProperty;
}
return liquibaseProperty;
}
```
Or wrap this in a try-catch block
**Additional resources**
[SpringBootVersion Documentation](https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/SpringBootVersion.html)
Answers:
username_1: Given that Spring Boot 1.x.x releases were "end of life" as of August 2019 and 2.0.x was EOL in April 2019 and the only supported "supported releases" are 2.1.x and 2.2.x (per this [doc](https://github.com/spring-projects/spring-boot/wiki/Supported-Versions)) can't this code written in March of 2018 be simplified to assume only version 2 code?
Status: Issue closed
username_2: Thanks for reporting this @username_0. We've fixed this on master.
@username_1 I agree with you that Spring Boot 1.x is EOL as of August 2019. However, we still are testing with Spring Boot 1.5 and are not using new APIs for the time being.
Perhaps after the next release we can completely drop the Spring Boot 1.x Support |
elifesciences/elife-xpub | 426521228 | Title: Decouple the remaining code in component-model
Question:
username_0: The last task for moving the models to their own components is "hook up newly moved code to the app and make sure there are no remaining files in the wider codebase relating to this."
We need to distribute the code to the newly created `component-model-xxxx` packages<issue_closed>
Status: Issue closed |
dcloudio/uni-app | 625514977 | Title: textarea 输入连续标点符号 一直不会换行
Question:
username_0: **问题描述**
[问题描述:尽可能简洁清晰地把问题描述清楚]
textarea 输入连续标点符号 一直不会换行
**复现步骤**
[复现问题的步骤]
1. 启动 '...'
2. 点击 '....'
3. 查看
[或者可以直接贴源代码]
**预期结果**
[使用简洁清晰的语言描述你希望生效的预期结果]
**实际结果**
[这里请贴上你的报错截图或文字]

**系统信息:**
- 发行平台: [如 微信小程序、H5平台、5+ App等]
- 操作系统 [如 iOS 12.1.2、Android 7.0]
- HBuilderX版本 [如使用HBuilderX,则需提供 HBuilderX 版本号]
- uni-app版本 [如使用Vue-cli创建/运行项目,则提供`npm run info`的运行结果]
- 设备信息 [如 iPhone8 Plus]
**补充信息**
[可选]
[根据你的分析,出现这个问题的原因可能在哪里?]
Answers:
username_1: HBuilderX 版本号多少
username_0: 2.6.16
username_2: 试一下在 textarea 上添加样式 `word-break: break-word;` 看看行不行。 |
Tencent/ncnn | 276606669 | Title: 转换模型时出现问题:"caffe.LayerParameter" has no field named "permute_param".
Question:
username_0: 想转换ssd-mobilenet模型,在做这一步时出错:
caffe 自带了工具可以把老版本的 caffe 网络和模型转换为新版
upgrade_net_proto_text [老prototxt] [新prototxt
ERROR_CAFFE_CAFFE_PARSING_ERROR: Caffe could not parse MobileNetSSD_deploy.prototxt: 1177:3 : Message type "caffe.LayerParameter" has no field named "permute_param".
求教!
Answers:
username_1: 用这里的caffe https://github.com/weiliu89/caffe/tree/ssd
Status: Issue closed
|
DENSORobot/denso_robot_ros | 1108751745 | Title: Hand: Excessive position error
Question:
username_0: While using a Cobotta robot with its standard gripper (controller version `2.8.0`) via ROS Noetic. I tried to grasp an object which obviously stalled the gripper.
The robot triggered the `Hand: Excessive position error` (checked via RemoteTP).
I understand that the gripper will not reach its requested position, but that should not be a reason to trigger an error in this case. How can I prevent this error from occurring? Perhaps there are some hidden settings to allow for large position errors?
Answers:
username_1: Do you use `HandMoveA` command?
This command is for releasing an object or only moving fingers.
When grasping an object, it is recommended to use grasping commands such as:
- `HandMoveAH`
- `HandChuck`
- `HandMoveH`
For details, please refere to [Official User's manual](https://www.fa-manuals.denso-wave.com/en/COBOTTA/007170/).
Status: Issue closed
username_0: @username_1 Thank you very much. This solved my issue.
It is not trivial to understand what types of variants need to be sent and what the robot limits are, but I figured them out through trial and error: it seems the gripper effort can only be set between 0 and 20N, I haven't seen specifications related to these limits anywhere... |
Oslandia/landsurveycodesimport | 466908922 | Title: Uncaught RuntimeError: wrapped C/C++ object of type landsurveyAlgorithm has been deleted
Question:
username_0: Steps to reproduce
1. First
2. Second
3. Third
```
Traceback (most recent call last):
File "C:/Users/user9/AppData/Roaming/QGIS/QGIS3\profiles\default/python/plugins\LandSurveyCodesImport\land_survey_provider.py", line 56, in loadAlgorithms
self.addAlgorithm( alg )
RuntimeError: wrapped C/C++ object of type landsurveyAlgorithm has been deleted
```
LandSurveyCodesImport 0.1, QGIS 3.8.0-Zanzibar on Windows 10
Answers:
username_1: Thanks @username_0
You can test this patch by replacing the file land_survey_provider.py by [this one](https://raw.githubusercontent.com/Oslandia/landsurveycodesimport/1cb25dfb8f5f9a9a011a6c9efce83f001994010d/land_survey_provider.py)
Status: Issue closed
username_1: @username_0 A new version is available https://github.com/Oslandia/landsurveycodesimport/releases/tag/v0.1.1 and it will be available (awaiting approval) on http://plugins.qgis.org/plugins/LandSurveyCodesImport/ soon |
MithrilJS/mithril.js | 904432116 | Title: Replace `onbeforeupdate` with `m.retain()`
Question:
username_0: <!-- Provide a general summary of your suggestion in the "Title" above -->
<!--
Optional: Provide the exact version of Mithril you're experiencing issues with.
This could matter, even if it's really old like version 0.1.0. Do note that bugs
in older versions are commonly fixed in newer versions and that newer versions
are much more actively maintained than older versions, so it's unlikely we'll
add new features to older versions like 0.1.x.
-->
**Mithril version:**
<!--
Optional: Provide the name and version of both the platform (Chrome, Node, etc.)
and operating system you're running Mithril on. If it's multiple, feel free to
list multiple. This could matter, even if it's super ancient like IE 6 on
Windows XP.
-->
**Platform and OS:**
<!--
Optional: Provide a link to your project, if it happens to be open source or if
you created a repo somewhere that we can look into further. If it's multiple
projects, feel free to list them all.
-->
**Project:**
<!-- Required -->
**Is this something you're interested in implementing yourself?** Very
### Description
<!--
What exactly are you suggesting? Is it a particular missing feature? An odd
design choice you think could be improved? This doesn't need to be a concrete,
fully-fledged proposal, but it does need to be clear - it's hard to act on
suggestions that are too vague or generic.
-->
Replace this pattern:
```js
const Comp = {
onbeforeupdate(vnode, old) {
return cond
},
view(vnode) {
return tree
}
}
```
With this:
```
const Comp = {
// On first render, `old` is not passed
view(vnode, old) {
if (!cond) return m.retain()
return tree
}
}
```
[Truncated]
the size and cost of the feature into perspective. Simpler features to implement
can often be justified by just being helpful, but big, complex features could
require a massive benefit to pay for their size, scale, and complexity.
(This is why the discussion on a context API similar to React's got so
contentious - it's right on that line where it could go either way on the
cost/benefit ratio for us.)
-->
1. Modify `createVnode` to do nothing on `vnode.tag === "="`.
2. Modify `updateVnode` to, on `vnode.tag === "="`, transfer state much like what `shouldNotUpdate` does when preventing update, but also transfer tags and attributes, in effect modifying the `m.retain()` vnode to be the actual desired vnode. (This avoids having to replace nodes in the tree, which makes this a lot less complicated.)
3. Remove the `shouldNotUpdate` check in `updateNode`.
4. Modify `updateComponent` to invoke `vnode.state.view(vnode, old)`.
### Open Questions
<!--
Optional: What things still need discussed? If there are certain details you
aren't sure about, this could help inform discussion. Open questions like these
are precisely what shaped our sync vs async redraw API to be what they are for
v2.
-->
Answers:
username_1: Love it. Super intuitive. Since it's just a vnode, would it work in any part of a tree, not just components?
username_0: @username_1 Correct. It's intended to replace both the attribute the component method.
username_2: good old `{subtree: "retain"}` ❤️
username_0: Yup, and that's where the name came from. I miss it *badly*.
username_0: So, in light of some recent discussion in #2690, I'd like to propose an alternative: `m.updateIf(prevValue, compare, view)`
```js
const Comp = {
view(vnode) {
return m.updateIf(vnode.attrs, (prev, next) => cond, () => tree)
}
}
```
This would operate similar to `onbeforeupdate`, but as a special vnode. I'd keep the same tag, though.
Conveniently, this would allow easy diffing of not only attributes, but other state, too, and unlike React, it's very flexible. It's a little more magical than `m.retain()`, but it provides the functionality needed, and is still reasonably easy to understand.
If you wanted a direct equivalent of `React.memo`, you could do this:
```js
const hasOwn = {}.hasOwnProperty
m.memo = C => ({
view: ({attrs}) => m.updateIf(
Object.entries(vnode.attrs),
(prev, next) => {
prev.length === next.length &&
prev.every(([k, v]) => hasOwn.call(vnode.attrs, k) && v === vnode.attrs[k])
},
() => C(m.censor(attrs))
}
})
```
username_0: Okay, let me go back a little on that: that's not flexible enough for efficient DOM patching. It only really helps with the diffing (part of the allure of `m.retain()` in the first place). It might just be better to provide separate "track previous value" and "retain" vnodes.
```js
function Comp(ctx) {
return m.compare(ctx.attrs, (prev, next) => cond ? tree : m.retain())
}
```
It's a few more characters, but it's not that much worse, and it also means that combined with #2689, we don't need to provide any "previous" functionality. Here's the above `m.memo` written with each (using #2690 so it's a little easier to follow the whole picture).
```js
// `m.updateIf`
const hasOwn = {}.hasOwnProperty
m.memo = C => ({attrs}) => m.updateIf(
Object.entries(attrs),
(prev, next) => (
prev.length === next.length &&
prev.every(([k, v]) => hasOwn.call(attrs, k) && v === attrs[k])
),
() => C(attrs)
)
// `m.compare(value, init)` + `m.retain()`
const hasOwn = {}.hasOwnProperty
m.memo = C => ({attrs}) => m.compare(Object.entries(attrs), (prev, next) => (
prev.length === next.length &&
prev.every(([k, v]) => hasOwn.call(attrs, k) && v === attrs[k])
? C(attrs)
: m.retain()
))
// Minified `m.updateIf` vs `m.compare`
const h={}.hasOwnProperty;m.memo=C=>({attrs:a})=>m.updateIf(Object.entries(a),(p,n)=>p.length===n.length&&p.every(([k,v])=>h.call(a,k)&&v===a[k]),()=>C(a))
const h={}.hasOwnProperty;m.memo=C=>({attrs:a})=>m.compare(Object.entries(a),(p,n)=>p.length===n.length&&p.every(([k,v])=>h.call(a,k)&&v===a[k])?C(a):m.retain())
```
I'm not tied to the name, but that's the idea. Conversely, we can just provide `m.retain()`, and let components figure it out, but we're Mithril and we should do something. And plus, this is a bit nicer than putting it on `ctx` as explained in #2690, and `Comp(ctx, prevAttrs)` is admittedly inconsistent at best and just ugly in general.
username_1: I have an idea for an api but first I need to know: how does `m.updateIf` / `m.compare` keep track of previous values?
username_0: @username_1 It'd require a node slot (like `vnode.state`). Similar to how `onbeforeupdate` keeps track of previous vnodes, but instead of passing the whole vnode, it's just passing a single value. |
gobby/gobby | 96870559 | Title: Feature request: Proxy support
Question:
username_0: SOCKS5 proxy support would be great in scenarios where firewall blocks uncommon TCP ports
Answers:
username_1: I probably won't get to this anytime soon myself. Could one also use a standalone HTTP tunnel in such a scenario?
username_0: I could get by the firewall with `proxychains`.
username_2: Just commenting to add my support to this feature request.
I'd like to use Gobby from work to edit notes stored externally, but we're on Windows desktops behind an HTTP Proxy, so it's a non-starter right now. |
fastai/fastai | 343319721 | Title: Notebook pascal broken
Question:
username_0: The Notebook [pascal](https://github.com/fastai/fastai/blob/master/courses/dl2/pascal.ipynb) from "Lesson 9: Deep Learning Part 2 2018 - Multi-object detection" is broken in Section "Single object detection".
Custom metrics are set with
```
learn.metrics = [detn_acc, detn_l1]
```
```
learn.fit(lr, 1, cycle_len=3, use_clr=(32,5))
```
After the first epoch following exception occurs.
```
~/fastai/courses/dl2/fastai/model.py in <listcomp>(.0)
239 print('validate preds', type(preds), preds)
240 print('validate y', type(y), y)
--> 241 res.append([f(preds.data, y.data) for f in metrics])
242 return [np.average(loss, 0, weights=batch_cnts)] + list(np.average(np.stack(res), 0, weights=batch_cnts))
243
AttributeError: 'list' object has no attribute 'data'
```
In this case y is a list and has no data attribute.
This commit cause the error https://github.com/fastai/fastai/commit/d1d0b60558ae6dab9b9ad47b5928b144e95946c5
Status: Issue closed
Answers:
username_0: just reinstalled the fastai environment and the notebook works now.
username_0: The Notebook [pascal](https://github.com/fastai/fastai/blob/master/courses/dl2/pascal.ipynb) from "Lesson 9: Deep Learning Part 2 2018 - Multi-object detection" is broken in Section "Single object detection".
The problem occurs when setting metrics
```
learn.metrics = [detn_acc, detn_l1]
```
```
learn.fit(lr, 1, cycle_len=3, use_clr=(32,5))
```
After the first epoch following exception is thrown.
```
~/fastai/courses/dl2/fastai/model.py in validate(stepper, dl, metrics, seq_first)
236 batch_cnts.append(batch_sz(x, seq_first=seq_first))
237 loss.append(to_np(l))
--> 238 res.append([f(preds.data, y.data) for f in metrics])
239 return [np.average(loss, 0, weights=batch_cnts)] + list(np.average(np.stack(res), 0, weights=batch_cnts))
240
~/fastai/courses/dl2/fastai/model.py in <listcomp>(.0)
236 batch_cnts.append(batch_sz(x, seq_first=seq_first))
237 loss.append(to_np(l))
--> 238 res.append([f(preds.data, y.data) for f in metrics])
239 return [np.average(loss, 0, weights=batch_cnts)] + list(np.average(np.stack(res), 0, weights=batch_cnts))
240
AttributeError: 'list' object has no attribute 'data'
```
In this case y is a list and has no data attribute.
This commit cause the error https://github.com/fastai/fastai/commit/d1d0b60558ae6dab9b9ad47b5928b144e95946c5
username_0: too fast, the error still exists.
username_1: Yeah, I see where it comes from: basically the y.data needs to be mapped on to all the elements of the list if y is a list (like [x.data for x in y]). I'll look at it this week, but feel free to propose a PR in the meantime!
username_2: The current way the accuracy functions in the pascal notebook is setup requires that the full y list be passed in, which is then handled within the function
i.e.
```
def detn_l1(input, target):
bb_t,_ = target
bb_i = input[:, :4]
bb_i = F.sigmoid(bb_i)*224
return F.l1_loss(V(bb_i),V(bb_t)).data
def detn_acc(input, target):
_,c_t = target
c_i = input[:, 4:]
return accuracy(c_i, c_t)
```
I've sent in a PR which handles y if it's listy, by passing the complete y list/tuple to the function, and therefore the above works as expected :)
username_1: Thanks for digging into this! Just changed your code to go with the usual fastai style and will merge when the automatic checks are passed.
Status: Issue closed
|
arkhn/fhir-river | 1053669028 | Title: oracle_fdw LOB support
Question:
username_0: ## Description
<!-- Concisely describe the bug. -->
The Oracle foreign data wrapper https://github.com/laurenz/oracle_fdw allows to connect a Postgresql database to an Oracle database and to add foreign tables. Extracting those tables into materialized views is one of our EL strategy. Unfortunately CLOB, BLOB and BFILE data types support is still limited (see https://github.com/laurenz/oracle_fdw#foreign-table-options).
```
Note that due to an Oracle limitation, row prefetching won't work if the Oracle query involves a BLOB, CLOB or BFILE column. As a consequence, queries on such columns on a foreign table will perform badly if you fetch many rows.
```
## Resolution
<!-- Bug fix suggestion -->
Related issues with some resolution proposals
https://github.com/laurenz/oracle_fdw/issues/429#issuecomment-702177332
https://github.com/laurenz/oracle_fdw/issues/68#issuecomment-197316325
https://github.com/laurenz/oracle_fdw/issues/444#issuecomment-748235957 |
docker-library/openjdk | 452089870 | Title: There is a java breaking change in amd64/openjdk:8u212-jre-slim
Question:
username_0: openjdk version "1.8.0_212"
OpenJDK Runtime Environment (build 1.8.0_212-8u212-b01-1~deb9u1-b01)
OpenJDK 64-Bit Server VM (build 25.212-b01, mixed mode)
```
I need help to be able to make it works again..
thanks
Answers:
username_1: For running as an arbitrary user I guess `ibjli.so` wasn't resolvable where it was, so I moved it with the rest of the `*.so`'s. Running as root worked fine though.
Just moving that `libjli.so` was all that was needed
```console
cassandra@7191ad4a367e:/$ ldd $(which java)
linux-vdso.so.1 (0x00007ffe63321000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007ff7be580000)
libjli.so => /usr/local/openjdk-8/bin/../lib/amd64/jli/libjli.so (0x00007ff7be369000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007ff7be165000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007ff7bddc6000)
/lib64/ld-linux-x86-64.so.2 (0x00007ff7be79d000)
```
```Dockerfile
FROM openjdk:8u212-jre-slim
RUN apt update && apt install -y --no-install-recommends libcap2-bin && \
rm -rf /var/lib/apt/lists/*
RUN adduser --disabled-password --no-create-home --gecos '' --disabled-login cassandra
RUN setcap cap_ipc_lock=ep $(readlink -f $(which java)) && \
setcap -v cap_ipc_lock=ep $(readlink -f $(which java))
RUN mv /usr/local/openjdk-8/lib/amd64/jli/libjli.so /lib/x86_64-linux-gnu/
USER cassandra
CMD ["bash"]
```
```console
$ docker build . -t openjdk:test
Sending build context to Docker daemon 2.048kB
Step 1/7 : FROM openjdk:8u212-jre-slim
---> 7c6b62cf60ee
Step 2/7 : RUN apt update && apt install -y --no-install-recommends libcap2-bin && rm -rf /var/lib/apt/lists/*
---> Using cache
---> dc9404d76ca8
Step 3/7 : RUN adduser --disabled-password --no-create-home --gecos '' --disabled-login cassandra
---> Using cache
---> 3c2c98eec9c8
Step 4/7 : RUN setcap cap_ipc_lock=ep $(readlink -f $(which java)) && setcap -v cap_ipc_lock=ep $(readlink -f $(which java))
---> Using cache
---> 106016236fc4
Step 5/7 : RUN mv /usr/local/openjdk-8/lib/amd64/jli/libjli.so /lib/x86_64-linux-gnu/
---> Using cache
---> 1c2220760ae7
Step 6/7 : USER cassandra
---> Using cache
---> 27e2a43575d9
Step 7/7 : CMD ["bash"]
---> Using cache
---> 54098b2f7301
Successfully built 54098b2f7301
Successfully tagged openjdk:test
```
```console
$ docker run --rm --cap-add IPC_LOCK openjdk:test whoami && java -version
cassandra
openjdk version "1.8.0_212"
OpenJDK Runtime Environment (build 1.8.0_212-8u212-b03-0ubuntu1.16.04.1-b03)
OpenJDK 64-Bit Server VM (build 25.212-b03, mixed mode)
```
OpenJDK:8 and 11 are now from https://adoptopenjdk.net/upstream so that's why you ran into this
username_1: New image
```console
$ docker run -it --rm --cap-add IPC_LOCK openjdk:new
cassandra@5<PASSWORD>:/$ which java && ldd $(which java)
/usr/local/openjdk-8/bin/java
linux-vdso.so.1 (0x00007ffc1278d000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f29fd5da000)
libjli.so => /usr/local/openjdk-8/bin/../lib/amd64/jli/libjli.so (0x00007f29fd3c3000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f29fd1bf000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f29fce20000)
/lib64/ld-linux-x86-64.so.2 (0x00007f29fd7f7000)
```
Old image
```console
$ docker run -it --rm --cap-add IPC_LOCK openjdk:old
cassandra@ad896befc247:/$ which java && ldd $(which java)
/usr/bin/java
linux-vdso.so.1 (0x00007ffd977f8000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f8a3cd5a000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f8a3cb40000)
libjli.so => not found
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f8a3c93c000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f8a3c59d000)
/lib64/ld-linux-x86-64.so.2 (0x00007f8a3d179000)
```
Dockerfile without the `mv`, and swapping the tag with the archived [8u212-jre-slim](https://github.com/docker-library/repo-info/blob/9e84a3d0b9117087912b1f0d6ec7c3ca6c202345/repos/openjdk/remote/8u212-jre-slim.md)
```Dockerfile
FROM openjdk@sha256:24c831d6ae224380a3608a1cb2c6df17fd8242f844f7a2f9744fbc766d8300a5
RUN apt update && apt install -y --no-install-recommends libcap2-bin && \
rm -rf /var/lib/apt/lists/*
RUN adduser --disabled-password --no-create-home --gecos '' --disabled-login cassandra
RUN setcap cap_ipc_lock=ep $(readlink -f $(which java)) && \
setcap -v cap_ipc_lock=ep $(readlink -f $(which java))
#RUN mv /usr/local/openjdk-8/lib/amd64/jli/libjli.so /lib/x86_64-linux-gnu/
USER cassandra
CMD ["bash"]
```
username_2: Ah, so it looks like we need to either add `LD_LIBRARY_PATH` or adjust `/etc/ld.so.conf.d/...`. :sweat_smile:
username_2: It is odd that adding capabilities breaks the ability of libc to find the modules though (which for me works as both root and non-root). :confused:
username_2: The symptoms are remarkably similar to https://stackoverflow.com/q/42401614/433558, although there's no reply there. :disappointed:
username_2: So, we *do* need to update `/etc/ld.so.conf.d`. :+1:
username_2: Confirmed that it works -- getting a PR together now.
Another interesting bit:
```console
$ readelf -d /usr/local/openjdk-8/bin/java
...
0x000000000000000f (RPATH) Library rpath: [$ORIGIN/../lib/amd64/jli:$ORIGIN/../lib/amd64]
...
```
So this is how it's picking up the appropriate path for those `.so` files by default, but the `$ORIGIN` variable there must also be restricted with the extra capability set.
Status: Issue closed
username_4: Thank you guys, when will be available the new docker image containing that fix ? I see the last one was released 4 days ago.
username_0: Thanks you for you're quick response & fix ;)
username_2: @username_4 that'd be once https://github.com/docker-library/official-images/pull/6028 is tested, reviewed, merged, and officially built/pushed (which should happen today)
username_4: @username_2 thanks, it just got merged ! |
lakshmiDRIP/DROP | 351934128 | Title: Function Definition R<sup>d</sup> -> R<sup>d</sup>
Question:
username_0: _R<sup>d</sup> -> R<sup>d</sup>_ provides the evaluation of the R<sup>d</sup> -> R<sup>d</sup> objective function and its derivatives for a specified set of R<sup>d</sup> variates. Default implementation of the derivatives are for non-analytical black box objective functions. |
getdnsapi/stubby | 562137420 | Title: "dig any" not working with stubby
Question:
username_0: Now that I have stubby and DNSSEC working, I have a problem with `dig any`. When I use stubby, a normal `dig` command works fine. I can also ask for specific records types such as `A` or `MX`, but `ANY` is not working.
When I explicitly use the DNS server from the stubby.yml via `@ip_of_my_dns_server`, `dig any` works fine.
Answers:
username_1: Ack. getdns still tries to DNSSEC validate the `name ANY` combination which it cannot because there is no record for that name type combination.
Notice that you do get answers when you combine with `+cd` (i.e. checking disabled) option with dig.
I'm not sure whether we should consider this a bug. What do you think?
username_0: Thank you very much for your reply! I understand that DNSSEC is specifically trying to validate `name ANY`. Since `ANY` is no valid DNS record type, I would argue that it should validate every record type that is found (just as `dig ANY` yields records for all available record types).
`+cd/+cdflag` was not working for me and I am not sure if that is what is best: Using `ANY` as described above would still allow validation, `+cd` would disable validation. |
jzaefferer/video-call-linter | 745112837 | Title: Does not seem to work in Firefox
Question:
username_0: Hi! This worked in Chrome. But I also tried it in Firefox 85.0a1 (2020-11-17) (64-bit) on Debian Linux, and (after I clicked through the button to share my camera) the page seemed to hang for several seconds with no apparent functionality. I got Firefox's "a page is slowing down your browser; stop it or wait?" dialog a few times. |
sciollalab/BNL_ThermomechanicalStave | 259580691 | Title: Install invar bars in camera mount
Question:
username_0: <NAME>, 6 April 2017:
Hi All,
I just took a quick look at material properties. See attached.
The invar should behave slightly worse than steel in terms of vibration and much
better in terms of thermal expansion.
The carbon fiber tube I found should have better vibration characteristics (i.e.
higher fundamental frequency due to the same stiffness and much lower mass),
and maybe better CTE (hard to tell) although the invar should be good enough.
It may be simplest just to go with the invar, but since it is so cheap I would order a
5 foot tube of the carbon fiber for comparision (part number 020034 is only $33).
Regards, Dave
| CTE [ppm/K] | Young's Modulus [GPA] | Density [g/cm<sup>3</sup>] | thermal conductivity [W/m-K] |
|-------|---|---|--|
| 304 Steel | 17 | 193 | 8 | 16 |
| 6061 aluminum | 23| 70 | 2.7 | 175 |
| Invar | 1.3 | 140 | 8.1 | 14 |
| Goodwinds pultruded tube |-0.2 |138 | 1.5 |
https://goodwinds.com/carbon/pultruded-tubes.html
Part number 020034 .5" x 60" pultruded tube $33
Answers:
username_0: <NAME>, 6 April 2017:
Hi All,
I just took a quick look at material properties. See attached.
The invar should behave slightly worse than steel in terms of vibration and much
better in terms of thermal expansion.
The carbon fiber tube I found should have better vibration characteristics (i.e.
higher fundamental frequency due to the same stiffness and much lower mass),
and maybe better CTE (hard to tell) although the invar should be good enough.
It may be simplest just to go with the invar, but since it is so cheap I would order a
5 foot tube of the carbon fiber for comparision (part number 020034 is only $33).
Regards, Dave
| CTE [ppm/K] | Young's Modulus [GPA] | Density [g/cm<sup>3</sup>] | thermal conductivity [W/m-K] |
|-------|---|---|--|
| 304 Steel | 17 | 193 | 8 | 16 |
| 6061 aluminum | 23| 70 | 2.7 | 175 |
| Invar | 1.3 | 140 | 8.1 | 14 |
| Goodwinds pultruded tube |-0.2 |138 | 1.5 |
https://goodwinds.com/carbon/pultruded-tubes.html
Part number 020034 .5" x 60" pultruded tube $33
username_0: <NAME> <<EMAIL>> | Apr 6
McMaster has 1/2" diameter (same as we use now) unpolished invar rods for $130 per 3 feet, i.e. we would need 2 to replace the steel rods that we have now. Also needs a modification to the rod holders. The locking screw needs to be moved as close as possible to the end of the rods, otherwise we are still looking at 30cm of Aluminum contracting/expanding. Carbon fiber might be an overkill.
Gerrit
Status: Issue closed
|
SUSE/zypper-docker | 218072870 | Title: Packages Outdated
Question:
username_0: While I was working on issue #108 ,
Commands I used:
``
make build
make test
``
The output of make test, was full of errors and the cause was, outdated packages:
```
go get github.com/codegangsta/cli
go get github.com/coreos/etcd/pkg/fileutil
go get github.com/docker/distribution/reference
go get github.com/docker/docker/client
go get github.com/docker/docker/api/types
go get github.com/docker/engine-api/types/container
go get github.com/docker/engine-api/types/network
go get github.com/docker/engine-api/types/strslice
```
I've rectified almost all except,
``
go get github.com/docker/docker/api/client/formatter
``
Ther error raised is:
```
images.go:22:2: cannot find package "github.com/docker/docker/api/client/formatter" in any of:
/usr/lib/go-1.6/src/github.com/docker/docker/api/client/formatter (from $GOROOT)
/home/nikhil/go/src/github.com/docker/docker/api/client/formatter (from $GOPATH)
Makefile:47: recipe for target 'race' failed
make: *** [race] Error 1
nikhil@nikhil-wicked-machine:~/CONTRIBUTION/opensuse$ images.go:22:2: cannot find package "github.com/docker/docker/api/client/formatter" in any of:
/usr/lib/go-1.6/src/github.com/docker/docker/api/client/formatter (from $GOROOT)
/home/nikhil/go/src/github.com/docker/docker/api/client/formatter (from $GOPATH)
No tests found in package '.'.
```
Answers:
username_1: I am closing this issue as it has been fixed with https://github.com/SUSE/zypper-docker/pull/101.
Status: Issue closed
|
Borewit/music-metadata | 366739060 | Title: Tag reading failure for some M4A files
Question:
username_0: Hi, I wonder why [this M4A](https://www.dropbox.com/s/cf2qwx6toy9pnfw/2%20-%20Angels%20and%20Airwaves%20-%20Distraction.m4a?dl=0) file fails to read tag completely?
Tested also in iTunes, Windows Explorer, Windows Media Player, MediaMonkey, AIMP and all the apps read the tag just fine.
Answers:
username_1: Thanks for reporting the issue @username_0, I will look into it.
username_1: I find it interesting that those applications have no issues.
But is not just music-metadata, because these application (which are very reliable in my experience) are not able to extract metadata neither:
1. foobar2000
2. Mp3tag
I concur iTunes reads the tags just fine.
If I look into the file, it really looks to me the file contains an encoding mistake.
At position 63592 the length of the 'mdat' atom is stored, which is 14065434 (`00 D6 9F 1A`).
However I think the length should be 14065439 (+5), the `1A` should be `1F`.
I gave it try, then it will read the following 'mean' atom correctly and will parse just fine until the end of the file.
Under the assumption it is encoding error, I don't directly see how I go around it.
username_1: I found something, to be continued...
username_1: Thanks to [this too]l(https://www.bento4.com/downloads/) I was able to figure out how the other indented structure looked like:
````
[ftyp] size=8+16
major_brand = mp42
minor_version = 0
compatible_brand = mp42
compatible_brand = isom
[free] size=8+63559
[mdat] size=8+14065426
[-...] size=8+67 <=== which is a dash with 0x00, 0x00, 0x00. Apparently that should be read as a valid ID.
[moov] size=8+138376
````
Scary, it is almost if there are 2 parallel structures. In that dashed tag, there was another tag I could jump in as I did in the fix.
Thank you for this challenge, I enjoyed it.
username_1: Fixed in [v3.1.2](https://github.com/username_1/music-metadata/releases/tag/v3.1.2), enjoy.
Status: Issue closed
username_0: Thanks so much for a quick fix!
I can confirm it is working now! ;-)
username_1: Unknown atoms are ignored.
Problems was that the atom header was considered to be invalid. More specific the [FourCC](https://en.wikipedia.org/wiki/FourCC) identifier. Ofcourse I can accept any binary value, but of the identifier contains garbage, it is an indication I am reading something which is not the FourCC, at the parser is completely out-of-sync. At this point, all of the following atoms cannot be read neither.
I am not sure the FourCC atom identifiers in your sample are valid, but they are tolerated by music-metadata after the fix. |
googleapis/java-bigquery | 610831852 | Title: Support connectionProperties for job/query insertion
Question:
username_0: Once the discovery dependency is released at rev20200415 or later, we should include the ability to set connection properties as part of the job configuration for queries. They're key/value pairs, defined in discovery thusly:
"ConnectionProperty": {
"id": "ConnectionProperty",
"type": "object",
"properties": {
"value": {
"description": "[Required] Value of the connection property.",
"type": "string"
},
"key": {
"description": "[Required] Name of the connection property to set.",
"type": "string"
}
}
},
They're available in the discovery resources JobConfigurationQuery and QueryRequest as an array:
"connectionProperties": {
"type": "array",
"items": {
"$ref": "ConnectionProperty"
},
"description": "Connection properties."
},
Please include the necessary functionality in the manual layer to be able to set/interact connection properties. Will followup with more detail about available properties.
Answers:
username_0: https://cloud.google.com/bigquery/docs/reference/rest/v2/ConnectionProperty does indicate the current only allowed param (time_zone)
username_0: Looks like the discovery artifacts made it through release end of last week: https://search.maven.org/artifact/com.google.apis/google-api-services-bigquery/v2-rev20200415-1.30.9/jar
This should be unblocked.
username_1: Yes - a PR will be made tomorrow.
Status: Issue closed
|
eelcohn/Telegram-API | 282924301 | Title: Other users cannot see if a new user joined a Telegram group using an invitation link
Question:
username_0: At this time no information is available in the API messages which suggest how an user joined a Telegram group. Not fixable at this moment, maybe sometime in the future when Telegram adds this functionality to their API.
Answers:
username_0: At this time no information is available in the API messages which suggest how an user joined a Telegram group. Not fixable at this moment, maybe sometime in the future when Telegram adds this functionality to their API.
username_0: Feature request done today at @BotSupport |
rancher/rancher | 388469512 | Title: Pods Column Does Not Sort Numerically
Question:
username_0: On the Nodes page, the Pods column does not sort numerical. Since the display is something like 11/110 rather than a pure number the UI sorts this textually. Therefore, it is not possible to accurately sort the nodes by which ones have the most or the least pods running.
For example, when sorting least to greatest, 11/110 sorts before 9/110 even though 11 is numerically higher than 9.
---
| Useful | Info |
| :-- | :-- |
|Versions|Rancher `v2.1.3` UI: `v2.1.17` |
|Route|`global-admin.clusters.index`|
Status: Issue closed
Answers:
username_1: Version - 2.2 master 1/2
Verified fixed |
WisconsinRobotics/NetworkFirmwareUpdateRPi | 388742437 | Title: Upload Connection Not Working
Question:
username_0: Upload appearing not to work. Similar to the connection errors noticed for History and Github in #12.
This would appear to inhibit the main functionality of the page. This is potentially an issue with my local workspace and may have a quick fix, but still seems potentially severe.
I am using Crome on a Mac.

Answers:
username_1: We were again unable to replicate this error localy on our machines. We believe it to be related to a missing or improperly installed Flask module
Status: Issue closed
|
mhubig/docker-partkeepr | 877373781 | Title: Volumes in a non default location breaks the setup
Question:
username_0: I cloned the git repo and edited the docker-compose file so that volumes are located in a known location. This is something that I always do for docker projects so that I can backup the volumes easily. When i changed the location of the volumes for this partkeepr container the http://localhost:8080/setup/ gives this error: `Not Found The requested URL was not found on this server`
If I keep the original docker-compose file the setup works.
Can someone help me to solve this problem? Or is it not possible to change the volume locations?
My docker-compose file:
```
version: "3"
services:
database:
image: mariadb:10.0
restart: on-failure
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=yes
- MYSQL_DATABASE=partkeepr
- MYSQL_USER=partkeepr
- MYSQL_PASSWORD=<PASSWORD>
volumes:
- ./volumes/mysql-data:/var/lib/mysql
partkeepr:
image: mhubig/partkeepr:latest
restart: on-failure
environment:
- PARTKEEPR_DATABASE_HOST
- PARTKEEPR_DATABASE_NAME
- PARTKEEPR_DATABASE_PORT
- PARTKEEPR_DATABASE_USER
- PARTKEEPR_DATABASE_PASS
- PARTKEEPR_FR3D_LDAP_DRIVER_ACCOUNTCANONICALFORM
- PARTKEEPR_FR3D_LDAP_DRIVER_ACCOUNTDOMAINNAME
- PARTKEEPR_FR3D_LDAP_DRIVER_ACCOUNTDOMAINNAMESHORT
- PARTKEEPR_FR3D_LDAP_DRIVER_ACCOUNTFILTERFORMAT
- PARTKEEPR_FR3D_LDAP_DRIVER_BASEDN
- PARTKEEPR_FR3D_LDAP_DRIVER_BINDREQUIRESDN
- PARTKEEPR_FR3D_LDAP_DRIVER_HOST
- PARTKEEPR_FR3D_LDAP_DRIVER_OPTREFERRALS
- PARTKEEPR_FR3D_LDAP_DRIVER_PASSWORD
- PARTKEEPR_FR3D_LDAP_DRIVER_PORT
- PARTKEEPR_FR3D_LDAP_DRIVER_USESSL
- PARTKEEPR_FR3D_LDAP_DRIVER_USESTARTTLS
- PARTKEEPR_FR3D_LDAP_DRIVER_USERNAME
- PARTKEEPR_FR3D_LDAP_USER_ATTRIBUTE_EMAIL
- PARTKEEPR_FR3D_LDAP_USER_ATTRIBUTE_USERNAME
- PARTKEEPR_FR3D_LDAP_USER_BASEDN
- PARTKEEPR_FR3D_LDAP_USER_ENABLED
- PARTKEEPR_FR3D_LDAP_USER_FILTER
- PARTKEEPR_LOCALE
- PARTKEEPR_MAILER_AUTH_MODE
- PARTKEEPR_MAILER_ENCRYPTION
- PARTKEEPR_MAILER_HOST
- PARTKEEPR_MAILER_PASSWORD
- PARTKEEPR_MAILER_PORT
- PARTKEEPR_MAILER_TRANSPORT
- PARTKEEPR_MAILER_USER
- PARTKEEPR_AUTH_MAX_USERS
- PARTKEEPR_CATEGORY_PATH_SEPARATOR
- PARTKEEPR_CRONJOB_CHECK
- PARTKEEPR_FILESYSTEM_DATA_DIRECTORY
[Truncated]
- database
cronjob:
image: mhubig/partkeepr:latest
restart: on-failure
entrypoint: []
command: bash -c "crontab /etc/cron.d/partkeepr && cron -f"
volumes:
- ./volumes/partkeepr-conf:/var/www/html/app/config:ro
- ./volumes/partkeepr-data:/var/www/html/data
- ./volumes/partkeepr-web:/var/www/html/web
depends_on:
- partkeepr
volumes:
partkeepr-conf:
partkeepr-data:
partkeepr-web:
mysql-data:
```
Answers:
username_1: I believe that what is happening is that the image has files in those directories, thus directories like /var/www/html/data are overridden by empty ones when the volumes are mounted. Docker initializes named volumes with the contents of the image so this problem doesn't happen.
username_2: I am trying to do the same thing for the same reason and seeing the same issue. I have tried running the original docker-compose file to create a good set of volume related files in /var/lib/docker/volumes, shutting it down, then copying them to where I really want them and updating the docker-compose file to point there and bringing it back up. It throws a forbidden error so clearly in don't understand enough about how docker works to solve this problem at this time. |
uikit/uikit | 839412884 | Title: Item visible when not hovered
Question:
username_0: <!--
👋 Hi, thank you for using UIKit!
Please open an issues only for a bug report or feature request. Make sure no one else else has already opened a similar issue. If you need help or have questions about UIkit, there are few places to start:
- Search our public documentation: https://getuikit.com/docs
- Ask the community in the Discord chat: https://discord.gg/NEt4Pv7
- Look for an answer on Stack Overflow: https://stackoverflow.com/questions/ask?tags=getuikit
-->
### UIkit Version
3.6.18
### Actual Behavior
When using `uk-hidden-hover`, the element is hidden, when not hovered. That's perfect so far, but when i click the element, it stays visible when i "unhover" it.
### Expected Behavior
It would expect that the element also is getting hidden, when stopped hover and the element has been clicked before.
### Reproduction Link
https://getuikit.com/docs/visibility#toggle
### Steps to Reproduce the Problem
1. Hover the Icon (it will be visible)
2. Click the Icon
3. Un-Hover the Icon (Icon will stay visible)
Answers:
username_1: If in yoyr project this behavior not needed, you can remove focus-related rules in this file because its readable and easy to fix al tine 123 and near:
`.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
opacity: 0 !important;
}` |
trailofbits/polytracker | 765849708 | Title: 阿里河火车站哪里有真实大保健(找特色服务【十(V)1077_1909】
Question:
username_0: 阿里河火车站妹子真实找上门服务妹子【威信IO77I9O9美女】月日由王迎执导韩庚、王晓晨、叶祖新、张晓晨、马春瑞、王艺嘉联合主演的都市情感剧《还没爱够》在北京国际饭店二层国际厅举行首播发布会。该剧主创团队导演王迎编剧霍昕、陆驭龙、陈琛总制片人刘斯斯、聂建华总策划夏陈安制片人王万滨、邵华特邀主演冯雷该剧主要演员叶祖新、马瑞、赵一维、王艺嘉等一起亮相发布会现场。《还没爱够》片花播出后一股浓浓的青春气息扑面而来节奏明快剧中都是俊男靓女不要觉得这种感觉似曾相识因为这部剧的导演就是曾经执导了《奋斗》、《我的青春谁做主》、《北京青年》等电视剧的王迎。这几部青春励志剧影响了一代人。后来执导的友情职场剧《翻译官》、现代医疗剧《北京青年》也备受好评。该剧在题材上聚焦了“恐婚”这一新颖的角度由金牌编剧霍昕亲自操刀她曾创作电视剧《将爱情进行到底》开创了中国大陆青春偶像剧里程碑。这一次她深入洞悉了时下都市男女的感情生活抓住了年轻人在速食爱情中“恐婚”这一痛点聚焦了越来越普遍的恐婚一族从恐婚到逃婚再到走向婚姻的殿堂这样的题材着实少见但对于现在生活压力越来越大的年轻人而言却并不陌生。《还没爱够》由韩庚、王晓晨领衔主演。该剧讲述了“恐婚”青年陈炯再遇“被逃婚”前任姜小汐互相理解再次勇敢相爱并克服“恐婚症”走向婚姻的故事。主持人孙骁骁通过、现场连线、现场提问等形式采访了主创人员。在《还没爱够》中王艺嘉饰演深漂族韩婧。她与大家分享了她对于韩婧这个职场的理解和体会以及拍摄过程中的片场趣事。王艺嘉参演过多部电视剧饰演过许多不同类型角色在年代感情剧《用一生去爱你》中饰演了刘丽朵、在奇幻悬疑剧《都市妖奇谈》中饰演了孙倩、在都市情感剧《下辈子还做我老爸》中饰演了陆文静、在年代谍战剧《天衣无缝》中饰演了程竹、在青春偶像剧《泡沫之夏》中饰演了洁妮。王艺嘉对待每一个角色都是投入了百分百的努力用心去诠释。此次的韩婧一角也非常值得期待。秦么客盘补刑藏竞俏晃融颐狼子略https://github.com/trailofbits/polytracker/issues/110 <br />https://github.com/trailofbits/polytracker/issues/142 <br />https://github.com/trailofbits/polytracker/issues/130 <br />https://github.com/trailofbits/polytracker/issues/118 <br />https://github.com/trailofbits/polytracker/issues/268 <br />cevaenfxpmanfquroxioelgfj |
MicrosoftDocs/msteams-docs | 532685212 | Title: Seems that https://github.com/OfficeDev/msteams-samples-hello-world-csharp.git is an old sample
Question:
username_0: I find completely different approach for message extension development with c# on this site and on this: https://docs.microsoft.com/en-us/microsoftteams/platform/messaging-extensions/what-are-messaging-extensions
This site mentions "https://github.com/OfficeDev/msteams-samples-hello-world-csharp" as sample but the other one has a link to "https://github.com/microsoft/BotBuilder-Samples/tree/master/samples/csharp_dotnetcore". Which one is the correct one, because "https://github.com/OfficeDev/msteams-samples-hello-world-csharp" looks older based on the dates?
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: 2f98c73d-bb68-3088-6e7d-2c576a8292f6
* Version Independent ID: 08b9df7d-4997-c681-e73a-235ec1e4fc7b
* Content: [Get started with C#/.NET - Teams](https://docs.microsoft.com/en-us/microsoftteams/platform/tutorials/get-started-dotnet-app-studio#feedback)
* Content Source: [msteams-platform/tutorials/get-started-dotnet-app-studio.md](https://github.com/MicrosoftDocs/msteams-docs/blob/master/msteams-platform/tutorials/get-started-dotnet-app-studio.md)
* Product: **msteams**
* GitHub Login: @clearab
* Microsoft Alias: **anclear**
Answers:
username_1: @username_0 Both of these just use two different versions of SDK. [https://github.com/OfficeDev/msteams-samples-hello-world-csharp](https://github.com/OfficeDev/msteams-samples-hello-world-csharp) uses v3 SDK and https://github.com/microsoft/BotBuilder-Samples/tree/master/samples/csharp_dotnetcore uses v4 SDK. You could try anyone of these. Both are correct.
Status: Issue closed
|
imagej/imagej-launcher | 159786729 | Title: Instructions for building on Window
Question:
username_0: Please provide prerequisites and instructions for building imagej-launcher on Windows 10.
Answers:
username_1: No one on the LOCI ImageJ team has ever tried building on Windows 10. If you get it working, feel free to contribute some instructions on how to do so, via a pull request.
For anyone else finding this issue: @username_0 also [posted this question on the ImageJ forum](http://forum.imagej.net/t/1881).
username_2: I don't have access to the computer I did this on until later today. When I am able to retrace my steps, I'll post a short guide here and cross-post in the forum.
username_2: 1. Install Java 8 SDK (with public JRE)
2. Set JAVA_HOME (default C:\Program Files\Java\jdk1.8.0_92)
3. Install MinGW with following meta packages:
- mingw-developer-tools
- mingw32-base
- mingw32-gcc-g++
- msys-base
4. Follow description at to setup fstab (http://www.mingw.org/wiki/Getting_Started#toc2)
5. Install Maven3 (also set PATH)
6. Start C:\MinGW\msys\1.0\msys.bat
7. Clone https://github.com/imagej/imagej-launcher/tree/fix-win10-sleep
8. Go to source folder
- cd /c/Users/test/imagej-launcher/
9. Execute
- mvn -Pcopy-launchers -Dos.arch=x86 install (**for 32-bit**)
- mvn -Pcopy-launchers -Dos.arch=amd64 install (**for 64-bit**)
@username_0 Could you check if that works for you (on 64-bit I assume), please?
username_1: @username_2 Thank you very much for taking the time to write this up!
username_2: @username_1 Should I open a PR for the `fix-win10-sleep` branch? We could keep that PR open until the LOCI VM is up again..
username_1: It's true that that `sleep` logic was [added a very long time ago](http://git.imagej.net/git?p=fiji-historical.git;a=blobdiff;f=java/launcher.cxx;h=d0eb148b34bfdfce3dca421954bdca2d093235ff;hp=6e3a3df9b2bf50e3200de1f7c8d135fdd1928d8c;hb=f377aed1e80efc85bdbe15082e3d754ef03e796c;hpb=85ade70df57a0e25c000e1903b2e6e7f668fc72a). But are you sure it is safe to delete?
username_0: @username_2 Thanks for documenting the steps. It mostly worked. It may need a tweak to pom.xml for copying
.
I already had quite similar setup, I just modified `fstab` as described.
Maven first reports something that look like an "error":
```
[ERROR] In file included from D:\src\imagej-launcher\src\main\include/config.h:34:0,
[ERROR] from D:\src\imagej-launcher\src\main\c\config.c:32:
[ERROR] In file included from C:\Apps\jdk1.8.0_92-x64/include/jni.h:45:0,
[WARNING] D:\src\imagej-launcher\src\main\include/string-funcs.h:67:19: warning: inline function 'is_digit' declared but never defined
[ERROR] D:\src\imagej-launcher\src\main\c\file-funcs.c: In function 'find_jar':
[ERROR] from D:\src\imagej-launcher\src\main\c\ImageJ.c:68:
[ERROR] In file included from D:\src\imagej-launcher\src\main\include/file-funcs.h:34:0,
[ERROR] D:\src\imagej-launcher\src\main\c\platform.c: In function 'get_memory_size':
[ERROR] D:\src\imagej-launcher\src\main\c\splash.c: In function 'show_splash':
[WARNING] D:\src\imagej-launcher\src\main\c\file-funcs.c:379:7: warning: implicit declaration of function 'isdigit' [-Wimplicit-function-declaration]
[ERROR] In file included from D:\src\imagej-launcher\src\main\include/file-funcs.h:34:0,
[ERROR] extern inline int is_digit(char c);
[ERROR] ^
[ERROR] from D:\src\imagej-launcher\src\main\c\java.c:33:
[ERROR] !isdigit(name[prefix_length + 1]) ||
```
Though on closer look, it is not clear of this is really an actual error from a compiler or "label" added by Maven. The compilation actually completes. Binaries are created, but Maven build fails later with a message:
```
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.8:run (copy) on project imagej-launcher: An Ant BuildException has occured: Cannot perform operation from directory to file.
[ERROR] around Ant part ...<copy tofile="D:\src\imagej-launcher_fix-win10-sleep.git\target\ImageJ-win64.exe">... @ 4:128 in D:\src\imagej-launcher_fix-win10-sleep.git\target\antrun\build-main.xml
```
That is probably an issue the Ant task definition. I was running this with Maven 3.3.9.
I got what I needed, the binaries for the launcher :)
BTW: I was also able to build the binaries using [CLion](https://www.jetbrains.com/clion/) and the same mingw (v.4.9.3). Nice thing is that I can debug the launcher C code from CLion, though it is using CMake instead of Maven.
username_1: @username_0 The NAR Maven plugin is not smart enough to distinguish between compiler errors and compiler warnings. So both such output gets prefixed with `[ERROR]`. Fixing this would probably be doable but nontrivial, if you want to try. (https://github.com/maven-nar/nar-maven-plugin)
The Maven build is failed only when the compiler returns a non-zero error code.
username_1: That's the only reason you wanted to build? Why not extract them from the Maven repository instead then? http://maven.imagej.net/#nexus-search;gav~net.imagej~imagej-launcher~~~
Unless you needed to modify the code...?
username_0: I was hoping to fix some issues. There are a couple of different things I was going after. I also launcher for ImageJ 1, so I may be touching its parts that are not frequently used. One, as reported is issue #42, with the way launcher converts paths. For instance, `*` is not expanded correctly, slashes are mixed up, paths converted to DOS format. I was looking how this could be corrected. Though if that launcher is going away in favor native Java launcher, it may better to focus on new launcher.
Another thing was with high DPI displays (4K) that use scaling. Seems that the launcher worked better than ImageJ 1 launcher (Java 8). I was trying to figure out why. Turns out though that it only works till you try to create JavaFX thread, then UI suddenly shrinks. Not clear if this launcher or Java issue, though pure JavaFX applications work fine. Java 9 works better (with Swing), but many libraries do not yet correctly work with Java 9, like jai_imageio, FontAwsomeFX, etc (though I was able to patch a few, still need to post that code to GitHub/Bitbucket :).
username_1: @username_0 Thanks for the info. I'm glad someone is exploring these things, since I personally have not had time.
If you want to play with the JavaFX launcher, you can generate it by cloning https://github.com/imagej/imagej and then running `mvn -Pdist`. This is still highly experimental. But I'm really, really hoping we can discontinue the need for us to maintain that C code, since it is rife with (IMO) unmaintainable case logic.
username_0: I tried `mvn -Pdist`. Files get generated. I tried running `target\jfx\native-nojre\ImageJ\imagej.exe`. At some point I selected "Update...". That seems to ticke Symantec, it started complaining about [SONAR.Downloader!gen2 infectiion](http://us.norton.com/security_response/writeup.jsp?docid=2016-041818-1155-99) and deleted several of the files including the generated `imagej.exe`. Did you come across this?
username_0: After reboot and doing the same things. There were no issues with Symantec.
username_0: The instructions provided by @username_2 work on Windows, so I am closing this issue.
The JavaFX launcher is better discussed at imagej/imagej-launcher#33.
Status: Issue closed
|
rvlenth/emmeans | 644541803 | Title: Vignette "transformations": default link for Poisson GLM is "log", not "square-root"
Question:
username_0: The vignette "transformations" currently states:
https://github.com/username_1/emmeans/blob/9b36f67b44d5878fb2904ae311e35e00bac0742c/vignettes/transformations.Rmd#L488
However, the default link for the Poisson family is "log".
Many thanks for developing emmeans, an immensely useful package!
Answers:
username_1: Yikes. I guess my mindset was on variance-stabilizing transformations rather than link functions. Thanks for reporting this. I'll fix it.
Russ
Sent from my iPad
Status: Issue closed
username_1: OK, I fixed it in my local copy. Thanks again for reporting this! There will be a CRAN update pretty soon, i.e., in maybe a week. |
bigcommerce/stencil-cli | 996502161 | Title: Storefront API CORS Error
Question:
username_0: ### Expected behavior
Fetching storefront API while in local development environment proxies requests to BigCommerce store with successful response
### Actual behavior
Fetching storefront API while in local development environment attempts to proxy requests but receives a 302 redirect, causing CORS errors.
### Steps to reproduce behavior
1. Start up local development server
2. Make GET request to /api/storefront/carts to retrieve carts
### Possible Solution
Set `xForward` to `false` in package @hapi/h202 proxy handler options
https://github.com/bigcommerce/stencil-cli/blob/master/server/plugins/router/router.module.js#L101<issue_closed>
Status: Issue closed |
jlippold/tweakCompatible | 339948869 | Title: `Ace N iOS 11` not working on iOS 11.3.1
Question:
username_0: ```
{
"packageId": "com.hackyouriphone.acenios11",
"action": "notworking",
"userInfo": {
"arch32": false,
"packageId": "com.hackyouriphone.acenios11",
"deviceId": "iPhone10,3",
"url": "http://cydia.saurik.com/package/com.hackyouriphone.acenios11/",
"iOSVersion": "11.3.1",
"packageVersionIndexed": false,
"packageName": "Ace N iOS 11",
"category": "HYI - Theme HD",
"repository": "HackYouriPhone",
"name": "Ace N iOS 11",
"packageIndexed": false,
"packageStatusExplaination": "This tweak has not been reviewed. Please submit a review if you choose to install.",
"id": "com.hackyouriphone.acenios11",
"commercial": false,
"packageInstalled": false,
"tweakCompatVersion": "0.0.7",
"shortDescription": "Ace N for iOS 11",
"latest": "2.0",
"author": "iAnas",
"packageStatus": "Unknown"
},
"base64": "<KEY>",
"chosenStatus": "not working",
"notes": ""
}
``` |
donkirkby/live-py-plugin | 208700536 | Title: Display errors when code can't be traced
Question:
username_0: For example, issue #41 just silently failed, and the regression introduced by #104 caused the driver to silently fail after the live module had been loaded.
* [ ] Highlight the error and stack trace at the start or end of the output. Use blank lines if you find them, otherwise place it after the output, in an extra column with a full outline.
* [ ] Give an option to disable it.
* [ ] In Emacs mode, change output buffer's minor mode display to OK or FAIL.<issue_closed>
Status: Issue closed |
SortableJS/Vue.Draggable | 287644786 | Title: When the moving structure is very deep,the data is updated, but the structure not
Question:
username_0: ### Jsfiddle link
https://github.com/username_0/myEcharts/blob/master/src/views/layout/mainApp.vue line:5~line:50
### Step by step scenario
When I finish the sequence,{canvasLis} is updated,but the structure not.
(Some file is encrypted and can not run outside,)
### Actual Solution
Manual ordering of elements
### Expected Solution
Components can be automatically checked
Answers:
username_1: 1) use `:list` not `v-model`
2) do not use index as key that defeats the dnd purpose, use a unique of the item list instaed
Status: Issue closed
username_0: Solved,thanks!
cool!!!! |
acharluk/easy-cpp-projects | 547972221 | Title: How to add existing library containing .h and .cpp in same folder
Question:
username_0: Hi I would like to ask. How to add existing library containing .h and .cpp in same folder ?
Because in default, the .h and .cpp is located in different folder. .h is inside include folder and the .cpp is inside src folder.
But I have a library (MAVlink library) which is containing .h and .cpp in same folder. Also there are some subfolder inside the library folder (inside MAVlink library).
I've tried putting the MAVlink library inside include folder, but when i build it, i got error undefined reference ....

and I could not see any problem in "Problems Tab"

Hopefully You guys can help.
Thank You so much for your time for helping me
Best regards
Rendy |
hyb1996-guest/AutoJsIssueReport | 240523847 | Title: 怎么运行脚本
Question:
username_0: Description:
---
?
Device info:
---
<table>
<tr><td>App version</td><td>2.0.12 Beta</td></tr>
<tr><td>App version code</td><td>137</td></tr>
<tr><td>Android build version</td><td>1448358905</td></tr>
<tr><td>Android release version</td><td>4.4.4</td></tr>
<tr><td>Android SDK version</td><td>19</td></tr>
<tr><td>Android build ID</td><td>P7559BN_JIAC_JC084B_ALY_SEC_V2.0.3_user_r6483</td></tr>
<tr><td>Device brand</td><td>HUIZUU</td></tr>
<tr><td>Device manufacturer</td><td>HUIZUU</td></tr>
<tr><td>Device name</td><td>p7559</td></tr>
<tr><td>Device model</td><td>H15</td></tr>
<tr><td>Device product name</td><td>p7559</td></tr>
<tr><td>Device hardware name</td><td>mt6735</td></tr>
<tr><td>ABIs</td><td>[armeabi-v7a, armeabi]</td></tr>
<tr><td>ABIs (32bit)</td><td>null</td></tr>
<tr><td>ABIs (64bit)</td><td>null</td></tr>
</table> |
etalab/recherche.etalab.studio | 537632826 | Title: suivre des comportements utilisateurs
Question:
username_0: Ces outils pourraient couvrir le besoin :
- "record and replay the web" https://github.com/rrweb-io/rrweb
Ajouter un suivi des événements Matomo au JS (suivre les recherche à la saisie de texte d'un utilisateur).
Answers:
username_1: Maybe we should close that one since https://github.com/etalab/recherche.etalab.studio/pull/5 is enough for now.
Status: Issue closed
|
WebAhead7/hacking-imdb | 736770217 | Title: split the router.js to multiple files
Question:
username_0: it's a good practice to split the code into multiple files:
1) it keeps the code cleaner and easier to understand ( especially if you're working on a team)
2) as the project expands, you''l have multiple routes and the code will become more complex
Answers:
username_1: Exactly ! i agree
username_2: done .
Status: Issue closed
|
atomist-skills/auto-link-channel-skill | 740024008 | Title: Add ability to opt out of channel linking
Question:
username_0: Currently auto channel linking is all or nothing. Is it possible to opt-out for certain repos?
Answers:
username_1: This skill has the repo filter for this. Although opting out isn't really a thing with our current repo filter UX. But that's not an issue with this skill here but rather a UI concern.
username_1: @username_0 should we track this at https://github.com/atomisthq/design/issues/262? Or do you feel strongly about adding some special to this skill here?
Status: Issue closed
username_0: I did not realize this skill used the repo selector. I thought it just linked all new repos. I'll close this. |
MicrosoftDocs/azure-docs | 527680440 | Title: The name "azos-use-vm-web02" is above 15 char policy
Question:
username_0: You might want to expand the limit in Azure VM naming policy in order for the name "azos-use-vm-web01" to work. The current policy doesnt not validate this name as it is too long. Why not expand the naming policy to 64 char?
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: 0588ab87-69d9-9641-9d96-fa46f7c71b54
* Version Independent ID: e5e6a8d4-04aa-eeec-16d4-e82fb0fd9f5c
* Content: [Example Azure Infrastructure Walkthrough](https://docs.microsoft.com/en-us/azure/virtual-machines/windows/infrastructure-example#feedback)
* Content Source: [articles/virtual-machines/windows/infrastructure-example.md](https://github.com/Microsoft/azure-docs/blob/master/articles/virtual-machines/windows/infrastructure-example.md)
* Service: **virtual-machines-windows**
* GitHub Login: @cynthn
* Microsoft Alias: **cynthn**
Answers:
username_1: @username_0 Thanks for your comment. We are actively investigating and will get back to you shortly.
username_2: @username_0 15 char is the max limit for windows vms only.
For linux vms max limit is 64 characters
username_2: @username_0 is there any update
username_2: I will close this out for now. If you need additional help please let me know and we can reopen and continue.
Status: Issue closed
|
kalkih/mini-graph-card | 766956042 | Title: line_color and themes variables
Question:
username_0: Ciao,
I'm using this card since long time. Now I was trying to use a custom theme that use custom variables (like '--orange') so to not change theme but have a set of colors for all the cards.
I noticed that your card is managing only default var (like '--primary-color') but not the custom ones..
Thanks if you can fix it
Ciao
Daniele
Answers:
username_1: Please add this. The add-on seems to have trouble dealing with CSS variables referencing colors from the themes file.
username_2: Hello,
Great idea, we should add a few pre-defined css variables for line colors that the card will default to if specified in the user theme.
Did i understand your request correctly?
Custom theme variables can be used already by referencing the color variable e.g. `var(--accent-color)`
username_1: That would be a great solution! I have had trouble using multiple data points each having its own colour variable. Or the same data point but with color thresholds using different variables for colors. In both cases I just get black and the variables seem to be ignored.
username_2: The color threshold option is and would still not be compatible with CSS variables however, because of technical limitations, see https://github.com/username_2/mini-graph-card/issues/520
Status: Issue closed
username_2: Ciao,
I'm using this card since long time. Now I was trying to use a custom theme that use custom variables (like '--orange') so to not change theme but have a set of colors for all the cards.
I noticed that your card is managing only default var (like '--primary-color') but not the custom ones..
Thanks if you can fix it
Ciao
Daniele
username_3: Thanks for this feature request.
This feature is already available in [apexcharts-card](https://username_3/apexcharts-card).
This card is probably going to stay in maintenance mode, so no new features will be added in the future. |
EducationalTestingService/rsmtool | 492866360 | Title: Run flake8 on the entire codebase
Question:
username_0: SublimeLinter is pointing to several serious formatting issues in our codebase. While `pep8speaks` is useful, it only runs on the diff in a PR, not on the whole codebase. So, we should do this before release v7.0.
Answers:
username_0: Addressed by #294
Status: Issue closed
|
CollinEstes/astro-cli | 90166675 | Title: Create "astro install" feature for installing astro modules
Question:
username_0: When user's make a command, if that command's module is not found (meaning it has not been installed as dependency to astro-cli), astro will alert the user to try and run "astro install <commandName>".
Astro install should attempt to perform a an npm install of "astro-<commandName>" to the astro-cli node_modules folder of the user's machine.
This will prevent un-necessary packages from being installed on the user's machine as it will only ever install the packages that the user chooses to add.<issue_closed>
Status: Issue closed |
actions/runner | 1073621121 | Title: if conditional evaluated wrong for contains(needs.*.result, 'failure')
Question:
username_0: **Describe the bug**
A job-level if conditional isn't evaluated properly when using the contains function and array wildcard syntax.
For example, if `contains(needs.*.result, 'failure')` evaluates to false, a job with `if: always() && contains(needs.*.result, 'failure')` will run, but a job with `if: always() && (needs.job_a.result == 'failure' || needs.job_b.result == 'failure')` won't run.
**To Reproduce**
1. Run a workflow with the following yaml configuration. Examining the output reveals that:
a. Job a **fails**
b. Job b is **skipped**
c. Job c is **skipped**
d. Job d **runs** (unexpected) even though `contains(needs.*.result, 'failure')` evaluates to false
```yaml
jobs:
a:
runs-on: ubuntu-latest
steps:
- run: |
echo "This job fails."
exit 1
b:
runs-on: ubuntu-latest
if: ${{ false }}
needs: a
steps:
- run: echo "This job never happens."
c:
runs-on: ubuntu-latest
if: ${{ false }}
needs: [a, b]
steps:
- run: echo "This job never happens."
d:
runs-on: ubuntu-latest
needs: [b, c]
if: always() && contains(needs.*.result, 'failure')
steps:
- run: |
echo "I don't want this to run unless b or c fails!"
echo ${{ contains(needs.*.result, 'failure') }} # Evaluates to false!
```

2. However, running a workflow with the following yaml has the expected outcome:
a. Job a **fails**
b. Job b is **skipped**
c. Job c is **skipped**
d. Job d is **skipped** (expected)
```yaml
jobs:
a:
runs-on: ubuntu-latest
steps:
- run: |
echo "This job fails."
exit 1
b:
[Truncated]
runs-on: ubuntu-latest
needs: [b, c]
if: always() && (needs.b.result == 'failure' || needs.c.result == 'failure') # ONLY CHANGE
steps:
- run: |
echo "I don't want this to run unless b or c fails!"
echo ${{ contains(needs.*.result, 'failure') }} # Evaluates to false!
```

**Expected behavior**
`if: always() && contains(needs.*.result, 'failure')` should have the same behavior as `if: always() && (needs.b.result == 'failure' || needs.c.result == 'failure')`. In other words, `if: always() && contains(needs.*.result, 'failure')` should evaluate to false and job d should be skipped.
## Runner Version and Platform
Version of your runner?
Not sure - running with GitHub Actions (not self-hosted runner)
OS of the machine running the runner?
ubuntu-latest
Answers:
username_1: I think I know why you are seeing this, when evaluating job level `if` condition, we are pulling in both direct and in-direct dependency.
So, in your example of `if: always() && contains(needs.*.result, 'failure')`, the `*` actually means `a`, `b` and `c`, since both job `a` is in-direct required by `d`
That's why `contains(needs.*.result, 'failure')=>true` and `(needs.b.result == 'failure' || needs.c.result == 'failure')=>false`
I guess if you try `(needs.b.result == 'failure' || needs.c.result == 'failure' || needs.a.result == 'failure')`, it will return `true`.
@username_3 do you recall why we need to pull in the indirect dependency to evaluate job conditions? Looks like we don't send those indirect dependencies as context data to the runner.
```
"needs": {
"t": 2,
"d": [
{
"k": "b",
"v": {
"t": 2,
"d": [
{
"k": "result",
"v": "skipped"
},
{
"k": "outputs",
"v": {
"t": 2
}
}
]
}
},
{
"k": "c",
"v": {
"t": 2,
"d": [
{
"k": "result",
"v": "skipped"
},
{
"k": "outputs",
"v": {
"t": 2
}
}
]
}
}
]
},
```
username_2: Hi there, not related to the original issue, but could this inconsistency with respect to indirect dependencies please be fixed? The same condition could pass at the job level but not at the step level, this is error prone: I spent some time debugging a workflow because of that. Thanks!
username_3: Nope. That surprises me. I do see the `success()` that is used for the job-if condition checks all `needs` so we should think through potential behavior changes when we fix this. |
billswartz7/utd-SystemVerilog | 461811566 | Title: Check slang?
Question:
username_0: It seems to be;
* Hand-written, recursive descent parsing
* Emphasis on good syntax diagnostics, incremental editing
* Analyzes beyond syntax (e.g. expressions)
* Looks active
Might be worth checking out and seeing if you can collaborate... |
codex-team/codex | 247690100 | Title: Поправить ссылки на meta-image и favicon
Question:
username_0: Все ссылки сейчас ведут на 404
```html
<link rel="icon" type="image/png" href="/public/img/[email protected]?v=985" id="favicon" />
<meta id="metaImage" name="image" property="og:image" content="https://ifmo.su/public/img/meta_img.png" />
<link id="linkImage" rel="image_src" href="https://ifmo.su/public/img/meta_img.png" />
```<issue_closed>
Status: Issue closed |
sidoh/esp8266_milight_hub | 489801688 | Title: Sniffing MiBox 2 (v6) doesn't work
Question:
username_0: Hello guys,
I'had set up my new NodeMCUv3 card with the latest version of your firmware and it's ok.
I connect to the web interface and I'm trying to sniffing my official MiBox 2 (v6).
I active the sniffing option, but when I use the MiApp (Android) to switch color or other option, nothing display on the webui under the part.

I had tried to disconnect/reconnect my NoceMCU3 and the MiBox 2 but doesn't work.
I haven't physical remote, I use only my smartphone (Mi 9).
There are other options to sniffing my MiBox ?
Thanks you in advance for your help !
King Regards,
Sorry for my english
Answers:
username_1: I have one of these too, and I see traffic from it.
Please check out the [troubleshooting guide](https://github.com/username_1/esp8266_milight_hub/wiki/Troubleshooting).
Status: Issue closed
|
allegro/turnilo | 294338226 | Title: Add "percent of parent" and "percent of root" transformations for measures
Question:
username_0: It should be possible to add measures which have additional, special transformations configured.
Percent of parent should present split values as percent of a value in the parent split.
Percent of parent should present split values as percent of a total value.
Transformations should be possible to configure with a "transform" attribute on a measure with allowed values of "percent-of-parent" and "percent-of-root".
```
- name: percent
formula: $main.count()
transform: percent-of-parent
```<issue_closed>
Status: Issue closed |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.