Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
844
labels
stringlengths
4
721
body
stringlengths
1
261k
index
stringclasses
12 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
248k
binary_label
int64
0
1
536,228
15,706,275,398
IssuesEvent
2021-03-26 17:12:47
10up/ElasticPress
https://api.github.com/repos/10up/ElasticPress
closed
Enabling Admin feature does not enable the ES search on the media library
enhancement low priority
I've been testing with the latest version of the `develop` branch, and, with the admin feature enabled, the search for the media library doesn't use ElasticSearch, even though WP internally is using WP_Query. After debugging a bit I've found what I think it was wrong. There is a check, on the [setup of the search feature](https://github.com/10up/ElasticPress/blob/develop/features/search/search.php#L47) that ensures ElasticPress isn't used when using AJAX requests to the admin. The filter `ep_admin_wp_query_integration` is set [on the admin feature](https://github.com/10up/ElasticPress/blob/develop/features/admin/admin.php#L18) but, on the [plugin class](https://github.com/10up/ElasticPress/blob/develop/elasticpress.php#L59) the search is loaded before the admin, so when the setup is done, the filter from the admin isn't yet set. Afterwards, there is another check, from the filter `ep_ajax_wp_query_integration` but looking on the plugin's source code, that filter isn't set anywhere. As I understand it, it should be set within the admin's feature setup, [right after the previously mentioned filter](https://github.com/10up/ElasticPress/blob/develop/features/admin/admin.php#L18). Am I understanding this wrong? If not and this is a bug I can create a PR with these simple fixes. I've been testing for a while and nothing seems to break after applying them. Thanks for the good work on this plugin!
1.0
Enabling Admin feature does not enable the ES search on the media library - I've been testing with the latest version of the `develop` branch, and, with the admin feature enabled, the search for the media library doesn't use ElasticSearch, even though WP internally is using WP_Query. After debugging a bit I've found what I think it was wrong. There is a check, on the [setup of the search feature](https://github.com/10up/ElasticPress/blob/develop/features/search/search.php#L47) that ensures ElasticPress isn't used when using AJAX requests to the admin. The filter `ep_admin_wp_query_integration` is set [on the admin feature](https://github.com/10up/ElasticPress/blob/develop/features/admin/admin.php#L18) but, on the [plugin class](https://github.com/10up/ElasticPress/blob/develop/elasticpress.php#L59) the search is loaded before the admin, so when the setup is done, the filter from the admin isn't yet set. Afterwards, there is another check, from the filter `ep_ajax_wp_query_integration` but looking on the plugin's source code, that filter isn't set anywhere. As I understand it, it should be set within the admin's feature setup, [right after the previously mentioned filter](https://github.com/10up/ElasticPress/blob/develop/features/admin/admin.php#L18). Am I understanding this wrong? If not and this is a bug I can create a PR with these simple fixes. I've been testing for a while and nothing seems to break after applying them. Thanks for the good work on this plugin!
priority
enabling admin feature does not enable the es search on the media library i ve been testing with the latest version of the develop branch and with the admin feature enabled the search for the media library doesn t use elasticsearch even though wp internally is using wp query after debugging a bit i ve found what i think it was wrong there is a check on the that ensures elasticpress isn t used when using ajax requests to the admin the filter ep admin wp query integration is set but on the the search is loaded before the admin so when the setup is done the filter from the admin isn t yet set afterwards there is another check from the filter ep ajax wp query integration but looking on the plugin s source code that filter isn t set anywhere as i understand it it should be set within the admin s feature setup am i understanding this wrong if not and this is a bug i can create a pr with these simple fixes i ve been testing for a while and nothing seems to break after applying them thanks for the good work on this plugin
1
827,806
31,797,151,577
IssuesEvent
2023-09-13 08:45:38
calcom/cal.com
https://api.github.com/repos/calcom/cal.com
closed
Running 3.2.8 with docker fails with error "This package doesn't seem to be present in your lockfile; run "yarn install" to update the lockfile"
🐛 bug ⬆️ dependencies Low priority self-hosting docker
### Issue Summary Updating to 3.2.8 fails with the error mentioned below. I tried upgrading to 3.2.9, but the docker image is not available. ### Steps to Reproduce 1. Run the image, see below for a docker-compose file ### Actual Results Container crashes with this error message: ``` calcom_1 | + yarn start calcom_1 | Internal Error: @calcom/make@workspace:packages/app-store/make: This package doesn't seem to be present in your lockfile; run "yarn install" to update the lockfile calcom_1 | at P0.getCandidates (/calcom/.yarn/releases/yarn-3.4.1.cjs:435:5145) calcom_1 | at yf.getCandidates (/calcom/.yarn/releases/yarn-3.4.1.cjs:391:1264) calcom_1 | at /calcom/.yarn/releases/yarn-3.4.1.cjs:439:7693 calcom_1 | at of (/calcom/.yarn/releases/yarn-3.4.1.cjs:390:11070) calcom_1 | at ge (/calcom/.yarn/releases/yarn-3.4.1.cjs:439:7673) calcom_1 | at async Promise.allSettled (index 31) calcom_1 | at async $s (/calcom/.yarn/releases/yarn-3.4.1.cjs:390:10398) calcom_1 | at async /calcom/.yarn/releases/yarn-3.4.1.cjs:439:8205 calcom_1 | at async ti.startProgressPromise (/calcom/.yarn/releases/yarn-3.4.1.cjs:390:47579) calcom_1 | at async je.resolveEverything (/calcom/.yarn/releases/yarn-3.4.1.cjs:439:6233) calcom_calcom_1 exited with code 1 ``` ### Expected Results not crashing ### Technical details Docker compose file used: ```yaml version: '3.8' networks: stack: name: stack external: false web: external: true services: database: container_name: database image: postgres:14 restart: always volumes: - /var/apps/calcom/db:/var/lib/postgresql/data/ env_file: .env networks: - stack calcom: image: calcom/cal.com:v3.2.8 restart: always env_file: .env environment: - DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DATABASE_HOST}/${POSTGRES_DB} depends_on: - database networks: - stack - web labels: - "traefik.docker.network=web" - "traefik.enable=true" - "traefik.http.routers.calcom.rule=Host(`cal.example.com`)" - "traefik.http.routers.calcom.entrypoints=https" - "traefik.http.routers.calcom.tls.certResolver=basic" - "traefik.http.services.calcom.loadbalancer.server.port=3000" ```
1.0
Running 3.2.8 with docker fails with error "This package doesn't seem to be present in your lockfile; run "yarn install" to update the lockfile" - ### Issue Summary Updating to 3.2.8 fails with the error mentioned below. I tried upgrading to 3.2.9, but the docker image is not available. ### Steps to Reproduce 1. Run the image, see below for a docker-compose file ### Actual Results Container crashes with this error message: ``` calcom_1 | + yarn start calcom_1 | Internal Error: @calcom/make@workspace:packages/app-store/make: This package doesn't seem to be present in your lockfile; run "yarn install" to update the lockfile calcom_1 | at P0.getCandidates (/calcom/.yarn/releases/yarn-3.4.1.cjs:435:5145) calcom_1 | at yf.getCandidates (/calcom/.yarn/releases/yarn-3.4.1.cjs:391:1264) calcom_1 | at /calcom/.yarn/releases/yarn-3.4.1.cjs:439:7693 calcom_1 | at of (/calcom/.yarn/releases/yarn-3.4.1.cjs:390:11070) calcom_1 | at ge (/calcom/.yarn/releases/yarn-3.4.1.cjs:439:7673) calcom_1 | at async Promise.allSettled (index 31) calcom_1 | at async $s (/calcom/.yarn/releases/yarn-3.4.1.cjs:390:10398) calcom_1 | at async /calcom/.yarn/releases/yarn-3.4.1.cjs:439:8205 calcom_1 | at async ti.startProgressPromise (/calcom/.yarn/releases/yarn-3.4.1.cjs:390:47579) calcom_1 | at async je.resolveEverything (/calcom/.yarn/releases/yarn-3.4.1.cjs:439:6233) calcom_calcom_1 exited with code 1 ``` ### Expected Results not crashing ### Technical details Docker compose file used: ```yaml version: '3.8' networks: stack: name: stack external: false web: external: true services: database: container_name: database image: postgres:14 restart: always volumes: - /var/apps/calcom/db:/var/lib/postgresql/data/ env_file: .env networks: - stack calcom: image: calcom/cal.com:v3.2.8 restart: always env_file: .env environment: - DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DATABASE_HOST}/${POSTGRES_DB} depends_on: - database networks: - stack - web labels: - "traefik.docker.network=web" - "traefik.enable=true" - "traefik.http.routers.calcom.rule=Host(`cal.example.com`)" - "traefik.http.routers.calcom.entrypoints=https" - "traefik.http.routers.calcom.tls.certResolver=basic" - "traefik.http.services.calcom.loadbalancer.server.port=3000" ```
priority
running with docker fails with error this package doesn t seem to be present in your lockfile run yarn install to update the lockfile issue summary updating to fails with the error mentioned below i tried upgrading to but the docker image is not available steps to reproduce run the image see below for a docker compose file actual results container crashes with this error message calcom yarn start calcom internal error calcom make workspace packages app store make this package doesn t seem to be present in your lockfile run yarn install to update the lockfile calcom at getcandidates calcom yarn releases yarn cjs calcom at yf getcandidates calcom yarn releases yarn cjs calcom at calcom yarn releases yarn cjs calcom at of calcom yarn releases yarn cjs calcom at ge calcom yarn releases yarn cjs calcom at async promise allsettled index calcom at async s calcom yarn releases yarn cjs calcom at async calcom yarn releases yarn cjs calcom at async ti startprogresspromise calcom yarn releases yarn cjs calcom at async je resolveeverything calcom yarn releases yarn cjs calcom calcom exited with code expected results not crashing technical details docker compose file used yaml version networks stack name stack external false web external true services database container name database image postgres restart always volumes var apps calcom db var lib postgresql data env file env networks stack calcom image calcom cal com restart always env file env environment database url postgresql postgres user postgres password database host postgres db depends on database networks stack web labels traefik docker network web traefik enable true traefik http routers calcom rule host cal example com traefik http routers calcom entrypoints https traefik http routers calcom tls certresolver basic traefik http services calcom loadbalancer server port
1
640,411
20,782,430,364
IssuesEvent
2022-03-16 15:52:44
slsdetectorgroup/slsDetectorPackage
https://api.github.com/repos/slsdetectorgroup/slsDetectorPackage
closed
Eiger: 12 bit mode
priority - Low action - Enhancement status - resolved
<!-- Preview changes before submitting --> <!-- Please fill out everything with an *, as this report will be discarded otherwise --> <!-- This is a comment, the syntax is a bit different from c++ or bash --> ##### *Detector type: <!-- If applicable, Eiger, Jungfrau, Mythen3, Gotthard2, Gotthard, Moench, ChipTestBoard --> Eiger ##### *Software Package Version: <!-- developer, 4.2.0, 4.1.1, etc --> ##### Priority: <!-- Super Low, Low, Medium, High, Super High --> Low ##### *State the feature: <!-- A clear and concise description of what the feature is --> Implement 12 bit mode. @mbrueckner-psi : will give registers for server implementation. rate correction disabled. 1G it is 192 packets. For 10G it is 48 packets. binary: write as is. hdf5 and gui: convert to 16 bit mode @erikfrojdh
1.0
Eiger: 12 bit mode - <!-- Preview changes before submitting --> <!-- Please fill out everything with an *, as this report will be discarded otherwise --> <!-- This is a comment, the syntax is a bit different from c++ or bash --> ##### *Detector type: <!-- If applicable, Eiger, Jungfrau, Mythen3, Gotthard2, Gotthard, Moench, ChipTestBoard --> Eiger ##### *Software Package Version: <!-- developer, 4.2.0, 4.1.1, etc --> ##### Priority: <!-- Super Low, Low, Medium, High, Super High --> Low ##### *State the feature: <!-- A clear and concise description of what the feature is --> Implement 12 bit mode. @mbrueckner-psi : will give registers for server implementation. rate correction disabled. 1G it is 192 packets. For 10G it is 48 packets. binary: write as is. hdf5 and gui: convert to 16 bit mode @erikfrojdh
priority
eiger bit mode detector type eiger software package version priority low state the feature implement bit mode mbrueckner psi will give registers for server implementation rate correction disabled it is packets for it is packets binary write as is and gui convert to bit mode erikfrojdh
1
402,835
11,825,436,567
IssuesEvent
2020-03-21 12:52:14
codidact/qpixel
https://api.github.com/repos/codidact/qpixel
closed
Flag history
priority: low status: completed type: change request
Users can currently flag posts and moderators can leave feedback on processed flags, but neither can see a summary of flags per user and the feedback left. That'd be useful to have.
1.0
Flag history - Users can currently flag posts and moderators can leave feedback on processed flags, but neither can see a summary of flags per user and the feedback left. That'd be useful to have.
priority
flag history users can currently flag posts and moderators can leave feedback on processed flags but neither can see a summary of flags per user and the feedback left that d be useful to have
1
506,192
14,659,952,606
IssuesEvent
2020-12-28 21:58:57
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[craftercms] Detect when the DB is up on restore
enhancement priority: low
On slower systems, restore sometimes fails because the DB takes longer to start up than the expected 30 seconds. These expected 30 seconds can be found here https://github.com/craftercms/craftercms/blob/support/3.1.x/resources/bin/crafter.sh#L835 and here https://github.com/craftercms/craftercms/blob/support/3.1.x/resources/bin/crafter.sh#L1118. See if it's possible to detect when the DB has finished starting up, but if not possible, make this value configurable as an env variable.
1.0
[craftercms] Detect when the DB is up on restore - On slower systems, restore sometimes fails because the DB takes longer to start up than the expected 30 seconds. These expected 30 seconds can be found here https://github.com/craftercms/craftercms/blob/support/3.1.x/resources/bin/crafter.sh#L835 and here https://github.com/craftercms/craftercms/blob/support/3.1.x/resources/bin/crafter.sh#L1118. See if it's possible to detect when the DB has finished starting up, but if not possible, make this value configurable as an env variable.
priority
detect when the db is up on restore on slower systems restore sometimes fails because the db takes longer to start up than the expected seconds these expected seconds can be found here and here see if it s possible to detect when the db has finished starting up but if not possible make this value configurable as an env variable
1
361,857
10,720,713,010
IssuesEvent
2019-10-26 19:42:01
facebookresearch/nevergrad
https://api.github.com/repos/facebookresearch/nevergrad
closed
Update optimizers with variants to use families/factories
Difficulty: Low Priority: Medium Status: Help wanted Status: In Progess Type: Enhancement
All variations of optimizers are different classes, even for subtle changes (eg.: `CMA`). This process is not scalable and we should create some `Optimizer` factories. It's not clear to me yet what the naming should be nor their API, or how it can interface with benchmarking which assumes all optimizers are different classes.
1.0
Update optimizers with variants to use families/factories - All variations of optimizers are different classes, even for subtle changes (eg.: `CMA`). This process is not scalable and we should create some `Optimizer` factories. It's not clear to me yet what the naming should be nor their API, or how it can interface with benchmarking which assumes all optimizers are different classes.
priority
update optimizers with variants to use families factories all variations of optimizers are different classes even for subtle changes eg cma this process is not scalable and we should create some optimizer  factories it s not clear to me yet what the naming should be nor their api or how it can interface with benchmarking which assumes all optimizers are different classes
1
819,896
30,754,388,277
IssuesEvent
2023-07-28 23:30:26
Vandivier/ladderly-3
https://api.github.com/repos/Vandivier/ladderly-3
opened
social proof
low-priority
setup one of those sappy marketing tools that says how jim and sarah recently donated on the home page
1.0
social proof - setup one of those sappy marketing tools that says how jim and sarah recently donated on the home page
priority
social proof setup one of those sappy marketing tools that says how jim and sarah recently donated on the home page
1
394,249
11,634,105,623
IssuesEvent
2020-02-28 09:42:11
incognitochain/incognito-wallet
https://api.github.com/repos/incognitochain/incognito-wallet
closed
The Pdex is crashed when clicking swap button if data is not loaded fully
Priority: Low Type: Bug
Steps: 1. Open app 2. Select pdex right now 3. Click swap button when data is not loaded. Actual result: App is crashed Expected result: App is NOT crashed.
1.0
The Pdex is crashed when clicking swap button if data is not loaded fully - Steps: 1. Open app 2. Select pdex right now 3. Click swap button when data is not loaded. Actual result: App is crashed Expected result: App is NOT crashed.
priority
the pdex is crashed when clicking swap button if data is not loaded fully steps open app select pdex right now click swap button when data is not loaded actual result app is crashed expected result app is not crashed
1
135,623
5,255,745,568
IssuesEvent
2017-02-02 16:16:54
jkall/qgis-midvatten-plugin
https://api.github.com/repos/jkall/qgis-midvatten-plugin
closed
import data from Nemos field data logger LP
enhancement Priority-Low
Add function to import data from the Nemos-LP field data logger: http://www.microcom.es/nemos-lp.php The server application "Microcom Hermes" stores data in a sqlite database which makes it simple to attach to this database and select tha data to be imported into the midvatten db. Midvatten db design changes are needed.
1.0
import data from Nemos field data logger LP - Add function to import data from the Nemos-LP field data logger: http://www.microcom.es/nemos-lp.php The server application "Microcom Hermes" stores data in a sqlite database which makes it simple to attach to this database and select tha data to be imported into the midvatten db. Midvatten db design changes are needed.
priority
import data from nemos field data logger lp add function to import data from the nemos lp field data logger the server application microcom hermes stores data in a sqlite database which makes it simple to attach to this database and select tha data to be imported into the midvatten db midvatten db design changes are needed
1
305,125
9,359,597,815
IssuesEvent
2019-04-02 07:21:13
aiidateam/aiida_core
https://api.github.com/repos/aiidateam/aiida_core
closed
Use period as separator for namespaced input and output links
priority/nice-to-have requires discussion topic/workflows type/feature request type/question
Currently, if a Process exposes inputs into a specific namespace, the link names will be a concatenation of the namespace and the input port, joined by an underscore. However, in specifying namespaces, we use `.` as the separator. Should these two made to be congruent?
1.0
Use period as separator for namespaced input and output links - Currently, if a Process exposes inputs into a specific namespace, the link names will be a concatenation of the namespace and the input port, joined by an underscore. However, in specifying namespaces, we use `.` as the separator. Should these two made to be congruent?
priority
use period as separator for namespaced input and output links currently if a process exposes inputs into a specific namespace the link names will be a concatenation of the namespace and the input port joined by an underscore however in specifying namespaces we use as the separator should these two made to be congruent
1
240,575
7,803,049,332
IssuesEvent
2018-06-10 19:16:10
jaor/geiser
https://api.github.com/repos/jaor/geiser
closed
Geiser not functioning correctly with Chicken and Org Babel
bug chicken priority - low
Trying to use Chicken Scheme with Org Babel on Windows. I have Geiser set up with Chicken as the default implementation but C-c C-c generates a result block with "an error occurred" every time.
1.0
Geiser not functioning correctly with Chicken and Org Babel - Trying to use Chicken Scheme with Org Babel on Windows. I have Geiser set up with Chicken as the default implementation but C-c C-c generates a result block with "an error occurred" every time.
priority
geiser not functioning correctly with chicken and org babel trying to use chicken scheme with org babel on windows i have geiser set up with chicken as the default implementation but c c c c generates a result block with an error occurred every time
1
543,053
15,877,090,443
IssuesEvent
2021-04-09 09:12:03
wso2/product-is
https://api.github.com/repos/wso2/product-is
closed
Rename the existing sub heading “Filter Users” as “List Users” in IS 5.6.0 doc.
Complexity/Low Component/SCIM Priority/Highest bug docs
In IS 5.6.0 SCIM2 documentation, under filter users, instead of describing filters, we discussed how to list the users using different attributes. [https://docs.wso2.com/display/IS560/apidocs/SCIM2-endpoints/#!/operations#UsersEndpoint#getUsersByPost](url)
1.0
Rename the existing sub heading “Filter Users” as “List Users” in IS 5.6.0 doc. - In IS 5.6.0 SCIM2 documentation, under filter users, instead of describing filters, we discussed how to list the users using different attributes. [https://docs.wso2.com/display/IS560/apidocs/SCIM2-endpoints/#!/operations#UsersEndpoint#getUsersByPost](url)
priority
rename the existing sub heading “filter users” as “list users” in is doc in is documentation under filter users instead of describing filters we discussed how to list the users using different attributes url
1
248,460
7,931,482,762
IssuesEvent
2018-07-07 00:39:49
SparkDevNetwork/Rock
https://api.github.com/repos/SparkDevNetwork/Rock
opened
Implement support for Database Unit Tests
Priority: Low Topic: Rock Internals Type: Discussion Type: Enhancement
# TL;DR I think adding database-driven unit tests is extremely viable with only 1 small change to existing Rock core code necessary. # Feature Request @nairdo pointed me towards a project called Effort (http://entityframework-effort.net/) that I took a look at. It is extremely promising and I think would work to get us 98% of the way there for unit testing against a database - without having to keep a somewhat complex setup of having a SQL Server database that must be kept in a known good state. ## Existing Problems Currently, in order to run entity tests you must have a database. This presents problems both for automated testing as well as manual testing. With manual testing, it requires that you have a SQL Server database populated with the bare minimum of required sample data. It also requires that each test not make any changes to the database. This can be difficult since the Rock internals will sometimes automatically create data in the background on a new RockContext you don't have control over (such as EntityTypes). This means potentially having to run tests one at a time and rolling back changes to the database manually (or via some script you run). With automatic testing, you have the same issues but since it's automatic a real SQL Server database is probably not available, even if we could overcome the other problems. ## Potential Solution The Effort project does two things for us. First, it uses an in-memory database so that no external database is needed. This is essentially a SQL Server database stored in RAM. It does _not_ use an actual SQL Server, thus it is probably not as optimized as it could be - but for unit testing that is probably okay. Second, it allows us to load in sample data via CSV files. They have a tool for generating the CSV files. I had to make a small tweak to so that it would work with a Rock database. I believe this change was simply adding a reference to the Spatial data types DLL. When the in-memory database is created, it is pre-loaded with data from the CSV files. I did a test-export from a newly installed 8.0 system and used that data and it worked fine. So, this leaves us at a spot where we should be able to use this for both manual testing (i.e. in Visual Studio clicking the Run Tests button) as well as automated build testing (i.e. CI / appveyor). ## Drawbacks There are a few drawbacks to be aware of, but I think they are fairly small when they allow us to potentially test so much of the data layer. ### Geospatial columns These are not supported. Remember, this is not a true Microsoft SQL Server. There is a small chunk of code that must be added to the RockContext.OnModelCreating() method. It checks if the Database Connection Provider is the Effort one (i.e. we are in unit test mode) and if so it marks all the Geospatial columns as ignored. If new Geospatial columns are added, this would need to be updated. On the plus side, you would know instantly because all tests would fail to run. For the record, other than the Analytics tables, the only core table affected is the Location table. ### CSV files are annoying Keeping 109 CSV files around is kind of annoying. Not to mention it takes up about 50MB (this is a bare system, the sample data has not been loaded). The Effort system is fairly well componentized. So I built a new data loader class that pulls the CSV data from files inside a ZIP file (i.e. select all CSV files, Send To Zip, and then use that zip file). This brings the file count down to 1 thing to keep track of. And it reduces the file size to 15MB. For the record, there was no noticeable increase in time from using a zip file vs straight CSV files. ### Tests are a bit slow Speaking of speed, lets talk about the test speeds. Remember, we are populating a database at the start of every single test. Here is the configuration I am running these tests on: * Virtualized Windows 10 inside VirtualBox (running on Windows 10) - 64-bit. * i5-8400 @ 2.8Ghz x 2 cores * 6GB RAM * SSD via USB for C: drive * Visual Studio 2017 * Tests do very simple queries, such as `personService.Queryable().Count()` so nearly all of the timing is overhead. (Note: I mention threads next. Sometimes the XUnit system runs the tests in parallel, sometimes it doesn't. I haven't figured out why it's random) The first test to run on each thread takes 40 seconds to run. Each follow up test on the thread takes 9 seconds to run. This is due to Effort caching the "original state" of the database so when the next test requests the database be reset, it doesn't need to do as much work. So, in my test class I have 6 unit tests. When running single-threaded it takes 85 seconds (9 * 5 tests; 40 * 1 test). When running in parallel at 2 threads it takes 58 seconds (9 * 2 tests; 40 * 1 test; over 2 threads). ### Database Computed Columns Since there is no database, I don't think these properties will be correctly populated. I think most of these computed columns are just "nice to have" values. For example, the `Person.BirthDate` is computed based on the individual BirthYear, BirthMonth and BirthDay columns. Because we provide a `get` method for this property, if we access `person.BirthDate` we should get a valid value for unit testing. If we try to do something like `personService.Queryable().Where( p => p.BirthDate >= DateTime.Now )` we will probably get bogus results. Given the fact that most(all?) database generated columns provide an in-memory getter to calculate the value, I would consider this a minimal issue. It's just something that we need to be aware of when writing unit tests. ## Potential Issues Okay, so there are a few issues we would need to overcome. Nothing daunting, just some design decisions. My goal for this is to not only allow for Rock to have internal database/Entity tests, but also for my plugins (and others) to be able to build database/Entity unit tests into their plugins. Two good examples that I'm sure would benefit from this is the Room Management and the Project Management plugins. They are both fairly complex and I'm sure neither of us wants to make a "minor change" to the code and break some seemingly unrelated thing. With that in mind... ### New DLL There is some code that handles the loading of the Zip files as well as handles the mock database initialization. I think these should be moved into a new DLL. `Rock.TestSupport` or something like that. This way a plugin could include Rock.Dll and Rock.TestSupport.Dll into their own test project and not have to worry about it running the entire suite of Rock tests too when they click the "run all tests" button. We probably wouldn't want to include this DLL in the main RockWeb/bin folder, but as long as a pre-compiled version of it was available (maybe on the Releases tab on github) that should be fine. We _could_ include it with the Rockit SDK download, but we also need to include the Effort and NMemory DLLs since they would be dependencies. ### Split out existing tests Because of the speed issue, it might be worth splitting out the need-database tests from the logic-only tests. In the Rock solution, the Run All would still run both, but this would make it easier to run them separately if we need to. Or, for example, we might want the CI system to only run the non-database tests (again because of the time required) and a core developer runs the full-suite every once in a while and before a release is tagged. I'm not sure how critical this one is. Maybe it doesn't really matter that much, but a point for consideration. ### Database Changes I'm not sure how often we will need to re-populate the "basic" CSV data files. Meaning, if a new column is added I don't know if we instantly need to generate new CSV files. Does column order matter when it imports the data? If even minor changes cause issues then we might want to look at customizing the CSV importer to better handle that so we don't have to re-generate for minor changes - such as adding a new INT column with a default of 0 (zero). i.e. we don't need to set that, in memory it will be treated that way anyway. ### Generating CSV files Effort includes a tool for this. It works very well, but is a bit cumbersome as it's meant to be VERY generic. We may want to fork this and do a few tweaks to simplify it's operation. Even just having it remember the last settings used would be great. For the record, once I understood how the tool worked, it took me about 2 minutes to generate the CSV files from an existing database. Coupled with the RockDevBooster tool, generating a clean 1.8.0 database and exporting it took about 9 minutes (not including download time from github). ### Referencing CSV files I'm not sure where this ZIP of CSV files should go. There are a few options I can think of: 1. Hard code the path to the Solution path, e.g. `[LoadData( @"../../../RockDataBase.zip" )]` and make it up to the developer to put a file there if they want those tests to work. 2. Store those files somewhere centrally (this could get trouble some as people work on different features, but it's still possible to do based on Rock version or something): `[LoadData( @"http://rockrms.com/RockDataBase-{RockVersion}.zip"]` 3. Embedded in Git somewhere (I don't really like this solution, the git repo is big enough as is) and built into the test DLL as a resource: `[LoadData(@"res:RockDataBase.zip")]` I would also consider this a minor issue. Meaning, I'm sure we can come up with a way that makes sense and doesn't put a lot of undue load on the dev to keep yet another thing up to date and in sync. # Current State As mentioned above, I have some very simple unit tests working. I have the Zip data loader working. Though most of the custom code still needs to be documented. Below is a sample of a minimum unit test class for reference: ``` namespace Rock.Tests.Rock { [LoadData( @"C:\Users\Daniel Hazelbaker\Desktop\RockDataBase.zip" )] public class MoqTest : DatabaseFixture { [Fact] public void MyTest() { using ( var rockContext = new RockContext() ) { var adults = new PersonService( rockContext ).GetAllAdults(); var adultCount = adults.Where( p => p.NickName == "Giver" ).Count(); Assert.Equal( 1, adultCount ); } } } } ``` The `DatabaseFixture` does the setup of the database before each test. Basically it's a helper tool so the test writer doesn't need to think about any of that fancy stuff. The above test is pretty pointless as we are just verifying the data already in the database. But suppose we want to test that the auto-matching logic hasn't broken. We could have a few unit tests that use the existing data to verify that a match on Ted Decker with his e-mail address finds the existing record rather than creating a new one (or in the case of some test, that it DOES create a new record). # Final Thoughts I'm sure I've missed things and forgotten to mention things. I don't have the code committed to a branch anywhere yet, but if anybody wants to see what changes I have had to make up to this point I can commit to a junk branch for review. Please let me know if you have questions or comments to help further this as a potential inclusion into core. **Providing Code** I will provide code if feature request is approved: **Yes**
1.0
Implement support for Database Unit Tests - # TL;DR I think adding database-driven unit tests is extremely viable with only 1 small change to existing Rock core code necessary. # Feature Request @nairdo pointed me towards a project called Effort (http://entityframework-effort.net/) that I took a look at. It is extremely promising and I think would work to get us 98% of the way there for unit testing against a database - without having to keep a somewhat complex setup of having a SQL Server database that must be kept in a known good state. ## Existing Problems Currently, in order to run entity tests you must have a database. This presents problems both for automated testing as well as manual testing. With manual testing, it requires that you have a SQL Server database populated with the bare minimum of required sample data. It also requires that each test not make any changes to the database. This can be difficult since the Rock internals will sometimes automatically create data in the background on a new RockContext you don't have control over (such as EntityTypes). This means potentially having to run tests one at a time and rolling back changes to the database manually (or via some script you run). With automatic testing, you have the same issues but since it's automatic a real SQL Server database is probably not available, even if we could overcome the other problems. ## Potential Solution The Effort project does two things for us. First, it uses an in-memory database so that no external database is needed. This is essentially a SQL Server database stored in RAM. It does _not_ use an actual SQL Server, thus it is probably not as optimized as it could be - but for unit testing that is probably okay. Second, it allows us to load in sample data via CSV files. They have a tool for generating the CSV files. I had to make a small tweak to so that it would work with a Rock database. I believe this change was simply adding a reference to the Spatial data types DLL. When the in-memory database is created, it is pre-loaded with data from the CSV files. I did a test-export from a newly installed 8.0 system and used that data and it worked fine. So, this leaves us at a spot where we should be able to use this for both manual testing (i.e. in Visual Studio clicking the Run Tests button) as well as automated build testing (i.e. CI / appveyor). ## Drawbacks There are a few drawbacks to be aware of, but I think they are fairly small when they allow us to potentially test so much of the data layer. ### Geospatial columns These are not supported. Remember, this is not a true Microsoft SQL Server. There is a small chunk of code that must be added to the RockContext.OnModelCreating() method. It checks if the Database Connection Provider is the Effort one (i.e. we are in unit test mode) and if so it marks all the Geospatial columns as ignored. If new Geospatial columns are added, this would need to be updated. On the plus side, you would know instantly because all tests would fail to run. For the record, other than the Analytics tables, the only core table affected is the Location table. ### CSV files are annoying Keeping 109 CSV files around is kind of annoying. Not to mention it takes up about 50MB (this is a bare system, the sample data has not been loaded). The Effort system is fairly well componentized. So I built a new data loader class that pulls the CSV data from files inside a ZIP file (i.e. select all CSV files, Send To Zip, and then use that zip file). This brings the file count down to 1 thing to keep track of. And it reduces the file size to 15MB. For the record, there was no noticeable increase in time from using a zip file vs straight CSV files. ### Tests are a bit slow Speaking of speed, lets talk about the test speeds. Remember, we are populating a database at the start of every single test. Here is the configuration I am running these tests on: * Virtualized Windows 10 inside VirtualBox (running on Windows 10) - 64-bit. * i5-8400 @ 2.8Ghz x 2 cores * 6GB RAM * SSD via USB for C: drive * Visual Studio 2017 * Tests do very simple queries, such as `personService.Queryable().Count()` so nearly all of the timing is overhead. (Note: I mention threads next. Sometimes the XUnit system runs the tests in parallel, sometimes it doesn't. I haven't figured out why it's random) The first test to run on each thread takes 40 seconds to run. Each follow up test on the thread takes 9 seconds to run. This is due to Effort caching the "original state" of the database so when the next test requests the database be reset, it doesn't need to do as much work. So, in my test class I have 6 unit tests. When running single-threaded it takes 85 seconds (9 * 5 tests; 40 * 1 test). When running in parallel at 2 threads it takes 58 seconds (9 * 2 tests; 40 * 1 test; over 2 threads). ### Database Computed Columns Since there is no database, I don't think these properties will be correctly populated. I think most of these computed columns are just "nice to have" values. For example, the `Person.BirthDate` is computed based on the individual BirthYear, BirthMonth and BirthDay columns. Because we provide a `get` method for this property, if we access `person.BirthDate` we should get a valid value for unit testing. If we try to do something like `personService.Queryable().Where( p => p.BirthDate >= DateTime.Now )` we will probably get bogus results. Given the fact that most(all?) database generated columns provide an in-memory getter to calculate the value, I would consider this a minimal issue. It's just something that we need to be aware of when writing unit tests. ## Potential Issues Okay, so there are a few issues we would need to overcome. Nothing daunting, just some design decisions. My goal for this is to not only allow for Rock to have internal database/Entity tests, but also for my plugins (and others) to be able to build database/Entity unit tests into their plugins. Two good examples that I'm sure would benefit from this is the Room Management and the Project Management plugins. They are both fairly complex and I'm sure neither of us wants to make a "minor change" to the code and break some seemingly unrelated thing. With that in mind... ### New DLL There is some code that handles the loading of the Zip files as well as handles the mock database initialization. I think these should be moved into a new DLL. `Rock.TestSupport` or something like that. This way a plugin could include Rock.Dll and Rock.TestSupport.Dll into their own test project and not have to worry about it running the entire suite of Rock tests too when they click the "run all tests" button. We probably wouldn't want to include this DLL in the main RockWeb/bin folder, but as long as a pre-compiled version of it was available (maybe on the Releases tab on github) that should be fine. We _could_ include it with the Rockit SDK download, but we also need to include the Effort and NMemory DLLs since they would be dependencies. ### Split out existing tests Because of the speed issue, it might be worth splitting out the need-database tests from the logic-only tests. In the Rock solution, the Run All would still run both, but this would make it easier to run them separately if we need to. Or, for example, we might want the CI system to only run the non-database tests (again because of the time required) and a core developer runs the full-suite every once in a while and before a release is tagged. I'm not sure how critical this one is. Maybe it doesn't really matter that much, but a point for consideration. ### Database Changes I'm not sure how often we will need to re-populate the "basic" CSV data files. Meaning, if a new column is added I don't know if we instantly need to generate new CSV files. Does column order matter when it imports the data? If even minor changes cause issues then we might want to look at customizing the CSV importer to better handle that so we don't have to re-generate for minor changes - such as adding a new INT column with a default of 0 (zero). i.e. we don't need to set that, in memory it will be treated that way anyway. ### Generating CSV files Effort includes a tool for this. It works very well, but is a bit cumbersome as it's meant to be VERY generic. We may want to fork this and do a few tweaks to simplify it's operation. Even just having it remember the last settings used would be great. For the record, once I understood how the tool worked, it took me about 2 minutes to generate the CSV files from an existing database. Coupled with the RockDevBooster tool, generating a clean 1.8.0 database and exporting it took about 9 minutes (not including download time from github). ### Referencing CSV files I'm not sure where this ZIP of CSV files should go. There are a few options I can think of: 1. Hard code the path to the Solution path, e.g. `[LoadData( @"../../../RockDataBase.zip" )]` and make it up to the developer to put a file there if they want those tests to work. 2. Store those files somewhere centrally (this could get trouble some as people work on different features, but it's still possible to do based on Rock version or something): `[LoadData( @"http://rockrms.com/RockDataBase-{RockVersion}.zip"]` 3. Embedded in Git somewhere (I don't really like this solution, the git repo is big enough as is) and built into the test DLL as a resource: `[LoadData(@"res:RockDataBase.zip")]` I would also consider this a minor issue. Meaning, I'm sure we can come up with a way that makes sense and doesn't put a lot of undue load on the dev to keep yet another thing up to date and in sync. # Current State As mentioned above, I have some very simple unit tests working. I have the Zip data loader working. Though most of the custom code still needs to be documented. Below is a sample of a minimum unit test class for reference: ``` namespace Rock.Tests.Rock { [LoadData( @"C:\Users\Daniel Hazelbaker\Desktop\RockDataBase.zip" )] public class MoqTest : DatabaseFixture { [Fact] public void MyTest() { using ( var rockContext = new RockContext() ) { var adults = new PersonService( rockContext ).GetAllAdults(); var adultCount = adults.Where( p => p.NickName == "Giver" ).Count(); Assert.Equal( 1, adultCount ); } } } } ``` The `DatabaseFixture` does the setup of the database before each test. Basically it's a helper tool so the test writer doesn't need to think about any of that fancy stuff. The above test is pretty pointless as we are just verifying the data already in the database. But suppose we want to test that the auto-matching logic hasn't broken. We could have a few unit tests that use the existing data to verify that a match on Ted Decker with his e-mail address finds the existing record rather than creating a new one (or in the case of some test, that it DOES create a new record). # Final Thoughts I'm sure I've missed things and forgotten to mention things. I don't have the code committed to a branch anywhere yet, but if anybody wants to see what changes I have had to make up to this point I can commit to a junk branch for review. Please let me know if you have questions or comments to help further this as a potential inclusion into core. **Providing Code** I will provide code if feature request is approved: **Yes**
priority
implement support for database unit tests tl dr i think adding database driven unit tests is extremely viable with only small change to existing rock core code necessary feature request nairdo pointed me towards a project called effort that i took a look at it is extremely promising and i think would work to get us of the way there for unit testing against a database without having to keep a somewhat complex setup of having a sql server database that must be kept in a known good state existing problems currently in order to run entity tests you must have a database this presents problems both for automated testing as well as manual testing with manual testing it requires that you have a sql server database populated with the bare minimum of required sample data it also requires that each test not make any changes to the database this can be difficult since the rock internals will sometimes automatically create data in the background on a new rockcontext you don t have control over such as entitytypes this means potentially having to run tests one at a time and rolling back changes to the database manually or via some script you run with automatic testing you have the same issues but since it s automatic a real sql server database is probably not available even if we could overcome the other problems potential solution the effort project does two things for us first it uses an in memory database so that no external database is needed this is essentially a sql server database stored in ram it does not use an actual sql server thus it is probably not as optimized as it could be but for unit testing that is probably okay second it allows us to load in sample data via csv files they have a tool for generating the csv files i had to make a small tweak to so that it would work with a rock database i believe this change was simply adding a reference to the spatial data types dll when the in memory database is created it is pre loaded with data from the csv files i did a test export from a newly installed system and used that data and it worked fine so this leaves us at a spot where we should be able to use this for both manual testing i e in visual studio clicking the run tests button as well as automated build testing i e ci appveyor drawbacks there are a few drawbacks to be aware of but i think they are fairly small when they allow us to potentially test so much of the data layer geospatial columns these are not supported remember this is not a true microsoft sql server there is a small chunk of code that must be added to the rockcontext onmodelcreating method it checks if the database connection provider is the effort one i e we are in unit test mode and if so it marks all the geospatial columns as ignored if new geospatial columns are added this would need to be updated on the plus side you would know instantly because all tests would fail to run for the record other than the analytics tables the only core table affected is the location table csv files are annoying keeping csv files around is kind of annoying not to mention it takes up about this is a bare system the sample data has not been loaded the effort system is fairly well componentized so i built a new data loader class that pulls the csv data from files inside a zip file i e select all csv files send to zip and then use that zip file this brings the file count down to thing to keep track of and it reduces the file size to for the record there was no noticeable increase in time from using a zip file vs straight csv files tests are a bit slow speaking of speed lets talk about the test speeds remember we are populating a database at the start of every single test here is the configuration i am running these tests on virtualized windows inside virtualbox running on windows bit x cores ram ssd via usb for c drive visual studio tests do very simple queries such as personservice queryable count so nearly all of the timing is overhead note i mention threads next sometimes the xunit system runs the tests in parallel sometimes it doesn t i haven t figured out why it s random the first test to run on each thread takes seconds to run each follow up test on the thread takes seconds to run this is due to effort caching the original state of the database so when the next test requests the database be reset it doesn t need to do as much work so in my test class i have unit tests when running single threaded it takes seconds tests test when running in parallel at threads it takes seconds tests test over threads database computed columns since there is no database i don t think these properties will be correctly populated i think most of these computed columns are just nice to have values for example the person birthdate is computed based on the individual birthyear birthmonth and birthday columns because we provide a get method for this property if we access person birthdate we should get a valid value for unit testing if we try to do something like personservice queryable where p p birthdate datetime now we will probably get bogus results given the fact that most all database generated columns provide an in memory getter to calculate the value i would consider this a minimal issue it s just something that we need to be aware of when writing unit tests potential issues okay so there are a few issues we would need to overcome nothing daunting just some design decisions my goal for this is to not only allow for rock to have internal database entity tests but also for my plugins and others to be able to build database entity unit tests into their plugins two good examples that i m sure would benefit from this is the room management and the project management plugins they are both fairly complex and i m sure neither of us wants to make a minor change to the code and break some seemingly unrelated thing with that in mind new dll there is some code that handles the loading of the zip files as well as handles the mock database initialization i think these should be moved into a new dll rock testsupport or something like that this way a plugin could include rock dll and rock testsupport dll into their own test project and not have to worry about it running the entire suite of rock tests too when they click the run all tests button we probably wouldn t want to include this dll in the main rockweb bin folder but as long as a pre compiled version of it was available maybe on the releases tab on github that should be fine we could include it with the rockit sdk download but we also need to include the effort and nmemory dlls since they would be dependencies split out existing tests because of the speed issue it might be worth splitting out the need database tests from the logic only tests in the rock solution the run all would still run both but this would make it easier to run them separately if we need to or for example we might want the ci system to only run the non database tests again because of the time required and a core developer runs the full suite every once in a while and before a release is tagged i m not sure how critical this one is maybe it doesn t really matter that much but a point for consideration database changes i m not sure how often we will need to re populate the basic csv data files meaning if a new column is added i don t know if we instantly need to generate new csv files does column order matter when it imports the data if even minor changes cause issues then we might want to look at customizing the csv importer to better handle that so we don t have to re generate for minor changes such as adding a new int column with a default of zero i e we don t need to set that in memory it will be treated that way anyway generating csv files effort includes a tool for this it works very well but is a bit cumbersome as it s meant to be very generic we may want to fork this and do a few tweaks to simplify it s operation even just having it remember the last settings used would be great for the record once i understood how the tool worked it took me about minutes to generate the csv files from an existing database coupled with the rockdevbooster tool generating a clean database and exporting it took about minutes not including download time from github referencing csv files i m not sure where this zip of csv files should go there are a few options i can think of hard code the path to the solution path e g and make it up to the developer to put a file there if they want those tests to work store those files somewhere centrally this could get trouble some as people work on different features but it s still possible to do based on rock version or something embedded in git somewhere i don t really like this solution the git repo is big enough as is and built into the test dll as a resource i would also consider this a minor issue meaning i m sure we can come up with a way that makes sense and doesn t put a lot of undue load on the dev to keep yet another thing up to date and in sync current state as mentioned above i have some very simple unit tests working i have the zip data loader working though most of the custom code still needs to be documented below is a sample of a minimum unit test class for reference namespace rock tests rock public class moqtest databasefixture public void mytest using var rockcontext new rockcontext var adults new personservice rockcontext getalladults var adultcount adults where p p nickname giver count assert equal adultcount the databasefixture does the setup of the database before each test basically it s a helper tool so the test writer doesn t need to think about any of that fancy stuff the above test is pretty pointless as we are just verifying the data already in the database but suppose we want to test that the auto matching logic hasn t broken we could have a few unit tests that use the existing data to verify that a match on ted decker with his e mail address finds the existing record rather than creating a new one or in the case of some test that it does create a new record final thoughts i m sure i ve missed things and forgotten to mention things i don t have the code committed to a branch anywhere yet but if anybody wants to see what changes i have had to make up to this point i can commit to a junk branch for review please let me know if you have questions or comments to help further this as a potential inclusion into core providing code i will provide code if feature request is approved yes
1
530,027
15,414,987,069
IssuesEvent
2021-03-05 01:32:13
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
opened
[Coverity CID :219522] Unchecked return value in tests/subsys/dfu/mcuboot/src/main.c
Coverity bug priority: low
Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/tests/subsys/dfu/mcuboot/src/main.c Category: Error handling issues Function: `test_request_upgrade` Component: Tests CID: [219522](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=219522) Details: https://github.com/zephyrproject-rtos/zephyr/blob/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/tests/subsys/dfu/mcuboot/src/main.c#L80 Please fix or provide comments in coverity using the link: https://scan9.coverity.com/reports.htm#v32951/p12996. Note: This issue was created automatically. Priority was set based on classification of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
1.0
[Coverity CID :219522] Unchecked return value in tests/subsys/dfu/mcuboot/src/main.c - Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/tests/subsys/dfu/mcuboot/src/main.c Category: Error handling issues Function: `test_request_upgrade` Component: Tests CID: [219522](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=219522) Details: https://github.com/zephyrproject-rtos/zephyr/blob/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/tests/subsys/dfu/mcuboot/src/main.c#L80 Please fix or provide comments in coverity using the link: https://scan9.coverity.com/reports.htm#v32951/p12996. Note: This issue was created automatically. Priority was set based on classification of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
priority
unchecked return value in tests subsys dfu mcuboot src main c static code scan issues found in file category error handling issues function test request upgrade component tests cid details please fix or provide comments in coverity using the link note this issue was created automatically priority was set based on classification of the file affected and the impact field in coverity assignees were set using the codeowners file
1
5,710
2,578,500,336
IssuesEvent
2015-02-12 23:44:17
texastribune/tx_lobbying
https://api.github.com/repos/texastribune/tx_lobbying
opened
Ability to quickly look at "related" interests
priority:low
Sometimes, you can't combine two interests because they aren't exactly the same, but for most cases, you want to combine them. For example, there might be an interest who happens to be the CEO of another interest.
1.0
Ability to quickly look at "related" interests - Sometimes, you can't combine two interests because they aren't exactly the same, but for most cases, you want to combine them. For example, there might be an interest who happens to be the CEO of another interest.
priority
ability to quickly look at related interests sometimes you can t combine two interests because they aren t exactly the same but for most cases you want to combine them for example there might be an interest who happens to be the ceo of another interest
1
391,462
11,574,096,708
IssuesEvent
2020-02-21 06:12:06
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
opened
[docdb][colocation] Consider adjusting rocksdb_max_background_compactions for low resource setup
area/docdb priority/low
For colocation, we will only realistically have 1 rocksdb for the whole database. On low resource machines, if we want to have more background compaction threads, we might need to adjust also the per-rocksdb `rocksdb_max_background_compactions`, for allowing more to be scheduled. This came up as part of some offline discussion around #3561
1.0
[docdb][colocation] Consider adjusting rocksdb_max_background_compactions for low resource setup - For colocation, we will only realistically have 1 rocksdb for the whole database. On low resource machines, if we want to have more background compaction threads, we might need to adjust also the per-rocksdb `rocksdb_max_background_compactions`, for allowing more to be scheduled. This came up as part of some offline discussion around #3561
priority
consider adjusting rocksdb max background compactions for low resource setup for colocation we will only realistically have rocksdb for the whole database on low resource machines if we want to have more background compaction threads we might need to adjust also the per rocksdb rocksdb max background compactions for allowing more to be scheduled this came up as part of some offline discussion around
1
611,913
18,984,329,258
IssuesEvent
2021-11-21 13:04:19
Together-Java/TJ-Bot
https://api.github.com/repos/Together-Java/TJ-Bot
closed
VC activity command UX - Direct message towards audience
good first issue enhance command priority: low
I think we could improve the vc activity command text. It is a bit random to other readers who lack context. It would be better if it would say like **"user x wants to start activity y. feel free to join by clicking z, enjoy"** Right now it's directed towards the message author but it should be directed to the actual audience, other people. ![akvKddi](https://user-images.githubusercontent.com/13614011/140027173-611ef6f9-e09f-4ee9-ab87-2868050b7dc1.png)
1.0
VC activity command UX - Direct message towards audience - I think we could improve the vc activity command text. It is a bit random to other readers who lack context. It would be better if it would say like **"user x wants to start activity y. feel free to join by clicking z, enjoy"** Right now it's directed towards the message author but it should be directed to the actual audience, other people. ![akvKddi](https://user-images.githubusercontent.com/13614011/140027173-611ef6f9-e09f-4ee9-ab87-2868050b7dc1.png)
priority
vc activity command ux direct message towards audience i think we could improve the vc activity command text it is a bit random to other readers who lack context it would be better if it would say like user x wants to start activity y feel free to join by clicking z enjoy right now it s directed towards the message author but it should be directed to the actual audience other people
1
419,343
12,221,939,727
IssuesEvent
2020-05-02 10:41:58
alfaro96/scikit-lr
https://api.github.com/repos/alfaro96/scikit-lr
closed
[DOC] Create documentation for the package
enhancement hard help wanted low priority
#### Description Using the `sphinx` package, we can create intelligent and beautiful documentation from the comments and examples already included in the modules. To make it easier, a list of projects that use this tool is provided in this [link](http://www.sphinx-doc.org/en/master/examples.html).
1.0
[DOC] Create documentation for the package - #### Description Using the `sphinx` package, we can create intelligent and beautiful documentation from the comments and examples already included in the modules. To make it easier, a list of projects that use this tool is provided in this [link](http://www.sphinx-doc.org/en/master/examples.html).
priority
create documentation for the package description using the sphinx package we can create intelligent and beautiful documentation from the comments and examples already included in the modules to make it easier a list of projects that use this tool is provided in this
1
249,205
7,954,256,455
IssuesEvent
2018-07-12 06:46:16
dhowe/RiTa
https://api.github.com/repos/dhowe/RiTa
reopened
Function to convert between IPA and Arpabet phonemes
PRIORITY: Low enhancement
include functions to convert back and forth between IPA and Arpabet phonemes?
1.0
Function to convert between IPA and Arpabet phonemes - include functions to convert back and forth between IPA and Arpabet phonemes?
priority
function to convert between ipa and arpabet phonemes include functions to convert back and forth between ipa and arpabet phonemes
1
152,520
5,848,563,056
IssuesEvent
2017-05-10 21:11:28
byuccl/RapidSmith2
https://api.github.com/repos/byuccl/RapidSmith2
closed
Control Sets in RapidSmith
Priority:Low question
Vivado uses control sets to enforce placement restrictions for certain cells. For example, all Flip Flop cells in a Site must have the same edge detection scheme (rising or falling edge), they cannot be mixed or a DRC violation will be thrown. What is the best way to represent this in RapidSmith (if we should at all)?
1.0
Control Sets in RapidSmith - Vivado uses control sets to enforce placement restrictions for certain cells. For example, all Flip Flop cells in a Site must have the same edge detection scheme (rising or falling edge), they cannot be mixed or a DRC violation will be thrown. What is the best way to represent this in RapidSmith (if we should at all)?
priority
control sets in rapidsmith vivado uses control sets to enforce placement restrictions for certain cells for example all flip flop cells in a site must have the same edge detection scheme rising or falling edge they cannot be mixed or a drc violation will be thrown what is the best way to represent this in rapidsmith if we should at all
1
448,252
12,946,283,832
IssuesEvent
2020-07-18 18:26:12
status-im/nim-beacon-chain
https://api.github.com/repos/status-im/nim-beacon-chain
opened
[SEC] Brittle AES-GCM Tag/IV Construction in Nimcrypto
difficulty:medium low priority nbc-audit-2020-0 :passport_control: security status:reported
## Description The [`bcmode.nim`](https://github.com/cheatfate/nimcrypto/blob/f767595f4ddec2b5570b5194feb96954c00a6499/nimcrypto/bcmode.nim) source file provides support for large range of block ciphers including AES-ECB and AES-GCM. For the AES-GCM cipher mode, the code provides a `getTag()` function that gives the caller access to the authentication tag for both encryption and decryption, and tag checks are demonstrated in the [`examples/gcm.nim`](https://github.com/cheatfate/nimcrypto/blob/f767595f4ddec2b5570b5194feb96954c00a6499/examples/gcm.nim) file. Thus, the sender is required to retrieve the tag after encryption and transmit it, while the recipient must then check the received tag against the locally calculated tag after decryption. This has historically been a source of errors due to weaknesses involving: * No other (implemented) cipher mode requires these extra steps, so users may be unaware. * The need to take extra steps to verify tags is not always well [documented](https://cheatfate.github.io/nimcrypto/nimcrypto/bcmode.html) and/or the documentation is not read. * [NIST 800-38D](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf) indicates that `decrypt()` functionality either returns plaintext or FAIL on a mismatched tag. * [Examples](https://github.com/cheatfate/nimcrypto/blob/f767595f4ddec2b5570b5194feb96954c00a6499/examples/gcm.nim) can use an assert which is largely a test primitive and easily overlooked in functional code. Similarly, as AES-GCM is a stream cipher, encrypting with a random and unique initialization vector (IV) of sufficient length per message is critical, though potentially easily overlooked. Plaintext is (generally) easily extracted from the ciphertext produced by a stream cipher with a fixed IV. The implementation requires the user to supply and manage IVs. NIST 800-38D recommends an IV of 96 bits but allows for more via an extra hashing step. The code correctly handles a 96-bit IV and the extra hashing case, but does allow a very small IV to fall into the latter case. There is a material risk that the user supplies a fixed or reused IB potentially of insufficient size. ## Exploit Scenario A user forgetting to source, transmit and check tags on decryption or appropriately manage the initialization vectors on encryption will severely damage the integrity and confidentiality assurances provided by AES-GCM. ## Mitigation Recommendation Adapt the AES-GCM functionality to remove the need for users to handle tags and source IVs by: * Attach tags to the encrypted message. * Check the tags inside the decrypt functionality and signal FAIL with no plaintext returned on error. * Offer a default internal unique 96-bit IV from a cryptographically secure source of randomness per outbound message. * Document the importance of tag verification and unique/random IVs. Separately and as an informational aside, older cipher modes such as AES-ECB should be removed wherever possible, to prevent users from being attracted to the first, simplest and/or most familiar option that may be less secure. ## References References are linked above. Note that @cheatfate asked me to file nimcrypto issues under nim-beacon-chain
1.0
[SEC] Brittle AES-GCM Tag/IV Construction in Nimcrypto - ## Description The [`bcmode.nim`](https://github.com/cheatfate/nimcrypto/blob/f767595f4ddec2b5570b5194feb96954c00a6499/nimcrypto/bcmode.nim) source file provides support for large range of block ciphers including AES-ECB and AES-GCM. For the AES-GCM cipher mode, the code provides a `getTag()` function that gives the caller access to the authentication tag for both encryption and decryption, and tag checks are demonstrated in the [`examples/gcm.nim`](https://github.com/cheatfate/nimcrypto/blob/f767595f4ddec2b5570b5194feb96954c00a6499/examples/gcm.nim) file. Thus, the sender is required to retrieve the tag after encryption and transmit it, while the recipient must then check the received tag against the locally calculated tag after decryption. This has historically been a source of errors due to weaknesses involving: * No other (implemented) cipher mode requires these extra steps, so users may be unaware. * The need to take extra steps to verify tags is not always well [documented](https://cheatfate.github.io/nimcrypto/nimcrypto/bcmode.html) and/or the documentation is not read. * [NIST 800-38D](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf) indicates that `decrypt()` functionality either returns plaintext or FAIL on a mismatched tag. * [Examples](https://github.com/cheatfate/nimcrypto/blob/f767595f4ddec2b5570b5194feb96954c00a6499/examples/gcm.nim) can use an assert which is largely a test primitive and easily overlooked in functional code. Similarly, as AES-GCM is a stream cipher, encrypting with a random and unique initialization vector (IV) of sufficient length per message is critical, though potentially easily overlooked. Plaintext is (generally) easily extracted from the ciphertext produced by a stream cipher with a fixed IV. The implementation requires the user to supply and manage IVs. NIST 800-38D recommends an IV of 96 bits but allows for more via an extra hashing step. The code correctly handles a 96-bit IV and the extra hashing case, but does allow a very small IV to fall into the latter case. There is a material risk that the user supplies a fixed or reused IB potentially of insufficient size. ## Exploit Scenario A user forgetting to source, transmit and check tags on decryption or appropriately manage the initialization vectors on encryption will severely damage the integrity and confidentiality assurances provided by AES-GCM. ## Mitigation Recommendation Adapt the AES-GCM functionality to remove the need for users to handle tags and source IVs by: * Attach tags to the encrypted message. * Check the tags inside the decrypt functionality and signal FAIL with no plaintext returned on error. * Offer a default internal unique 96-bit IV from a cryptographically secure source of randomness per outbound message. * Document the importance of tag verification and unique/random IVs. Separately and as an informational aside, older cipher modes such as AES-ECB should be removed wherever possible, to prevent users from being attracted to the first, simplest and/or most familiar option that may be less secure. ## References References are linked above. Note that @cheatfate asked me to file nimcrypto issues under nim-beacon-chain
priority
brittle aes gcm tag iv construction in nimcrypto description the source file provides support for large range of block ciphers including aes ecb and aes gcm for the aes gcm cipher mode the code provides a gettag function that gives the caller access to the authentication tag for both encryption and decryption and tag checks are demonstrated in the file thus the sender is required to retrieve the tag after encryption and transmit it while the recipient must then check the received tag against the locally calculated tag after decryption this has historically been a source of errors due to weaknesses involving no other implemented cipher mode requires these extra steps so users may be unaware the need to take extra steps to verify tags is not always well and or the documentation is not read indicates that decrypt functionality either returns plaintext or fail on a mismatched tag can use an assert which is largely a test primitive and easily overlooked in functional code similarly as aes gcm is a stream cipher encrypting with a random and unique initialization vector iv of sufficient length per message is critical though potentially easily overlooked plaintext is generally easily extracted from the ciphertext produced by a stream cipher with a fixed iv the implementation requires the user to supply and manage ivs nist recommends an iv of bits but allows for more via an extra hashing step the code correctly handles a bit iv and the extra hashing case but does allow a very small iv to fall into the latter case there is a material risk that the user supplies a fixed or reused ib potentially of insufficient size exploit scenario a user forgetting to source transmit and check tags on decryption or appropriately manage the initialization vectors on encryption will severely damage the integrity and confidentiality assurances provided by aes gcm mitigation recommendation adapt the aes gcm functionality to remove the need for users to handle tags and source ivs by attach tags to the encrypted message check the tags inside the decrypt functionality and signal fail with no plaintext returned on error offer a default internal unique bit iv from a cryptographically secure source of randomness per outbound message document the importance of tag verification and unique random ivs separately and as an informational aside older cipher modes such as aes ecb should be removed wherever possible to prevent users from being attracted to the first simplest and or most familiar option that may be less secure references references are linked above note that cheatfate asked me to file nimcrypto issues under nim beacon chain
1
1,044
2,506,999,615
IssuesEvent
2015-01-12 15:29:41
sharewave/frontus
https://api.github.com/repos/sharewave/frontus
closed
two scroll bars in cap table on right
captable low priority UX
this is weird. can the far right one be attached to the cap table proper instead of rail? ![screen shot 2014-11-24 at 2 57 30 pm](https://cloud.githubusercontent.com/assets/6333864/5172004/5036f60c-73ea-11e4-8e32-71f7941849b1.png)
1.0
two scroll bars in cap table on right - this is weird. can the far right one be attached to the cap table proper instead of rail? ![screen shot 2014-11-24 at 2 57 30 pm](https://cloud.githubusercontent.com/assets/6333864/5172004/5036f60c-73ea-11e4-8e32-71f7941849b1.png)
priority
two scroll bars in cap table on right this is weird can the far right one be attached to the cap table proper instead of rail
1
161,717
6,134,706,838
IssuesEvent
2017-06-26 01:09:11
nylas-mail-lives/nylas-mail
https://api.github.com/repos/nylas-mail-lives/nylas-mail
closed
Reverse mail order option
Priority: Low Status: In Progress Type: Enhancement
Would anyone be interested in providing an option so that the correspondence in emails is instead reverse with newest appearing on top. Currently it is the other way around. What I am thinking is more like what you see in the outlook.com web interface.
1.0
Reverse mail order option - Would anyone be interested in providing an option so that the correspondence in emails is instead reverse with newest appearing on top. Currently it is the other way around. What I am thinking is more like what you see in the outlook.com web interface.
priority
reverse mail order option would anyone be interested in providing an option so that the correspondence in emails is instead reverse with newest appearing on top currently it is the other way around what i am thinking is more like what you see in the outlook com web interface
1
471,640
13,595,914,231
IssuesEvent
2020-09-22 04:36:41
Schmed/teamwork
https://api.github.com/repos/Schmed/teamwork
opened
Cell phone app?
enhancement low priority
If we moved from a Google form to a cell phone app, it would obviously open up all kinds of opportunities: - It would automatically handle all of our authentication concerns. - It could provide our own custom (albeit simple) platform for social interaction that was well-integrated with the other system features. - Players could use the app to automatically measure durations (i.e., by tapping start & stop buttons, etc.) However, Chris looked into this and wasn’t surprised at the inherent difficulties (not to mention expense). This short video provides a good introduction: [Mobile app makers in 100 seconds](https://youtu.be/tflPJM4LTSk). The system would need to be proven successful (and the existence of an app essential) in order to justify app development. That said, requirements for coding aren’t really an issue, and there are apparently app templates that Chris _could_ customize for our use.
1.0
Cell phone app? - If we moved from a Google form to a cell phone app, it would obviously open up all kinds of opportunities: - It would automatically handle all of our authentication concerns. - It could provide our own custom (albeit simple) platform for social interaction that was well-integrated with the other system features. - Players could use the app to automatically measure durations (i.e., by tapping start & stop buttons, etc.) However, Chris looked into this and wasn’t surprised at the inherent difficulties (not to mention expense). This short video provides a good introduction: [Mobile app makers in 100 seconds](https://youtu.be/tflPJM4LTSk). The system would need to be proven successful (and the existence of an app essential) in order to justify app development. That said, requirements for coding aren’t really an issue, and there are apparently app templates that Chris _could_ customize for our use.
priority
cell phone app if we moved from a google form to a cell phone app it would obviously open up all kinds of opportunities it would automatically handle all of our authentication concerns it could provide our own custom albeit simple platform for social interaction that was well integrated with the other system features players could use the app to automatically measure durations i e by tapping start stop buttons etc however chris looked into this and wasn’t surprised at the inherent difficulties not to mention expense this short video provides a good introduction the system would need to be proven successful and the existence of an app essential in order to justify app development that said requirements for coding aren’t really an issue and there are apparently app templates that chris could customize for our use
1
451,624
13,039,427,997
IssuesEvent
2020-07-28 16:44:04
department-of-veterans-affairs/caseflow
https://api.github.com/repos/department-of-veterans-affairs/caseflow
opened
AOD Cases should sort to the top
Priority: Medium Product: caseflow-queue Stakeholder: BVA Team: Echo 🐬 Type: Bug
## Description While investigating a seperate issue in production, I observed that AOD cases are not bubbling up to the top of a users queue, like we want. Specifically, non-original cases were appearing first in a Judges Assign queue. ## Acceptance criteria - [ ] AOD cases should always sort to the top of a users queue on load. ## Background/context/resources ## Technical notes
1.0
AOD Cases should sort to the top - ## Description While investigating a seperate issue in production, I observed that AOD cases are not bubbling up to the top of a users queue, like we want. Specifically, non-original cases were appearing first in a Judges Assign queue. ## Acceptance criteria - [ ] AOD cases should always sort to the top of a users queue on load. ## Background/context/resources ## Technical notes
priority
aod cases should sort to the top description while investigating a seperate issue in production i observed that aod cases are not bubbling up to the top of a users queue like we want specifically non original cases were appearing first in a judges assign queue acceptance criteria aod cases should always sort to the top of a users queue on load background context resources technical notes
1
132,839
5,194,210,680
IssuesEvent
2017-01-23 02:06:31
UPBGE/blender
https://api.github.com/repos/UPBGE/blender
closed
Add 'activate actuator' function or method
feature request low priority
_When I programmed several projects under BGE all times one moment corrupted me all the architecture. I could not activate actuator from not connected to it controller. So I suggest will be better to:_ **Remove necessity connecting actuators to controllers to activate actuators.** Why: -(a) if in scene will be hundreds of objects, physically will be difficult to connect all their actuators to controller. -(b) to simplify working with BGE: no need to make extra connections. -(c) this will increase amount objects, with which module can interact; this can make something like interface: object can have actuator with certain name, for example, 'wind_animation' and module will have no need to know: which keyframes will that animation have, what is it's name and etc. Module will be written once, than 3D artists could add objects with certain sign (or certain name, or certain parent), which will be processed automatically by the module. Example: controller_1.activate(scene.objects['sphere.008''].actuators['wind_animation']) _I thought about idea "interfaces" more time and then came to next suggestion:_ **Create method or function for activating sensors, controllers, actuators.** Details: When we run activate(actuator) or actuator.activate(), the actuator of certain object will act like it was activated by controller. Objects can be received dynamically at the runtime, 3D artists have no need to add lines to scripts or lines to logic bricks, they need just to create object with certain interface (for example, actuator with certain name) and BGE will proceed it. Why to actuators: -(a) to expand the idea of "interfaces" and make it more easy to implement: no need to run contr.activate(), just object.actuators.activate() or activate(actuator_object). -(b) all like in 1.(c) Why to controllers: -(c) What about the programmers? If a programmer will create some object which will have not actuator, but python script, which makes certain actions. Than he BGE will activate it and programmer will have no need adding lines to previous script\module or creating lines and adding lines to certain module. Yes, the interface can be based on thesis that the object must have or controller or actuator with certain name. If object must do some complex logic - it can use Python controller instead of simple actuator. Why to sensors: -(d) in a heap to rest. -(e) if object already has difficult logic, several sensors and each sensor is responsible for certain parameter. Than each script can change certain parameter (sensor) and object will analyze all itself. _This easy to implement solutions, as I think, will make BGE more convenient instrument for all people, who work with it._ P.S 1. Also with goal not to create extra connections between logic bricks of different objects can be implemented **activate brick actuator**. This actuator can have three lines to choose in: 1. Object; 2. Type of logic brick to activate (sensor, controller, actuator). 3. Logic brick to activate (by name). Why: -(a) this actuators can say "goodbye" to long connections between several objects and searching needed one between them. _What do you think about this? Maybe you can improve such decisions? Thank you._
1.0
Add 'activate actuator' function or method - _When I programmed several projects under BGE all times one moment corrupted me all the architecture. I could not activate actuator from not connected to it controller. So I suggest will be better to:_ **Remove necessity connecting actuators to controllers to activate actuators.** Why: -(a) if in scene will be hundreds of objects, physically will be difficult to connect all their actuators to controller. -(b) to simplify working with BGE: no need to make extra connections. -(c) this will increase amount objects, with which module can interact; this can make something like interface: object can have actuator with certain name, for example, 'wind_animation' and module will have no need to know: which keyframes will that animation have, what is it's name and etc. Module will be written once, than 3D artists could add objects with certain sign (or certain name, or certain parent), which will be processed automatically by the module. Example: controller_1.activate(scene.objects['sphere.008''].actuators['wind_animation']) _I thought about idea "interfaces" more time and then came to next suggestion:_ **Create method or function for activating sensors, controllers, actuators.** Details: When we run activate(actuator) or actuator.activate(), the actuator of certain object will act like it was activated by controller. Objects can be received dynamically at the runtime, 3D artists have no need to add lines to scripts or lines to logic bricks, they need just to create object with certain interface (for example, actuator with certain name) and BGE will proceed it. Why to actuators: -(a) to expand the idea of "interfaces" and make it more easy to implement: no need to run contr.activate(), just object.actuators.activate() or activate(actuator_object). -(b) all like in 1.(c) Why to controllers: -(c) What about the programmers? If a programmer will create some object which will have not actuator, but python script, which makes certain actions. Than he BGE will activate it and programmer will have no need adding lines to previous script\module or creating lines and adding lines to certain module. Yes, the interface can be based on thesis that the object must have or controller or actuator with certain name. If object must do some complex logic - it can use Python controller instead of simple actuator. Why to sensors: -(d) in a heap to rest. -(e) if object already has difficult logic, several sensors and each sensor is responsible for certain parameter. Than each script can change certain parameter (sensor) and object will analyze all itself. _This easy to implement solutions, as I think, will make BGE more convenient instrument for all people, who work with it._ P.S 1. Also with goal not to create extra connections between logic bricks of different objects can be implemented **activate brick actuator**. This actuator can have three lines to choose in: 1. Object; 2. Type of logic brick to activate (sensor, controller, actuator). 3. Logic brick to activate (by name). Why: -(a) this actuators can say "goodbye" to long connections between several objects and searching needed one between them. _What do you think about this? Maybe you can improve such decisions? Thank you._
priority
add activate actuator function or method when i programmed several projects under bge all times one moment corrupted me all the architecture i could not activate actuator from not connected to it controller so i suggest will be better to remove necessity connecting actuators to controllers to activate actuators why a if in scene will be hundreds of objects physically will be difficult to connect all their actuators to controller b to simplify working with bge no need to make extra connections c this will increase amount objects with which module can interact this can make something like interface object can have actuator with certain name for example wind animation and module will have no need to know which keyframes will that animation have what is it s name and etc module will be written once than artists could add objects with certain sign or certain name or certain parent which will be processed automatically by the module example controller activate scene objects actuators i thought about idea interfaces more time and then came to next suggestion create method or function for activating sensors controllers actuators details when we run activate actuator or actuator activate the actuator of certain object will act like it was activated by controller objects can be received dynamically at the runtime artists have no need to add lines to scripts or lines to logic bricks they need just to create object with certain interface for example actuator with certain name and bge will proceed it why to actuators a to expand the idea of interfaces and make it more easy to implement no need to run contr activate just object actuators activate or activate actuator object b all like in c why to controllers c what about the programmers if a programmer will create some object which will have not actuator but python script which makes certain actions than he bge will activate it and programmer will have no need adding lines to previous script module or creating lines and adding lines to certain module yes the interface can be based on thesis that the object must have or controller or actuator with certain name if object must do some complex logic it can use python controller instead of simple actuator why to sensors d in a heap to rest e if object already has difficult logic several sensors and each sensor is responsible for certain parameter than each script can change certain parameter sensor and object will analyze all itself this easy to implement solutions as i think will make bge more convenient instrument for all people who work with it p s also with goal not to create extra connections between logic bricks of different objects can be implemented activate brick actuator this actuator can have three lines to choose in object type of logic brick to activate sensor controller actuator logic brick to activate by name why a this actuators can say goodbye to long connections between several objects and searching needed one between them what do you think about this maybe you can improve such decisions thank you
1
293,322
8,975,329,618
IssuesEvent
2019-01-30 04:40:56
leonstafford/wp2static
https://api.github.com/repos/leonstafford/wp2static
closed
Export to File system does not remove deleted pages/css/images etc.
enhancement low-priority
I noticed that once a file is exportet to the file system it does not get deleted even if the site is removed from wordpress and a new export has been done this file stays and can be of course called if you know the url. Export should also check for deleteted files and removes them from the file system target
1.0
Export to File system does not remove deleted pages/css/images etc. - I noticed that once a file is exportet to the file system it does not get deleted even if the site is removed from wordpress and a new export has been done this file stays and can be of course called if you know the url. Export should also check for deleteted files and removes them from the file system target
priority
export to file system does not remove deleted pages css images etc i noticed that once a file is exportet to the file system it does not get deleted even if the site is removed from wordpress and a new export has been done this file stays and can be of course called if you know the url export should also check for deleteted files and removes them from the file system target
1
211,134
7,198,589,384
IssuesEvent
2018-02-05 13:23:36
TauCetiStation/TauCetiClassic
https://api.github.com/repos/TauCetiStation/TauCetiClassic
closed
Баг соединения Тобразной трубы.
Bug Priority: Low
<!-- 1. ОТВЕТЫ ОСТАВЛЯТЬ ПОД СООТВЕТСТВУЮЩИЕ ЗАГОЛОВКИ (они в самом низу, после всех правил) 2. В ОДНОМ РЕПОРТЕ ДОЛЖНО БЫТЬ ОПИСАНИЕ ТОЛЬКО ОДНОЙ ПРОБЛЕМЫ 3. КОРРЕКТНОЕ НАЗВАНИЕ РЕПОРТА НЕ МЕНЕЕ ВАЖНО ЧЕМ ОПИСАНИЕ -. Ниже описание каждого пункта. 1. Весь данный текст что уже написан до вас - НЕ УДАЛЯТЬ И НЕ РЕДАКТИРОВАТЬ. Если нечего написать в тот или иной пункт - просто оставить пустым. 2. Не надо описывать пачку багов в одном репорте, (!даже если там все описать можно парой слов!) шанс что их исправят за раз, крайне мал. А вот использовать на гите удобную функцию - автозакрытия репорта при мерже пулл реквеста - исправляющего данный репорт, будет невозможно. 3. Корректное и в меру подробное название репорта - тоже очень важно! Чтобы даже не заходя в сам репорт - было понятно что за проблема. Плохой пример: "Ковер." - что мы должны понять из такого названия? Хороший пример: "Некорректное отображение спрайтов ковра." - а вот так уже будет понятно о чем репорт. Это надо как минимум для того, чтобы вам же самим - было видно, что репорта_нейм еще нет или наоборот, уже есть, и это можно было понять не углубляясь в - чтение каждого репорта внутри. Когда название не имеет конкретики, из - которого нельзя понять о чем репорт, это также затрудняет функцию поиска. --> #### Подробное описание проблемы При подсоединении к Тобразной трубе труб с запада и потом юга вписывает южную трубу в две переменные, когда должно записывать только в одну. #### Что должно было произойти #### Что произошло на самом деле #### Как повторить прикрутить трубы как показано на скрине #### Дополнительная информация: ![2016-10-03_12-56-32](https://cloud.githubusercontent.com/assets/7734424/19033861/48488f5a-8969-11e6-9d2e-c5cab52ffea4.png)
1.0
Баг соединения Тобразной трубы. - <!-- 1. ОТВЕТЫ ОСТАВЛЯТЬ ПОД СООТВЕТСТВУЮЩИЕ ЗАГОЛОВКИ (они в самом низу, после всех правил) 2. В ОДНОМ РЕПОРТЕ ДОЛЖНО БЫТЬ ОПИСАНИЕ ТОЛЬКО ОДНОЙ ПРОБЛЕМЫ 3. КОРРЕКТНОЕ НАЗВАНИЕ РЕПОРТА НЕ МЕНЕЕ ВАЖНО ЧЕМ ОПИСАНИЕ -. Ниже описание каждого пункта. 1. Весь данный текст что уже написан до вас - НЕ УДАЛЯТЬ И НЕ РЕДАКТИРОВАТЬ. Если нечего написать в тот или иной пункт - просто оставить пустым. 2. Не надо описывать пачку багов в одном репорте, (!даже если там все описать можно парой слов!) шанс что их исправят за раз, крайне мал. А вот использовать на гите удобную функцию - автозакрытия репорта при мерже пулл реквеста - исправляющего данный репорт, будет невозможно. 3. Корректное и в меру подробное название репорта - тоже очень важно! Чтобы даже не заходя в сам репорт - было понятно что за проблема. Плохой пример: "Ковер." - что мы должны понять из такого названия? Хороший пример: "Некорректное отображение спрайтов ковра." - а вот так уже будет понятно о чем репорт. Это надо как минимум для того, чтобы вам же самим - было видно, что репорта_нейм еще нет или наоборот, уже есть, и это можно было понять не углубляясь в - чтение каждого репорта внутри. Когда название не имеет конкретики, из - которого нельзя понять о чем репорт, это также затрудняет функцию поиска. --> #### Подробное описание проблемы При подсоединении к Тобразной трубе труб с запада и потом юга вписывает южную трубу в две переменные, когда должно записывать только в одну. #### Что должно было произойти #### Что произошло на самом деле #### Как повторить прикрутить трубы как показано на скрине #### Дополнительная информация: ![2016-10-03_12-56-32](https://cloud.githubusercontent.com/assets/7734424/19033861/48488f5a-8969-11e6-9d2e-c5cab52ffea4.png)
priority
баг соединения тобразной трубы ответы оставлять под соответствующие заголовки они в самом низу после всех правил в одном репорте должно быть описание только одной проблемы корректное название репорта не менее важно чем описание ниже описание каждого пункта весь данный текст что уже написан до вас не удалять и не редактировать если нечего написать в тот или иной пункт просто оставить пустым не надо описывать пачку багов в одном репорте даже если там все описать можно парой слов шанс что их исправят за раз крайне мал а вот использовать на гите удобную функцию автозакрытия репорта при мерже пулл реквеста исправляющего данный репорт будет невозможно корректное и в меру подробное название репорта тоже очень важно чтобы даже не заходя в сам репорт было понятно что за проблема плохой пример ковер что мы должны понять из такого названия хороший пример некорректное отображение спрайтов ковра а вот так уже будет понятно о чем репорт это надо как минимум для того чтобы вам же самим было видно что репорта нейм еще нет или наоборот уже есть и это можно было понять не углубляясь в чтение каждого репорта внутри когда название не имеет конкретики из которого нельзя понять о чем репорт это также затрудняет функцию поиска подробное описание проблемы при подсоединении к тобразной трубе труб с запада и потом юга вписывает южную трубу в две переменные когда должно записывать только в одну что должно было произойти что произошло на самом деле как повторить прикрутить трубы как показано на скрине дополнительная информация
1
522,806
15,168,362,261
IssuesEvent
2021-02-12 19:17:03
eugenemel/maven
https://api.github.com/repos/eugenemel/maven
opened
Click on spectrum, should scale RT to gradient length instead of 100
bug low_priority manuscript
Seen in initial load, does not know the gradient length. Should automatically fix everything
1.0
Click on spectrum, should scale RT to gradient length instead of 100 - Seen in initial load, does not know the gradient length. Should automatically fix everything
priority
click on spectrum should scale rt to gradient length instead of seen in initial load does not know the gradient length should automatically fix everything
1
685,629
23,463,376,840
IssuesEvent
2022-08-16 14:46:17
pachyderm/pachyderm
https://api.github.com/repos/pachyderm/pachyderm
closed
Service docs need more detail re:data updates
docs size: S priority: low
The [doc says](http://docs.pachyderm.io/en/v1.6.0rc6/fundamentals/creating_services.html) a service has "always got the most up-to-date version of your data exposed to it", but doesn't explain how that works -- is the process killed and relaunched in a new pod when a new commit comes in? Does new data just appear while the process is running? Is the existing process restarted within the same pod when new data arrives?
1.0
Service docs need more detail re:data updates - The [doc says](http://docs.pachyderm.io/en/v1.6.0rc6/fundamentals/creating_services.html) a service has "always got the most up-to-date version of your data exposed to it", but doesn't explain how that works -- is the process killed and relaunched in a new pod when a new commit comes in? Does new data just appear while the process is running? Is the existing process restarted within the same pod when new data arrives?
priority
service docs need more detail re data updates the a service has always got the most up to date version of your data exposed to it but doesn t explain how that works is the process killed and relaunched in a new pod when a new commit comes in does new data just appear while the process is running is the existing process restarted within the same pod when new data arrives
1
799,477
28,307,832,654
IssuesEvent
2023-04-10 12:50:06
Eonasdan/tempus-dominus
https://api.github.com/repos/Eonasdan/tempus-dominus
closed
Bootstrap Icons plugin
help wanted Type: Feature Request Priority: Low Area: Plugins
### Prerequisites - [X] I have [searched](https://github.com/Eonasdan/tempus-dominus/issues?q=label%3A%22Type%3A+feature+request%22+) for duplicate or closed feature requests. - [X] I have read the [contributing guidelines](https://github.com/Eonasdan/tempus-dominus/blob/master/.github/CONTRIBUTING.md). ### Proposal Like fa-five plugin we can use a plugin for Bootstrap Icons : [bootstrap-icons.txt](https://github.com/Eonasdan/tempus-dominus/files/9922491/bootstrap-icons.txt) and to use it: `tempusDominus.extend(window.tempusDominus.plugins.bootstrap_icons.load);` ### Motivation and context If your are using Bootstrap and Bootstrap Icons, this plugin will be useful.
1.0
Bootstrap Icons plugin - ### Prerequisites - [X] I have [searched](https://github.com/Eonasdan/tempus-dominus/issues?q=label%3A%22Type%3A+feature+request%22+) for duplicate or closed feature requests. - [X] I have read the [contributing guidelines](https://github.com/Eonasdan/tempus-dominus/blob/master/.github/CONTRIBUTING.md). ### Proposal Like fa-five plugin we can use a plugin for Bootstrap Icons : [bootstrap-icons.txt](https://github.com/Eonasdan/tempus-dominus/files/9922491/bootstrap-icons.txt) and to use it: `tempusDominus.extend(window.tempusDominus.plugins.bootstrap_icons.load);` ### Motivation and context If your are using Bootstrap and Bootstrap Icons, this plugin will be useful.
priority
bootstrap icons plugin prerequisites i have for duplicate or closed feature requests i have read the proposal like fa five plugin we can use a plugin for bootstrap icons and to use it tempusdominus extend window tempusdominus plugins bootstrap icons load motivation and context if your are using bootstrap and bootstrap icons this plugin will be useful
1
80,087
3,550,618,581
IssuesEvent
2016-01-20 22:42:04
unt-libraries/coda
https://api.github.com/repos/unt-libraries/coda
closed
coda_mdstore ERC support needs refactoring or removal
app/mdstore bug priority low views
In coda_mdstore/views.py, [app_bag] (https://github.com/unt-libraries/coda/blob/master/coda/coda_mdstore/views.py#L849) function has logic for `GET` requests that have an `identifier` to check if the URL has "?" or "??" appended (in support of Electronic Resource Citations (ERC) https://tools.ietf.org/html/draft-kunze-erc-01 spec). Logic to set value for url_test in the function will exception in mod_wsgi deployments with: `AttributeError: 'WSGIRequest' object has no attribute '_req'`. Our code should not be accessing `_` prefixed attributes anyway. Mark's proposed solution (specifically in regard to aubrey not coda) after [this discussion] (https://groups.google.com/forum/#!topic/arks-forum/LIMI699DrdY) was: Have a rewrite rule that would match a trailing single and double question and have it append something to the URL to let it know on the backend what to do. We would just add a erc_ark/ and erc_commitment/ view to each object--all just on the backend. But first, do we want to maintain support for ERC in Coda?
1.0
coda_mdstore ERC support needs refactoring or removal - In coda_mdstore/views.py, [app_bag] (https://github.com/unt-libraries/coda/blob/master/coda/coda_mdstore/views.py#L849) function has logic for `GET` requests that have an `identifier` to check if the URL has "?" or "??" appended (in support of Electronic Resource Citations (ERC) https://tools.ietf.org/html/draft-kunze-erc-01 spec). Logic to set value for url_test in the function will exception in mod_wsgi deployments with: `AttributeError: 'WSGIRequest' object has no attribute '_req'`. Our code should not be accessing `_` prefixed attributes anyway. Mark's proposed solution (specifically in regard to aubrey not coda) after [this discussion] (https://groups.google.com/forum/#!topic/arks-forum/LIMI699DrdY) was: Have a rewrite rule that would match a trailing single and double question and have it append something to the URL to let it know on the backend what to do. We would just add a erc_ark/ and erc_commitment/ view to each object--all just on the backend. But first, do we want to maintain support for ERC in Coda?
priority
coda mdstore erc support needs refactoring or removal in coda mdstore views py function has logic for get requests that have an identifier to check if the url has or appended in support of electronic resource citations erc spec logic to set value for url test in the function will exception in mod wsgi deployments with attributeerror wsgirequest object has no attribute req our code should not be accessing prefixed attributes anyway mark s proposed solution specifically in regard to aubrey not coda after was have a rewrite rule that would match a trailing single and double question and have it append something to the url to let it know on the backend what to do we would just add a erc ark and erc commitment view to each object all just on the backend but first do we want to maintain support for erc in coda
1
156,543
5,971,090,872
IssuesEvent
2017-05-31 01:02:41
lightertu/TeamDivider
https://api.github.com/repos/lightertu/TeamDivider
closed
Create a Source Indicator while dragging
Activities CSS Low Priority
Something like a frame around the source of drag would be helpful to keep track.
1.0
Create a Source Indicator while dragging - Something like a frame around the source of drag would be helpful to keep track.
priority
create a source indicator while dragging something like a frame around the source of drag would be helpful to keep track
1
312,831
9,553,708,880
IssuesEvent
2019-05-02 20:00:17
eJourn-al/eJournal
https://api.github.com/repos/eJourn-al/eJournal
closed
Non-required file upload throws an error when left empty
Priority: High Status: Review Needed Type: Bug Workload: Low
**Describe the bug** The back end always denies requests that contain `None` for a file upload field. **To Reproduce** Steps to reproduce the behavior: 1. Make a template with a non-required file upload field 2. Try to post it as a student 3. Observe that the server returns a bad request stating `One of your files was not correctly uploaded, please try gain.` **Expected behavior** Non-required fields to be non-required.
1.0
Non-required file upload throws an error when left empty - **Describe the bug** The back end always denies requests that contain `None` for a file upload field. **To Reproduce** Steps to reproduce the behavior: 1. Make a template with a non-required file upload field 2. Try to post it as a student 3. Observe that the server returns a bad request stating `One of your files was not correctly uploaded, please try gain.` **Expected behavior** Non-required fields to be non-required.
priority
non required file upload throws an error when left empty describe the bug the back end always denies requests that contain none for a file upload field to reproduce steps to reproduce the behavior make a template with a non required file upload field try to post it as a student observe that the server returns a bad request stating one of your files was not correctly uploaded please try gain expected behavior non required fields to be non required
1
34,771
2,787,549,666
IssuesEvent
2015-05-08 07:01:33
HGustavs/LenaSYS
https://api.github.com/repos/HGustavs/LenaSYS
closed
Grey out/remove unfitting options in "Edit Item" dialog
DuggaSys lowPriority
In the edit item dialog, some of the options are not suitable for all item types. E.g. you can now set a grade system and highscore for a header. The options that are not fit for the item type should be either greyed out or removed completely.
1.0
Grey out/remove unfitting options in "Edit Item" dialog - In the edit item dialog, some of the options are not suitable for all item types. E.g. you can now set a grade system and highscore for a header. The options that are not fit for the item type should be either greyed out or removed completely.
priority
grey out remove unfitting options in edit item dialog in the edit item dialog some of the options are not suitable for all item types e g you can now set a grade system and highscore for a header the options that are not fit for the item type should be either greyed out or removed completely
1
111,219
4,466,901,860
IssuesEvent
2016-08-25 01:11:14
Murkantilism/skylabgame
https://api.github.com/repos/Murkantilism/skylabgame
closed
Write code to support the new animation slices
enhancement Low Priority
- [x] Re: #167 will need to play animation slices at the right times based on timing decided in that ticket - [x] Additionally, there appears to be a minor issue where the player movement does not wait for the wall flip animation to complete if you hold down boost input (even if you are out of boost). Normally there should be a slight pause for the animation to complete. - [x] Wallflip should start sooner
1.0
Write code to support the new animation slices - - [x] Re: #167 will need to play animation slices at the right times based on timing decided in that ticket - [x] Additionally, there appears to be a minor issue where the player movement does not wait for the wall flip animation to complete if you hold down boost input (even if you are out of boost). Normally there should be a slight pause for the animation to complete. - [x] Wallflip should start sooner
priority
write code to support the new animation slices re will need to play animation slices at the right times based on timing decided in that ticket additionally there appears to be a minor issue where the player movement does not wait for the wall flip animation to complete if you hold down boost input even if you are out of boost normally there should be a slight pause for the animation to complete wallflip should start sooner
1
696,410
23,900,180,147
IssuesEvent
2022-09-08 18:01:48
windwalker-io/framework
https://api.github.com/repos/windwalker-io/framework
closed
Query::whereElement(callable, 'AND' or 'OR')
Priority Low
Try implement this conditions ```sql WHERE a = b AND ( b = c OR ( d = e AND g = f) ) ```
1.0
Query::whereElement(callable, 'AND' or 'OR') - Try implement this conditions ```sql WHERE a = b AND ( b = c OR ( d = e AND g = f) ) ```
priority
query whereelement callable and or or try implement this conditions sql where a b and b c or d e and g f
1
417,961
12,190,917,517
IssuesEvent
2020-04-29 10:09:48
mantidproject/mantid
https://api.github.com/repos/mantidproject/mantid
closed
Error message on importing Mantid into Python on Mac
Framework Low Priority
This issue was originally [TRAC 5577](http://trac.mantidproject.org/mantid/ticket/5577) Original Reporter: Russell Taylor If I install Mantid, and have Paraview installed as well, I get the following message when trying to import Mantid into standalone python (i.e. outside of MantidPlot): ``` ConfigService-[Notice] ParaView is available DllOpen-[Error] Could not open library /Applications/MantidPlot.app/pvplugins//libMantidVatesSimpleGuiViewWidgets.dylib: dlopen(/Applications/MantidPlot.app/pvplugins//libMantidVatesSimpleGuiViewWidgets.dylib, 10): Library not loaded: @executable_path/../../pvplugins/libMantidVatesSimpleGuiQtWidgets.dylib Referenced from: /Applications/MantidPlot.app/pvplugins//libMantidVatesSimpleGuiViewWidgets.dylib Reason: image not found ``` Sometimes I get it more than once! The message is absent when starting MantidPlot. Presumably it's not a real problem (why are they being loaded into the framework anyway?), but it is disconcerting.
1.0
Error message on importing Mantid into Python on Mac - This issue was originally [TRAC 5577](http://trac.mantidproject.org/mantid/ticket/5577) Original Reporter: Russell Taylor If I install Mantid, and have Paraview installed as well, I get the following message when trying to import Mantid into standalone python (i.e. outside of MantidPlot): ``` ConfigService-[Notice] ParaView is available DllOpen-[Error] Could not open library /Applications/MantidPlot.app/pvplugins//libMantidVatesSimpleGuiViewWidgets.dylib: dlopen(/Applications/MantidPlot.app/pvplugins//libMantidVatesSimpleGuiViewWidgets.dylib, 10): Library not loaded: @executable_path/../../pvplugins/libMantidVatesSimpleGuiQtWidgets.dylib Referenced from: /Applications/MantidPlot.app/pvplugins//libMantidVatesSimpleGuiViewWidgets.dylib Reason: image not found ``` Sometimes I get it more than once! The message is absent when starting MantidPlot. Presumably it's not a real problem (why are they being loaded into the framework anyway?), but it is disconcerting.
priority
error message on importing mantid into python on mac this issue was originally original reporter russell taylor if i install mantid and have paraview installed as well i get the following message when trying to import mantid into standalone python i e outside of mantidplot configservice paraview is available dllopen could not open library applications mantidplot app pvplugins libmantidvatessimpleguiviewwidgets dylib dlopen applications mantidplot app pvplugins libmantidvatessimpleguiviewwidgets dylib library not loaded executable path pvplugins libmantidvatessimpleguiqtwidgets dylib referenced from applications mantidplot app pvplugins libmantidvatessimpleguiviewwidgets dylib reason image not found sometimes i get it more than once the message is absent when starting mantidplot presumably it s not a real problem why are they being loaded into the framework anyway but it is disconcerting
1
730,406
25,170,972,726
IssuesEvent
2022-11-11 03:12:57
KingCh1ll/SparkV
https://api.github.com/repos/KingCh1ll/SparkV
closed
The Issue With "Any" Typings
priority: low Status: Stale
## What is any? The special type `any` is used to tell TypeScript that a variable can be of **any** type. A variable with the type any can be a string, a number and or anything else! When our previous code block is updated to use any, the assignment of a string is allowed, as shown below. You can assign any type to a variable annotated with `any`. ## Why would you not use it? Using `any` eliminates the type checking provided by TypeScript, which is an important reason for using TypeScript in the first place instead of JavaScript. By using `any`, you expose yourself to problems that are difficult to track and debug, especially when the code is used in production. In other words, using `any` for a variable type in TypeScript is similar to writing JavaScript. ## What are the alternatives? ### 1. Using the correct type The first (and best) is to use the right type for your variable. All too often, you use any because they are using a function from third-party libraries or external websites (e.g. Stackoverflow) and don't know what type is being returned! To save time and not understanding what type is being used, you take a shortcut and use `any` for the variable type, which causes problems later when the code is updated (what if the type of the object returned from the third-party library changes? what if you try to access an attribute that is deprecated in new versions of the library?). Instead, it is important to understand the type that is being returned and type your variable accordingly. Take the time to understand the code you are copying/pasting from somewhere else, and take the time to understand the library you are including in your code. Knowing the type you are using saves time and avoids mistakes, but ensures you understand the code and can solve the problem you are working on. ### 2. Using `unknown` The second option is to use `unknown` if you do not know the type and want to ensure type safety. When using unknown, you can assign all types to a variable, but you cannot assign a variable with the unknown type to another variable with a type. According to the [Pull Request](https://github.com/Microsoft/TypeScript/pull/24439), which introduced unknown into TypeScript! This PR adds a new top type `unknown`, which is the type-safe counterpart to `any`. Anything can be assigned to unknown, but `unknown` can only be assigned to itself and any, with no type assertion or control-flow-based constraint. Similarly, no operations are allowed on an unknown without first an assertion or a restriction to a more specific type.
1.0
The Issue With "Any" Typings - ## What is any? The special type `any` is used to tell TypeScript that a variable can be of **any** type. A variable with the type any can be a string, a number and or anything else! When our previous code block is updated to use any, the assignment of a string is allowed, as shown below. You can assign any type to a variable annotated with `any`. ## Why would you not use it? Using `any` eliminates the type checking provided by TypeScript, which is an important reason for using TypeScript in the first place instead of JavaScript. By using `any`, you expose yourself to problems that are difficult to track and debug, especially when the code is used in production. In other words, using `any` for a variable type in TypeScript is similar to writing JavaScript. ## What are the alternatives? ### 1. Using the correct type The first (and best) is to use the right type for your variable. All too often, you use any because they are using a function from third-party libraries or external websites (e.g. Stackoverflow) and don't know what type is being returned! To save time and not understanding what type is being used, you take a shortcut and use `any` for the variable type, which causes problems later when the code is updated (what if the type of the object returned from the third-party library changes? what if you try to access an attribute that is deprecated in new versions of the library?). Instead, it is important to understand the type that is being returned and type your variable accordingly. Take the time to understand the code you are copying/pasting from somewhere else, and take the time to understand the library you are including in your code. Knowing the type you are using saves time and avoids mistakes, but ensures you understand the code and can solve the problem you are working on. ### 2. Using `unknown` The second option is to use `unknown` if you do not know the type and want to ensure type safety. When using unknown, you can assign all types to a variable, but you cannot assign a variable with the unknown type to another variable with a type. According to the [Pull Request](https://github.com/Microsoft/TypeScript/pull/24439), which introduced unknown into TypeScript! This PR adds a new top type `unknown`, which is the type-safe counterpart to `any`. Anything can be assigned to unknown, but `unknown` can only be assigned to itself and any, with no type assertion or control-flow-based constraint. Similarly, no operations are allowed on an unknown without first an assertion or a restriction to a more specific type.
priority
the issue with any typings what is any the special type any is used to tell typescript that a variable can be of any type a variable with the type any can be a string a number and or anything else when our previous code block is updated to use any the assignment of a string is allowed as shown below you can assign any type to a variable annotated with any why would you not use it using any eliminates the type checking provided by typescript which is an important reason for using typescript in the first place instead of javascript by using any you expose yourself to problems that are difficult to track and debug especially when the code is used in production in other words using any for a variable type in typescript is similar to writing javascript what are the alternatives using the correct type the first and best is to use the right type for your variable all too often you use any because they are using a function from third party libraries or external websites e g stackoverflow and don t know what type is being returned to save time and not understanding what type is being used you take a shortcut and use any for the variable type which causes problems later when the code is updated what if the type of the object returned from the third party library changes what if you try to access an attribute that is deprecated in new versions of the library instead it is important to understand the type that is being returned and type your variable accordingly take the time to understand the code you are copying pasting from somewhere else and take the time to understand the library you are including in your code knowing the type you are using saves time and avoids mistakes but ensures you understand the code and can solve the problem you are working on using unknown the second option is to use unknown if you do not know the type and want to ensure type safety when using unknown you can assign all types to a variable but you cannot assign a variable with the unknown type to another variable with a type according to the which introduced unknown into typescript this pr adds a new top type unknown which is the type safe counterpart to any anything can be assigned to unknown but unknown can only be assigned to itself and any with no type assertion or control flow based constraint similarly no operations are allowed on an unknown without first an assertion or a restriction to a more specific type
1
407,209
11,908,075,352
IssuesEvent
2020-03-30 23:55:36
LadnerLab/PepSIRF
https://api.github.com/repos/LadnerLab/PepSIRF
closed
Standard out index flags
demux enhancement low priority
The reported flags in the standard out for demux are: --f_index_data --r_index_data The actual command line flags are: --f_index --r_index It would be better if the stdout flags match the command line flags, to allow commands to be recreated from stdout.
1.0
Standard out index flags - The reported flags in the standard out for demux are: --f_index_data --r_index_data The actual command line flags are: --f_index --r_index It would be better if the stdout flags match the command line flags, to allow commands to be recreated from stdout.
priority
standard out index flags the reported flags in the standard out for demux are f index data r index data the actual command line flags are f index r index it would be better if the stdout flags match the command line flags to allow commands to be recreated from stdout
1
169,928
6,421,288,376
IssuesEvent
2017-08-09 04:02:25
facebookincubator/create-react-app
https://api.github.com/repos/facebookincubator/create-react-app
closed
I also was trying to create cordova based phongap (android app ) for the react js web app built using create-react-app script but not getting how to integrate it please help
priority: low (ignored issue template)
<!-- PLEASE READ THE FIRST SECTION :-) --> ### Is this a bug report? (write your answer here) <!-- If you answered "Yes": Please note that your issue will be fixed much faster if you spend about half an hour preparing it, including the exact reproduction steps and a demo. If you're in a hurry or don't feel confident, it's fine to report bugs with less details, but this makes it less likely they'll get fixed soon. In either case, please fill as many fields below as you can. If you answered "No": If this is a question or a discussion, you may delete this template and write in a free form. Note that we don't provide help for webpack questions after ejecting. You can find webpack docs at https://webpack.js.org/. --> ### Can you also reproduce the problem with npm 4.x? <!-- Many errors, especially related to "missing modules", are due to npm bugs. Which version of npm are you running? You can find out by checking: npm -v If it is 5.x, please be aware that it has more than 50 known bugs, and is not guaranteed to work with Create React App. If it's not starting with 4, try to install npm 4.x: npm install -g npm@4 cd your_project_directory rm -rf node_modules npm cache clear npm install Then try to reproduce the issue again. Can you still reproduce it? Note: Please try this even if you are using Yarn so that we know whether it's a Yarn-only bug. --> (Write your answer here.) ### Which terms did you search for in User Guide? <!-- There are a few common documented problems, such as watcher not detecting changes, or build failing. They are described in the Troubleshooting section of the User Guide: https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting Please scan these few sections for common problems. Additionally, you can search the User Guide itself for something you're having issues with: https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md If you didn't find the solution, please share which words you searched for. This helps us improve documentation for future readers who might encounter the same problem. --> (Write your answer here if relevant.) ### Environment <!-- Please fill in all the relevant fields by running these commands in terminal. --> 1. `node -v`: 2. `npm -v`: 3. `yarn --version` (if you use Yarn): 4. `npm ls react-scripts` (if you haven’t ejected): Then, specify: 1. Operating system: 2. Browser and version (if relevant): ### Steps to Reproduce <!-- How would you describe your issue to someone who doesn’t know you or your project? Try to write a sequence of steps that anybody can repeat to see the issue. --> (Write your steps here:) 1. 2. 3. ### Expected Behavior <!-- How did you expect the tool to behave? It’s fine if you’re not sure your understanding is correct. Just write down what you thought would happen. --> (Write what you thought would happen.) ### Actual Behavior <!-- Did something go wrong? Is something broken, or not behaving as you expected? Please attach screenshots if possible! They are extremely helpful for diagnosing issues. --> (Write what happened. Please add screenshots!) ### Reproducible Demo <!-- If you can, please share a project that reproduces the issue. This is the single most effective way to get an issue fixed soon. There are two ways to do it: * Create a new app and try to reproduce the issue in it. This is useful if you roughly know where the problem is, or can’t share the real code. * Or, copy your app and remove things until you’re left with the minimal reproducible demo. This is useful for finding the root cause. You may then optionally create a new project. This is a good guide to creating bug demos: https://stackoverflow.com/help/mcve Once you’re done, push the project to GitHub and paste the link to it below: --> (Paste the link to an example project and exact instructions to reproduce the issue.) <!-- What happens if you skip this step? We will try to help you, but in many cases it is impossible because crucial information is missing. In that case we'll tag an issue as having a low priority, and eventually close it if there is no clear direction. We still appreciate the report though, as eventually somebody else might create a reproducible example for it. Thanks for helping us help you! -->
1.0
I also was trying to create cordova based phongap (android app ) for the react js web app built using create-react-app script but not getting how to integrate it please help - <!-- PLEASE READ THE FIRST SECTION :-) --> ### Is this a bug report? (write your answer here) <!-- If you answered "Yes": Please note that your issue will be fixed much faster if you spend about half an hour preparing it, including the exact reproduction steps and a demo. If you're in a hurry or don't feel confident, it's fine to report bugs with less details, but this makes it less likely they'll get fixed soon. In either case, please fill as many fields below as you can. If you answered "No": If this is a question or a discussion, you may delete this template and write in a free form. Note that we don't provide help for webpack questions after ejecting. You can find webpack docs at https://webpack.js.org/. --> ### Can you also reproduce the problem with npm 4.x? <!-- Many errors, especially related to "missing modules", are due to npm bugs. Which version of npm are you running? You can find out by checking: npm -v If it is 5.x, please be aware that it has more than 50 known bugs, and is not guaranteed to work with Create React App. If it's not starting with 4, try to install npm 4.x: npm install -g npm@4 cd your_project_directory rm -rf node_modules npm cache clear npm install Then try to reproduce the issue again. Can you still reproduce it? Note: Please try this even if you are using Yarn so that we know whether it's a Yarn-only bug. --> (Write your answer here.) ### Which terms did you search for in User Guide? <!-- There are a few common documented problems, such as watcher not detecting changes, or build failing. They are described in the Troubleshooting section of the User Guide: https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting Please scan these few sections for common problems. Additionally, you can search the User Guide itself for something you're having issues with: https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md If you didn't find the solution, please share which words you searched for. This helps us improve documentation for future readers who might encounter the same problem. --> (Write your answer here if relevant.) ### Environment <!-- Please fill in all the relevant fields by running these commands in terminal. --> 1. `node -v`: 2. `npm -v`: 3. `yarn --version` (if you use Yarn): 4. `npm ls react-scripts` (if you haven’t ejected): Then, specify: 1. Operating system: 2. Browser and version (if relevant): ### Steps to Reproduce <!-- How would you describe your issue to someone who doesn’t know you or your project? Try to write a sequence of steps that anybody can repeat to see the issue. --> (Write your steps here:) 1. 2. 3. ### Expected Behavior <!-- How did you expect the tool to behave? It’s fine if you’re not sure your understanding is correct. Just write down what you thought would happen. --> (Write what you thought would happen.) ### Actual Behavior <!-- Did something go wrong? Is something broken, or not behaving as you expected? Please attach screenshots if possible! They are extremely helpful for diagnosing issues. --> (Write what happened. Please add screenshots!) ### Reproducible Demo <!-- If you can, please share a project that reproduces the issue. This is the single most effective way to get an issue fixed soon. There are two ways to do it: * Create a new app and try to reproduce the issue in it. This is useful if you roughly know where the problem is, or can’t share the real code. * Or, copy your app and remove things until you’re left with the minimal reproducible demo. This is useful for finding the root cause. You may then optionally create a new project. This is a good guide to creating bug demos: https://stackoverflow.com/help/mcve Once you’re done, push the project to GitHub and paste the link to it below: --> (Paste the link to an example project and exact instructions to reproduce the issue.) <!-- What happens if you skip this step? We will try to help you, but in many cases it is impossible because crucial information is missing. In that case we'll tag an issue as having a low priority, and eventually close it if there is no clear direction. We still appreciate the report though, as eventually somebody else might create a reproducible example for it. Thanks for helping us help you! -->
priority
i also was trying to create cordova based phongap android app for the react js web app built using create react app script but not getting how to integrate it please help please read the first section is this a bug report write your answer here if you answered yes please note that your issue will be fixed much faster if you spend about half an hour preparing it including the exact reproduction steps and a demo if you re in a hurry or don t feel confident it s fine to report bugs with less details but this makes it less likely they ll get fixed soon in either case please fill as many fields below as you can if you answered no if this is a question or a discussion you may delete this template and write in a free form note that we don t provide help for webpack questions after ejecting you can find webpack docs at can you also reproduce the problem with npm x many errors especially related to missing modules are due to npm bugs which version of npm are you running you can find out by checking npm v if it is x please be aware that it has more than known bugs and is not guaranteed to work with create react app if it s not starting with try to install npm x npm install g npm cd your project directory rm rf node modules npm cache clear npm install then try to reproduce the issue again can you still reproduce it note please try this even if you are using yarn so that we know whether it s a yarn only bug write your answer here which terms did you search for in user guide there are a few common documented problems such as watcher not detecting changes or build failing they are described in the troubleshooting section of the user guide please scan these few sections for common problems additionally you can search the user guide itself for something you re having issues with if you didn t find the solution please share which words you searched for this helps us improve documentation for future readers who might encounter the same problem write your answer here if relevant environment please fill in all the relevant fields by running these commands in terminal node v npm v yarn version if you use yarn npm ls react scripts if you haven’t ejected then specify operating system browser and version if relevant steps to reproduce how would you describe your issue to someone who doesn’t know you or your project try to write a sequence of steps that anybody can repeat to see the issue write your steps here expected behavior how did you expect the tool to behave it’s fine if you’re not sure your understanding is correct just write down what you thought would happen write what you thought would happen actual behavior did something go wrong is something broken or not behaving as you expected please attach screenshots if possible they are extremely helpful for diagnosing issues write what happened please add screenshots reproducible demo if you can please share a project that reproduces the issue this is the single most effective way to get an issue fixed soon there are two ways to do it create a new app and try to reproduce the issue in it this is useful if you roughly know where the problem is or can’t share the real code or copy your app and remove things until you’re left with the minimal reproducible demo this is useful for finding the root cause you may then optionally create a new project this is a good guide to creating bug demos once you’re done push the project to github and paste the link to it below paste the link to an example project and exact instructions to reproduce the issue what happens if you skip this step we will try to help you but in many cases it is impossible because crucial information is missing in that case we ll tag an issue as having a low priority and eventually close it if there is no clear direction we still appreciate the report though as eventually somebody else might create a reproducible example for it thanks for helping us help you
1
470,908
13,549,204,710
IssuesEvent
2020-09-17 07:51:21
telerik/kendo-ui-core
https://api.github.com/repos/telerik/kendo-ui-core
closed
Validator Basic usage demo has unneeded code
C: Validator Demo Kendo1 Kendo2 Priority 1 SEV: Low
### Bug report The **else** block in the **submit** event handler of the **form** will never be executed. ### Reproduction of the problem http://demos.telerik.com/kendo-ui/validator/index ### Environment * **Kendo UI version:** 2017.2.621 * **jQuery version:** 1.12.3 * **Browser:** [all]
1.0
Validator Basic usage demo has unneeded code - ### Bug report The **else** block in the **submit** event handler of the **form** will never be executed. ### Reproduction of the problem http://demos.telerik.com/kendo-ui/validator/index ### Environment * **Kendo UI version:** 2017.2.621 * **jQuery version:** 1.12.3 * **Browser:** [all]
priority
validator basic usage demo has unneeded code bug report the else block in the submit event handler of the form will never be executed reproduction of the problem environment kendo ui version jquery version browser
1
561,218
16,613,461,506
IssuesEvent
2021-06-02 14:09:40
Proof-Of-Humanity/proof-of-humanity-web
https://api.github.com/repos/Proof-Of-Humanity/proof-of-humanity-web
closed
Handle gracefully user being in an unsuported network.
priority: low type: bug :bug:
**Describe the Bug** The page flickers a few times until it shows "An unexpected error has occurred.". **To Reproduce** Open https://app.proofofhumanity.id/ with another network (ex: Polygon) **Expected Behavior** It should display a message informing the user of supported networks. **Screenshots** ![image](https://user-images.githubusercontent.com/8873352/120466927-24cbae80-c38f-11eb-8220-551ccee76054.png)
1.0
Handle gracefully user being in an unsuported network. - **Describe the Bug** The page flickers a few times until it shows "An unexpected error has occurred.". **To Reproduce** Open https://app.proofofhumanity.id/ with another network (ex: Polygon) **Expected Behavior** It should display a message informing the user of supported networks. **Screenshots** ![image](https://user-images.githubusercontent.com/8873352/120466927-24cbae80-c38f-11eb-8220-551ccee76054.png)
priority
handle gracefully user being in an unsuported network describe the bug the page flickers a few times until it shows an unexpected error has occurred to reproduce open with another network ex polygon expected behavior it should display a message informing the user of supported networks screenshots
1
549,627
16,096,037,340
IssuesEvent
2021-04-26 23:59:10
TheTypingMatch/lecashbot
https://api.github.com/repos/TheTypingMatch/lecashbot
closed
Guess That Car Bot Game
commands priority: low status: pending type: feat
**Is your feature request related to a problem? Please describe.** This is a popular request from users. **Describe the solution you'd like** Grab all the images of all the cars in NitroType. Edit them so that they are outlines. When users try to guess the car, they give the car name and depending on how many guesses it takes, they will be rewarded. Users will have an option to give up and will lose cash.
1.0
Guess That Car Bot Game - **Is your feature request related to a problem? Please describe.** This is a popular request from users. **Describe the solution you'd like** Grab all the images of all the cars in NitroType. Edit them so that they are outlines. When users try to guess the car, they give the car name and depending on how many guesses it takes, they will be rewarded. Users will have an option to give up and will lose cash.
priority
guess that car bot game is your feature request related to a problem please describe this is a popular request from users describe the solution you d like grab all the images of all the cars in nitrotype edit them so that they are outlines when users try to guess the car they give the car name and depending on how many guesses it takes they will be rewarded users will have an option to give up and will lose cash
1
414,761
12,111,283,888
IssuesEvent
2020-04-21 11:57:43
maths300/lessons
https://api.github.com/repos/maths300/lessons
opened
multiple lessons: error warning does not reset
priority: low type: bug
Lessons: - algebra charts - chart strategies - fraction charts - number charts When errors are removed from the board and "check" is pressed again, the error is still reported. ![num-errors](https://user-images.githubusercontent.com/39764324/79863391-0882e180-841b-11ea-921c-3230680c8836.gif)
1.0
multiple lessons: error warning does not reset - Lessons: - algebra charts - chart strategies - fraction charts - number charts When errors are removed from the board and "check" is pressed again, the error is still reported. ![num-errors](https://user-images.githubusercontent.com/39764324/79863391-0882e180-841b-11ea-921c-3230680c8836.gif)
priority
multiple lessons error warning does not reset lessons algebra charts chart strategies fraction charts number charts when errors are removed from the board and check is pressed again the error is still reported
1
356,713
10,596,669,600
IssuesEvent
2019-10-09 21:51:19
pachyderm/pachyderm
https://api.github.com/repos/pachyderm/pachyderm
closed
Documentation Bug: Backup/Restore instructions use aliases for kubectl and pachctl
docs priority: low user
**What happened?**: Backup and restore documentation use pc and kc aliases for kubectl and pachctl and this is not explained well in the documentation. **What you expected to happen?**: no customer aliases should be used in examples without defining the aliases. **How to reproduce it (as minimally and precisely as possible)?**: N/A **Anything else we need to know?**: No. http://docs.pachyderm.io/en/latest/managing_pachyderm/backup_restore_and_migrate.html ## kubectl alias used ``` # Modify the service to accept traffic on port 30650, again $ kubectl get svc/pachd -o json | sed 's/30649/30650/g' | kc apply -f - ``` ## pachctl alias used ``` # Make sure you can talk to pachd (if not, firewall rules are a common culprit) $ pc version ```
1.0
Documentation Bug: Backup/Restore instructions use aliases for kubectl and pachctl - **What happened?**: Backup and restore documentation use pc and kc aliases for kubectl and pachctl and this is not explained well in the documentation. **What you expected to happen?**: no customer aliases should be used in examples without defining the aliases. **How to reproduce it (as minimally and precisely as possible)?**: N/A **Anything else we need to know?**: No. http://docs.pachyderm.io/en/latest/managing_pachyderm/backup_restore_and_migrate.html ## kubectl alias used ``` # Modify the service to accept traffic on port 30650, again $ kubectl get svc/pachd -o json | sed 's/30649/30650/g' | kc apply -f - ``` ## pachctl alias used ``` # Make sure you can talk to pachd (if not, firewall rules are a common culprit) $ pc version ```
priority
documentation bug backup restore instructions use aliases for kubectl and pachctl what happened backup and restore documentation use pc and kc aliases for kubectl and pachctl and this is not explained well in the documentation what you expected to happen no customer aliases should be used in examples without defining the aliases how to reproduce it as minimally and precisely as possible n a anything else we need to know no kubectl alias used modify the service to accept traffic on port again kubectl get svc pachd o json sed s g kc apply f pachctl alias used make sure you can talk to pachd if not firewall rules are a common culprit pc version
1
132,833
5,194,158,163
IssuesEvent
2017-01-23 01:42:04
RoboJackets/robocup-common
https://api.github.com/repos/RoboJackets/robocup-common
opened
rtp.hpp and protobuff files
area / misc exp / beginner priority / low type / enhancement
`rtp.hpp` and the protobuf files should work better together, such as sharing enums for data in the packet
1.0
rtp.hpp and protobuff files - `rtp.hpp` and the protobuf files should work better together, such as sharing enums for data in the packet
priority
rtp hpp and protobuff files rtp hpp and the protobuf files should work better together such as sharing enums for data in the packet
1
299,389
9,205,441,950
IssuesEvent
2019-03-08 10:34:56
qissue-bot/QGIS
https://api.github.com/repos/qissue-bot/QGIS
closed
Python plugins installed in user's home directory
Category: Python plugins Component: Easy fix? Component: Pull Request or Patch supplied Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Feature request
--- Author Name: **perrygeo -** (perrygeo -) Original Redmine Issue: 781, https://issues.qgis.org/issues/781 Original Assignee: perrygeo - --- In discussing the idea of a plugin repository plugin (a gui allowing you to search for and install new python plugins), the major hangup is that of permissions. Many users will be running qgis as a non-privledged user and will not have write access to the system plugin directory (ie /usr/share/qgis/python/plugins ) It would be beneficial to, in addition to the system plugin directory, to allow each user their own plugin directory, preferably somewhere like ~/.qgis/python/plugins. I've attached a patch as proof-of-concept. Here's the summary: - ~/.qgis/python/plugins is added to the python sys.path. - the application and plugin manager search both the system and the users plugin directory for the list of available plugins. If someone could take a look at the patch and try it out, it would be greatly appreciated. --- - [qgis_homedir_plugins.diff](https://issues.qgis.org/attachments/download/1939/qgis_homedir_plugins.diff) (perrygeo -)
1.0
Python plugins installed in user's home directory - --- Author Name: **perrygeo -** (perrygeo -) Original Redmine Issue: 781, https://issues.qgis.org/issues/781 Original Assignee: perrygeo - --- In discussing the idea of a plugin repository plugin (a gui allowing you to search for and install new python plugins), the major hangup is that of permissions. Many users will be running qgis as a non-privledged user and will not have write access to the system plugin directory (ie /usr/share/qgis/python/plugins ) It would be beneficial to, in addition to the system plugin directory, to allow each user their own plugin directory, preferably somewhere like ~/.qgis/python/plugins. I've attached a patch as proof-of-concept. Here's the summary: - ~/.qgis/python/plugins is added to the python sys.path. - the application and plugin manager search both the system and the users plugin directory for the list of available plugins. If someone could take a look at the patch and try it out, it would be greatly appreciated. --- - [qgis_homedir_plugins.diff](https://issues.qgis.org/attachments/download/1939/qgis_homedir_plugins.diff) (perrygeo -)
priority
python plugins installed in user s home directory author name perrygeo perrygeo original redmine issue original assignee perrygeo in discussing the idea of a plugin repository plugin a gui allowing you to search for and install new python plugins the major hangup is that of permissions many users will be running qgis as a non privledged user and will not have write access to the system plugin directory ie usr share qgis python plugins it would be beneficial to in addition to the system plugin directory to allow each user their own plugin directory preferably somewhere like qgis python plugins i ve attached a patch as proof of concept here s the summary qgis python plugins is added to the python sys path the application and plugin manager search both the system and the users plugin directory for the list of available plugins if someone could take a look at the patch and try it out it would be greatly appreciated perrygeo
1
609,249
18,869,586,388
IssuesEvent
2021-11-13 00:48:32
iantaylor-NOAA/Lingcod_2021
https://api.github.com/repos/iantaylor-NOAA/Lingcod_2021
closed
Sensitivity wishlist
topic: model sensitivity w/ average priority sensitivity w/ low priority
I'm not sure if it makes sense to create separate issues to track high and low priority sensitivity ideas or pile them all in one. Here's a low-priority one from https://github.com/iantaylor-NOAA/Lingcod_2021/issues/27#issuecomment-847042307. - [ ] test the impact on the 2019 models of changing the month value for all the survey observations to 7 to test Ian's belief that the extra complexity of not assigning everything to the middle of the year will have only a tiny impact on the model results and not be worth the extra complexity. - [ ] Recreational CAAL (#20 ) - [ ] Adjusting recreational comps by sex. Previous model used sexed (WA), unsexed (OR and CA) comps. Currently, we have a both sexed and unsexed comps for all rec fleets - [ ] If an Oregon recreational onboard (CPFV ride along) index becomes available before the assessment is complete (@aliwhitman is focused on ORBS and nearshore logbook first), it could be useful to test the sensitivity to including it in the model either instead of the ORBS index or via a separate fleet with mirrored selectivity to the OR rec fleet. The 2017 assessment report noted "Note that the base assessment model does not use both the OR onboard index as well as the OR dockside as they show similar trends. The dockside index is used due to the longer time series." - [ ] Explore option of using option for length and age compositions of "combM+F: males and females treated as combined gender below this bin number" for survey data, and possibly other data sources. Sex ratios are highly variable at small so, and this could potential smooth out the uncertainty in determining sex for those small sizes. - [ ] Change California Recreational Index in recent years from onboardCPFV to CRFSPR (#62)
2.0
Sensitivity wishlist - I'm not sure if it makes sense to create separate issues to track high and low priority sensitivity ideas or pile them all in one. Here's a low-priority one from https://github.com/iantaylor-NOAA/Lingcod_2021/issues/27#issuecomment-847042307. - [ ] test the impact on the 2019 models of changing the month value for all the survey observations to 7 to test Ian's belief that the extra complexity of not assigning everything to the middle of the year will have only a tiny impact on the model results and not be worth the extra complexity. - [ ] Recreational CAAL (#20 ) - [ ] Adjusting recreational comps by sex. Previous model used sexed (WA), unsexed (OR and CA) comps. Currently, we have a both sexed and unsexed comps for all rec fleets - [ ] If an Oregon recreational onboard (CPFV ride along) index becomes available before the assessment is complete (@aliwhitman is focused on ORBS and nearshore logbook first), it could be useful to test the sensitivity to including it in the model either instead of the ORBS index or via a separate fleet with mirrored selectivity to the OR rec fleet. The 2017 assessment report noted "Note that the base assessment model does not use both the OR onboard index as well as the OR dockside as they show similar trends. The dockside index is used due to the longer time series." - [ ] Explore option of using option for length and age compositions of "combM+F: males and females treated as combined gender below this bin number" for survey data, and possibly other data sources. Sex ratios are highly variable at small so, and this could potential smooth out the uncertainty in determining sex for those small sizes. - [ ] Change California Recreational Index in recent years from onboardCPFV to CRFSPR (#62)
priority
sensitivity wishlist i m not sure if it makes sense to create separate issues to track high and low priority sensitivity ideas or pile them all in one here s a low priority one from test the impact on the models of changing the month value for all the survey observations to to test ian s belief that the extra complexity of not assigning everything to the middle of the year will have only a tiny impact on the model results and not be worth the extra complexity recreational caal adjusting recreational comps by sex previous model used sexed wa unsexed or and ca comps currently we have a both sexed and unsexed comps for all rec fleets if an oregon recreational onboard cpfv ride along index becomes available before the assessment is complete aliwhitman is focused on orbs and nearshore logbook first it could be useful to test the sensitivity to including it in the model either instead of the orbs index or via a separate fleet with mirrored selectivity to the or rec fleet the assessment report noted note that the base assessment model does not use both the or onboard index as well as the or dockside as they show similar trends the dockside index is used due to the longer time series explore option of using option for length and age compositions of combm f males and females treated as combined gender below this bin number for survey data and possibly other data sources sex ratios are highly variable at small so and this could potential smooth out the uncertainty in determining sex for those small sizes change california recreational index in recent years from onboardcpfv to crfspr
1
124,564
4,927,138,131
IssuesEvent
2016-11-26 15:25:39
vnaskos/lajarus
https://api.github.com/repos/vnaskos/lajarus
opened
Add background music
point: 5 priority: low type: feature
Create/find add audio soundtracks for the game and adjust them to the android client
1.0
Add background music - Create/find add audio soundtracks for the game and adjust them to the android client
priority
add background music create find add audio soundtracks for the game and adjust them to the android client
1
540,938
15,819,434,636
IssuesEvent
2021-04-05 17:29:34
Psychoanalytic-Electronic-Publishing/PEP-Web-User-Interface
https://api.github.com/repos/Psychoanalytic-Electronic-Publishing/PEP-Web-User-Interface
closed
XML Doctype Leaks into hit list in search results
Bug Low priority
I've seen this before, not likely to be high incidence, but here's an example: ![image](https://user-images.githubusercontent.com/4837554/100794949-405bf980-33ec-11eb-988e-0daf1d4b0785.png)
1.0
XML Doctype Leaks into hit list in search results - I've seen this before, not likely to be high incidence, but here's an example: ![image](https://user-images.githubusercontent.com/4837554/100794949-405bf980-33ec-11eb-988e-0daf1d4b0785.png)
priority
xml doctype leaks into hit list in search results i ve seen this before not likely to be high incidence but here s an example
1
363,998
10,757,667,997
IssuesEvent
2019-10-31 13:42:17
alexakasanjeev/magento_react_native
https://api.github.com/repos/alexakasanjeev/magento_react_native
closed
[iOS] Category List Item not rendering properly
Priority: Low Status: In Progress Type: Bug ios
**Describe the bug** In [`CategoryListScreen`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/screens/CategoryListScreen/index.js), the items in the list should appear in 2 column layout, filling the entire width, but two columns are having fixed size. **Expected behavior** [`CatalogGridItem`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/components/organisms/product/CatalogGridItem/index.js) should appear in 2 -column layout when used in [`CategoryListScreen`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/screens/CategoryListScreen/index.js), and should have fixed width when used in `HomeScreen` Horizontal list **Current Behavior** [`CatalogGridItem`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/components/organisms/product/CatalogGridItem/index.js) is not talking 50% of the screen width in [`CategoryListScreen`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/screens/CategoryListScreen/index.js) **Steps to Reproduce** Please provide detailed steps for reproducing the issue. 1. Open the app 2. open the drawer 3. Select any category(like gear) 4. See problem **Screenshots** ![category_problem](https://user-images.githubusercontent.com/13250741/67314710-d30c4280-f522-11e9-97d9-a81ba5d74768.png) **Smartphone (please complete the following information):** - Magento Version: [2.1.0] - Device: [iPhone11] - OS: [iOS13] **Additional context** [`CatalogGridItem`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/components/organisms/product/CatalogGridItem/index.js) used in `CategoryListScreen` two places, when `CategoryListScreen` where it is shown in vertical list, and in `HomeScreen` where it is render as a horizontal list
1.0
[iOS] Category List Item not rendering properly - **Describe the bug** In [`CategoryListScreen`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/screens/CategoryListScreen/index.js), the items in the list should appear in 2 column layout, filling the entire width, but two columns are having fixed size. **Expected behavior** [`CatalogGridItem`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/components/organisms/product/CatalogGridItem/index.js) should appear in 2 -column layout when used in [`CategoryListScreen`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/screens/CategoryListScreen/index.js), and should have fixed width when used in `HomeScreen` Horizontal list **Current Behavior** [`CatalogGridItem`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/components/organisms/product/CatalogGridItem/index.js) is not talking 50% of the screen width in [`CategoryListScreen`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/screens/CategoryListScreen/index.js) **Steps to Reproduce** Please provide detailed steps for reproducing the issue. 1. Open the app 2. open the drawer 3. Select any category(like gear) 4. See problem **Screenshots** ![category_problem](https://user-images.githubusercontent.com/13250741/67314710-d30c4280-f522-11e9-97d9-a81ba5d74768.png) **Smartphone (please complete the following information):** - Magento Version: [2.1.0] - Device: [iPhone11] - OS: [iOS13] **Additional context** [`CatalogGridItem`](https://github.com/alexakasanjeev/magento_react_native/blob/develop/src/components/organisms/product/CatalogGridItem/index.js) used in `CategoryListScreen` two places, when `CategoryListScreen` where it is shown in vertical list, and in `HomeScreen` where it is render as a horizontal list
priority
category list item not rendering properly describe the bug in the items in the list should appear in column layout filling the entire width but two columns are having fixed size expected behavior should appear in column layout when used in and should have fixed width when used in homescreen horizontal list current behavior is not talking of the screen width in steps to reproduce please provide detailed steps for reproducing the issue open the app open the drawer select any category like gear see problem screenshots smartphone please complete the following information magento version device os additional context used in categorylistscreen two places when categorylistscreen where it is shown in vertical list and in homescreen where it is render as a horizontal list
1
576,914
17,098,635,148
IssuesEvent
2021-07-09 08:05:49
gnosis/ido-ux
https://api.github.com/repos/gnosis/ido-ux
opened
UI issues with 'Highest volume auctions' table
QA bug low priority
1. 'Highest volume auctions' font size should match the 'Featured auctions' : 24 px 2. Highest Volume Auctions column names: - Font color = #FFFFFF - Font weight = normal 3. Network indicator: - Font color = #FFFFFF - Font size = 9 px 4. Table lines values (besides a token's pair): Font size = 18 px Mock-up: https://www.figma.com/file/Y7MLpZujRAOFPVkplvA7kV/Gnosis-Auction?node-id=53%3A0
1.0
UI issues with 'Highest volume auctions' table - 1. 'Highest volume auctions' font size should match the 'Featured auctions' : 24 px 2. Highest Volume Auctions column names: - Font color = #FFFFFF - Font weight = normal 3. Network indicator: - Font color = #FFFFFF - Font size = 9 px 4. Table lines values (besides a token's pair): Font size = 18 px Mock-up: https://www.figma.com/file/Y7MLpZujRAOFPVkplvA7kV/Gnosis-Auction?node-id=53%3A0
priority
ui issues with highest volume auctions table highest volume auctions font size should match the featured auctions px highest volume auctions column names font color ffffff font weight normal network indicator font color ffffff font size px table lines values besides a token s pair font size px mock up
1
481,670
13,889,856,937
IssuesEvent
2020-10-19 08:29:29
cilium/cilium
https://api.github.com/repos/cilium/cilium
closed
Clear error messages that should be marked as default
kind/bug priority/low priority/release-blocker
These errors are showed for the first time I enabled `kube-proxy-replacement` with `--device` ``` Oct 12 14:45:38 k8s2 cilium-agent[16875]: level=error msg="Command execution failed" cmd="[tc filter delete dev enp0s8 egress]" error="exit status 2" subsys=datapath-loader Oct 12 14:45:38 k8s2 cilium-agent[16875]: level=warning msg="Error: Parent Qdisc doesn't exists." subsys=datapath-loader Oct 12 14:45:38 k8s2 cilium-agent[16875]: level=warning msg="We have an error talking to the kernel, -1" subsys=datapath-loader ```
2.0
Clear error messages that should be marked as default - These errors are showed for the first time I enabled `kube-proxy-replacement` with `--device` ``` Oct 12 14:45:38 k8s2 cilium-agent[16875]: level=error msg="Command execution failed" cmd="[tc filter delete dev enp0s8 egress]" error="exit status 2" subsys=datapath-loader Oct 12 14:45:38 k8s2 cilium-agent[16875]: level=warning msg="Error: Parent Qdisc doesn't exists." subsys=datapath-loader Oct 12 14:45:38 k8s2 cilium-agent[16875]: level=warning msg="We have an error talking to the kernel, -1" subsys=datapath-loader ```
priority
clear error messages that should be marked as default these errors are showed for the first time i enabled kube proxy replacement with device oct cilium agent level error msg command execution failed cmd error exit status subsys datapath loader oct cilium agent level warning msg error parent qdisc doesn t exists subsys datapath loader oct cilium agent level warning msg we have an error talking to the kernel subsys datapath loader
1
166,997
6,329,946,440
IssuesEvent
2017-07-26 05:32:43
AmpersandTarski/Ampersand
https://api.github.com/repos/AmpersandTarski/Ampersand
closed
!fatal without a call site
component:prototype generator priority:low
Consider the following script ~~~ CONTEXT Issue586 IN ENGLISH workitemText :: WorkItem * WorkitemText [UNI,TOT] REPRESENT WorkitemText TYPE ALPHANUMERIC workitemRole :: WorkItem * Role [UNI,TOT] -- Role at which the workitem is aimed. rcWorkItem :: RentalCase * WorkItem rcRenter :: RentalCase * PersonRef [UNI] POPULATION workitemText CONTAINS [ ("rcRenter", "please specify the Renter") ] POPULATION workitemRole CONTAINS [ ("rcRenter", "Customer") ] POPULATION workitemRole CONTAINS [ ("rcRenter", "Anonymous") ] ROLE ExecEngine MAINTAINS "InsPair rcWorkItem with 'rcRenter' message" RULE "InsPair rcWorkItem with 'rcRenter' message": (I-(rcRenter;rcRenter~));V;'rcRenter'[WorkItem] |- rcWorkItem VIOLATION (TXT "{EX} InsPair;rcWorkItem;RentalCase;", SRC I, TXT ";WorkItem;rcRenter") ROLE ExecEngine MAINTAINS "DelPair rcWorkItem with 'rcRenter' message" RULE "DelPair rcWorkItem with 'rcRenter' message": rcRenter |- -(rcWorkItem;'rcRenter';V[WorkItem*PersonRef]) VIOLATION (TXT "{EX} DelPair;rcWorkItem;RentalCase;", SRC I, TXT ";WorkItem;rcRenter") ----------------------------------------------------------- ENDCONTEXT ~~~ Compile it as follows: ~~~ ampersand.exe Issue586.adl --dev -p ~~~ The result is: ~~~ Violations of rule "UNI workitemRole[WorkItem*Role]": - [("rcRenter","rcRenter")] !fatal without a call site (check Version.hs to add a call site) Ampersand-v3.7.3 [development:a415f2c] error nr: 428 There is an attempt to populate multiple values into the row of table `WorkItem`, where id = "rcRenter": Values to be inserted in field `workitemRole` are: ["Customer","Anonymous"] ~~~ Obviously, when the `UNI` constraint is removed, the fatal disappears. I have registered this behaviour as @stefjoosten has requested me (quite some time ago) to create a ticket for every `!fatal` error, as they should not appear.
1.0
!fatal without a call site - Consider the following script ~~~ CONTEXT Issue586 IN ENGLISH workitemText :: WorkItem * WorkitemText [UNI,TOT] REPRESENT WorkitemText TYPE ALPHANUMERIC workitemRole :: WorkItem * Role [UNI,TOT] -- Role at which the workitem is aimed. rcWorkItem :: RentalCase * WorkItem rcRenter :: RentalCase * PersonRef [UNI] POPULATION workitemText CONTAINS [ ("rcRenter", "please specify the Renter") ] POPULATION workitemRole CONTAINS [ ("rcRenter", "Customer") ] POPULATION workitemRole CONTAINS [ ("rcRenter", "Anonymous") ] ROLE ExecEngine MAINTAINS "InsPair rcWorkItem with 'rcRenter' message" RULE "InsPair rcWorkItem with 'rcRenter' message": (I-(rcRenter;rcRenter~));V;'rcRenter'[WorkItem] |- rcWorkItem VIOLATION (TXT "{EX} InsPair;rcWorkItem;RentalCase;", SRC I, TXT ";WorkItem;rcRenter") ROLE ExecEngine MAINTAINS "DelPair rcWorkItem with 'rcRenter' message" RULE "DelPair rcWorkItem with 'rcRenter' message": rcRenter |- -(rcWorkItem;'rcRenter';V[WorkItem*PersonRef]) VIOLATION (TXT "{EX} DelPair;rcWorkItem;RentalCase;", SRC I, TXT ";WorkItem;rcRenter") ----------------------------------------------------------- ENDCONTEXT ~~~ Compile it as follows: ~~~ ampersand.exe Issue586.adl --dev -p ~~~ The result is: ~~~ Violations of rule "UNI workitemRole[WorkItem*Role]": - [("rcRenter","rcRenter")] !fatal without a call site (check Version.hs to add a call site) Ampersand-v3.7.3 [development:a415f2c] error nr: 428 There is an attempt to populate multiple values into the row of table `WorkItem`, where id = "rcRenter": Values to be inserted in field `workitemRole` are: ["Customer","Anonymous"] ~~~ Obviously, when the `UNI` constraint is removed, the fatal disappears. I have registered this behaviour as @stefjoosten has requested me (quite some time ago) to create a ticket for every `!fatal` error, as they should not appear.
priority
fatal without a call site consider the following script context in english workitemtext workitem workitemtext represent workitemtext type alphanumeric workitemrole workitem role role at which the workitem is aimed rcworkitem rentalcase workitem rcrenter rentalcase personref population workitemtext contains population workitemrole contains population workitemrole contains role execengine maintains inspair rcworkitem with rcrenter message rule inspair rcworkitem with rcrenter message i rcrenter rcrenter v rcrenter rcworkitem violation txt ex inspair rcworkitem rentalcase src i txt workitem rcrenter role execengine maintains delpair rcworkitem with rcrenter message rule delpair rcworkitem with rcrenter message rcrenter rcworkitem rcrenter v violation txt ex delpair rcworkitem rentalcase src i txt workitem rcrenter endcontext compile it as follows ampersand exe adl dev p the result is violations of rule uni workitemrole fatal without a call site check version hs to add a call site ampersand error nr there is an attempt to populate multiple values into the row of table workitem where id rcrenter values to be inserted in field workitemrole are obviously when the uni constraint is removed the fatal disappears i have registered this behaviour as stefjoosten has requested me quite some time ago to create a ticket for every fatal error as they should not appear
1
124,151
4,892,538,725
IssuesEvent
2016-11-18 20:01:54
minio/minio
https://api.github.com/repos/minio/minio
closed
PUT object response should include "ETag" instead of "Etag"
low-priority worksforme
For PUT object requests, Minio response header includes "Etag", instead of "ETag". Apparently this compatibility mismatch breaks AWS SDK 1.7.1 and PUT object requests fails. However, it seem to work with AWS Java SDK 1.10.x. ## Expected Behavior AWS responses for PUT object: ``` [main] DEBUG - Receiving response: HTTP/1.1 200 OK [main] DEBUG - << HTTP/1.1 200 OK [main] DEBUG - << Accept-Ranges: bytes [main] DEBUG - << Etag: "72f2c1c9e0d923e3c5e8db9c0ea692e6" [main] DEBUG - << Server: Minio/RELEASE.2016-10-24T21-23-47Z (linux; amd64) [main] DEBUG - << Vary: Origin [main] DEBUG - << X-Amz-Request-Id: EL1SEGSAFP6E2104 [main] DEBUG - << Date: Thu, 17 Nov 2016 23:39:38 GMT [main] DEBUG - << Content-Length: 0 [main] DEBUG - << Content-Type: text/plain; charset=utf-8 ``` Also, according to the AWS Documentation it's "ETag", http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html ## Current Behavior Minio returns: ``` [main] DEBUG - Receiving response: HTTP/1.1 200 OK [main] DEBUG - << HTTP/1.1 200 OK [main] DEBUG - << Accept-Ranges: bytes [main] DEBUG - << Etag: "72f2c1c9e0d923e3c5e8db9c0ea692e6" [main] DEBUG - << Server: Minio/RELEASE.2016-10-24T21-23-47Z (linux; amd64) [main] DEBUG - << Vary: Origin [main] DEBUG - << X-Amz-Request-Id: X09WUBSOKN2UII1C [main] DEBUG - << Date: Fri, 18 Nov 2016 18:30:13 GMT [main] DEBUG - << Content-Length: 0 [main] DEBUG - << Content-Type: text/plain; charset=utf-8 [main] DEBUG - Connection can be kept alive indefinitely [main] DEBUG - Received successful response: 200, AWS Request ID: null [main] DEBUG - Connection [id: 0][route: {}->http://10.116.159.114:9000] can be kept alive indefinitely [main] DEBUG - Connection released: [id: 0][route: {}->http://10.116.159.114:9000][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 50] Exception in thread "main" java.lang.NullPointerException at com.amazonaws.util.BinaryUtils.fromHex(BinaryUtils.java:72) at com.amazonaws.services.s3.AmazonS3Client.putObject(AmazonS3Client.java:1380) at com.amazonaws.services.s3.AmazonS3Client.putObject(AmazonS3Client.java:1210) at com.Test1.checkPutGet(Test1.java:57) at com.Test1.main(Test1.java:67) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144) ``` ## Possible Solution Replace `Etag` to `ETag` in response header. ## Steps to Reproduce (for bugs) Any PUT object requests with AWS Java SDK 1.7.1 should reproduce this issue. ## Context Found this issue while using Minio with another system that uses AWS Java SDK 1.7.1. ## Environment * Version used: ``` $ ./minio version Version: 2016-10-24T21:23:47Z Release-Tag: RELEASE.2016-10-24T21-23-47Z Commit-ID: 048af5e5cdc1344e83231c09079828a3d289e6df AWS Java SDK 1.7.1 ```
1.0
PUT object response should include "ETag" instead of "Etag" - For PUT object requests, Minio response header includes "Etag", instead of "ETag". Apparently this compatibility mismatch breaks AWS SDK 1.7.1 and PUT object requests fails. However, it seem to work with AWS Java SDK 1.10.x. ## Expected Behavior AWS responses for PUT object: ``` [main] DEBUG - Receiving response: HTTP/1.1 200 OK [main] DEBUG - << HTTP/1.1 200 OK [main] DEBUG - << Accept-Ranges: bytes [main] DEBUG - << Etag: "72f2c1c9e0d923e3c5e8db9c0ea692e6" [main] DEBUG - << Server: Minio/RELEASE.2016-10-24T21-23-47Z (linux; amd64) [main] DEBUG - << Vary: Origin [main] DEBUG - << X-Amz-Request-Id: EL1SEGSAFP6E2104 [main] DEBUG - << Date: Thu, 17 Nov 2016 23:39:38 GMT [main] DEBUG - << Content-Length: 0 [main] DEBUG - << Content-Type: text/plain; charset=utf-8 ``` Also, according to the AWS Documentation it's "ETag", http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html ## Current Behavior Minio returns: ``` [main] DEBUG - Receiving response: HTTP/1.1 200 OK [main] DEBUG - << HTTP/1.1 200 OK [main] DEBUG - << Accept-Ranges: bytes [main] DEBUG - << Etag: "72f2c1c9e0d923e3c5e8db9c0ea692e6" [main] DEBUG - << Server: Minio/RELEASE.2016-10-24T21-23-47Z (linux; amd64) [main] DEBUG - << Vary: Origin [main] DEBUG - << X-Amz-Request-Id: X09WUBSOKN2UII1C [main] DEBUG - << Date: Fri, 18 Nov 2016 18:30:13 GMT [main] DEBUG - << Content-Length: 0 [main] DEBUG - << Content-Type: text/plain; charset=utf-8 [main] DEBUG - Connection can be kept alive indefinitely [main] DEBUG - Received successful response: 200, AWS Request ID: null [main] DEBUG - Connection [id: 0][route: {}->http://10.116.159.114:9000] can be kept alive indefinitely [main] DEBUG - Connection released: [id: 0][route: {}->http://10.116.159.114:9000][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 50] Exception in thread "main" java.lang.NullPointerException at com.amazonaws.util.BinaryUtils.fromHex(BinaryUtils.java:72) at com.amazonaws.services.s3.AmazonS3Client.putObject(AmazonS3Client.java:1380) at com.amazonaws.services.s3.AmazonS3Client.putObject(AmazonS3Client.java:1210) at com.Test1.checkPutGet(Test1.java:57) at com.Test1.main(Test1.java:67) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144) ``` ## Possible Solution Replace `Etag` to `ETag` in response header. ## Steps to Reproduce (for bugs) Any PUT object requests with AWS Java SDK 1.7.1 should reproduce this issue. ## Context Found this issue while using Minio with another system that uses AWS Java SDK 1.7.1. ## Environment * Version used: ``` $ ./minio version Version: 2016-10-24T21:23:47Z Release-Tag: RELEASE.2016-10-24T21-23-47Z Commit-ID: 048af5e5cdc1344e83231c09079828a3d289e6df AWS Java SDK 1.7.1 ```
priority
put object response should include etag instead of etag for put object requests minio response header includes etag instead of etag apparently this compatibility mismatch breaks aws sdk and put object requests fails however it seem to work with aws java sdk x expected behavior aws responses for put object debug receiving response http ok debug http ok debug accept ranges bytes debug etag debug server minio release linux debug vary origin debug x amz request id debug date thu nov gmt debug content length debug content type text plain charset utf also according to the aws documentation it s etag current behavior minio returns debug receiving response http ok debug http ok debug accept ranges bytes debug etag debug server minio release linux debug vary origin debug x amz request id debug date fri nov gmt debug content length debug content type text plain charset utf debug connection can be kept alive indefinitely debug received successful response aws request id null debug connection can be kept alive indefinitely debug connection released exception in thread main java lang nullpointerexception at com amazonaws util binaryutils fromhex binaryutils java at com amazonaws services putobject java at com amazonaws services putobject java at com checkputget java at com main java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at com intellij rt execution application appmain main appmain java possible solution replace etag to etag in response header steps to reproduce for bugs any put object requests with aws java sdk should reproduce this issue context found this issue while using minio with another system that uses aws java sdk environment version used minio version version release tag release commit id aws java sdk
1
423,035
12,289,772,904
IssuesEvent
2020-05-09 23:24:24
jwcorle/425_FinalProject
https://api.github.com/repos/jwcorle/425_FinalProject
opened
More/less damage to limbs
enhancement low priority
Goal: When a user fires a bullet and it impacts the different body parts (legs, arms, chest, head) to be able to keep track of these and deal the appropriate amount of damage. Possible Solutions: Start with just the head, splitting the existing capsule collider into an additional spherical collider for the head and integrate it with the `EnemyController` and `WeaponController` (deal more damage when `hit.gameObject.CompareTag("head")` or something)
1.0
More/less damage to limbs - Goal: When a user fires a bullet and it impacts the different body parts (legs, arms, chest, head) to be able to keep track of these and deal the appropriate amount of damage. Possible Solutions: Start with just the head, splitting the existing capsule collider into an additional spherical collider for the head and integrate it with the `EnemyController` and `WeaponController` (deal more damage when `hit.gameObject.CompareTag("head")` or something)
priority
more less damage to limbs goal when a user fires a bullet and it impacts the different body parts legs arms chest head to be able to keep track of these and deal the appropriate amount of damage possible solutions start with just the head splitting the existing capsule collider into an additional spherical collider for the head and integrate it with the enemycontroller and weaponcontroller deal more damage when hit gameobject comparetag head or something
1
720,494
24,794,868,128
IssuesEvent
2022-10-24 16:22:24
owncloud/web
https://api.github.com/repos/owncloud/web
closed
Link share indicator is missing on "Shared with others" view sidebar
Type:Bug Priority:p4-low
### Steps to reproduce 1. Create a public link for a received share from the "Shared with others" view 2. Reload the page 3. Open the sidebar for this resource via right click -> "Details" ### Expected behaviour The share indicator for links should be displayed. ### Actual behaviour The share indicator for links is missing.
1.0
Link share indicator is missing on "Shared with others" view sidebar - ### Steps to reproduce 1. Create a public link for a received share from the "Shared with others" view 2. Reload the page 3. Open the sidebar for this resource via right click -> "Details" ### Expected behaviour The share indicator for links should be displayed. ### Actual behaviour The share indicator for links is missing.
priority
link share indicator is missing on shared with others view sidebar steps to reproduce create a public link for a received share from the shared with others view reload the page open the sidebar for this resource via right click details expected behaviour the share indicator for links should be displayed actual behaviour the share indicator for links is missing
1
433,709
12,508,994,040
IssuesEvent
2020-06-02 16:24:23
canonical-web-and-design/jaas-dashboard
https://api.github.com/repos/canonical-web-and-design/jaas-dashboard
closed
Stopped machines reporting as running
Priority: Low
The latter "MESSAGE" is reporting correctly from Juju but the `status` should be "stopped" not "Running" To reproduce, deploy an application and then once you have a machine run `juju remove-machine #` and wait. <img width="1680" alt="Screen Shot 2020-01-23 at 2 12 59 PM" src="https://user-images.githubusercontent.com/532033/73020581-8834ec00-3deb-11ea-9419-e82b26e6483a.png"> <img width="413" alt="Screen Shot 2020-01-23 at 2 14 06 PM" src="https://user-images.githubusercontent.com/532033/73020582-8834ec00-3deb-11ea-85bd-b2c6023d63da.png"> ![Screen Shot 2020-06-01 at 1 07 25 PM](https://user-images.githubusercontent.com/532033/83444674-f6786380-a408-11ea-8535-2415b549bdf0.png)
1.0
Stopped machines reporting as running - The latter "MESSAGE" is reporting correctly from Juju but the `status` should be "stopped" not "Running" To reproduce, deploy an application and then once you have a machine run `juju remove-machine #` and wait. <img width="1680" alt="Screen Shot 2020-01-23 at 2 12 59 PM" src="https://user-images.githubusercontent.com/532033/73020581-8834ec00-3deb-11ea-9419-e82b26e6483a.png"> <img width="413" alt="Screen Shot 2020-01-23 at 2 14 06 PM" src="https://user-images.githubusercontent.com/532033/73020582-8834ec00-3deb-11ea-85bd-b2c6023d63da.png"> ![Screen Shot 2020-06-01 at 1 07 25 PM](https://user-images.githubusercontent.com/532033/83444674-f6786380-a408-11ea-8535-2415b549bdf0.png)
priority
stopped machines reporting as running the latter message is reporting correctly from juju but the status should be stopped not running to reproduce deploy an application and then once you have a machine run juju remove machine and wait img width alt screen shot at pm src img width alt screen shot at pm src
1
659,532
21,932,071,145
IssuesEvent
2022-05-23 10:37:21
wso2/ballerina-plugin-vscode
https://api.github.com/repos/wso2/ballerina-plugin-vscode
closed
Add `Run` and `Debug` icons side by side
Type/Improvement Priority/Low Area/Launcher(Run/Debug)
**Description:** Currently VS Code plugin view is having `Run` and `Debug project in terminal` options in a drop-down format (top right corner). The default view icon is `Run`. In this current view, users mostly won't be able to notice the `Debug` icon which is hidden inside the dropdown. **Expected Improvements:** 1. It would be better if we can show these options side by side rather than in a dropdown manner. 2. Change the name from `Debug project in terminal` to `Debug` 3. Better `Debug` icon. It would be great if we can add a better/catchy debug icon. <img width="233" alt="Screen Shot 2022-01-20 at 10 19 14 AM" src="https://user-images.githubusercontent.com/11292766/150465312-49edc313-c00f-4ef1-8395-8541e4b6ac0d.png"> <img width="234" alt="Screen Shot 2022-01-21 at 10 03 42 AM" src="https://user-images.githubusercontent.com/11292766/150466858-0880d606-15fa-42fc-a6c1-6bdc33cacd18.png"> <img width="1680" alt="Screen Shot 2022-01-20 at 10 19 23 AM" src="https://user-images.githubusercontent.com/11292766/150465322-c9f54626-d930-46bd-a810-9d19f1fdcff5.png">
1.0
Add `Run` and `Debug` icons side by side - **Description:** Currently VS Code plugin view is having `Run` and `Debug project in terminal` options in a drop-down format (top right corner). The default view icon is `Run`. In this current view, users mostly won't be able to notice the `Debug` icon which is hidden inside the dropdown. **Expected Improvements:** 1. It would be better if we can show these options side by side rather than in a dropdown manner. 2. Change the name from `Debug project in terminal` to `Debug` 3. Better `Debug` icon. It would be great if we can add a better/catchy debug icon. <img width="233" alt="Screen Shot 2022-01-20 at 10 19 14 AM" src="https://user-images.githubusercontent.com/11292766/150465312-49edc313-c00f-4ef1-8395-8541e4b6ac0d.png"> <img width="234" alt="Screen Shot 2022-01-21 at 10 03 42 AM" src="https://user-images.githubusercontent.com/11292766/150466858-0880d606-15fa-42fc-a6c1-6bdc33cacd18.png"> <img width="1680" alt="Screen Shot 2022-01-20 at 10 19 23 AM" src="https://user-images.githubusercontent.com/11292766/150465322-c9f54626-d930-46bd-a810-9d19f1fdcff5.png">
priority
add run and debug icons side by side description currently vs code plugin view is having run and debug project in terminal options in a drop down format top right corner the default view icon is run in this current view users mostly won t be able to notice the debug icon which is hidden inside the dropdown expected improvements it would be better if we can show these options side by side rather than in a dropdown manner change the name from debug project in terminal to debug better debug icon it would be great if we can add a better catchy debug icon img width alt screen shot at am src img width alt screen shot at am src img width alt screen shot at am src
1
316,697
9,653,452,093
IssuesEvent
2019-05-19 04:36:33
momentum-mod/game
https://api.github.com/repos/momentum-mod/game
closed
Download bar overlaps while scrolling thru Map Selector
Low Priority bug
“also if you start downloading maps and scroll through the browse window this happens” https://media.discordapp.net/attachments/235125108656701440/575320851340066827/unknown.png Submitted by milo
1.0
Download bar overlaps while scrolling thru Map Selector - “also if you start downloading maps and scroll through the browse window this happens” https://media.discordapp.net/attachments/235125108656701440/575320851340066827/unknown.png Submitted by milo
priority
download bar overlaps while scrolling thru map selector “also if you start downloading maps and scroll through the browse window this happens” submitted by milo
1
476,719
13,749,063,170
IssuesEvent
2020-10-06 09:56:18
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Footstep audio frequency should be dependent on movement
Category: Audio Priority: Low Status: Fixed Status: Reopen
If youre slowed because youre moving against a wall or through bushes, the footstep sounds should slow accordingly. And if youre walking directly into a wall they should stop altogether.
1.0
Footstep audio frequency should be dependent on movement - If youre slowed because youre moving against a wall or through bushes, the footstep sounds should slow accordingly. And if youre walking directly into a wall they should stop altogether.
priority
footstep audio frequency should be dependent on movement if youre slowed because youre moving against a wall or through bushes the footstep sounds should slow accordingly and if youre walking directly into a wall they should stop altogether
1
716,417
24,632,237,320
IssuesEvent
2022-10-17 03:54:50
Anishkulkarni9001/fa22-cse110-lab3
https://api.github.com/repos/Anishkulkarni9001/fa22-cse110-lab3
closed
[TASK] Create standup markdown
Priority : Low
**Describe the feature.** Make a markdown file for standup meeting. **List any additional notes or comments.** Status updates.
1.0
[TASK] Create standup markdown - **Describe the feature.** Make a markdown file for standup meeting. **List any additional notes or comments.** Status updates.
priority
create standup markdown describe the feature make a markdown file for standup meeting list any additional notes or comments status updates
1
95,917
3,962,142,795
IssuesEvent
2016-05-02 15:43:05
DoSomething/gladiator
https://api.github.com/repos/DoSomething/gladiator
closed
Retroactively add people in here
priority-low
unclear if people should go into the waiting room or into a competition.
1.0
Retroactively add people in here - unclear if people should go into the waiting room or into a competition.
priority
retroactively add people in here unclear if people should go into the waiting room or into a competition
1
36,163
2,796,175,708
IssuesEvent
2015-05-12 04:47:54
PSCS-Coding/Attendance_System
https://api.github.com/repos/PSCS-Coding/Attendance_System
opened
Ability to sign everyone on from a field trip
enhancement low priority
This would be great. For example if there was not a group for a Field Trip then you could sign everyone that is on a field trip with Nic in.
1.0
Ability to sign everyone on from a field trip - This would be great. For example if there was not a group for a Field Trip then you could sign everyone that is on a field trip with Nic in.
priority
ability to sign everyone on from a field trip this would be great for example if there was not a group for a field trip then you could sign everyone that is on a field trip with nic in
1
238,478
7,779,857,967
IssuesEvent
2018-06-05 18:09:37
daily-bruin/meow
https://api.github.com/repos/daily-bruin/meow
closed
"Post Now button" with Confirmation Dialog
enhancement high priority low hanging fruit
Posts which are Readied should have a button that allows them to post immediately, with a confirmation dialog showing the message and everything to be sent out. The permission also needs to be set to Copy only. ### Tasks - [ ] Post now button - [ ] Confirmation Dialog - [ ] Give permissions to Copy
1.0
"Post Now button" with Confirmation Dialog - Posts which are Readied should have a button that allows them to post immediately, with a confirmation dialog showing the message and everything to be sent out. The permission also needs to be set to Copy only. ### Tasks - [ ] Post now button - [ ] Confirmation Dialog - [ ] Give permissions to Copy
priority
post now button with confirmation dialog posts which are readied should have a button that allows them to post immediately with a confirmation dialog showing the message and everything to be sent out the permission also needs to be set to copy only tasks post now button confirmation dialog give permissions to copy
1
346,285
10,410,312,950
IssuesEvent
2019-09-13 11:02:30
getkirby/kirby
https://api.github.com/repos/getkirby/kirby
closed
[Panel] Query language in headline not working
priority: low 🐌 type: bug 🐛
**Describe the bug** According to the documentation it should be possible to use query language in section headlines: > The headline for the section. This can be a simple string or a template with additional info from the parent page. However, a section definition like this displays just a literal string: ``` drafts: headline: "Articles for {{ page.title }}" ``` **To Reproduce** Steps to reproduce the behavior: 1. Add the above headline to a section in a blueprint 2. Open a page with this blueprint in the Panel 4. See error **Expected behavior** The query template should be resolved. **Kirby Version** All Kirby versions up to 3.2rc2
1.0
[Panel] Query language in headline not working - **Describe the bug** According to the documentation it should be possible to use query language in section headlines: > The headline for the section. This can be a simple string or a template with additional info from the parent page. However, a section definition like this displays just a literal string: ``` drafts: headline: "Articles for {{ page.title }}" ``` **To Reproduce** Steps to reproduce the behavior: 1. Add the above headline to a section in a blueprint 2. Open a page with this blueprint in the Panel 4. See error **Expected behavior** The query template should be resolved. **Kirby Version** All Kirby versions up to 3.2rc2
priority
query language in headline not working describe the bug according to the documentation it should be possible to use query language in section headlines the headline for the section this can be a simple string or a template with additional info from the parent page however a section definition like this displays just a literal string drafts headline articles for page title to reproduce steps to reproduce the behavior add the above headline to a section in a blueprint open a page with this blueprint in the panel see error expected behavior the query template should be resolved kirby version all kirby versions up to
1
195,081
6,902,540,819
IssuesEvent
2017-11-25 21:58:36
facelessuser/pymdown-extensions
https://api.github.com/repos/facelessuser/pymdown-extensions
closed
Add support for GitLab style diff shorthand and link shortening
Enhancement Priority - Low
GitHub, GitLab, and Bitbucket all have a way to diff commits. GitLab has a shorthand that allows you to reference a diff: `{hash1}..{hash2}`, `repo@{hash1}..{hash2}`, or `user/repo@{hash1}..{hash2}`. For link shortening, this is the format for the 3 providers: - `https://bitbucket.org/<user>/<repo>/branches/commits/<hash1>..<hash2>#diff` (also can use `%0D` for some reason instead of `..`. - `https://github.com/<user>/<repo>/compare/<hash1>...<hash2>` - `https://gitlab.example.com/<user>/<repo>/compare/<hash1>...<hash2>` I believe you can actually use any reference, but we will definitely stick to hashes only for shorthand, and may or may not allow other refs other than hash for link shortening.
1.0
Add support for GitLab style diff shorthand and link shortening - GitHub, GitLab, and Bitbucket all have a way to diff commits. GitLab has a shorthand that allows you to reference a diff: `{hash1}..{hash2}`, `repo@{hash1}..{hash2}`, or `user/repo@{hash1}..{hash2}`. For link shortening, this is the format for the 3 providers: - `https://bitbucket.org/<user>/<repo>/branches/commits/<hash1>..<hash2>#diff` (also can use `%0D` for some reason instead of `..`. - `https://github.com/<user>/<repo>/compare/<hash1>...<hash2>` - `https://gitlab.example.com/<user>/<repo>/compare/<hash1>...<hash2>` I believe you can actually use any reference, but we will definitely stick to hashes only for shorthand, and may or may not allow other refs other than hash for link shortening.
priority
add support for gitlab style diff shorthand and link shortening github gitlab and bitbucket all have a way to diff commits gitlab has a shorthand that allows you to reference a diff repo or user repo for link shortening this is the format for the providers also can use for some reason instead of i believe you can actually use any reference but we will definitely stick to hashes only for shorthand and may or may not allow other refs other than hash for link shortening
1
530,535
15,434,025,294
IssuesEvent
2021-03-07 00:53:29
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
opened
[Coverity CID :219644] Side effect in assertion in tests/subsys/edac/ibecc/src/ibecc.c
Coverity bug priority: low
Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/tests/subsys/edac/ibecc/src/ibecc.c Category: Incorrect expression Function: `test_inject` Component: Tests CID: [219644](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=219644) Details: https://github.com/zephyrproject-rtos/zephyr/blob/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/tests/subsys/edac/ibecc/src/ibecc.c#L176 Please fix or provide comments in coverity using the link: https://scan9.coverity.com/reports.htm#v32951/p12996. Note: This issue was created automatically. Priority was set based on classification of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
1.0
[Coverity CID :219644] Side effect in assertion in tests/subsys/edac/ibecc/src/ibecc.c - Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/tests/subsys/edac/ibecc/src/ibecc.c Category: Incorrect expression Function: `test_inject` Component: Tests CID: [219644](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=219644) Details: https://github.com/zephyrproject-rtos/zephyr/blob/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/tests/subsys/edac/ibecc/src/ibecc.c#L176 Please fix or provide comments in coverity using the link: https://scan9.coverity.com/reports.htm#v32951/p12996. Note: This issue was created automatically. Priority was set based on classification of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
priority
side effect in assertion in tests subsys edac ibecc src ibecc c static code scan issues found in file category incorrect expression function test inject component tests cid details please fix or provide comments in coverity using the link note this issue was created automatically priority was set based on classification of the file affected and the impact field in coverity assignees were set using the codeowners file
1
588,231
17,650,345,215
IssuesEvent
2021-08-20 12:22:31
francheska-vicente/cssweng
https://api.github.com/repos/francheska-vicente/cssweng
opened
Dates that are not today are highlighted the same as today's date
bug priority: medium issue: front-end severity: low
### Summary: The dates that are not today but have the same day as today gets highlighted the same color as today's date. E.g. if today is August 20, then September 20 also gets the same highlight ### Steps to Reproduce: 1. Login 2. Go to calendar 3. Go through various months ### Visual Proof: ![image](https://user-images.githubusercontent.com/74450482/130232136-abdd302c-8d80-40ae-91c4-8471d879c628.png) ### Expected Results: The date that are not today's date should not be highlighted the same. If necessary to be highlighted, they should be in a different color. Otherwise, it should not be highlighted ### Actual Results: The dates that are not today but have the same day as today gets highlighted the same color as today's date. | Additional Information | | | ----------- | ----------- | | Defect ID | 15-0023 | | Platform | V8 engine (Google) | | Operating System | Windows 10 |
1.0
Dates that are not today are highlighted the same as today's date - ### Summary: The dates that are not today but have the same day as today gets highlighted the same color as today's date. E.g. if today is August 20, then September 20 also gets the same highlight ### Steps to Reproduce: 1. Login 2. Go to calendar 3. Go through various months ### Visual Proof: ![image](https://user-images.githubusercontent.com/74450482/130232136-abdd302c-8d80-40ae-91c4-8471d879c628.png) ### Expected Results: The date that are not today's date should not be highlighted the same. If necessary to be highlighted, they should be in a different color. Otherwise, it should not be highlighted ### Actual Results: The dates that are not today but have the same day as today gets highlighted the same color as today's date. | Additional Information | | | ----------- | ----------- | | Defect ID | 15-0023 | | Platform | V8 engine (Google) | | Operating System | Windows 10 |
priority
dates that are not today are highlighted the same as today s date summary the dates that are not today but have the same day as today gets highlighted the same color as today s date e g if today is august then september also gets the same highlight steps to reproduce login go to calendar go through various months visual proof expected results the date that are not today s date should not be highlighted the same if necessary to be highlighted they should be in a different color otherwise it should not be highlighted actual results the dates that are not today but have the same day as today gets highlighted the same color as today s date additional information defect id platform engine google operating system windows
1
121,621
4,819,053,004
IssuesEvent
2016-11-04 18:06:25
RobotLocomotion/drake
https://api.github.com/repos/RobotLocomotion/drake
closed
get rid of cygwin and cygpath stuff in pods.cmake
priority: low team: kitware type: cleanup
Look into removing all cygwin stuff from the cmake drake stuff.
1.0
get rid of cygwin and cygpath stuff in pods.cmake - Look into removing all cygwin stuff from the cmake drake stuff.
priority
get rid of cygwin and cygpath stuff in pods cmake look into removing all cygwin stuff from the cmake drake stuff
1
531,247
15,443,423,697
IssuesEvent
2021-03-08 09:07:17
ldsec/glowing-bear-medco
https://api.github.com/repos/ldsec/glowing-bear-medco
closed
clamp confidence interval
low priority bug
except log minus log, confidence interval transformation can give bounds below 0.0 and above 1.0, which makes no sense talking about probability
1.0
clamp confidence interval - except log minus log, confidence interval transformation can give bounds below 0.0 and above 1.0, which makes no sense talking about probability
priority
clamp confidence interval except log minus log confidence interval transformation can give bounds below and above which makes no sense talking about probability
1
83,819
3,643,689,697
IssuesEvent
2016-02-15 04:13:07
umts/pvta-multiplatform
https://api.github.com/repos/umts/pvta-multiplatform
closed
Send Texts?
low-priority question
[This site](http://textbelt.com) provides a REST endpoint and a server for sending text messages to phone numbers. This may be a cool feature to have - ie, someone wants to know when a specific is getting close to a stop. They put in their phone number and when they want to be texted, and they get one. The question is, would implementing push notifications for the same use case be better?
1.0
Send Texts? - [This site](http://textbelt.com) provides a REST endpoint and a server for sending text messages to phone numbers. This may be a cool feature to have - ie, someone wants to know when a specific is getting close to a stop. They put in their phone number and when they want to be texted, and they get one. The question is, would implementing push notifications for the same use case be better?
priority
send texts provides a rest endpoint and a server for sending text messages to phone numbers this may be a cool feature to have ie someone wants to know when a specific is getting close to a stop they put in their phone number and when they want to be texted and they get one the question is would implementing push notifications for the same use case be better
1
596,195
18,099,857,739
IssuesEvent
2021-09-22 13:12:03
abapGit/abapGit
https://api.github.com/repos/abapGit/abapGit
closed
'exception not caught' warning in ZABAPGIT report
low priority
Warning from NW 7.55. ![image](https://user-images.githubusercontent.com/17437789/134319736-89168751-1cf6-477a-8707-1c731ba02129.png) ![image](https://user-images.githubusercontent.com/17437789/134319988-40fa04f4-c1c9-4e72-b235-456d442783d3.png) Interestingly the warning doesn't appear on NW 7.52.
1.0
'exception not caught' warning in ZABAPGIT report - Warning from NW 7.55. ![image](https://user-images.githubusercontent.com/17437789/134319736-89168751-1cf6-477a-8707-1c731ba02129.png) ![image](https://user-images.githubusercontent.com/17437789/134319988-40fa04f4-c1c9-4e72-b235-456d442783d3.png) Interestingly the warning doesn't appear on NW 7.52.
priority
exception not caught warning in zabapgit report warning from nw interestingly the warning doesn t appear on nw
1
728,801
25,093,609,247
IssuesEvent
2022-11-08 08:35:04
YangCatalog/deployment
https://api.github.com/repos/YangCatalog/deployment
closed
Rework DOCUMENTATION file as README.md file for setup directory
Priority: Low Maintenance
Rework [DOCUMENTATION](https://github.com/YangCatalog/deployment/blob/develop/DOCUMENTATION) file into README.md file, which will be stored in `setup` directory. It will contain steps necessary for initial setup of YANG Catalog project.
1.0
Rework DOCUMENTATION file as README.md file for setup directory - Rework [DOCUMENTATION](https://github.com/YangCatalog/deployment/blob/develop/DOCUMENTATION) file into README.md file, which will be stored in `setup` directory. It will contain steps necessary for initial setup of YANG Catalog project.
priority
rework documentation file as readme md file for setup directory rework file into readme md file which will be stored in setup directory it will contain steps necessary for initial setup of yang catalog project
1
303,564
9,308,401,059
IssuesEvent
2019-03-25 14:29:33
rathena/rathena
https://api.github.com/repos/rathena/rathena
closed
Need to update Magma Eruption skill
component:skill mode:prerenewal mode:renewal priority:low status:confirmed type:bug
<!-- NOTE: Anything within these brackets will be hidden on the preview of the Issue. --> * **rAthena Hash**: de8c707 <!-- Please specify the rAthena [GitHub hash](https://help.github.com/articles/autolinked-references-and-urls/#commit-shas) on which you encountered this issue. How to get your GitHub Hash: 1. cd your/rAthena/directory/ 2. git rev-parse --short HEAD 3. Copy the resulting hash. --> * **Client Date**: - <!-- Please specify the client date you used. --> * **Server Mode**: Pre/Re <!-- Which mode does your server use: Pre-Renewal or Renewal? --> * **Description of Issue**: Missed skill ID = 5015 - NC_MAGMA_ERUPTION_DOTDAMAGE and wrong skill element. * Result: Magma eruption have fire element. * Expected Result: Magma eruption must be **neutral** element, attack type is **"weapon"** and ignore the accuracy check. * How to Reproduce: [diff from idAthena ](https://github.com/idathena/trunk/commit/8f6f01221613405a75291ea0c23a9a59edd97782#diff-79c87814462a5a71792b4842edf0d228) * Official Information: https://irowiki.org/wiki/Lava_Flow * **Modifications that may affect results**: <!-- * Please provide any information that could influence the expected result. --> <!-- * This can be either configurations you changed, database values you changed, or even external source modifications. -->
1.0
Need to update Magma Eruption skill - <!-- NOTE: Anything within these brackets will be hidden on the preview of the Issue. --> * **rAthena Hash**: de8c707 <!-- Please specify the rAthena [GitHub hash](https://help.github.com/articles/autolinked-references-and-urls/#commit-shas) on which you encountered this issue. How to get your GitHub Hash: 1. cd your/rAthena/directory/ 2. git rev-parse --short HEAD 3. Copy the resulting hash. --> * **Client Date**: - <!-- Please specify the client date you used. --> * **Server Mode**: Pre/Re <!-- Which mode does your server use: Pre-Renewal or Renewal? --> * **Description of Issue**: Missed skill ID = 5015 - NC_MAGMA_ERUPTION_DOTDAMAGE and wrong skill element. * Result: Magma eruption have fire element. * Expected Result: Magma eruption must be **neutral** element, attack type is **"weapon"** and ignore the accuracy check. * How to Reproduce: [diff from idAthena ](https://github.com/idathena/trunk/commit/8f6f01221613405a75291ea0c23a9a59edd97782#diff-79c87814462a5a71792b4842edf0d228) * Official Information: https://irowiki.org/wiki/Lava_Flow * **Modifications that may affect results**: <!-- * Please provide any information that could influence the expected result. --> <!-- * This can be either configurations you changed, database values you changed, or even external source modifications. -->
priority
need to update magma eruption skill rathena hash please specify the rathena on which you encountered this issue how to get your github hash cd your rathena directory git rev parse short head copy the resulting hash client date server mode pre re description of issue missed skill id nc magma eruption dotdamage and wrong skill element result magma eruption have fire element expected result magma eruption must be neutral element attack type is weapon and ignore the accuracy check how to reproduce official information modifications that may affect results
1
805,033
29,505,828,014
IssuesEvent
2023-06-03 09:48:03
AstarTeam/hufs_baekjoon_front
https://api.github.com/repos/AstarTeam/hufs_baekjoon_front
closed
[HOME] - 개인 순위 리스트 구현
✨Feat 🚀API 🌿Priority: Low
## 추가 기능 설명 [HOME] - 개인 순위 리스트 구현 - 일주일 동안 푼 문제 개수 기준으로 1위부터 10위 회원의 닉네임을 보여줍니다 ## 할 일 - [x] 개인 순위 리스트 컴포넌트 UI 구현 - [x] 개인 순위 API 연결 및 보여주기 - [x] 개인 순위 페이지 새로 생성하기 ## ETC
1.0
[HOME] - 개인 순위 리스트 구현 - ## 추가 기능 설명 [HOME] - 개인 순위 리스트 구현 - 일주일 동안 푼 문제 개수 기준으로 1위부터 10위 회원의 닉네임을 보여줍니다 ## 할 일 - [x] 개인 순위 리스트 컴포넌트 UI 구현 - [x] 개인 순위 API 연결 및 보여주기 - [x] 개인 순위 페이지 새로 생성하기 ## ETC
priority
개인 순위 리스트 구현 추가 기능 설명 개인 순위 리스트 구현 일주일 동안 푼 문제 개수 기준으로 회원의 닉네임을 보여줍니다 할 일 개인 순위 리스트 컴포넌트 ui 구현 개인 순위 api 연결 및 보여주기 개인 순위 페이지 새로 생성하기 etc
1
261,893
8,247,444,484
IssuesEvent
2018-09-11 15:33:34
zulip/zulip-electron
https://api.github.com/repos/zulip/zulip-electron
closed
Organization name does not update on the sidebar
Priority: Low Type: Enhancement help wanted in progress
--- <!-- Please Include: --> - **Operating System**: - [ ] Windows - [ ] Linux/Ubutnu - [x] macOS ![zulipelectronbug](https://user-images.githubusercontent.com/17769227/36432456-40a80dac-1680-11e8-9a6b-3e5320c0cc2e.gif) Upon changing the Organization's name and icon, they are not instantly updated on the sidebar. I tried logging out and back in but still the bug persists. The only way to get the name and icon updated is to delete and re add the organization from the app Settings>Servers page.
1.0
Organization name does not update on the sidebar - --- <!-- Please Include: --> - **Operating System**: - [ ] Windows - [ ] Linux/Ubutnu - [x] macOS ![zulipelectronbug](https://user-images.githubusercontent.com/17769227/36432456-40a80dac-1680-11e8-9a6b-3e5320c0cc2e.gif) Upon changing the Organization's name and icon, they are not instantly updated on the sidebar. I tried logging out and back in but still the bug persists. The only way to get the name and icon updated is to delete and re add the organization from the app Settings>Servers page.
priority
organization name does not update on the sidebar operating system windows linux ubutnu macos upon changing the organization s name and icon they are not instantly updated on the sidebar i tried logging out and back in but still the bug persists the only way to get the name and icon updated is to delete and re add the organization from the app settings servers page
1
450,076
12,979,877,459
IssuesEvent
2020-07-22 03:26:45
kubeflow/pipelines
https://api.github.com/repos/kubeflow/pipelines
closed
[Multi User] Integrate KFP multi user with KF 1.1
area/deployment/kubeflow kind/feature priority/p0 status/triaged
Part of https://github.com/kubeflow/pipelines/issues/1223 (that's the main issue tracker). I'm using this issue as a tracker for all the efforts of merging KFP multi user related changes to upstream kubeflow repo. /priority p0 /assign @Bobgy /kind feature My fork to merge kfp multi user manifests with KF 1.0: https://github.com/Bobgy/manifests/tree/kfp-multi-user-master * [x] Enable istio-injection in kubeflow namespace. [kubeflow#3866](https://github.com/kubeflow/kubeflow/issues/3866) blocked by * [x] Two examples for disabling istio injection in kubeflow namespace kubeflow/manifests#703 * [x] Add sidecar.istio.io/inject false annotations to all stateful sets in kubeflow ns kubeflow/manifests#711 * [x] Add istio sidecar inject false to deployments in kubeflow ns kubeflow/manifests#712 * [x] Added istio sidecar false annotation to metadata deployments https://github.com/kubeflow/manifests/pull/804 * [x] [Backend] Always disable istio sidecar injection https://github.com/kubeflow/pipelines/pull/3305 * [x] Disable istio sidecar injection in simple tfjob https://github.com/kubeflow/tf-operator/pull/1148 * [x] https://github.com/kubeflow/kfctl/issues/296 * [x] Add kubeflow namespace resource to enable istio injection kubeflow/manifests#1153 * [ ] Secure KFAM with mutual TLS and istio authorization rules https://github.com/kubeflow/kubeflow/issues/4871 blocked by * [x] [KFAM] LivenessProbe doesn’t work with istio mutual TLS [kubeflow#4865](https://github.com/kubeflow/kubeflow/issues/4865) * [x] Profiles deployment has missing port [kubeflow/manifest#976](https://github.com/kubeflow/manifests/issues/976) Port is required for istio sidecar to intercept traffic for the pod. * [x] Migrate Kubeflow's KFP manifests using kustomize v3 * [x] Argo kustomize v3 https://github.com/kubeflow/manifests/issues/1090 * [x] KFP kustomize v3 https://github.com/kubeflow/manifests/issues/1048 * [x] Enable multi user mode for Kubeflow Pipelines https://github.com/kubeflow/pipelines/issues/4159 https://github.com/kubeflow/pipelines/issues/4160 https://github.com/kubeflow/gcp-blueprints/pull/80 * [x] Some last mile bug fixes https://github.com/kubeflow/manifests/pull/1374 * [ ] Integrate with non GCP platforms https://github.com/kubeflow/manifests/issues/1364
1.0
[Multi User] Integrate KFP multi user with KF 1.1 - Part of https://github.com/kubeflow/pipelines/issues/1223 (that's the main issue tracker). I'm using this issue as a tracker for all the efforts of merging KFP multi user related changes to upstream kubeflow repo. /priority p0 /assign @Bobgy /kind feature My fork to merge kfp multi user manifests with KF 1.0: https://github.com/Bobgy/manifests/tree/kfp-multi-user-master * [x] Enable istio-injection in kubeflow namespace. [kubeflow#3866](https://github.com/kubeflow/kubeflow/issues/3866) blocked by * [x] Two examples for disabling istio injection in kubeflow namespace kubeflow/manifests#703 * [x] Add sidecar.istio.io/inject false annotations to all stateful sets in kubeflow ns kubeflow/manifests#711 * [x] Add istio sidecar inject false to deployments in kubeflow ns kubeflow/manifests#712 * [x] Added istio sidecar false annotation to metadata deployments https://github.com/kubeflow/manifests/pull/804 * [x] [Backend] Always disable istio sidecar injection https://github.com/kubeflow/pipelines/pull/3305 * [x] Disable istio sidecar injection in simple tfjob https://github.com/kubeflow/tf-operator/pull/1148 * [x] https://github.com/kubeflow/kfctl/issues/296 * [x] Add kubeflow namespace resource to enable istio injection kubeflow/manifests#1153 * [ ] Secure KFAM with mutual TLS and istio authorization rules https://github.com/kubeflow/kubeflow/issues/4871 blocked by * [x] [KFAM] LivenessProbe doesn’t work with istio mutual TLS [kubeflow#4865](https://github.com/kubeflow/kubeflow/issues/4865) * [x] Profiles deployment has missing port [kubeflow/manifest#976](https://github.com/kubeflow/manifests/issues/976) Port is required for istio sidecar to intercept traffic for the pod. * [x] Migrate Kubeflow's KFP manifests using kustomize v3 * [x] Argo kustomize v3 https://github.com/kubeflow/manifests/issues/1090 * [x] KFP kustomize v3 https://github.com/kubeflow/manifests/issues/1048 * [x] Enable multi user mode for Kubeflow Pipelines https://github.com/kubeflow/pipelines/issues/4159 https://github.com/kubeflow/pipelines/issues/4160 https://github.com/kubeflow/gcp-blueprints/pull/80 * [x] Some last mile bug fixes https://github.com/kubeflow/manifests/pull/1374 * [ ] Integrate with non GCP platforms https://github.com/kubeflow/manifests/issues/1364
priority
integrate kfp multi user with kf part of that s the main issue tracker i m using this issue as a tracker for all the efforts of merging kfp multi user related changes to upstream kubeflow repo priority assign bobgy kind feature my fork to merge kfp multi user manifests with kf enable istio injection in kubeflow namespace blocked by two examples for disabling istio injection in kubeflow namespace kubeflow manifests add sidecar istio io inject false annotations to all stateful sets in kubeflow ns kubeflow manifests add istio sidecar inject false to deployments in kubeflow ns kubeflow manifests added istio sidecar false annotation to metadata deployments always disable istio sidecar injection disable istio sidecar injection in simple tfjob add kubeflow namespace resource to enable istio injection kubeflow manifests secure kfam with mutual tls and istio authorization rules blocked by livenessprobe doesn’t work with istio mutual tls profiles deployment has missing port port is required for istio sidecar to intercept traffic for the pod migrate kubeflow s kfp manifests using kustomize argo kustomize kfp kustomize enable multi user mode for kubeflow pipelines some last mile bug fixes integrate with non gcp platforms
1
688,981
23,602,801,857
IssuesEvent
2022-08-24 04:53:27
Square789/PydayNightFunkin
https://api.github.com/repos/Square789/PydayNightFunkin
closed
Modding??? Tear assets out of asset system
enhancement priority: low
If I want this pile of spaghetti 'n' meatballs to become moddable, the base game assets should stop being defined inside of `asset_system.py` and live somewhere else. Effectively, have the base game be its own mod that is auto-loaded. Maybe deal with this later, no one is gonna use this for mods anyways
1.0
Modding??? Tear assets out of asset system - If I want this pile of spaghetti 'n' meatballs to become moddable, the base game assets should stop being defined inside of `asset_system.py` and live somewhere else. Effectively, have the base game be its own mod that is auto-loaded. Maybe deal with this later, no one is gonna use this for mods anyways
priority
modding tear assets out of asset system if i want this pile of spaghetti n meatballs to become moddable the base game assets should stop being defined inside of asset system py and live somewhere else effectively have the base game be its own mod that is auto loaded maybe deal with this later no one is gonna use this for mods anyways
1
234,641
7,724,276,646
IssuesEvent
2018-05-24 14:41:47
tempesta-tech/tempesta
https://api.github.com/repos/tempesta-tech/tempesta
closed
backup configuration doesn't work properly
bug low priority
Tempesta config ``` srv_group primary { sched ratio; server 127.0.0.1:8000 conns_n=1; } srv_group backup { sched ratio; server 127.0.0.1:8001 conns_n=1; } vhost primary { proxy_pass primary; } vhost backup { proxy_pass backup; } cache 0; sched_http_rules { match primary * * * backup=backup; } ``` Start nginx on 8001 port only. `curl -v http://127.0.0.1` - receive 502 error and dmesg message `[tempesta] Warning: request dropped: processing error, status 502: ::ffff:7f00:1` If we start nginx on 8000 or on both 8000 and 8001, tempesta returns correct answer
1.0
backup configuration doesn't work properly - Tempesta config ``` srv_group primary { sched ratio; server 127.0.0.1:8000 conns_n=1; } srv_group backup { sched ratio; server 127.0.0.1:8001 conns_n=1; } vhost primary { proxy_pass primary; } vhost backup { proxy_pass backup; } cache 0; sched_http_rules { match primary * * * backup=backup; } ``` Start nginx on 8001 port only. `curl -v http://127.0.0.1` - receive 502 error and dmesg message `[tempesta] Warning: request dropped: processing error, status 502: ::ffff:7f00:1` If we start nginx on 8000 or on both 8000 and 8001, tempesta returns correct answer
priority
backup configuration doesn t work properly tempesta config srv group primary sched ratio server conns n srv group backup sched ratio server conns n vhost primary proxy pass primary vhost backup proxy pass backup cache sched http rules match primary backup backup start nginx on port only curl v receive error and dmesg message warning request dropped processing error status ffff if we start nginx on or on both and tempesta returns correct answer
1
151,597
5,824,629,117
IssuesEvent
2017-05-07 14:43:12
minj/foxtrick
https://api.github.com/repos/minj/foxtrick
opened
Age average in TransferCompare
accepted feature good-first-issue Priority-Low Transfers
**From:** LA-Ron__Manager **PostID:** [16412248.709](https://www.hattrick.org/goto.ashx?path=%2FForum%2FRead.aspx%3Ft%3D16412248%26n%3D709%26v%3D0) **To:** LA-MJ **Re:** [16412248.707](https://www.hattrick.org/goto.ashx?path=%2FForum%2FRead.aspx%3Ft%3D16412248%26n%3D707%26v%3D0) **Datetime:** 2017-05-03 17:07 **Message:** Can we get in Transfer compare page Average value for Age as well.
1.0
Age average in TransferCompare - **From:** LA-Ron__Manager **PostID:** [16412248.709](https://www.hattrick.org/goto.ashx?path=%2FForum%2FRead.aspx%3Ft%3D16412248%26n%3D709%26v%3D0) **To:** LA-MJ **Re:** [16412248.707](https://www.hattrick.org/goto.ashx?path=%2FForum%2FRead.aspx%3Ft%3D16412248%26n%3D707%26v%3D0) **Datetime:** 2017-05-03 17:07 **Message:** Can we get in Transfer compare page Average value for Age as well.
priority
age average in transfercompare from la ron manager postid to la mj re datetime message can we get in transfer compare page average value for age as well
1
441,787
12,732,327,027
IssuesEvent
2020-06-25 10:11:04
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
Bluetooth: Windows 10 cannot reconnect on direct advertising from Zephyr
area: Bluetooth bug platform: nRF priority: low
**Describe the bug** Zephyr Bluetooth peripheral using Split LL connects and bonds to Windows10 host. After the disconnection, it cannot reconnect using direct advertising (reconnection works fine for undirected advertising). **To Reproduce** I replicated the problem using nrf_desktop application from https://github.com/nrfconnect/sdk-nrf repository, but I think the problem is more general and could also affect other applications that use direct advertising. **Expected behavior** Windows10 host should be able to reconnect also on direct advertising. **Screenshots or console output** I observed the Bluetooth sniffer logs using nrf_sniffer. I noticed that: - host address is set properly in advertising packets - host tries to connect (there is one CONNECT_REQ and then LL_FEATURE_REQ is sent in a few subsequent connection intervals) - no communication from peripheral to central is observable **Environment (please complete the following information):** - Toolchain: Zephyr SDK 0.11.1 - Commit SHA: b7af4ffdb0cf0a6cd7e700fc5fc8f341e7f2b65d
1.0
Bluetooth: Windows 10 cannot reconnect on direct advertising from Zephyr - **Describe the bug** Zephyr Bluetooth peripheral using Split LL connects and bonds to Windows10 host. After the disconnection, it cannot reconnect using direct advertising (reconnection works fine for undirected advertising). **To Reproduce** I replicated the problem using nrf_desktop application from https://github.com/nrfconnect/sdk-nrf repository, but I think the problem is more general and could also affect other applications that use direct advertising. **Expected behavior** Windows10 host should be able to reconnect also on direct advertising. **Screenshots or console output** I observed the Bluetooth sniffer logs using nrf_sniffer. I noticed that: - host address is set properly in advertising packets - host tries to connect (there is one CONNECT_REQ and then LL_FEATURE_REQ is sent in a few subsequent connection intervals) - no communication from peripheral to central is observable **Environment (please complete the following information):** - Toolchain: Zephyr SDK 0.11.1 - Commit SHA: b7af4ffdb0cf0a6cd7e700fc5fc8f341e7f2b65d
priority
bluetooth windows cannot reconnect on direct advertising from zephyr describe the bug zephyr bluetooth peripheral using split ll connects and bonds to host after the disconnection it cannot reconnect using direct advertising reconnection works fine for undirected advertising to reproduce i replicated the problem using nrf desktop application from repository but i think the problem is more general and could also affect other applications that use direct advertising expected behavior host should be able to reconnect also on direct advertising screenshots or console output i observed the bluetooth sniffer logs using nrf sniffer i noticed that host address is set properly in advertising packets host tries to connect there is one connect req and then ll feature req is sent in a few subsequent connection intervals no communication from peripheral to central is observable environment please complete the following information toolchain zephyr sdk commit sha
1
64,938
3,220,105,007
IssuesEvent
2015-10-08 13:30:11
Dolibarr/dolibarr
https://api.github.com/repos/Dolibarr/dolibarr
opened
Allow linking events to multiple companies and/or contacts
Feature request Priority Low version develop
Meetings often takes place with multiple parties. Linking to them all would be a great time-saver.
1.0
Allow linking events to multiple companies and/or contacts - Meetings often takes place with multiple parties. Linking to them all would be a great time-saver.
priority
allow linking events to multiple companies and or contacts meetings often takes place with multiple parties linking to them all would be a great time saver
1
271,288
8,482,274,152
IssuesEvent
2018-10-25 18:04:48
FServais/BoardgameWE
https://api.github.com/repos/FServais/BoardgameWE
closed
Login case sensitive?
component/backend priority/low priority/medium
When I try to login as Fservais instead of fservais, the login fails (user not found). Should we leave the login as case sensitive or not? :)
2.0
Login case sensitive? - When I try to login as Fservais instead of fservais, the login fails (user not found). Should we leave the login as case sensitive or not? :)
priority
login case sensitive when i try to login as fservais instead of fservais the login fails user not found should we leave the login as case sensitive or not
1
298,612
9,200,589,598
IssuesEvent
2019-03-07 17:24:50
qissue-bot/QGIS
https://api.github.com/repos/qissue-bot/QGIS
closed
User-variable line thickness for composer label box
Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report
--- Author Name: **Gavin Macaulay -** (Gavin Macaulay -) Original Redmine Issue: 180, https://issues.qgis.org/issues/180 Original Assignee: Redmine Admin --- The user should probably be able to vary the line thickness of the optional label box in the print composer.
1.0
User-variable line thickness for composer label box - --- Author Name: **Gavin Macaulay -** (Gavin Macaulay -) Original Redmine Issue: 180, https://issues.qgis.org/issues/180 Original Assignee: Redmine Admin --- The user should probably be able to vary the line thickness of the optional label box in the print composer.
priority
user variable line thickness for composer label box author name gavin macaulay gavin macaulay original redmine issue original assignee redmine admin the user should probably be able to vary the line thickness of the optional label box in the print composer
1
22,170
2,645,703,399
IssuesEvent
2015-03-13 01:17:19
pedromorgan/flightgear-issues-test
https://api.github.com/repos/pedromorgan/flightgear-issues-test
opened
Requires two Enter-key hits to send chat message in Chat Dialog.
GUI imported keyboard mouse Priority-Low Type-FeatureRequest
_From [ray.stma...@gmail.com](https://code.google.com/u/112969097702122670883/) on April 14, 2010 02:41:39_ What steps will reproduce the problem? 1. Open the chat window 2. try to send your message with enter, only mouse button SEND works 3. on account that ENTER doesn't SEND chat because it is right rudder currently, find that the Right Rudder is not actuated by numpad ENTER when the chat window is open. What is the expected output? What do you see instead? Expected output is that if the chat window has focus then ENTER or NUMPAD ENTER does chat SEND, and if cockpit/scene has focus NUMPAD ENTER does rightRudder, or better, SEND with mouse click and numPAD ENTER always does RightRudder as 0=leftRudder is always available during chat. What version of the product are you using? On what operating system? 2.0 on Windows Please provide any additional information below. There is no more information available, or necessary, as far as I can tell. _Original issue: http://code.google.com/p/flightgear-bugs/issues/detail?id=124_
1.0
Requires two Enter-key hits to send chat message in Chat Dialog. - _From [ray.stma...@gmail.com](https://code.google.com/u/112969097702122670883/) on April 14, 2010 02:41:39_ What steps will reproduce the problem? 1. Open the chat window 2. try to send your message with enter, only mouse button SEND works 3. on account that ENTER doesn't SEND chat because it is right rudder currently, find that the Right Rudder is not actuated by numpad ENTER when the chat window is open. What is the expected output? What do you see instead? Expected output is that if the chat window has focus then ENTER or NUMPAD ENTER does chat SEND, and if cockpit/scene has focus NUMPAD ENTER does rightRudder, or better, SEND with mouse click and numPAD ENTER always does RightRudder as 0=leftRudder is always available during chat. What version of the product are you using? On what operating system? 2.0 on Windows Please provide any additional information below. There is no more information available, or necessary, as far as I can tell. _Original issue: http://code.google.com/p/flightgear-bugs/issues/detail?id=124_
priority
requires two enter key hits to send chat message in chat dialog from on april what steps will reproduce the problem open the chat window try to send your message with enter only mouse button send works on account that enter doesn t send chat because it is right rudder currently find that the right rudder is not actuated by numpad enter when the chat window is open what is the expected output what do you see instead expected output is that if the chat window has focus then enter or numpad enter does chat send and if cockpit scene has focus numpad enter does rightrudder or better send with mouse click and numpad enter always does rightrudder as leftrudder is always available during chat what version of the product are you using on what operating system on windows please provide any additional information below there is no more information available or necessary as far as i can tell original issue
1
168,037
6,360,019,751
IssuesEvent
2017-07-31 09:00:13
Tazinho/Advanced-R-Solutions
https://api.github.com/repos/Tazinho/Advanced-R-Solutions
closed
reduce size of repo
low-priority
remove files that are not strictly necessary for the compilation of the book from version control.
1.0
reduce size of repo - remove files that are not strictly necessary for the compilation of the book from version control.
priority
reduce size of repo remove files that are not strictly necessary for the compilation of the book from version control
1
473,236
13,639,047,821
IssuesEvent
2020-09-25 10:20:10
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
[Coverity CID :214348] Memset buffer size of 0 in tests/kernel/fpu_sharing/generic/src/load_store.c
Coverity bug priority: low
Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/07756e53324ddb06297358636b73988f073a4a38/tests/kernel/fpu_sharing/generic/src/load_store.c#L113 Category: Memory - illegal accesses Function: `load_store_low` Component: Tests CID: [214348](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=214348) Details: ``` 118 for (load_store_low_count = 0; !test_exited; load_store_low_count++) { 119 120 /* 121 * Clear store buffer to erase all traces of any previous 122 * floating point values that have been saved. 123 */ >>> CID 214348: (NO_EFFECT) >>> Calling "memset" with size 0: "memset(&float_reg_set_store, 0, 0U)" does nothing. 124 (void)memset(&float_reg_set_store, 0, SIZEOF_FP_REGISTER_SET); 125 126 /* 127 * Utilize an architecture specific function to load all the 128 * floating point registers with known values. 129 */ 107 108 /* 109 * Initialize floating point load buffer to known values; 110 * these values must be different than the value used in other threads. 111 */ 112 init_byte = MAIN_FLOAT_REG_CHECK_BYTE; >>> CID 214348: (NO_EFFECT) >>> This less-than-zero comparison of an unsigned value is never true. "i < 0UL". 113 for (i = 0; i < SIZEOF_FP_REGISTER_SET; i++) { 114 load_ptr[i] = init_byte++; 115 } 116 117 /* Loop until the test finishes, or an error is detected. */ 118 for (load_store_low_count = 0; !test_exited; load_store_low_count++) { ``` Please fix or provide comments in coverity using the link: https://scan9.coverity.com/reports.htm#v32951/p12996. Note: This issue was created automatically. Priority was set based on classification of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
1.0
[Coverity CID :214348] Memset buffer size of 0 in tests/kernel/fpu_sharing/generic/src/load_store.c - Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/07756e53324ddb06297358636b73988f073a4a38/tests/kernel/fpu_sharing/generic/src/load_store.c#L113 Category: Memory - illegal accesses Function: `load_store_low` Component: Tests CID: [214348](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=214348) Details: ``` 118 for (load_store_low_count = 0; !test_exited; load_store_low_count++) { 119 120 /* 121 * Clear store buffer to erase all traces of any previous 122 * floating point values that have been saved. 123 */ >>> CID 214348: (NO_EFFECT) >>> Calling "memset" with size 0: "memset(&float_reg_set_store, 0, 0U)" does nothing. 124 (void)memset(&float_reg_set_store, 0, SIZEOF_FP_REGISTER_SET); 125 126 /* 127 * Utilize an architecture specific function to load all the 128 * floating point registers with known values. 129 */ 107 108 /* 109 * Initialize floating point load buffer to known values; 110 * these values must be different than the value used in other threads. 111 */ 112 init_byte = MAIN_FLOAT_REG_CHECK_BYTE; >>> CID 214348: (NO_EFFECT) >>> This less-than-zero comparison of an unsigned value is never true. "i < 0UL". 113 for (i = 0; i < SIZEOF_FP_REGISTER_SET; i++) { 114 load_ptr[i] = init_byte++; 115 } 116 117 /* Loop until the test finishes, or an error is detected. */ 118 for (load_store_low_count = 0; !test_exited; load_store_low_count++) { ``` Please fix or provide comments in coverity using the link: https://scan9.coverity.com/reports.htm#v32951/p12996. Note: This issue was created automatically. Priority was set based on classification of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
priority
memset buffer size of in tests kernel fpu sharing generic src load store c static code scan issues found in file category memory illegal accesses function load store low component tests cid details for load store low count test exited load store low count clear store buffer to erase all traces of any previous floating point values that have been saved cid no effect calling memset with size memset float reg set store does nothing void memset float reg set store sizeof fp register set utilize an architecture specific function to load all the floating point registers with known values initialize floating point load buffer to known values these values must be different than the value used in other threads init byte main float reg check byte cid no effect this less than zero comparison of an unsigned value is never true i for i i sizeof fp register set i load ptr init byte loop until the test finishes or an error is detected for load store low count test exited load store low count please fix or provide comments in coverity using the link note this issue was created automatically priority was set based on classification of the file affected and the impact field in coverity assignees were set using the codeowners file
1
620,204
19,556,421,897
IssuesEvent
2022-01-03 10:11:23
MaibornWolff/codecharta
https://api.github.com/repos/MaibornWolff/codecharta
closed
Suspicious Metrics feature does not respect current app settings
bug pr-visualization javascript priority:high difficulty:low good first issue UX / UI
# Bug ## Expected Behavior GIVEN: initially loaded CodeCharta with experimental mode turned `off` WHEN loading a map that has suspicious metrics and then turning `on` experimental mode and then clicking on a suspicious metrics Custom Config e.g. "Suspicious MCC Files" like: ![image](https://user-images.githubusercontent.com/26900540/136381871-0c680f53-0aca-4c41-866f-a4632b22f5a6.png) THEN experimental mode should still be turned on ## Actual Behavior THEN experimental mode is turned off ## Open questions We should check, if any other settings should also be respected when loading a suggested Custom Config ## Steps to Reproduce the Problem 1. Load CodeCharta with experimental mode off 1. Upload `.cc.json` with suspicious metrics 1. Enable experimental mode 1. Click on a suggestion to view suspicious files like "Suspicious MCC Files" and watch how the experimental mode is changing.
1.0
Suspicious Metrics feature does not respect current app settings - # Bug ## Expected Behavior GIVEN: initially loaded CodeCharta with experimental mode turned `off` WHEN loading a map that has suspicious metrics and then turning `on` experimental mode and then clicking on a suspicious metrics Custom Config e.g. "Suspicious MCC Files" like: ![image](https://user-images.githubusercontent.com/26900540/136381871-0c680f53-0aca-4c41-866f-a4632b22f5a6.png) THEN experimental mode should still be turned on ## Actual Behavior THEN experimental mode is turned off ## Open questions We should check, if any other settings should also be respected when loading a suggested Custom Config ## Steps to Reproduce the Problem 1. Load CodeCharta with experimental mode off 1. Upload `.cc.json` with suspicious metrics 1. Enable experimental mode 1. Click on a suggestion to view suspicious files like "Suspicious MCC Files" and watch how the experimental mode is changing.
priority
suspicious metrics feature does not respect current app settings bug expected behavior given initially loaded codecharta with experimental mode turned off when loading a map that has suspicious metrics and then turning on experimental mode and then clicking on a suspicious metrics custom config e g suspicious mcc files like then experimental mode should still be turned on actual behavior then experimental mode is turned off open questions we should check if any other settings should also be respected when loading a suggested custom config steps to reproduce the problem load codecharta with experimental mode off upload cc json with suspicious metrics enable experimental mode click on a suggestion to view suspicious files like suspicious mcc files and watch how the experimental mode is changing
1
107,211
4,294,911,354
IssuesEvent
2016-07-19 03:24:07
aces/cbrain
https://api.github.com/repos/aces/cbrain
opened
BourreauSubWorkers can crash if task deleted while processing
Bug Low Priority
A rare situation is a task object is deleted while a subworker was about to start working on it. Detect this and recover gracefully by ignoring the task: it will no reappear at the next check cycle anyway. From the BourreauWorkers log file: ``` 2016-07-18 21:51:57 FATAL SubWorker-30245: Exception processing task BrainStorm/337206: ActiveRecord::RecordNotFound Couldn't find CbrainTask::Dcm2mnc with id=337206 [WHERE `cbrain_tasks`.`type` IN ('CbrainTask::Dcm2mnc')] /home/cbrainsys/.rvm/gems/ruby-2.2.0/bundler/gems/rails-b344986bc3d9/activerecord/lib/active_record/relation/finder_methods.rb:344:in `find_one' /home/cbrainsys/.rvm/gems/ruby-2.2.0/bundler/gems/rails-b344986bc3d9/activerecord/lib/active_record/relation/finder_methods.rb:315:in `find_with_ids' /home/cbrainsys/.rvm/gems/ruby-2.2.0/bundler/gems/rails-b344986bc3d9/activerecord/lib/active_record/relation/finder_methods.rb:107:in `find' ```
1.0
BourreauSubWorkers can crash if task deleted while processing - A rare situation is a task object is deleted while a subworker was about to start working on it. Detect this and recover gracefully by ignoring the task: it will no reappear at the next check cycle anyway. From the BourreauWorkers log file: ``` 2016-07-18 21:51:57 FATAL SubWorker-30245: Exception processing task BrainStorm/337206: ActiveRecord::RecordNotFound Couldn't find CbrainTask::Dcm2mnc with id=337206 [WHERE `cbrain_tasks`.`type` IN ('CbrainTask::Dcm2mnc')] /home/cbrainsys/.rvm/gems/ruby-2.2.0/bundler/gems/rails-b344986bc3d9/activerecord/lib/active_record/relation/finder_methods.rb:344:in `find_one' /home/cbrainsys/.rvm/gems/ruby-2.2.0/bundler/gems/rails-b344986bc3d9/activerecord/lib/active_record/relation/finder_methods.rb:315:in `find_with_ids' /home/cbrainsys/.rvm/gems/ruby-2.2.0/bundler/gems/rails-b344986bc3d9/activerecord/lib/active_record/relation/finder_methods.rb:107:in `find' ```
priority
bourreausubworkers can crash if task deleted while processing a rare situation is a task object is deleted while a subworker was about to start working on it detect this and recover gracefully by ignoring the task it will no reappear at the next check cycle anyway from the bourreauworkers log file fatal subworker exception processing task brainstorm activerecord recordnotfound couldn t find cbraintask with id home cbrainsys rvm gems ruby bundler gems rails activerecord lib active record relation finder methods rb in find one home cbrainsys rvm gems ruby bundler gems rails activerecord lib active record relation finder methods rb in find with ids home cbrainsys rvm gems ruby bundler gems rails activerecord lib active record relation finder methods rb in find
1
311,814
9,539,374,366
IssuesEvent
2019-04-30 16:47:03
salesagility/SuiteCRM
https://api.github.com/repos/salesagility/SuiteCRM
closed
Description/note fields in the contract line items formats the numeric values as currency
Fix Proposed Low Priority Module Resolved: Next Release bug
<!--- Provide a general summary of the issue in the **Title** above --> Description/note fields in the contract line items formats the numeric values as currency #### Issue <!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug --> -Create a new contract -Create a new group and line item - In the description and note field type: 123,132,132,132.00 - Save - Re-open the Edit view - The description and note field display: -NaN.NaN #### Expected Behavior <!--- Tell us what should happen --> They should display 123,132,132,132.00 #### Actual Behavior <!--- Tell us what happens instead --> - The description and note field display: -NaN.NaN <!--- Also please check relevant logs (suitecrm.log, php error.log etc.) --> #### Possible Fix <!--- Not obligatory, but suggest a fix or reason for the bug --> I'm creating a new PR #### Steps to Reproduce <!--- Provide a link to a live example, or an unambiguous set of steps to --> <!--- reproduce this bug include code to reproduce, if relevant --> 1-Create a new contract 2-Create a new group and line item 3- In the description and note field type: 123,132,132,132.00 4- Save 5- Re-open the Edit view 6- The description and note field display: -NaN.NaN #### Context <!--- How has this bug affected you? What were you trying to accomplish? --> <!--- If you feel this should be a low/medium/high priority then please state so --> #### Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * SuiteCRM Version used: * Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): * Environment name and version (e.g. MySQL, PHP 7): * Operating System and version (e.g Ubuntu 16.04):
1.0
Description/note fields in the contract line items formats the numeric values as currency - <!--- Provide a general summary of the issue in the **Title** above --> Description/note fields in the contract line items formats the numeric values as currency #### Issue <!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug --> -Create a new contract -Create a new group and line item - In the description and note field type: 123,132,132,132.00 - Save - Re-open the Edit view - The description and note field display: -NaN.NaN #### Expected Behavior <!--- Tell us what should happen --> They should display 123,132,132,132.00 #### Actual Behavior <!--- Tell us what happens instead --> - The description and note field display: -NaN.NaN <!--- Also please check relevant logs (suitecrm.log, php error.log etc.) --> #### Possible Fix <!--- Not obligatory, but suggest a fix or reason for the bug --> I'm creating a new PR #### Steps to Reproduce <!--- Provide a link to a live example, or an unambiguous set of steps to --> <!--- reproduce this bug include code to reproduce, if relevant --> 1-Create a new contract 2-Create a new group and line item 3- In the description and note field type: 123,132,132,132.00 4- Save 5- Re-open the Edit view 6- The description and note field display: -NaN.NaN #### Context <!--- How has this bug affected you? What were you trying to accomplish? --> <!--- If you feel this should be a low/medium/high priority then please state so --> #### Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * SuiteCRM Version used: * Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): * Environment name and version (e.g. MySQL, PHP 7): * Operating System and version (e.g Ubuntu 16.04):
priority
description note fields in the contract line items formats the numeric values as currency description note fields in the contract line items formats the numeric values as currency issue create a new contract create a new group and line item in the description and note field type save re open the edit view the description and note field display nan nan expected behavior they should display actual behavior the description and note field display nan nan possible fix i m creating a new pr steps to reproduce create a new contract create a new group and line item in the description and note field type save re open the edit view the description and note field display nan nan context your environment suitecrm version used browser name and version e g chrome version bit environment name and version e g mysql php operating system and version e g ubuntu
1
496,452
14,347,787,942
IssuesEvent
2020-11-29 09:15:26
EmulatorNexus/VeniceUnleashed
https://api.github.com/repos/EmulatorNexus/VeniceUnleashed
closed
Extra motion blur while looking up/down in spec mode
low priority unverified
Disabling or reducing the motion blur resolve this issue. https://youtu.be/apTn5j2XCuI https://youtu.be/1aj_uIRB7io
1.0
Extra motion blur while looking up/down in spec mode - Disabling or reducing the motion blur resolve this issue. https://youtu.be/apTn5j2XCuI https://youtu.be/1aj_uIRB7io
priority
extra motion blur while looking up down in spec mode disabling or reducing the motion blur resolve this issue
1
392,771
11,595,616,913
IssuesEvent
2020-02-24 17:19:44
status-im/status-react
https://api.github.com/repos/status-im/status-react
closed
No bubble background on messages with > 200 lines
bug chat low-priority mobile-app
***Type***: Bug ***Summary***: When the message is really huge (exact number depends from device, but in case of Samsung Galaxy S6 emulator - it's > 190 lines, in a case on Samsung J7 on Android 7.0 it's > 220 messages), such sent or received message on Android is not wrapped up in bubble. On iOS message wrapped up in bubble disregard the line number in message. However, empty bubbles are present at some point of such huge-message conversation (see the steps below). #### Expected behavior Message with 10000 lines wrapped up in bubble on Android #### Actual behavior Message with 10000 lines wrapped up in bubble on Android ### Reproduction 1) Open Status on iPhone and create new user 2) Open Status on Android and create new user 3) iPhone user adds Android user in contacts (iPhone user wind up on 1-1chat after that) 4) Android user navigates to 1-1chat with iPhone user 5) Android user sends message with 10000 lines (see txt file in attachment) **Actual result:** sent message does not have message bubble on background. But it's all fine on iPhone side at this moment. ![screenshot_20180119-211447](https://user-images.githubusercontent.com/8749671/35167375-fb81fa2a-fd5d-11e7-8333-0761e918c570.png) 6) iPhone user sends message with 10000 lines **Actual result:** Empty message. There is no text is present in bubble. However if to copy it's empty message in clipboard - appropriate content copied fine. So in fact text content is present - but not displayed. ![image uploaded from ios 2](https://user-images.githubusercontent.com/8749671/35167655-003fd270-fd5f-11e7-8cf6-95bb9e64ffbb.png) ### Additional Information [comment]: # (Please do your best to fill this out.) * Status version: Develop (0.9.11d598) * Operating System: Android 7.0, Android 6.0, iOS 11.2.1 Txt file with 10000 lines [10000lines.txt](https://github.com/status-im/status-react/files/1647642/10000lines.txt)
1.0
No bubble background on messages with > 200 lines - ***Type***: Bug ***Summary***: When the message is really huge (exact number depends from device, but in case of Samsung Galaxy S6 emulator - it's > 190 lines, in a case on Samsung J7 on Android 7.0 it's > 220 messages), such sent or received message on Android is not wrapped up in bubble. On iOS message wrapped up in bubble disregard the line number in message. However, empty bubbles are present at some point of such huge-message conversation (see the steps below). #### Expected behavior Message with 10000 lines wrapped up in bubble on Android #### Actual behavior Message with 10000 lines wrapped up in bubble on Android ### Reproduction 1) Open Status on iPhone and create new user 2) Open Status on Android and create new user 3) iPhone user adds Android user in contacts (iPhone user wind up on 1-1chat after that) 4) Android user navigates to 1-1chat with iPhone user 5) Android user sends message with 10000 lines (see txt file in attachment) **Actual result:** sent message does not have message bubble on background. But it's all fine on iPhone side at this moment. ![screenshot_20180119-211447](https://user-images.githubusercontent.com/8749671/35167375-fb81fa2a-fd5d-11e7-8333-0761e918c570.png) 6) iPhone user sends message with 10000 lines **Actual result:** Empty message. There is no text is present in bubble. However if to copy it's empty message in clipboard - appropriate content copied fine. So in fact text content is present - but not displayed. ![image uploaded from ios 2](https://user-images.githubusercontent.com/8749671/35167655-003fd270-fd5f-11e7-8cf6-95bb9e64ffbb.png) ### Additional Information [comment]: # (Please do your best to fill this out.) * Status version: Develop (0.9.11d598) * Operating System: Android 7.0, Android 6.0, iOS 11.2.1 Txt file with 10000 lines [10000lines.txt](https://github.com/status-im/status-react/files/1647642/10000lines.txt)
priority
no bubble background on messages with lines type bug summary when the message is really huge exact number depends from device but in case of samsung galaxy emulator it s lines in a case on samsung on android it s messages such sent or received message on android is not wrapped up in bubble on ios message wrapped up in bubble disregard the line number in message however empty bubbles are present at some point of such huge message conversation see the steps below expected behavior message with lines wrapped up in bubble on android actual behavior message with lines wrapped up in bubble on android reproduction open status on iphone and create new user open status on android and create new user iphone user adds android user in contacts iphone user wind up on after that android user navigates to with iphone user android user sends message with lines see txt file in attachment actual result sent message does not have message bubble on background but it s all fine on iphone side at this moment iphone user sends message with lines actual result empty message there is no text is present in bubble however if to copy it s empty message in clipboard appropriate content copied fine so in fact text content is present but not displayed additional information please do your best to fill this out status version develop operating system android android ios txt file with lines
1
300,465
9,211,129,046
IssuesEvent
2019-03-09 12:37:32
richelbilderbeek/djog_unos_2018
https://api.github.com/repos/richelbilderbeek/djog_unos_2018
closed
Add venus_fly_trap agent
low priority
Add a venus_fly_trap agent and do all the other stuff you always need to do when creating an agent. Add venus_fly_trap to appropriate tiles
1.0
Add venus_fly_trap agent - Add a venus_fly_trap agent and do all the other stuff you always need to do when creating an agent. Add venus_fly_trap to appropriate tiles
priority
add venus fly trap agent add a venus fly trap agent and do all the other stuff you always need to do when creating an agent add venus fly trap to appropriate tiles
1
170,418
6,444,231,275
IssuesEvent
2017-08-12 08:20:18
Polpetta/SecurityAndRiskManagementNotes
https://api.github.com/repos/Polpetta/SecurityAndRiskManagementNotes
opened
Mistranslation esercizio 56
priority:low question type:exercise type:mistranslation
**Description** La domanda originale: > The difference between where an organization performs and where they intend to perform is known as: L'attuale traduzione: > La differenza tra dove una organizzazione rende e dove loro vorrebbero rendere è anche conosciuto come: Suona un po' strano il "dove" in italiano. Io la cambierei così: > La differenza tra quanto un'organizzazione rende e quanto vorrebbe rendere è anche conosciuto come: **Other issues**
1.0
Mistranslation esercizio 56 - **Description** La domanda originale: > The difference between where an organization performs and where they intend to perform is known as: L'attuale traduzione: > La differenza tra dove una organizzazione rende e dove loro vorrebbero rendere è anche conosciuto come: Suona un po' strano il "dove" in italiano. Io la cambierei così: > La differenza tra quanto un'organizzazione rende e quanto vorrebbe rendere è anche conosciuto come: **Other issues**
priority
mistranslation esercizio description la domanda originale the difference between where an organization performs and where they intend to perform is known as l attuale traduzione la differenza tra dove una organizzazione rende e dove loro vorrebbero rendere è anche conosciuto come suona un po strano il dove in italiano io la cambierei così la differenza tra quanto un organizzazione rende e quanto vorrebbe rendere è anche conosciuto come other issues
1
586,885
17,599,331,994
IssuesEvent
2021-08-17 09:48:38
eclipse/dirigible
https://api.github.com/repos/eclipse/dirigible
closed
[OData] Issue to Retrieval OData using API
bug component-core priority-high efforts-low component-odata
Issue w.r.t the OData retrieval. unable to retrieve the data using API's. 1. Recently I have updated all the tables with the few columns and then I generated the model.odata. 2. I unpublished the whole project and ran below sql query in database perspective. delete from DIRIGIBLE_ODATA; delete from DIRIGIBLE_ODATA_MAPPING; delete from DIRIGIBLE_ODATA_SCHEMA; Results: 0 0 0 3. then I published all the projects freshly and tried to run the application again it didn't work. 4. when trying to fetch meta data using below link it is returning empty no results (https://dirigiblewebide-symetric.cfapps.eu11.hana.ondemand.com/odata/v2/$metadata) **Output:** All the API calls are responding with 404 not found status. **Expected behavior** All API call should be served successfully **Screenshots** ![newly_Added_columns](https://user-images.githubusercontent.com/72190161/129023719-b7e3ba8a-1300-4761-98f1-851b9d73a5a3.png) ![Network_log](https://user-images.githubusercontent.com/72190161/129023722-ef623373-7fed-4018-8695-fbadb1a6e342.png) [DirigibleWebIDE-2021-08-11 10_02_35.895+0000.txt] [model.odata.txt](https://github.com/eclipse/dirigible/files/6968106/model.odata.txt) (https://github.com/eclipse/dirigible/files/6968099/DirigibleWebIDE-2021-08-11.10_02_35.895%2B0000.txt) **Desktop (please complete the following information):** - OS: windows 10 pro - Browser : Google chrome - Version 92.0.4515.131 (Official Build) (64-bit) **Additional context** Add any other context about the problem here.
1.0
[OData] Issue to Retrieval OData using API - Issue w.r.t the OData retrieval. unable to retrieve the data using API's. 1. Recently I have updated all the tables with the few columns and then I generated the model.odata. 2. I unpublished the whole project and ran below sql query in database perspective. delete from DIRIGIBLE_ODATA; delete from DIRIGIBLE_ODATA_MAPPING; delete from DIRIGIBLE_ODATA_SCHEMA; Results: 0 0 0 3. then I published all the projects freshly and tried to run the application again it didn't work. 4. when trying to fetch meta data using below link it is returning empty no results (https://dirigiblewebide-symetric.cfapps.eu11.hana.ondemand.com/odata/v2/$metadata) **Output:** All the API calls are responding with 404 not found status. **Expected behavior** All API call should be served successfully **Screenshots** ![newly_Added_columns](https://user-images.githubusercontent.com/72190161/129023719-b7e3ba8a-1300-4761-98f1-851b9d73a5a3.png) ![Network_log](https://user-images.githubusercontent.com/72190161/129023722-ef623373-7fed-4018-8695-fbadb1a6e342.png) [DirigibleWebIDE-2021-08-11 10_02_35.895+0000.txt] [model.odata.txt](https://github.com/eclipse/dirigible/files/6968106/model.odata.txt) (https://github.com/eclipse/dirigible/files/6968099/DirigibleWebIDE-2021-08-11.10_02_35.895%2B0000.txt) **Desktop (please complete the following information):** - OS: windows 10 pro - Browser : Google chrome - Version 92.0.4515.131 (Official Build) (64-bit) **Additional context** Add any other context about the problem here.
priority
issue to retrieval odata using api issue w r t the odata retrieval unable to retrieve the data using api s recently i have updated all the tables with the few columns and then i generated the model odata i unpublished the whole project and ran below sql query in database perspective delete from dirigible odata delete from dirigible odata mapping delete from dirigible odata schema results then i published all the projects freshly and tried to run the application again it didn t work when trying to fetch meta data using below link it is returning empty no results output all the api calls are responding with not found status expected behavior all api call should be served successfully screenshots desktop please complete the following information os windows pro browser google chrome version official build bit additional context add any other context about the problem here
1
504,948
14,624,591,764
IssuesEvent
2020-12-23 06:42:37
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
opened
[0.9.2 staging-1883] Meteor Tutorial subtitles problem when using not 16х9 resolution
Category: UI Priority: Low
So I have monitor 16x10 and I have 2 black bars in top and bottom, but text is align to bottom of screen, not to bottom of video: ![image](https://user-images.githubusercontent.com/45708377/102966062-2d76a980-4500-11eb-81c5-893befb3c3be.png) I would not even pay attention to this, but the text in one line lies right on the border: ![image](https://user-images.githubusercontent.com/45708377/102966197-7595cc00-4500-11eb-86b7-acf83cbe2a0f.png) The solution is make bottom string not so dark. For example Youtube: ![image](https://user-images.githubusercontent.com/45708377/102967083-37011100-4502-11eb-955e-f8f97292f976.png) I have dark strings too, but as you can see the text is much easier to read because the subtitles overlap this black bar. Therefore, we need to make this too. Our subtitles background will overlap black bar and make it more bright and more importantly, it will look like one line.
1.0
[0.9.2 staging-1883] Meteor Tutorial subtitles problem when using not 16х9 resolution - So I have monitor 16x10 and I have 2 black bars in top and bottom, but text is align to bottom of screen, not to bottom of video: ![image](https://user-images.githubusercontent.com/45708377/102966062-2d76a980-4500-11eb-81c5-893befb3c3be.png) I would not even pay attention to this, but the text in one line lies right on the border: ![image](https://user-images.githubusercontent.com/45708377/102966197-7595cc00-4500-11eb-86b7-acf83cbe2a0f.png) The solution is make bottom string not so dark. For example Youtube: ![image](https://user-images.githubusercontent.com/45708377/102967083-37011100-4502-11eb-955e-f8f97292f976.png) I have dark strings too, but as you can see the text is much easier to read because the subtitles overlap this black bar. Therefore, we need to make this too. Our subtitles background will overlap black bar and make it more bright and more importantly, it will look like one line.
priority
meteor tutorial subtitles problem when using not resolution so i have monitor and i have black bars in top and bottom but text is align to bottom of screen not to bottom of video i would not even pay attention to this but the text in one line lies right on the border the solution is make bottom string not so dark for example youtube i have dark strings too but as you can see the text is much easier to read because the subtitles overlap this black bar therefore we need to make this too our subtitles background will overlap black bar and make it more bright and more importantly it will look like one line
1
311,644
9,536,975,478
IssuesEvent
2019-04-30 11:13:04
AlternativetIT/alleos-issues
https://api.github.com/repos/AlternativetIT/alleos-issues
opened
Udløbsdato på bestyrelsesteams
enhancement low priority medium
Bestyrelsesteams skal have et udløb, så man ved oprettelse af et team bliver tvunget til at sætte et udløb på teamet.
1.0
Udløbsdato på bestyrelsesteams - Bestyrelsesteams skal have et udløb, så man ved oprettelse af et team bliver tvunget til at sætte et udløb på teamet.
priority
udløbsdato på bestyrelsesteams bestyrelsesteams skal have et udløb så man ved oprettelse af et team bliver tvunget til at sætte et udløb på teamet
1
818,192
30,677,523,041
IssuesEvent
2023-07-26 06:49:04
AliMD/alwatr
https://api.github.com/repos/AliMD/alwatr
opened
Upgrade to Yarn stable
good first issue dependencies no-stale priority-low
### Package(s) Don't known / other ### Description stable version of yarn is `3.6` and we must upgrade to them! ### Proposed solution Useful links: - [why-should-you-upgrade-to-yarn-modern](https://yarnpkg.com/getting-started/qa#why-should-you-upgrade-to-yarn-modern) - [zero-installs](https://yarnpkg.com/features/zero-installs) steps to upgrade to stable version yarn set version stable || yarn set version berry yarn config set nodeLinker node-modules Commit the changes so far (yarn-X.Y.Z.js, .yarnrc.yml, ...) yarn install yarn plugin import interactive-tools yarn dlx @yarnpkg/sdks vscode yarn dlx @yarnpkg/doctor - fix issue --- > We're happy to report that this shell just got smarter, and now provides two additional syntaxes that you can reliably use on both Windows and Posix: ```bash build-js & build-css & # Background jobs ls 2>/dev/null # File descriptor redirections ``` --- R&D about `corepack` https://yarnpkg.com/getting-started/install#about-global-installs https://nodejs.org/dist/latest/docs/api/corepack.html corepack enable corepack prepare yarn@canary --activate ### Alternatives considered _No response_
1.0
Upgrade to Yarn stable - ### Package(s) Don't known / other ### Description stable version of yarn is `3.6` and we must upgrade to them! ### Proposed solution Useful links: - [why-should-you-upgrade-to-yarn-modern](https://yarnpkg.com/getting-started/qa#why-should-you-upgrade-to-yarn-modern) - [zero-installs](https://yarnpkg.com/features/zero-installs) steps to upgrade to stable version yarn set version stable || yarn set version berry yarn config set nodeLinker node-modules Commit the changes so far (yarn-X.Y.Z.js, .yarnrc.yml, ...) yarn install yarn plugin import interactive-tools yarn dlx @yarnpkg/sdks vscode yarn dlx @yarnpkg/doctor - fix issue --- > We're happy to report that this shell just got smarter, and now provides two additional syntaxes that you can reliably use on both Windows and Posix: ```bash build-js & build-css & # Background jobs ls 2>/dev/null # File descriptor redirections ``` --- R&D about `corepack` https://yarnpkg.com/getting-started/install#about-global-installs https://nodejs.org/dist/latest/docs/api/corepack.html corepack enable corepack prepare yarn@canary --activate ### Alternatives considered _No response_
priority
upgrade to yarn stable package s don t known other description stable version of yarn is and we must upgrade to them proposed solution useful links steps to upgrade to stable version yarn set version stable yarn set version berry yarn config set nodelinker node modules commit the changes so far yarn x y z js yarnrc yml yarn install yarn plugin import interactive tools yarn dlx yarnpkg sdks vscode yarn dlx yarnpkg doctor fix issue we re happy to report that this shell just got smarter and now provides two additional syntaxes that you can reliably use on both windows and posix bash build js build css background jobs ls dev null file descriptor redirections r d about corepack corepack enable corepack prepare yarn canary activate alternatives considered no response
1