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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
547,852 | 16,048,581,388 | IssuesEvent | 2021-04-22 16:15:38 | Automattic/woocommerce-payments | https://api.github.com/repos/Automattic/woocommerce-payments | closed | Implement sorting mechanism for the checkout options list in settings | component: grouped-settings priority: low | The items in the checkout options list can be sorted in the WooCommerce Payments settings screen. Users will be able to drag an element in the list and drop it in the desired position.
The checkout options will be displayed in this order on the checkout screen.
## Screen elements
- An icon at the beginning of each item representing the handle the user will press to drag the element.
## Screenshot

| 1.0 | Implement sorting mechanism for the checkout options list in settings - The items in the checkout options list can be sorted in the WooCommerce Payments settings screen. Users will be able to drag an element in the list and drop it in the desired position.
The checkout options will be displayed in this order on the checkout screen.
## Screen elements
- An icon at the beginning of each item representing the handle the user will press to drag the element.
## Screenshot

| priority | implement sorting mechanism for the checkout options list in settings the items in the checkout options list can be sorted in the woocommerce payments settings screen users will be able to drag an element in the list and drop it in the desired position the checkout options will be displayed in this order on the checkout screen screen elements an icon at the beginning of each item representing the handle the user will press to drag the element screenshot | 1 |
224,966 | 7,474,083,408 | IssuesEvent | 2018-04-03 17:14:15 | quipucords/quipucords | https://api.github.com/repos/quipucords/quipucords | opened | Start using flake8-import-order | enhancement priority - low | ## Specify type:
- Enhancement
### Priority:
- Low
___
## Description:
To get a more concise code style I think we can start using `flake8-import-order` plugin to let it be picky on the import code style issues.
```
$ make lint
flake8 . --ignore D203 --exclude quipucords/api/migrations,docs,build,.vscode,client,venv,deploy
./qpc/cli.py:31:1: I100 Import statements are in the wrong order. 'from qpc.server.commands import ConfigureHostCommand, LoginHostCommand, LogoutHostCommand' should be before 'from qpc.utils import ensure_config_dir_exists, ensure_data_dir_exists, get_server_location, log, read_client_token, setup_logging'
./qpc/cli.py:34:1: I101 Imported names are in the wrong order. Should be CredAddCommand, CredClearCommand, CredEditCommand, CredListCommand, CredShowCommand
./qpc/cli.py:34:1: I100 Import statements are in the wrong order. 'from qpc.cred.commands import CredAddCommand, CredListCommand, CredEditCommand, CredShowCommand, CredClearCommand' should be before 'from qpc.server.commands import ConfigureHostCommand, LoginHostCommand, LogoutHostCommand'
./qpc/cli.py:39:1: I101 Imported names are in the wrong order. Should be SourceAddCommand, SourceClearCommand, SourceEditCommand, SourceListCommand, SourceShowCommand
./qpc/cli.py:42:1: I101 Imported names are in the wrong order. Should be ScanAddCommand, ScanCancelCommand, ScanClearCommand, ScanEditCommand, ScanJobCommand, ScanListCommand, ScanPauseCommand, ScanRestartCommand, ScanShowCommand, ScanStartCommand
./qpc/cli.py:42:1: I100 Import statements are in the wrong order. 'from qpc.scan.commands import ScanAddCommand, ScanStartCommand, ScanListCommand, ScanShowCommand, ScanPauseCommand, ScanCancelCommand, ScanRestartCommand, ScanEditCommand, ScanClearCommand, ScanJobCommand' should be before 'from qpc.source.commands import SourceAddCommand, SourceListCommand, SourceShowCommand, SourceClearCommand, SourceEditCommand'
./qpc/cli.py:47:1: I101 Imported names are in the wrong order. Should be ReportDetailCommand, ReportMergeCommand, ReportSummaryCommand
./qpc/cli.py:47:1: I100 Import statements are in the wrong order. 'from qpc.report.commands import ReportSummaryCommand, ReportDetailCommand, ReportMergeCommand' should be before 'from qpc.scan.commands import ScanAddCommand, ScanStartCommand, ScanListCommand, ScanShowCommand, ScanPauseCommand, ScanCancelCommand, ScanRestartCommand, ScanEditCommand, ScanClearCommand, ScanJobCommand'
./qpc/cli.py:51:1: I100 Import statements are in the wrong order. 'import qpc.messages' should be before 'from qpc.translation import _'
./qpc/cli.py:52:1: I201 Missing newline between import groups. 'from . import __version__' is identified as Application Relative and 'import qpc.messages' is identified as Third Party.
make: *** [lint-flake8] Error 1
```
___
## Acceptance Criteria:
- [ ] No lint failures
| 1.0 | Start using flake8-import-order - ## Specify type:
- Enhancement
### Priority:
- Low
___
## Description:
To get a more concise code style I think we can start using `flake8-import-order` plugin to let it be picky on the import code style issues.
```
$ make lint
flake8 . --ignore D203 --exclude quipucords/api/migrations,docs,build,.vscode,client,venv,deploy
./qpc/cli.py:31:1: I100 Import statements are in the wrong order. 'from qpc.server.commands import ConfigureHostCommand, LoginHostCommand, LogoutHostCommand' should be before 'from qpc.utils import ensure_config_dir_exists, ensure_data_dir_exists, get_server_location, log, read_client_token, setup_logging'
./qpc/cli.py:34:1: I101 Imported names are in the wrong order. Should be CredAddCommand, CredClearCommand, CredEditCommand, CredListCommand, CredShowCommand
./qpc/cli.py:34:1: I100 Import statements are in the wrong order. 'from qpc.cred.commands import CredAddCommand, CredListCommand, CredEditCommand, CredShowCommand, CredClearCommand' should be before 'from qpc.server.commands import ConfigureHostCommand, LoginHostCommand, LogoutHostCommand'
./qpc/cli.py:39:1: I101 Imported names are in the wrong order. Should be SourceAddCommand, SourceClearCommand, SourceEditCommand, SourceListCommand, SourceShowCommand
./qpc/cli.py:42:1: I101 Imported names are in the wrong order. Should be ScanAddCommand, ScanCancelCommand, ScanClearCommand, ScanEditCommand, ScanJobCommand, ScanListCommand, ScanPauseCommand, ScanRestartCommand, ScanShowCommand, ScanStartCommand
./qpc/cli.py:42:1: I100 Import statements are in the wrong order. 'from qpc.scan.commands import ScanAddCommand, ScanStartCommand, ScanListCommand, ScanShowCommand, ScanPauseCommand, ScanCancelCommand, ScanRestartCommand, ScanEditCommand, ScanClearCommand, ScanJobCommand' should be before 'from qpc.source.commands import SourceAddCommand, SourceListCommand, SourceShowCommand, SourceClearCommand, SourceEditCommand'
./qpc/cli.py:47:1: I101 Imported names are in the wrong order. Should be ReportDetailCommand, ReportMergeCommand, ReportSummaryCommand
./qpc/cli.py:47:1: I100 Import statements are in the wrong order. 'from qpc.report.commands import ReportSummaryCommand, ReportDetailCommand, ReportMergeCommand' should be before 'from qpc.scan.commands import ScanAddCommand, ScanStartCommand, ScanListCommand, ScanShowCommand, ScanPauseCommand, ScanCancelCommand, ScanRestartCommand, ScanEditCommand, ScanClearCommand, ScanJobCommand'
./qpc/cli.py:51:1: I100 Import statements are in the wrong order. 'import qpc.messages' should be before 'from qpc.translation import _'
./qpc/cli.py:52:1: I201 Missing newline between import groups. 'from . import __version__' is identified as Application Relative and 'import qpc.messages' is identified as Third Party.
make: *** [lint-flake8] Error 1
```
___
## Acceptance Criteria:
- [ ] No lint failures
| priority | start using import order specify type enhancement priority low description to get a more concise code style i think we can start using import order plugin to let it be picky on the import code style issues make lint ignore exclude quipucords api migrations docs build vscode client venv deploy qpc cli py import statements are in the wrong order from qpc server commands import configurehostcommand loginhostcommand logouthostcommand should be before from qpc utils import ensure config dir exists ensure data dir exists get server location log read client token setup logging qpc cli py imported names are in the wrong order should be credaddcommand credclearcommand crededitcommand credlistcommand credshowcommand qpc cli py import statements are in the wrong order from qpc cred commands import credaddcommand credlistcommand crededitcommand credshowcommand credclearcommand should be before from qpc server commands import configurehostcommand loginhostcommand logouthostcommand qpc cli py imported names are in the wrong order should be sourceaddcommand sourceclearcommand sourceeditcommand sourcelistcommand sourceshowcommand qpc cli py imported names are in the wrong order should be scanaddcommand scancancelcommand scanclearcommand scaneditcommand scanjobcommand scanlistcommand scanpausecommand scanrestartcommand scanshowcommand scanstartcommand qpc cli py import statements are in the wrong order from qpc scan commands import scanaddcommand scanstartcommand scanlistcommand scanshowcommand scanpausecommand scancancelcommand scanrestartcommand scaneditcommand scanclearcommand scanjobcommand should be before from qpc source commands import sourceaddcommand sourcelistcommand sourceshowcommand sourceclearcommand sourceeditcommand qpc cli py imported names are in the wrong order should be reportdetailcommand reportmergecommand reportsummarycommand qpc cli py import statements are in the wrong order from qpc report commands import reportsummarycommand reportdetailcommand reportmergecommand should be before from qpc scan commands import scanaddcommand scanstartcommand scanlistcommand scanshowcommand scanpausecommand scancancelcommand scanrestartcommand scaneditcommand scanclearcommand scanjobcommand qpc cli py import statements are in the wrong order import qpc messages should be before from qpc translation import qpc cli py missing newline between import groups from import version is identified as application relative and import qpc messages is identified as third party make error acceptance criteria no lint failures | 1 |
204,983 | 7,093,355,438 | IssuesEvent | 2018-01-12 20:08:40 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Alpha.6 [d9d6f47c] Unknown Stacktrace from Player.log | Low Priority | Appears if you try to cut a log in pieces, and you hit them, so that it would give you <1 log.
```
Exception: Caught exception invoking RPC SliceTrunk on TreeNetComponent!
Object reference not set to an instance of an object
Stack:
at TreeNetComponent.SliceTrunk (Single slicePoint, Guid sourceID, Guid pieceID) [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (object,object[],System.Exception&)
at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.RPCManager.TryInvoke (System.Object controller, System.String methodname, Eco.Shared.Serialization.BSONObject bsonArgs, System.Object& result) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.RPCManager.InvokeOn (Eco.Shared.Serialization.BSONObject bson, System.Object controller, System.String methodname) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.RPCManager.HandleReceiveRPC (INetClient client, Eco.Shared.Serialization.BSONObject bson) [0x00000] in <filename unknown>:0
at NetworkManager.ReceiveEvent (INetClient client, NetworkEvent netEvent, Eco.Shared.Serialization.BSONObject bson) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.NetObject.ReceiveEvent (INetClient client, NetworkEvent netEvent, Eco.Shared.Serialization.BSONObject bson) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.NetPort.ProcessBuffer (Int64 maxMilliseconds) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.NetPort.Update (Int64 maxMilliseconds) [0x00000] in <filename unknown>:0
at NetworkManager.Update () [0x00000] in <filename unknown>:0
(Filename: Line: -1)
``` | 1.0 | Alpha.6 [d9d6f47c] Unknown Stacktrace from Player.log - Appears if you try to cut a log in pieces, and you hit them, so that it would give you <1 log.
```
Exception: Caught exception invoking RPC SliceTrunk on TreeNetComponent!
Object reference not set to an instance of an object
Stack:
at TreeNetComponent.SliceTrunk (Single slicePoint, Guid sourceID, Guid pieceID) [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (object,object[],System.Exception&)
at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.RPCManager.TryInvoke (System.Object controller, System.String methodname, Eco.Shared.Serialization.BSONObject bsonArgs, System.Object& result) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.RPCManager.InvokeOn (Eco.Shared.Serialization.BSONObject bson, System.Object controller, System.String methodname) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.RPCManager.HandleReceiveRPC (INetClient client, Eco.Shared.Serialization.BSONObject bson) [0x00000] in <filename unknown>:0
at NetworkManager.ReceiveEvent (INetClient client, NetworkEvent netEvent, Eco.Shared.Serialization.BSONObject bson) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.NetObject.ReceiveEvent (INetClient client, NetworkEvent netEvent, Eco.Shared.Serialization.BSONObject bson) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.NetPort.ProcessBuffer (Int64 maxMilliseconds) [0x00000] in <filename unknown>:0
at Eco.Shared.Networking.NetPort.Update (Int64 maxMilliseconds) [0x00000] in <filename unknown>:0
at NetworkManager.Update () [0x00000] in <filename unknown>:0
(Filename: Line: -1)
``` | priority | alpha unknown stacktrace from player log appears if you try to cut a log in pieces and you hit them so that it would give you log exception caught exception invoking rpc slicetrunk on treenetcomponent object reference not set to an instance of an object stack at treenetcomponent slicetrunk single slicepoint guid sourceid guid pieceid in at wrapper managed to native system reflection monomethod internalinvoke object object system exception at system reflection monomethod invoke system object obj bindingflags invokeattr system reflection binder binder system object parameters system globalization cultureinfo culture in at eco shared networking rpcmanager tryinvoke system object controller system string methodname eco shared serialization bsonobject bsonargs system object result in at eco shared networking rpcmanager invokeon eco shared serialization bsonobject bson system object controller system string methodname in at eco shared networking rpcmanager handlereceiverpc inetclient client eco shared serialization bsonobject bson in at networkmanager receiveevent inetclient client networkevent netevent eco shared serialization bsonobject bson in at eco shared networking netobject receiveevent inetclient client networkevent netevent eco shared serialization bsonobject bson in at eco shared networking netport processbuffer maxmilliseconds in at eco shared networking netport update maxmilliseconds in at networkmanager update in filename line | 1 |
465,807 | 13,392,585,741 | IssuesEvent | 2020-09-03 01:47:23 | godaddy-wordpress/coblocks | https://api.github.com/repos/godaddy-wordpress/coblocks | closed | Post blog category filter not working | [Priority] Low [Type] Bug | ### Describe the bug:
I should be able to filter the posts by category using "Posts" block
### To reproduce:
1. Edit the page
2. Add Posts block
3. Choose a category in the Feed settings
4. See error on the fronted - category filter is not applied - all posts are displayed instead. However you can see the correct posts in the backend.
### Expected behavior:
Posts from selected category should be displayed
### Screenshots:
http://prntscr.com/u23e6v
http://prntscr.com/u23f9b
by the way, featured image is displayed over the post title - http://prntscr.com/u23ew9
### Isolating the problem:
- [ x] This bug happens with no other plugins activated
- [x ] This bug happens with a default WordPress theme active
- [ x] This bug happens **without** the Gutenberg plugin active
- [x ] I can reproduce this bug consistently using the steps above
### WordPress version:
WordPress 5.5
### Gutenberg version:
| 1.0 | Post blog category filter not working - ### Describe the bug:
I should be able to filter the posts by category using "Posts" block
### To reproduce:
1. Edit the page
2. Add Posts block
3. Choose a category in the Feed settings
4. See error on the fronted - category filter is not applied - all posts are displayed instead. However you can see the correct posts in the backend.
### Expected behavior:
Posts from selected category should be displayed
### Screenshots:
http://prntscr.com/u23e6v
http://prntscr.com/u23f9b
by the way, featured image is displayed over the post title - http://prntscr.com/u23ew9
### Isolating the problem:
- [ x] This bug happens with no other plugins activated
- [x ] This bug happens with a default WordPress theme active
- [ x] This bug happens **without** the Gutenberg plugin active
- [x ] I can reproduce this bug consistently using the steps above
### WordPress version:
WordPress 5.5
### Gutenberg version:
| priority | post blog category filter not working describe the bug i should be able to filter the posts by category using posts block to reproduce edit the page add posts block choose a category in the feed settings see error on the fronted category filter is not applied all posts are displayed instead however you can see the correct posts in the backend expected behavior posts from selected category should be displayed screenshots by the way featured image is displayed over the post title isolating the problem this bug happens with no other plugins activated this bug happens with a default wordpress theme active this bug happens without the gutenberg plugin active i can reproduce this bug consistently using the steps above wordpress version wordpress gutenberg version | 1 |
233,100 | 7,693,610,543 | IssuesEvent | 2018-05-18 04:52:40 | ro31337/libretaxi | https://api.github.com/repos/ro31337/libretaxi | closed | Refactor all menu actions: mark all get and post with private attribute | low priority | `Action`'s `get` and `post` methods are not marked as `@private`. And they are private. The only way we call action is by `call` method.
So update is required to mark `get` and `post` as private methods in all actions.
Also, look at esdoc for `@override` keyword and apply if it's required here.
| 1.0 | Refactor all menu actions: mark all get and post with private attribute - `Action`'s `get` and `post` methods are not marked as `@private`. And they are private. The only way we call action is by `call` method.
So update is required to mark `get` and `post` as private methods in all actions.
Also, look at esdoc for `@override` keyword and apply if it's required here.
| priority | refactor all menu actions mark all get and post with private attribute action s get and post methods are not marked as private and they are private the only way we call action is by call method so update is required to mark get and post as private methods in all actions also look at esdoc for override keyword and apply if it s required here | 1 |
278,295 | 8,638,730,547 | IssuesEvent | 2018-11-23 15:44:26 | Wikidata/soweego | https://api.github.com/repos/Wikidata/soweego | opened | Setup the actual pipeline executing all the steps | discussion low priority | The pipeline should be or a bash script or a Makefile.
It has to call validator, importer, linker in sequence for a certain target. (e.g. Musicbrainz)
| 1.0 | Setup the actual pipeline executing all the steps - The pipeline should be or a bash script or a Makefile.
It has to call validator, importer, linker in sequence for a certain target. (e.g. Musicbrainz)
| priority | setup the actual pipeline executing all the steps the pipeline should be or a bash script or a makefile it has to call validator importer linker in sequence for a certain target e g musicbrainz | 1 |
605,441 | 18,735,355,131 | IssuesEvent | 2021-11-04 06:29:36 | SAP/xsk | https://api.github.com/repos/SAP/xsk | closed | [IDE] Problems - Cause to be expanded on click | enhancement priority-low usability IDE shadow | **Describe the solution you'd like**
Problem cause can be very long. This causes the need to scroll right in order to see the rest of the details and the remaining columns.
I'd like to have the first few words of the problem and the collapse the rest. When I click the row, the behavior should be to either expand the row (make it taller with line wraps) or open a pop-up with information about the problem. | 1.0 | [IDE] Problems - Cause to be expanded on click - **Describe the solution you'd like**
Problem cause can be very long. This causes the need to scroll right in order to see the rest of the details and the remaining columns.
I'd like to have the first few words of the problem and the collapse the rest. When I click the row, the behavior should be to either expand the row (make it taller with line wraps) or open a pop-up with information about the problem. | priority | problems cause to be expanded on click describe the solution you d like problem cause can be very long this causes the need to scroll right in order to see the rest of the details and the remaining columns i d like to have the first few words of the problem and the collapse the rest when i click the row the behavior should be to either expand the row make it taller with line wraps or open a pop up with information about the problem | 1 |
768,953 | 26,988,903,052 | IssuesEvent | 2023-02-09 18:11:51 | faster-cpython/tools | https://api.github.com/repos/faster-cpython/tools | closed | [portal] Support "list"-style request selection in more jobs.py commands | [priority: LOW] | Currently commands that operate on specific requests only take request IDs. The selection logic used for the "list" command could be used for those other commands.
Also see #42 and #44. | 1.0 | [portal] Support "list"-style request selection in more jobs.py commands - Currently commands that operate on specific requests only take request IDs. The selection logic used for the "list" command could be used for those other commands.
Also see #42 and #44. | priority | support list style request selection in more jobs py commands currently commands that operate on specific requests only take request ids the selection logic used for the list command could be used for those other commands also see and | 1 |
198,314 | 6,972,214,021 | IssuesEvent | 2017-12-11 16:21:00 | toddwseattle/ng-landing | https://api.github.com/repos/toddwseattle/ng-landing | opened | Use new functionality in angular cli 5 to implement app launch page | Priority: Low Size: S Type: Enhancement | Supports story #27. Dependenct on CLI upgrade. | 1.0 | Use new functionality in angular cli 5 to implement app launch page - Supports story #27. Dependenct on CLI upgrade. | priority | use new functionality in angular cli to implement app launch page supports story dependenct on cli upgrade | 1 |
768,307 | 26,960,848,715 | IssuesEvent | 2023-02-08 18:04:01 | gamefreedomgit/Maelstrom | https://api.github.com/repos/gamefreedomgit/Maelstrom | closed | Neferset Blade Twister is dropping less money than it should | NPC Priority: Low Status: Confirmed | [//]: # (REMBEMBER! Add links to things related to the bug using for example:)
[//]: # (http://wowhead.com/)
[//]: # (cata-twinhead.twinstar.cz)
**Description:**
Neferset Blade Twister is dropping around 17-27 cooper per kill but should drop 27 silver according to the database

**How to reproduce:**
Go to Uldum 51.0 72.8 kill Neferset Blade Twister and loot it
**How it should work:**
It should drop 27 silver
**Database links:**
https://www.wowhead.com/npc=47727/neferset-blade-twister | 1.0 | Neferset Blade Twister is dropping less money than it should - [//]: # (REMBEMBER! Add links to things related to the bug using for example:)
[//]: # (http://wowhead.com/)
[//]: # (cata-twinhead.twinstar.cz)
**Description:**
Neferset Blade Twister is dropping around 17-27 cooper per kill but should drop 27 silver according to the database

**How to reproduce:**
Go to Uldum 51.0 72.8 kill Neferset Blade Twister and loot it
**How it should work:**
It should drop 27 silver
**Database links:**
https://www.wowhead.com/npc=47727/neferset-blade-twister | priority | neferset blade twister is dropping less money than it should rembember add links to things related to the bug using for example cata twinhead twinstar cz description neferset blade twister is dropping around cooper per kill but should drop silver according to the database how to reproduce go to uldum kill neferset blade twister and loot it how it should work it should drop silver database links | 1 |
714,105 | 24,550,814,524 | IssuesEvent | 2022-10-12 12:28:35 | NethermindEth/nethermind | https://api.github.com/repos/NethermindEth/nethermind | closed | SnapSync logging on restarts | logging low priority SnapSync | We still log a message that was used mostly for debugging when testing Snap Sync.
Now it only makes sense if a node finished Phase 1 of Snap Sync but didn't finished the healing phase.
The message shouldn't be shown if the state was fully synced and the node is processing.

| 1.0 | SnapSync logging on restarts - We still log a message that was used mostly for debugging when testing Snap Sync.
Now it only makes sense if a node finished Phase 1 of Snap Sync but didn't finished the healing phase.
The message shouldn't be shown if the state was fully synced and the node is processing.

| priority | snapsync logging on restarts we still log a message that was used mostly for debugging when testing snap sync now it only makes sense if a node finished phase of snap sync but didn t finished the healing phase the message shouldn t be shown if the state was fully synced and the node is processing | 1 |
694,166 | 23,804,970,157 | IssuesEvent | 2022-09-03 22:31:46 | easystats/datawizard | https://api.github.com/repos/easystats/datawizard | closed | Programming with `datawizard::data_filter` and character vectors | enhancement :boom: low priority 😴 | In the context of my easystats/performance#443 PR, I’ve experienced a difficulty using `datawizard::data_filter`, so I am moving the discussion here.
``` r
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
library(datawizard)
```
With the tidyverse, the recommendation is to use double curly brackets when passing a variable name as argument, e.g.,
``` r
fun.dp <- function(df, var) {
head(filter(df, {{var}} > 0.5))
}
fun.dp(mtcars, am)
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
#> Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
#> Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
#> Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
#> Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
#> Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
```
In `datawizard`, a naively copy-pasted strategy does not seem to work:
``` r
fun.dw <- function(df, var) {
head(data_filter(df, filter = {{var}} > 0.5))
}
fun.dw(mtcars, am)
#> Error in {: comparison (6) is possible only for atomic and list types
```
In any case, my needs might be more for passing a character vector. Therefore in `dplyr`, we can use the double square brackets along the `.data` argument:
``` r
fun.dp <- function(df, var) {
head(filter(df, .data[[var]] > 0.5))
}
fun.dp(mtcars, "am")
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
#> Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
#> Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
#> Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
#> Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
#> Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
```
In `datawizard`, is there any way to achieve the same result?
``` r
fun.dw <- function(df, var) {
head(data_filter(df, filter = var > 0.5))
}
fun.dw(mtcars, "am")
#> Error in var > 0.5: comparison (6) is possible only for atomic and list types
fun.dw <- function(df, var) {
head(data_filter(df, filter = deparse(substitute(var)) > 0.5))
}
fun.dw(mtcars, "am")
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> Mazda RX4 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4
#> Mazda RX4 Wag 21.0 6 160 110 3.90 2.875 17.02 0 1 4 4
#> Datsun 710 22.8 4 108 93 3.85 2.320 18.61 1 1 4 1
#> Hornet 4 Drive 21.4 6 258 110 3.08 3.215 19.44 1 0 3 1
#> Hornet Sportabout 18.7 8 360 175 3.15 3.440 17.02 0 0 3 2
#> Valiant 18.1 6 225 105 2.76 3.460 20.22 1 0 3 1
# This doesn't throw an error but doesn't filter correctly
fun.dw <- function(df, var) {
head(data_filter(df, filter = !!var > 0.5))
}
fun.dw(mtcars, "am")
#> Error in var > 0.5: comparison (6) is possible only for atomic and list types
fun.dw <- function(df, var) {
head(data_filter(df, filter = .data[[var]] > 0.5))
}
fun.dw(mtcars, "am")
#> Error:
#> ! Can't subset `.data` outside of a data mask context.
fun.dw <- function(df, var) {
head(data_filter(df, filter = !!!var > 0.5))
}
fun.dw(mtcars, "am")
#> Error in var > 0.5: comparison (6) is possible only for atomic and list types
```
Is there a way to avoid having to do this?
``` r
fun.dw <- function(df, var) {
df$x <- df[[var]]
df <- head(data_filter(df, filter = x > 0.5))
data_remove(df, "x")
}
fun.dw(mtcars, "am")
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
#> Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
#> Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
#> Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
#> Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
#> Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
```
From the documentation I saw that `data_filter` is based on `subset`, which itself has the following warning:
> This is a convenience function intended for use interactively. For programming it is better to use the standard subsetting functions like `[`, and in particular the non-standard evaluation of argument subset can have unanticipated consequences.
Is there a workaround or some way to convert from string to an unevaluated promised expression (or something like that, I don’t really know the language)?
<sup>Created on 2022-08-12 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1)</sup>
| 1.0 | Programming with `datawizard::data_filter` and character vectors - In the context of my easystats/performance#443 PR, I’ve experienced a difficulty using `datawizard::data_filter`, so I am moving the discussion here.
``` r
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
library(datawizard)
```
With the tidyverse, the recommendation is to use double curly brackets when passing a variable name as argument, e.g.,
``` r
fun.dp <- function(df, var) {
head(filter(df, {{var}} > 0.5))
}
fun.dp(mtcars, am)
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
#> Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
#> Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
#> Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
#> Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
#> Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
```
In `datawizard`, a naively copy-pasted strategy does not seem to work:
``` r
fun.dw <- function(df, var) {
head(data_filter(df, filter = {{var}} > 0.5))
}
fun.dw(mtcars, am)
#> Error in {: comparison (6) is possible only for atomic and list types
```
In any case, my needs might be more for passing a character vector. Therefore in `dplyr`, we can use the double square brackets along the `.data` argument:
``` r
fun.dp <- function(df, var) {
head(filter(df, .data[[var]] > 0.5))
}
fun.dp(mtcars, "am")
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
#> Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
#> Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
#> Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
#> Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
#> Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
```
In `datawizard`, is there any way to achieve the same result?
``` r
fun.dw <- function(df, var) {
head(data_filter(df, filter = var > 0.5))
}
fun.dw(mtcars, "am")
#> Error in var > 0.5: comparison (6) is possible only for atomic and list types
fun.dw <- function(df, var) {
head(data_filter(df, filter = deparse(substitute(var)) > 0.5))
}
fun.dw(mtcars, "am")
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> Mazda RX4 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4
#> Mazda RX4 Wag 21.0 6 160 110 3.90 2.875 17.02 0 1 4 4
#> Datsun 710 22.8 4 108 93 3.85 2.320 18.61 1 1 4 1
#> Hornet 4 Drive 21.4 6 258 110 3.08 3.215 19.44 1 0 3 1
#> Hornet Sportabout 18.7 8 360 175 3.15 3.440 17.02 0 0 3 2
#> Valiant 18.1 6 225 105 2.76 3.460 20.22 1 0 3 1
# This doesn't throw an error but doesn't filter correctly
fun.dw <- function(df, var) {
head(data_filter(df, filter = !!var > 0.5))
}
fun.dw(mtcars, "am")
#> Error in var > 0.5: comparison (6) is possible only for atomic and list types
fun.dw <- function(df, var) {
head(data_filter(df, filter = .data[[var]] > 0.5))
}
fun.dw(mtcars, "am")
#> Error:
#> ! Can't subset `.data` outside of a data mask context.
fun.dw <- function(df, var) {
head(data_filter(df, filter = !!!var > 0.5))
}
fun.dw(mtcars, "am")
#> Error in var > 0.5: comparison (6) is possible only for atomic and list types
```
Is there a way to avoid having to do this?
``` r
fun.dw <- function(df, var) {
df$x <- df[[var]]
df <- head(data_filter(df, filter = x > 0.5))
data_remove(df, "x")
}
fun.dw(mtcars, "am")
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
#> Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
#> Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
#> Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
#> Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
#> Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
```
From the documentation I saw that `data_filter` is based on `subset`, which itself has the following warning:
> This is a convenience function intended for use interactively. For programming it is better to use the standard subsetting functions like `[`, and in particular the non-standard evaluation of argument subset can have unanticipated consequences.
Is there a workaround or some way to convert from string to an unevaluated promised expression (or something like that, I don’t really know the language)?
<sup>Created on 2022-08-12 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1)</sup>
| priority | programming with datawizard data filter and character vectors in the context of my easystats performance pr i’ve experienced a difficulty using datawizard data filter so i am moving the discussion here r library dplyr attaching package dplyr the following objects are masked from package stats filter lag the following objects are masked from package base intersect setdiff setequal union library datawizard with the tidyverse the recommendation is to use double curly brackets when passing a variable name as argument e g r fun dp function df var head filter df var fun dp mtcars am mpg cyl disp hp drat wt qsec vs am gear carb mazda mazda wag datsun fiat honda civic toyota corolla in datawizard a naively copy pasted strategy does not seem to work r fun dw function df var head data filter df filter var fun dw mtcars am error in comparison is possible only for atomic and list types in any case my needs might be more for passing a character vector therefore in dplyr we can use the double square brackets along the data argument r fun dp function df var head filter df data fun dp mtcars am mpg cyl disp hp drat wt qsec vs am gear carb mazda mazda wag datsun fiat honda civic toyota corolla in datawizard is there any way to achieve the same result r fun dw function df var head data filter df filter var fun dw mtcars am error in var comparison is possible only for atomic and list types fun dw function df var head data filter df filter deparse substitute var fun dw mtcars am mpg cyl disp hp drat wt qsec vs am gear carb mazda mazda wag datsun hornet drive hornet sportabout valiant this doesn t throw an error but doesn t filter correctly fun dw function df var head data filter df filter var fun dw mtcars am error in var comparison is possible only for atomic and list types fun dw function df var head data filter df filter data fun dw mtcars am error can t subset data outside of a data mask context fun dw function df var head data filter df filter var fun dw mtcars am error in var comparison is possible only for atomic and list types is there a way to avoid having to do this r fun dw function df var df x df df data remove df x fun dw mtcars am mpg cyl disp hp drat wt qsec vs am gear carb mazda mazda wag datsun fiat honda civic toyota corolla from the documentation i saw that data filter is based on subset which itself has the following warning this is a convenience function intended for use interactively for programming it is better to use the standard subsetting functions like and in particular the non standard evaluation of argument subset can have unanticipated consequences is there a workaround or some way to convert from string to an unevaluated promised expression or something like that i don’t really know the language created on by the | 1 |
360,961 | 10,699,661,497 | IssuesEvent | 2019-10-23 21:29:01 | codes-org/codes | https://api.github.com/repos/codes-org/codes | closed | Rehost test dumpi file | low priority | The NERSC website that hosts the DoE miniapp trace files we use appears to go down any time LBNL loses power which is happening with greater frequency. When `make check` is run while the website is down, the `download-traces.sh` script in `tests/` will hang until wget times out (I haven't had the patience to find out when that is). `download-traces.sh` is run when `make check` is called when dumpi is installed with CODES.
The AMGn27 trace file that we use for `make check` should be rehosted or bundled so that a power outage due to strong winds in California doesn't break our test suite. | 1.0 | Rehost test dumpi file - The NERSC website that hosts the DoE miniapp trace files we use appears to go down any time LBNL loses power which is happening with greater frequency. When `make check` is run while the website is down, the `download-traces.sh` script in `tests/` will hang until wget times out (I haven't had the patience to find out when that is). `download-traces.sh` is run when `make check` is called when dumpi is installed with CODES.
The AMGn27 trace file that we use for `make check` should be rehosted or bundled so that a power outage due to strong winds in California doesn't break our test suite. | priority | rehost test dumpi file the nersc website that hosts the doe miniapp trace files we use appears to go down any time lbnl loses power which is happening with greater frequency when make check is run while the website is down the download traces sh script in tests will hang until wget times out i haven t had the patience to find out when that is download traces sh is run when make check is called when dumpi is installed with codes the trace file that we use for make check should be rehosted or bundled so that a power outage due to strong winds in california doesn t break our test suite | 1 |
474,315 | 13,656,650,455 | IssuesEvent | 2020-09-28 03:23:36 | discordextremelist/website | https://api.github.com/repos/discordextremelist/website | closed | Add a link to the snake score | feature request low priority | **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
No.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
Make it so that when you click on the snake score on someone's profile it redirects you to the snake leaderboard. | 1.0 | Add a link to the snake score - **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
No.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
Make it so that when you click on the snake score on someone's profile it redirects you to the snake leaderboard. | priority | add a link to the snake score is your feature request related to a problem please describe a clear and concise description of what the problem is ex i m always frustrated when no describe the solution you d like a clear and concise description of what you want to happen make it so that when you click on the snake score on someone s profile it redirects you to the snake leaderboard | 1 |
831,260 | 32,043,104,625 | IssuesEvent | 2023-09-22 21:19:51 | pilosus/piny | https://api.github.com/repos/pilosus/piny | closed | Add voluptuous validation library support | enhancement help wanted good first issue priority: low | We should support [voluptuous](https://github.com/alecthomas/voluptuous) 1.4k+ stars validation library.
See existing [validators](https://github.com/pilosus/piny/blob/master/piny/validators.py). | 1.0 | Add voluptuous validation library support - We should support [voluptuous](https://github.com/alecthomas/voluptuous) 1.4k+ stars validation library.
See existing [validators](https://github.com/pilosus/piny/blob/master/piny/validators.py). | priority | add voluptuous validation library support we should support stars validation library see existing | 1 |
542,403 | 15,859,615,437 | IssuesEvent | 2021-04-08 08:13:42 | code4moldova/voluntar-web | https://api.github.com/repos/code4moldova/voluntar-web | closed | [volunteer] add history demands | Complexity: Low 👶 Priority: Low | use the same component like in beneficiary details, instead of bid filter use vid

| 1.0 | [volunteer] add history demands - use the same component like in beneficiary details, instead of bid filter use vid

| priority | add history demands use the same component like in beneficiary details instead of bid filter use vid | 1 |
516,174 | 14,976,471,473 | IssuesEvent | 2021-01-28 08:06:48 | minio/mc | https://api.github.com/repos/minio/mc | closed | Feature request: command `url` for quickly getting the public url of a file | community priority: low | would be nice to have a feature to get the url for a given file.
`mc url myserver/mybucket/path/foo.txt` -> `https://example.com/mybucket/path/file.txt` for easy sharing public files on the command line.
would maybe require a server config to define the external domain of minio
edit:
handy would also be a url flag for other commands
```
mc cp ssl-cert-check myserver/public --url
ssl-cert-check: 33.68 KiB / 33.68 KiB [===============================] 167.55 KiB/s 0s
https://minio.example.com/public/ssl-cert-check
``` | 1.0 | Feature request: command `url` for quickly getting the public url of a file - would be nice to have a feature to get the url for a given file.
`mc url myserver/mybucket/path/foo.txt` -> `https://example.com/mybucket/path/file.txt` for easy sharing public files on the command line.
would maybe require a server config to define the external domain of minio
edit:
handy would also be a url flag for other commands
```
mc cp ssl-cert-check myserver/public --url
ssl-cert-check: 33.68 KiB / 33.68 KiB [===============================] 167.55 KiB/s 0s
https://minio.example.com/public/ssl-cert-check
``` | priority | feature request command url for quickly getting the public url of a file would be nice to have a feature to get the url for a given file mc url myserver mybucket path foo txt for easy sharing public files on the command line would maybe require a server config to define the external domain of minio edit handy would also be a url flag for other commands mc cp ssl cert check myserver public url ssl cert check kib kib kib s | 1 |
752,442 | 26,285,727,592 | IssuesEvent | 2023-01-07 20:16:35 | NucciTheBoss/cleantest | https://api.github.com/repos/NucciTheBoss/cleantest | opened | Use `ephemeral` from LXD API rather than manually stopping and deleting instances | Priority: Low Type: Refactor | Working towards multi-distribution support in `cleantest`, I delved more into the internals of the LXD REST API (mostly because I love LXD so much). During my research, I discovered the the LXD API supports an _ephemeral_ option; when set to true, the instance is deleted after shutdown.
Using the _ephemeral_ option would be better than how I am currently tearing down the instance - by manually issuing a synchronous command to shutdown and then delete the instance:
https://github.com/NucciTheBoss/cleantest/blob/ed400422496ca0d2db8edc3623b6c4f71adb6e50/src/cleantest/provider/_handler/lxd_handler.py#L123-L131
TL;DR figure out the feasibility of injecting _ephemeral_ into the source configuration rather than manually stopping and deleting the instance.
### Extra resources
* [Create Instance section of the LXD REST API documentation](https://linuxcontainers.org/lxd/docs/master/api/#/instances/instances_post). | 1.0 | Use `ephemeral` from LXD API rather than manually stopping and deleting instances - Working towards multi-distribution support in `cleantest`, I delved more into the internals of the LXD REST API (mostly because I love LXD so much). During my research, I discovered the the LXD API supports an _ephemeral_ option; when set to true, the instance is deleted after shutdown.
Using the _ephemeral_ option would be better than how I am currently tearing down the instance - by manually issuing a synchronous command to shutdown and then delete the instance:
https://github.com/NucciTheBoss/cleantest/blob/ed400422496ca0d2db8edc3623b6c4f71adb6e50/src/cleantest/provider/_handler/lxd_handler.py#L123-L131
TL;DR figure out the feasibility of injecting _ephemeral_ into the source configuration rather than manually stopping and deleting the instance.
### Extra resources
* [Create Instance section of the LXD REST API documentation](https://linuxcontainers.org/lxd/docs/master/api/#/instances/instances_post). | priority | use ephemeral from lxd api rather than manually stopping and deleting instances working towards multi distribution support in cleantest i delved more into the internals of the lxd rest api mostly because i love lxd so much during my research i discovered the the lxd api supports an ephemeral option when set to true the instance is deleted after shutdown using the ephemeral option would be better than how i am currently tearing down the instance by manually issuing a synchronous command to shutdown and then delete the instance tl dr figure out the feasibility of injecting ephemeral into the source configuration rather than manually stopping and deleting the instance extra resources | 1 |
391,740 | 11,578,078,424 | IssuesEvent | 2020-02-21 15:18:10 | 52North/wps-js | https://api.github.com/repos/52North/wps-js | closed | Allow file upload for complex inputs | enhancement priority low | For inputs such as shape files it would be great if wps-js can provide a file upload form, i.e. an area where a user can drag and drop a zipped shape file.
| 1.0 | Allow file upload for complex inputs - For inputs such as shape files it would be great if wps-js can provide a file upload form, i.e. an area where a user can drag and drop a zipped shape file.
| priority | allow file upload for complex inputs for inputs such as shape files it would be great if wps js can provide a file upload form i e an area where a user can drag and drop a zipped shape file | 1 |
1,023 | 2,506,885,678 | IssuesEvent | 2015-01-12 14:43:05 | ukwa/w3act | https://api.github.com/repos/ukwa/w3act | closed | Incorrect display of number of targets | bug Low Priority | The following filtered query for targets should almost certainly produce zero results (which is what happens in the list), but it still shows "Displaying 31 of 30"
http://www.webarchive.org.uk/actdev/targets/list?p=3&s=title&curatorId=37&organisationId=6&collections=2&licenseId=-1&flagId=293 | 1.0 | Incorrect display of number of targets - The following filtered query for targets should almost certainly produce zero results (which is what happens in the list), but it still shows "Displaying 31 of 30"
http://www.webarchive.org.uk/actdev/targets/list?p=3&s=title&curatorId=37&organisationId=6&collections=2&licenseId=-1&flagId=293 | priority | incorrect display of number of targets the following filtered query for targets should almost certainly produce zero results which is what happens in the list but it still shows displaying of | 1 |
824,996 | 31,238,708,381 | IssuesEvent | 2023-08-20 15:41:20 | acgc99/Godot-Widgets | https://api.github.com/repos/acgc99/Godot-Widgets | opened | Since `Card` was introduced: Can't save resource to empty path. Provide non-empty path or a Resource with non-empty resource_path | bug priority: low | This error appears every time a scene with a `Card` is loaded. I think it is related to the `Shader` resource, because it didn't happen until I added it. | 1.0 | Since `Card` was introduced: Can't save resource to empty path. Provide non-empty path or a Resource with non-empty resource_path - This error appears every time a scene with a `Card` is loaded. I think it is related to the `Shader` resource, because it didn't happen until I added it. | priority | since card was introduced can t save resource to empty path provide non empty path or a resource with non empty resource path this error appears every time a scene with a card is loaded i think it is related to the shader resource because it didn t happen until i added it | 1 |
2,043 | 2,522,946,855 | IssuesEvent | 2015-01-20 04:24:08 | project8/dripline | https://api.github.com/repos/project8/dripline | opened | There are lots of TODO entries in the codebase | low_priority | Ideally they should all be done. If not done they should be removed from the source and places as issues here.... we should put all of the planning in one place. Also I maybe just like having this issue for low-hanging fruit when I get stuck. | 1.0 | There are lots of TODO entries in the codebase - Ideally they should all be done. If not done they should be removed from the source and places as issues here.... we should put all of the planning in one place. Also I maybe just like having this issue for low-hanging fruit when I get stuck. | priority | there are lots of todo entries in the codebase ideally they should all be done if not done they should be removed from the source and places as issues here we should put all of the planning in one place also i maybe just like having this issue for low hanging fruit when i get stuck | 1 |
63,705 | 3,197,701,991 | IssuesEvent | 2015-10-01 07:31:05 | cogciprocate/bismit | https://api.github.com/repos/cogciprocate/bismit | closed | Parse area and region parameters rather than hard coding | essential feature priority low | Yaml will be easier for humans to parse than JSON, so we'll probably go with the the yaml_rust library (or whichever other library becomes fashionable -- will have to evaluate) to parse our yaml file containing the basic region and area params. This will provide the immediate benefit of not having to recompile (even though we've got compile times down pretty low) every time a change is made to those settings.
| 1.0 | Parse area and region parameters rather than hard coding - Yaml will be easier for humans to parse than JSON, so we'll probably go with the the yaml_rust library (or whichever other library becomes fashionable -- will have to evaluate) to parse our yaml file containing the basic region and area params. This will provide the immediate benefit of not having to recompile (even though we've got compile times down pretty low) every time a change is made to those settings.
| priority | parse area and region parameters rather than hard coding yaml will be easier for humans to parse than json so we ll probably go with the the yaml rust library or whichever other library becomes fashionable will have to evaluate to parse our yaml file containing the basic region and area params this will provide the immediate benefit of not having to recompile even though we ve got compile times down pretty low every time a change is made to those settings | 1 |
15,837 | 2,611,517,513 | IssuesEvent | 2015-02-27 05:52:13 | chrsmith/hedgewars | https://api.github.com/repos/chrsmith/hedgewars | opened | allow building engine as library | auto-migrated Priority-Low Type-Enhancement | ```
the work is almost done but it needs a lot of testing
right now you enable this mode with -DBUILD_ENGINE_LIBRARY but maybe we can
find a shorter flag?
also need to check it compiles everywhere, last time we spoke of this maybe bsd
needed some care
```
Original issue reported on code.google.com by `vittorio...@gmail.com` on 13 Apr 2013 at 5:19 | 1.0 | allow building engine as library - ```
the work is almost done but it needs a lot of testing
right now you enable this mode with -DBUILD_ENGINE_LIBRARY but maybe we can
find a shorter flag?
also need to check it compiles everywhere, last time we spoke of this maybe bsd
needed some care
```
Original issue reported on code.google.com by `vittorio...@gmail.com` on 13 Apr 2013 at 5:19 | priority | allow building engine as library the work is almost done but it needs a lot of testing right now you enable this mode with dbuild engine library but maybe we can find a shorter flag also need to check it compiles everywhere last time we spoke of this maybe bsd needed some care original issue reported on code google com by vittorio gmail com on apr at | 1 |
752,975 | 26,335,497,056 | IssuesEvent | 2023-01-10 14:03:59 | tlienart/Franklin.jl | https://api.github.com/repos/tlienart/Franklin.jl | closed | [BUG] Franklin Ignoring Slug and Creating Custom Path for Page | bug low-priority md-def has-workaround | # Background
Hey Franklin folks, I am having the most curious of errors. For the past half year, I have used the following structure for my website:
```sh
404.md # 404 Page
__site # Generated during preview
_assets # Any additional assets I need for my post
_css # CSS Styling
_layout # Layout
_libs # Autogenerated libs
_rss # Autogenerated RSS info
archive.md # Page of my site
blog.md # Page of my site
config.md # Configuration of Franklin site
index.md # Landing page of site
Manifest.toml # Julia file
node_modules # Auto-generated node files for website
notes # Directory where I keep all my posts
Project.toml # Julia file
resources.md # Page of my site
scripts # Julia scripts to run separately on my site
search.md # Page of my site
utils.jl # Site functions to be used by Franklin
```
It has worked perfectly fine with all my content pages being hosted in the `notes/` directory. What I am able to do is generate links to all my content pages on the blog and archive pages that someone can then browse (here is a link to how it looks live: https://jacobzelko.com/archive/ -- if you click on a link, as you can see it'll take you to a page correctly). If I were to visit the page for the post "The Structure of Scientific Revolutions", I can access it here: https://jacobzelko.com/05152022174848-structure-revolutions/ The associated Franklin Markdown file looks like this:
```markdown
@def title = "The Structure of Scientific Revolutions"
@def slug = "05152022174848-structure-revolutions"
@def tags = ["book", "blog", "outline", "review", "normal", "science", "paradigm", "shift", "revolution", "science", "philosophy", "crisis", "archive"]
@def description = "A book review of Thomas Kuhn's most famous book that challenged all of the philosophy of science and introduced such concepts as normal science, paradigm shift, why non-scientific fields struggle with similar revolutions, and when one can adopt new paradigms."
@def rss_title = "The Structure of Scientific Revolutions"
@def rss_description = "A book review of Thomas Kuhn's most famous book that challenged all of the philosophy of science and introduced such concepts as normal science, paradigm shift, why non-scientific fields struggle with similar revolutions, and when one can adopt new paradigms."
@def rss_pubdate = Date(2022, 5, 15)
The Structure of Scientific Revolutions
=========
**Date:** May 15 2022
**Summary:** A book review of Thomas Kuhn's most famous book that challenged all of the philosophy of science and introduced such concepts as normal science, paradigm shift, why non-scientific fields struggle with similar revolutions, and when one can adopt new paradigms.
**Keywords:** ##book ##blog ##outline #review #normal #science #paradigm #shift #revolution #science #philosophy #crisis #archive
Bibliography
==========
T. S. Kuhn and I. Hacking, The Structure of Scientific Revolutions, Fourth edition. Chicago; London: The University of Chicago Press, 2012.
Table of Contents
=========
\toc
### Introduction
This book has had an immense impact in the world of science. From how science is taught to how science is thought about, Kuhn's notions of scientific revolution resonated across nearly all domains of science as well as touching into the arts. The central conceit that Kuhn stated in this book is that the scientific community knows what the world is like. I was recommended this book by my friend, collaborator, and Category Theorist, [Professor James P. Fairbanks](/https://www.jpfairbanks.com/) I can see why it was recommended as it fits in quite nicely to the ensuing philosophical ideas found in [Category Theory](/11082021041951-category-theory-scientists.md).
### What Is *Normal Science*?
[Note for atomic concept](/05222022044134-normal-science.md)
According to Kuhn, *normal science*, is research based on past scientific accomplishments that are considered the foundation for that area of investigation. Generally, this is the area where most scientists spend their time. The research done in normal science can be theoretical or empirical.
In the book, Kuhn referred to this as "mop-up work" and that this mopping up or "filling out" of science is what most scientists do. Although language such as "mop-up" work can make one think that Kuhn was being pejorative to these so-called "scut scientists", he did not intend it so. In later versions of this book, he made a response to this point of confusion and clarified that this work still is fascinating and crucial in many ways to the advancement of science.
#### What Are the Characteristics of Normal Science?
An important aspect of normal science is that it does not engage with or seek out anything new. The invention of theories, development of new phenomena - anything abnormal - is not part of normal science. Novelty is abhorrent and antithetical to normal science.
Aside from this fundamental aspect of normal science, Kuhn posited that there are three general areas of research in normal science. He emphasized that they do not always hold or are always discrete from one another:
1. Investigating questions around the fundamental facts found in a specific domain.
2. Questions that are predicted and expected to have answers existing within an already existing research domain.
3. Further articulating the fundamental facts held in a given domain.
### What Was Kuhn's Concept of a Paradigm?
[Note for atomic concept](/05222022044626-kuhnian-paradigm.md)
Kuhn reintroduced into the modern English lexicon the word, "paradigm". Before his time, the term was rather archaic. A paradigm is the background through which normal science is conducted loosely speaking. Another way of thinking about it is from online user *heynonnynonnie* suggesting that a paradigm is a consensus agreed upon by a group of practitioners of a field.
#### What Are the Characteristics of a Paradigm?
When he used the word, as Kuhn admitted himself, he overloaded the term to mean quite a number of things. To my understanding, this was my gist of a Kuhnian paradigm in that paradigms generally have two core characteristics:
1. Unprecedented and can sustain practitioners
2. Open-ended and with problems to be solved or investigated
Endemic to paradigms is that they posit theories around a domain of research. For a paradigm to be accepted, it must propose a better theory than its predecessors or competitors. Furthermore, a proposed new paradigm is not required to address every fact of the world.
#### What Are the Benefits of Choosing a Paradigm?
When a domain decides upon a paradigm, avenues of research can now be readily scoped. By presupposing paradigm, questions can now be posed within the context of the paradigm. In accordance to the paradigm, it can be reasonably assumed that solutions can be found.
A benefit that did not immediately appear to me was the insulating properties of a paradigm. An example that Kuhn suggested is that in the social sciences, one has to frame an avenue of research by its importance to society (such as studying racial discrimination, etc.). Problems such as these are notoriously difficult to frame and reach a quorum consensus on due to possibly many competing schools of thought or groups. Instead, by keeping a conversation limited to the adherents of a specific paradigm, a researcher can easily keep moving forward through problems without having to strive against competing schools of thought. Furthermore, the insulating power of a paradigms gives a researcher the ability to solely focus on problems they think they can solve or are solvable.
I will admit, his example of social scientists was at first confusing. But, upon reflection, what made this example make sense is that he later explained his decision to have this as an example due to the fact that there are often many competing paradigms in these areas. This conflict makes progress difficult as many people still argue the fundamentals of these sciences.
### What Causes the Downfall of a Paradigm?
[Note on atomic concept](/05222022044910-downfall-kuhnian-paradigm.md)
Normal science certainly is clear, safe, and predictable. But, what if a scientist finds results that do not fit within a paradigm? What if a result, ruling out all possible errors carried forth by a highly scrupulous researcher, is simply unexplainable - an anomaly against the backdrop of a paradigm? To Kuhn, this marks an important inflection point in adopted paradigms.
Novelty in science only emerges with resistance and difficulty because any, as Kuhn wisely points out, researchers who investigate every anomaly will not get much done. But at some point, these anomalies will continue to accumulate to the point of being unignorable to adherents of a paradigm. A sort of malcontent will arise adherents and to [quote Sherlock Holmes, "When you have eliminated the impossible, whatever remains, however improbable, must be the truth."](/07222020181007-famous-quotes.md) And that truth is that an accepted paradigm is no longer sufficient to explain a domain which leads to a period of significant upheaval.
Kuhn characterized the downfall of a paradigm in three generic ways:
1. Awareness of anomaly
2. Further recognition of awareness
3. Contested possible change or challenge to the existing paradigm
#### What Happens When a Paradigm Is in Crisis?
When the anomalies are fully unconscionable, they are finally acknowledged and, to quote Kuhn:
> "Discovery commences with [...] awareness of anomaly"
The previous paradigm prepared an adherent on how to detect an anomaly and in a way, set up its own downfall. At this stage of upheaval, many will attempt to explain or address the anomalous behavior. A new era of discovery in the face of a failing paradigm marks this interstitial period of an outdated paradigm where many speculative and unarticulated theories abound - often at odds with one another in some way. The previous paradigm's rules become hazy and the rules of normal research begin to veer away from its typical, standard process.
#### Extraordinary Problems
This problem leads normal science into a rather interesting process of science called "extraordinary science". Extraordinary science is an offshoot of normal science that exists when a paradigm is in crisis and to address the paradigm in crisis. It is the science that either repairs, questions, or proves the deficiency of an existing paradigm. Important to note about extraordinary science is that they are never known at the outset of a paradigm but only after advanced normal research in the context of a given paradigm.
### "Scientific Revolutions" and the Term "Revolution"
[Note on atomic concept](/05222022045723-scientific-revolutions.md)
According to Kuhn, these crises are the requirements for a new paradigm to come forth. This leads to extraordinary science as this episode in a paradigm's life is extraordinary that causes a basic shift in how science is even conducted. This period, coined by Kuhn, is called a "Scientific Revolution".
Kuhn was very particular in invoking the term "revolution". He related the phrase "scientific revolution" analogously to a political revolution. In the same way that a political revolution is often fomented when a political body fails to serve adequately the growing body of its populace, so too are the grounds set for a scientific revolution.
Although a paradigm may shift how one does science, the world itself does not change. Rather, the way we view and operate in the world does. For the adoptees of a new paradigm, the adoptee must say something to the effect of "I once understood X to be Y, but I was mistaken" and in doing so admit a form of error in looking at reality.
### Invoking New Paradigms on Faith
[Note on atomic concept](/05222022045931-new-paradigms.md)
A problem inherit to the development of new paradigms is that to adopt these new paradigms is most certainly an act of faith. Early adherents to a new paradigm must stand against the onslaught of problems that were solved or addressed by a previous paradigm. They must simply have hope and faith that this new paradigm they have adopted will succeed in the areas where the previous paradigm failed. As Kuhn said:
> "A decision of that kind can only be made on faith"
Even when this new paradigm is able to successfully surmount longstanding problems, Kuhn says that even still a vast majority of scientists will be apprehensive to adopt this paradigm. Why? Kuhn observed that two conditions must be met for further adoption:
1. The new paradigm must solve outstanding problems that the prior paradigm could not.
2. Much of the problem solving tools from previous paradigms should still be able to be used in this new paradigm.
In this sense, there is a type of verification or vetting of a new paradigm – an analogy to natural selection as Kuhn pointed out. For a new paradigm to be successful, not only must it address all problems hitherto encountered by prior paradigms, but be able to solve outstanding problems prior paradigms could not and the barrier to adopting this new paradigm must be minimal. "No theory ever solves all [...] puzzles with which it is confronted at a given time; nor are the solutions already achieved often perfect," is a fitting bookend from Kuhn to remember when encountering new paradigms.
One small final footnote on new paradigms is an observation by Kuhn: the invention of a paradigm most generally comes from someone very young or new to the field where a paradigm exists that they are trying to change.
### On the Non-Linearity of Science
[Note on atomic concept](/05222022050357-non-linearity-science.md)
One thing out of this book is that I very much appreciated and agreed with Kuhn's notion that science is not linear nor is it necessarily the result of a universal truth being uncovered. Rather, it is the confluence of emerging theories that evolve and find they can fit with other theories or paradigms. These newly combined theories then come together to possibly overturn or change the understanding of currently practiced science.
This fallacious notion of linear knowledge going to a particular truth about the world is based in part on science historians and textbook makers. As textbooks are designed to assist students in learning as much material as possible, the teacher with the textbook maker chooses to formulate a textbook around one particular area of knowledge thereby giving a sense of progress to a domain's particular truth. As science does not deal with all possible experiments but only those which are doable according to an existing paradigm, so too a textbook must be very judicious in what it presents to a student from its paradigm.
### Additional Notes
As I wrap up this review of *The Structure of Scientific Revolutions*, here are some additional notes that didn't quite fit in the overall review. I did still find these pertinent as well as helpful in expanding thoughts about paradigms.
#### Paradigm Shifts in Other Domains
Outside of Science, Technology, Engineering, and Mathematics, Kuhn's notion of paradigm shifts do occur. Such a paradigm shift based on Kuhn's writings in an area such as the social sciences could be - and I am making an educated guess here - something akin to the near modern universal condemnation and outlawing of slavery. However, to this end Kuhn posited that unlike the other natural sciences, there still exist competing schools of thought. A visceral modern example is that social scientists also have to defend their choice of a research problem such as examining race in the context of the [social determinants of health](/07112020161337-social-determinants-health.md) where other existing schools of thought may fiercely disagree on the validity of such endeavors.
Furthermore, Kuhn gave the great example that, "the man who argues that philosophy [...] has made no progress emphasizes that there are still Aristotelians, not that Aristotelianism has failed to progress," I am in agreement with Kuhn in that it is not that schools of thought outside Science, Technology, Engineering, and Mathematics are not making progress. It is that their are much more fundamental conflicts in these spaces that have yet to be reconciled in sufficient ways.
In an online group discussion, the user *ish-i-ness* furthered this idea to the arts that, "that in the arts you could even say that there is a desire to discover an aesthetic truth, something that is indisputably, objectively beautiful and thought provoking, rather than just a fad that is only interesting because it’s appeals to a particular, subjective set of preferences." Here, *ish-i-ness* invokes this notion of aesthetic truth which is associated with Theodore Adorno.
#### Non-Kuhnian Revolutions or Domain Transformations
In an online group discussion, the user *heynonnynonnie*, made a great point that non-Kuhnian scientific revolutions happen more frequently than the bigger Kuhnian scientific revolutions (such as the heliocentric versus geocentric theory, etc.). As these are much smaller scale revolutions and do not affect the entirety of science, I call these "domain transformations" as they transform or affect a particular domain's way of operating but not the rest of science as a whole. *heynonnynonnie* gave the example that the discovery of the DNA structure, though fantastic and a major discovery, provided only pure information that fit within the preexisting paradigms.
### Conclusion
I thought this book was well done and also worth this lengthy analysis. It provided context to a lot of ideas that were born from the notions Kuhn coined here. For me, it felt like giving me a bit more of a better foundation to understand better how to operate in domains. Even if this piece is labeled more as a philosophy of science piece, it could easily also be considered a sociological exploration of academia as a whole. I recommend the read, but also, not to take the notions as literally or seriously as possible. Kuhn himself suggested that as he later would get inundated with letters saying that there was a revolution happening because of X - help me. As judicious as Kuhn was in using the term revolution, we too must be careful to recognize when a revolution or paradigm shift is occurring.
## References
## Discussion:
{{ addcomments }}
```
Everything is rendered properly and the page is created with the appropriate slug. Looking within `__site`, I can see a folder named after its slug with an expected index.html.
# Problem
Suddenly, Franklin seems to be failing for this particular page I added to my `notes` directory:
```markdown
@def title = "Achieving an Undergraduate Level Understanding of Graph Theory "
@def slug = "01012023000122-graph-theory-learning"
@def tags = ["zettel", "ultralearning", "graph", "theory", "project", "archive", "blog"]
@def description = "Ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory."
@def rss_title = "Achieving an Undergraduate Level Understanding of Graph Theory "
@def rss_description = "Ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory."
@def rss_pubdate = Date(2022, 12, 31)
Achieving an Undergraduate Level Understanding of Graph Theory
=========
**Date:** December 31 2022
**Summary:** Ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory.
**Keywords:** #zettel #ultralearning #graph #theory #project #archive #blog
Bibliography
==========
Not Available
Table of Contents
=========
\toc
### Motivation
I have always found graph theory interesting ever since I was exposed to it back in my undergraduate studies at Georgia Tech. I found out about it through SIR Modeling but personally found the structure of graphs far more fascinating than its application to SIR models. Furthermore, as I intend to be pursuing graduate studies in applied mathematics, why not get started with trying to understand it?
### Project Goals
This process is adapted from the [Ultralearning framework posited by Scott Young](/07082020163004-ultralearning.md).
#### What Am I Doing?
Gain an undergraduate level of understanding of graph theory on par with maths and computer science students.
##### Core Concepts
* Basic concepts:
* Definition of a graph and its components:
* Understand the components of a graph and the differences between directed and undirected graphs.
* Subgraphs and isomorphism:
* Understand the definitions of subgraphs and isomorphism and be able to identify and compare them in a given graph.
* Directed graphs:
* Understand the definition of a directed graph and be able to represent it using adjacency and incidence matrices.
* Graphs and their properties:
* Understand various properties of graphs and be able to apply them to analyze and classify different types of graphs.
* Connectivity:
* Paths and circuits:
* Understand the definitions of paths and circuits and be able to identify and construct them in a given graph.
* Connectedness and components:
* Understand the concept of connectedness and be able to determine whether a graph is connected or disconnected.
* Understand the concept of graph components and be able to identify them in a given graph.
* Distance in graphs:
* Understand the concept of distance between vertices and be able to compute it using various measures.
* Trees:
* Trees and their properties:
* Understand the definition of a tree and be able to identify and distinguish trees from other types of graphs.
* Rooted trees and binary trees:
* Understand the concept of rooted trees and be able to construct and manipulate them.
* Understand the concept of binary trees and be able to construct and manipulate them.
* Spanning trees
* Matrix representations of graphs:
* Adjacency matrices:
* Understand the concept of an adjacency matrix and be able to represent a graph using an adjacency matrix.
* Incidence matrices:
* Understand the concept of an incidence matrix and be able to represent a graph using an incidence matrix.
* Graph algorithms:
* Breadth-first search:
* Understand the concept of breadth-first search and be able to implement it to traverse a graph.
* Depth-first search:
* Understand the concept of depth-first search and be able to implement it to traverse a graph.
* Planar graphs:
* Planar graphs and their properties:
* Understand the definition of a planar graph and the properties that distinguish planar graphs from other types of graphs.
* Euler's formula:
* Understand Euler's formula and be able to apply it to analyze the structure of planar graphs.
* Dual graphs:
* Understand the concept of a dual graph and be able to construct the dual of a given planar graph.
* Coloring graphs:
* Vertex coloring:
* Understand the concept of vertex coloring and be able to color the vertices of a given graph according to various coloring schemes.
* Edge coloring:
* Understand the concept of edge coloring and be able to color the edges of a given graph according to various coloring schemes.
* Matchings and factors:
* Matchings:
* Understand the concept of a matching in a graph and be able to identify and construct matchings in a given graph.
* Factors:
* Understand the concept of a factor in a graph and be able to identify and construct factors in a given graph.
* More advanced topics:
* Hamiltonian cycles:
* Understand the concept of a Hamiltonian cycle and be able to identify and construct Hamiltonian cycles in a given graph.
* Network flows:
* Understand the concept of network flows and be able to model and analyze flow problems in graphs.
* Graphs and groups:
* Understand the connection between graphs and group theory, and be able to apply group-theoretic techniques to analyze graphs.
* Graphs and logic:
* Understand the connection between graphs and logic, and be able to apply logical techniques to analyze graphs.
* Graphs and geometry:
* Understand the connection between graphs and geometry, and be able to apply geometric techniques to analyze graphs.
##### Facts
* Definition of a graph and its components:
* Vertices (also called nodes).
* Edges.
* Weights.
* Labels.
* Subgraphs and isomorphism.
* Directed graphs and their representations:
* Adjacency matrices.
* Incidence matrices.
* Graph properties:
* Connected/disconnected.
* Bipartite/not bipartite.
* Cyclic/acyclic.
* Paths and circuits.
* Connectedness and components.
* Distance between vertices.
* Trees:
* Definition.
* Unique path between vertices.
* Root vertex.
* Branches.
* Additional topics:
* Matrix representations:
* Adjacency matrices.
* Incidence matrices.
* Graph algorithms:
* Breadth-first search.
* Depth-first search.
* Planar graphs and their properties:
* Definition of a planar graph.
* Properties that distinguish planar graphs from other types of graphs.
* Euler's formula.
* Dual graphs.
* Tree properties:
* Rooted trees.
* Binary trees.
##### Procedures
1. Representing graphs using different notations (e.g. adjacency lists, adjacency matrices, incidence matrices).
2. Traversing graphs using different algorithms (e.g. breadth-first search, depth-first search).
3. Analyzing the properties of graphs (e.g. connectedness, bipartiteness, acyclicity).
4. Finding paths and circuits in graphs.
5. Identifying and constructing different types of trees (e.g. rooted trees, binary trees).
6. Coloring the vertices or edges of a graph according to various coloring schemes (e.g. vertex coloring, edge coloring).
7. Finding matchings and factors in graphs.
8. Identifying and constructing Hamiltonian cycles in graphs.
9. Modeling and analyzing flow problems in graphs using network flows.
10. Applying group-theoretic and logical techniques to analyze graphs.
11. Applying geometric techniques to analyze graphs.
### Roadmap
This is based on the Meta Learning step Young described as well as some additional tweaks of my own:
* **Outcomes:** The knowledge and abilities you’ll need to acquire for success.
* **Rationale:** Know exactly why you want to learn a skill or subject.
* **Resources:** The resources you’ll use when learning.
* **Done:** If this task has been completed (X) or not yet (cell is empty)
| Done | Topic | Resources | Outcomes |
| ----:| ----------------------------------------:| ---------:| ---------------------------------------------------------------------:|
| | Definition of a graph and its components | [1, 2] | Graph components; differences between directed and undirected graphs |
| | Subgraphs and isomorphism | [1, 2] | Subgraphs; isomorphism; identify and compare given graphs |
| | Directed graphs | [1] | Directed graph; representation using adjacency and incidence matrices |
| | Graphs and their properties | [1, 2] | Properties of graphs; analyze; classify different types of graphs |
| | Paths and circuits | [1, 2] | Paths and circuits; identify and construct given graph |
| | Connectedness and components | [1] | Determine if graph is connected; identify graph components |
| | Distance in graphs | [1, 2] | Vertex distances; compute vertex distances |
| | Trees and their properties | [1, 2] | Tree definitions; identify trees; distinguish trees |
| | Rooted trees and binary trees | [1, 2] | Rooted trees; construct and manipulate rooted trees |
| | Adjacency matrices | [1] | Adjacency matrix concept; representation of adjacency matrix |
| | Incidence matrices | [1] | Incidence matrix concept; representation of incidence graphs |
| | Breadth-first search | [1, 2] | Breadth-first search concept; graph traversal |
| | Depth-first search | [1, 2] | Depth-first search concept; graph traversal |
| | Planar graphs and their properties | [1] | Planar graph definition; properties |
| | Euler's formula | [1, 2] | Euler's formula; structure of planar graphs |
| | Dual graphs | [1] | Dual graph concept; construction of dual graph |
| | Vertex coloring | [1, 2] | Vertex coloring concept; coloring of graph vertices |
| | Edge coloring | [1, 2] | Edge coloring concept; coloring of graph edges |
| | Matchings | [1, 2] | Matching concept; identification and construction |
| | Factors | [1] | Factor concept; identification and construction |
| | Hamiltonian cycles | [1, 2] | Hamiltonian cycle concept; identification and construction |
| | Network flows | [1] | Network flow concept; modeling and analysis |
| | Graphs and groups | [2] | Graph and group theory connection; analysis |
| | Graphs and logic | [2] | Graph and logic connection; analysis |
| | Graphs and geometry | [2] | Graph and geometry connection; analysis |
#### Explanations
These are the explanations and information about each column in this roadmap:
* **Outcomes:** The knowledge and abilities I’ll acquire for success.
* **Rationale:** The rationale is the same across every topic: to gain a basic and fundamental understanding of graph theory
* **Resources:** The resources I'll use are as follows:
* [1] R. Trudeau, Introduction to Graph Theory, Dover. DOVER PUBLICATIONS, INC., 1994.
* [2] N. Hartsfield and Ringel, Pearls in Graph Theory A Comprehensive Introduction. DOVER PUBLICATIONS, INC., 1994.
* **Done:** If this task has been completed (X) or not yet (cell is empty)
## References:
[1] R. Trudeau, Introduction to Graph Theory, Dover. DOVER PUBLICATIONS, INC., 1994.
[2] N. Hartsfield and Ringel, Pearls in Graph Theory A Comprehensive Introduction. DOVER PUBLICATIONS, INC., 1994.
## Discussion:
{{ addcomments }}
```
I have nearly 250 notes published from the notes directory, but all are rendering correctly except this one. At first, I thought this note wasn't rendering correctly at all, but I discovered Franklin is for some reason treating this page differently than the rest. It seems to be ignoring the `@def slug` setting and creating the page at `https://jacobzelko.com/notes/01012023000122-graph-theory-learning/` instead of `https://jacobzelko.com/01012023000122-graph-theory-learning/`
Plus, the Franklin content is not rendering properly when I visit the page (however the rest of the markdown looks right still):

# Questions
What am I doing wrong here? It was working well for everything else but is now failing for this one page. I am so confused as I do not know how to fix the pathing issue.
Thanks!
# Additional information
Julia: 1.8
Franklin: 0.10.79
NodeJS: 1.3.0 | 1.0 | [BUG] Franklin Ignoring Slug and Creating Custom Path for Page - # Background
Hey Franklin folks, I am having the most curious of errors. For the past half year, I have used the following structure for my website:
```sh
404.md # 404 Page
__site # Generated during preview
_assets # Any additional assets I need for my post
_css # CSS Styling
_layout # Layout
_libs # Autogenerated libs
_rss # Autogenerated RSS info
archive.md # Page of my site
blog.md # Page of my site
config.md # Configuration of Franklin site
index.md # Landing page of site
Manifest.toml # Julia file
node_modules # Auto-generated node files for website
notes # Directory where I keep all my posts
Project.toml # Julia file
resources.md # Page of my site
scripts # Julia scripts to run separately on my site
search.md # Page of my site
utils.jl # Site functions to be used by Franklin
```
It has worked perfectly fine with all my content pages being hosted in the `notes/` directory. What I am able to do is generate links to all my content pages on the blog and archive pages that someone can then browse (here is a link to how it looks live: https://jacobzelko.com/archive/ -- if you click on a link, as you can see it'll take you to a page correctly). If I were to visit the page for the post "The Structure of Scientific Revolutions", I can access it here: https://jacobzelko.com/05152022174848-structure-revolutions/ The associated Franklin Markdown file looks like this:
```markdown
@def title = "The Structure of Scientific Revolutions"
@def slug = "05152022174848-structure-revolutions"
@def tags = ["book", "blog", "outline", "review", "normal", "science", "paradigm", "shift", "revolution", "science", "philosophy", "crisis", "archive"]
@def description = "A book review of Thomas Kuhn's most famous book that challenged all of the philosophy of science and introduced such concepts as normal science, paradigm shift, why non-scientific fields struggle with similar revolutions, and when one can adopt new paradigms."
@def rss_title = "The Structure of Scientific Revolutions"
@def rss_description = "A book review of Thomas Kuhn's most famous book that challenged all of the philosophy of science and introduced such concepts as normal science, paradigm shift, why non-scientific fields struggle with similar revolutions, and when one can adopt new paradigms."
@def rss_pubdate = Date(2022, 5, 15)
The Structure of Scientific Revolutions
=========
**Date:** May 15 2022
**Summary:** A book review of Thomas Kuhn's most famous book that challenged all of the philosophy of science and introduced such concepts as normal science, paradigm shift, why non-scientific fields struggle with similar revolutions, and when one can adopt new paradigms.
**Keywords:** ##book ##blog ##outline #review #normal #science #paradigm #shift #revolution #science #philosophy #crisis #archive
Bibliography
==========
T. S. Kuhn and I. Hacking, The Structure of Scientific Revolutions, Fourth edition. Chicago; London: The University of Chicago Press, 2012.
Table of Contents
=========
\toc
### Introduction
This book has had an immense impact in the world of science. From how science is taught to how science is thought about, Kuhn's notions of scientific revolution resonated across nearly all domains of science as well as touching into the arts. The central conceit that Kuhn stated in this book is that the scientific community knows what the world is like. I was recommended this book by my friend, collaborator, and Category Theorist, [Professor James P. Fairbanks](/https://www.jpfairbanks.com/) I can see why it was recommended as it fits in quite nicely to the ensuing philosophical ideas found in [Category Theory](/11082021041951-category-theory-scientists.md).
### What Is *Normal Science*?
[Note for atomic concept](/05222022044134-normal-science.md)
According to Kuhn, *normal science*, is research based on past scientific accomplishments that are considered the foundation for that area of investigation. Generally, this is the area where most scientists spend their time. The research done in normal science can be theoretical or empirical.
In the book, Kuhn referred to this as "mop-up work" and that this mopping up or "filling out" of science is what most scientists do. Although language such as "mop-up" work can make one think that Kuhn was being pejorative to these so-called "scut scientists", he did not intend it so. In later versions of this book, he made a response to this point of confusion and clarified that this work still is fascinating and crucial in many ways to the advancement of science.
#### What Are the Characteristics of Normal Science?
An important aspect of normal science is that it does not engage with or seek out anything new. The invention of theories, development of new phenomena - anything abnormal - is not part of normal science. Novelty is abhorrent and antithetical to normal science.
Aside from this fundamental aspect of normal science, Kuhn posited that there are three general areas of research in normal science. He emphasized that they do not always hold or are always discrete from one another:
1. Investigating questions around the fundamental facts found in a specific domain.
2. Questions that are predicted and expected to have answers existing within an already existing research domain.
3. Further articulating the fundamental facts held in a given domain.
### What Was Kuhn's Concept of a Paradigm?
[Note for atomic concept](/05222022044626-kuhnian-paradigm.md)
Kuhn reintroduced into the modern English lexicon the word, "paradigm". Before his time, the term was rather archaic. A paradigm is the background through which normal science is conducted loosely speaking. Another way of thinking about it is from online user *heynonnynonnie* suggesting that a paradigm is a consensus agreed upon by a group of practitioners of a field.
#### What Are the Characteristics of a Paradigm?
When he used the word, as Kuhn admitted himself, he overloaded the term to mean quite a number of things. To my understanding, this was my gist of a Kuhnian paradigm in that paradigms generally have two core characteristics:
1. Unprecedented and can sustain practitioners
2. Open-ended and with problems to be solved or investigated
Endemic to paradigms is that they posit theories around a domain of research. For a paradigm to be accepted, it must propose a better theory than its predecessors or competitors. Furthermore, a proposed new paradigm is not required to address every fact of the world.
#### What Are the Benefits of Choosing a Paradigm?
When a domain decides upon a paradigm, avenues of research can now be readily scoped. By presupposing paradigm, questions can now be posed within the context of the paradigm. In accordance to the paradigm, it can be reasonably assumed that solutions can be found.
A benefit that did not immediately appear to me was the insulating properties of a paradigm. An example that Kuhn suggested is that in the social sciences, one has to frame an avenue of research by its importance to society (such as studying racial discrimination, etc.). Problems such as these are notoriously difficult to frame and reach a quorum consensus on due to possibly many competing schools of thought or groups. Instead, by keeping a conversation limited to the adherents of a specific paradigm, a researcher can easily keep moving forward through problems without having to strive against competing schools of thought. Furthermore, the insulating power of a paradigms gives a researcher the ability to solely focus on problems they think they can solve or are solvable.
I will admit, his example of social scientists was at first confusing. But, upon reflection, what made this example make sense is that he later explained his decision to have this as an example due to the fact that there are often many competing paradigms in these areas. This conflict makes progress difficult as many people still argue the fundamentals of these sciences.
### What Causes the Downfall of a Paradigm?
[Note on atomic concept](/05222022044910-downfall-kuhnian-paradigm.md)
Normal science certainly is clear, safe, and predictable. But, what if a scientist finds results that do not fit within a paradigm? What if a result, ruling out all possible errors carried forth by a highly scrupulous researcher, is simply unexplainable - an anomaly against the backdrop of a paradigm? To Kuhn, this marks an important inflection point in adopted paradigms.
Novelty in science only emerges with resistance and difficulty because any, as Kuhn wisely points out, researchers who investigate every anomaly will not get much done. But at some point, these anomalies will continue to accumulate to the point of being unignorable to adherents of a paradigm. A sort of malcontent will arise adherents and to [quote Sherlock Holmes, "When you have eliminated the impossible, whatever remains, however improbable, must be the truth."](/07222020181007-famous-quotes.md) And that truth is that an accepted paradigm is no longer sufficient to explain a domain which leads to a period of significant upheaval.
Kuhn characterized the downfall of a paradigm in three generic ways:
1. Awareness of anomaly
2. Further recognition of awareness
3. Contested possible change or challenge to the existing paradigm
#### What Happens When a Paradigm Is in Crisis?
When the anomalies are fully unconscionable, they are finally acknowledged and, to quote Kuhn:
> "Discovery commences with [...] awareness of anomaly"
The previous paradigm prepared an adherent on how to detect an anomaly and in a way, set up its own downfall. At this stage of upheaval, many will attempt to explain or address the anomalous behavior. A new era of discovery in the face of a failing paradigm marks this interstitial period of an outdated paradigm where many speculative and unarticulated theories abound - often at odds with one another in some way. The previous paradigm's rules become hazy and the rules of normal research begin to veer away from its typical, standard process.
#### Extraordinary Problems
This problem leads normal science into a rather interesting process of science called "extraordinary science". Extraordinary science is an offshoot of normal science that exists when a paradigm is in crisis and to address the paradigm in crisis. It is the science that either repairs, questions, or proves the deficiency of an existing paradigm. Important to note about extraordinary science is that they are never known at the outset of a paradigm but only after advanced normal research in the context of a given paradigm.
### "Scientific Revolutions" and the Term "Revolution"
[Note on atomic concept](/05222022045723-scientific-revolutions.md)
According to Kuhn, these crises are the requirements for a new paradigm to come forth. This leads to extraordinary science as this episode in a paradigm's life is extraordinary that causes a basic shift in how science is even conducted. This period, coined by Kuhn, is called a "Scientific Revolution".
Kuhn was very particular in invoking the term "revolution". He related the phrase "scientific revolution" analogously to a political revolution. In the same way that a political revolution is often fomented when a political body fails to serve adequately the growing body of its populace, so too are the grounds set for a scientific revolution.
Although a paradigm may shift how one does science, the world itself does not change. Rather, the way we view and operate in the world does. For the adoptees of a new paradigm, the adoptee must say something to the effect of "I once understood X to be Y, but I was mistaken" and in doing so admit a form of error in looking at reality.
### Invoking New Paradigms on Faith
[Note on atomic concept](/05222022045931-new-paradigms.md)
A problem inherit to the development of new paradigms is that to adopt these new paradigms is most certainly an act of faith. Early adherents to a new paradigm must stand against the onslaught of problems that were solved or addressed by a previous paradigm. They must simply have hope and faith that this new paradigm they have adopted will succeed in the areas where the previous paradigm failed. As Kuhn said:
> "A decision of that kind can only be made on faith"
Even when this new paradigm is able to successfully surmount longstanding problems, Kuhn says that even still a vast majority of scientists will be apprehensive to adopt this paradigm. Why? Kuhn observed that two conditions must be met for further adoption:
1. The new paradigm must solve outstanding problems that the prior paradigm could not.
2. Much of the problem solving tools from previous paradigms should still be able to be used in this new paradigm.
In this sense, there is a type of verification or vetting of a new paradigm – an analogy to natural selection as Kuhn pointed out. For a new paradigm to be successful, not only must it address all problems hitherto encountered by prior paradigms, but be able to solve outstanding problems prior paradigms could not and the barrier to adopting this new paradigm must be minimal. "No theory ever solves all [...] puzzles with which it is confronted at a given time; nor are the solutions already achieved often perfect," is a fitting bookend from Kuhn to remember when encountering new paradigms.
One small final footnote on new paradigms is an observation by Kuhn: the invention of a paradigm most generally comes from someone very young or new to the field where a paradigm exists that they are trying to change.
### On the Non-Linearity of Science
[Note on atomic concept](/05222022050357-non-linearity-science.md)
One thing out of this book is that I very much appreciated and agreed with Kuhn's notion that science is not linear nor is it necessarily the result of a universal truth being uncovered. Rather, it is the confluence of emerging theories that evolve and find they can fit with other theories or paradigms. These newly combined theories then come together to possibly overturn or change the understanding of currently practiced science.
This fallacious notion of linear knowledge going to a particular truth about the world is based in part on science historians and textbook makers. As textbooks are designed to assist students in learning as much material as possible, the teacher with the textbook maker chooses to formulate a textbook around one particular area of knowledge thereby giving a sense of progress to a domain's particular truth. As science does not deal with all possible experiments but only those which are doable according to an existing paradigm, so too a textbook must be very judicious in what it presents to a student from its paradigm.
### Additional Notes
As I wrap up this review of *The Structure of Scientific Revolutions*, here are some additional notes that didn't quite fit in the overall review. I did still find these pertinent as well as helpful in expanding thoughts about paradigms.
#### Paradigm Shifts in Other Domains
Outside of Science, Technology, Engineering, and Mathematics, Kuhn's notion of paradigm shifts do occur. Such a paradigm shift based on Kuhn's writings in an area such as the social sciences could be - and I am making an educated guess here - something akin to the near modern universal condemnation and outlawing of slavery. However, to this end Kuhn posited that unlike the other natural sciences, there still exist competing schools of thought. A visceral modern example is that social scientists also have to defend their choice of a research problem such as examining race in the context of the [social determinants of health](/07112020161337-social-determinants-health.md) where other existing schools of thought may fiercely disagree on the validity of such endeavors.
Furthermore, Kuhn gave the great example that, "the man who argues that philosophy [...] has made no progress emphasizes that there are still Aristotelians, not that Aristotelianism has failed to progress," I am in agreement with Kuhn in that it is not that schools of thought outside Science, Technology, Engineering, and Mathematics are not making progress. It is that their are much more fundamental conflicts in these spaces that have yet to be reconciled in sufficient ways.
In an online group discussion, the user *ish-i-ness* furthered this idea to the arts that, "that in the arts you could even say that there is a desire to discover an aesthetic truth, something that is indisputably, objectively beautiful and thought provoking, rather than just a fad that is only interesting because it’s appeals to a particular, subjective set of preferences." Here, *ish-i-ness* invokes this notion of aesthetic truth which is associated with Theodore Adorno.
#### Non-Kuhnian Revolutions or Domain Transformations
In an online group discussion, the user *heynonnynonnie*, made a great point that non-Kuhnian scientific revolutions happen more frequently than the bigger Kuhnian scientific revolutions (such as the heliocentric versus geocentric theory, etc.). As these are much smaller scale revolutions and do not affect the entirety of science, I call these "domain transformations" as they transform or affect a particular domain's way of operating but not the rest of science as a whole. *heynonnynonnie* gave the example that the discovery of the DNA structure, though fantastic and a major discovery, provided only pure information that fit within the preexisting paradigms.
### Conclusion
I thought this book was well done and also worth this lengthy analysis. It provided context to a lot of ideas that were born from the notions Kuhn coined here. For me, it felt like giving me a bit more of a better foundation to understand better how to operate in domains. Even if this piece is labeled more as a philosophy of science piece, it could easily also be considered a sociological exploration of academia as a whole. I recommend the read, but also, not to take the notions as literally or seriously as possible. Kuhn himself suggested that as he later would get inundated with letters saying that there was a revolution happening because of X - help me. As judicious as Kuhn was in using the term revolution, we too must be careful to recognize when a revolution or paradigm shift is occurring.
## References
## Discussion:
{{ addcomments }}
```
Everything is rendered properly and the page is created with the appropriate slug. Looking within `__site`, I can see a folder named after its slug with an expected index.html.
# Problem
Suddenly, Franklin seems to be failing for this particular page I added to my `notes` directory:
```markdown
@def title = "Achieving an Undergraduate Level Understanding of Graph Theory "
@def slug = "01012023000122-graph-theory-learning"
@def tags = ["zettel", "ultralearning", "graph", "theory", "project", "archive", "blog"]
@def description = "Ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory."
@def rss_title = "Achieving an Undergraduate Level Understanding of Graph Theory "
@def rss_description = "Ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory."
@def rss_pubdate = Date(2022, 12, 31)
Achieving an Undergraduate Level Understanding of Graph Theory
=========
**Date:** December 31 2022
**Summary:** Ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory.
**Keywords:** #zettel #ultralearning #graph #theory #project #archive #blog
Bibliography
==========
Not Available
Table of Contents
=========
\toc
### Motivation
I have always found graph theory interesting ever since I was exposed to it back in my undergraduate studies at Georgia Tech. I found out about it through SIR Modeling but personally found the structure of graphs far more fascinating than its application to SIR models. Furthermore, as I intend to be pursuing graduate studies in applied mathematics, why not get started with trying to understand it?
### Project Goals
This process is adapted from the [Ultralearning framework posited by Scott Young](/07082020163004-ultralearning.md).
#### What Am I Doing?
Gain an undergraduate level of understanding of graph theory on par with maths and computer science students.
##### Core Concepts
* Basic concepts:
* Definition of a graph and its components:
* Understand the components of a graph and the differences between directed and undirected graphs.
* Subgraphs and isomorphism:
* Understand the definitions of subgraphs and isomorphism and be able to identify and compare them in a given graph.
* Directed graphs:
* Understand the definition of a directed graph and be able to represent it using adjacency and incidence matrices.
* Graphs and their properties:
* Understand various properties of graphs and be able to apply them to analyze and classify different types of graphs.
* Connectivity:
* Paths and circuits:
* Understand the definitions of paths and circuits and be able to identify and construct them in a given graph.
* Connectedness and components:
* Understand the concept of connectedness and be able to determine whether a graph is connected or disconnected.
* Understand the concept of graph components and be able to identify them in a given graph.
* Distance in graphs:
* Understand the concept of distance between vertices and be able to compute it using various measures.
* Trees:
* Trees and their properties:
* Understand the definition of a tree and be able to identify and distinguish trees from other types of graphs.
* Rooted trees and binary trees:
* Understand the concept of rooted trees and be able to construct and manipulate them.
* Understand the concept of binary trees and be able to construct and manipulate them.
* Spanning trees
* Matrix representations of graphs:
* Adjacency matrices:
* Understand the concept of an adjacency matrix and be able to represent a graph using an adjacency matrix.
* Incidence matrices:
* Understand the concept of an incidence matrix and be able to represent a graph using an incidence matrix.
* Graph algorithms:
* Breadth-first search:
* Understand the concept of breadth-first search and be able to implement it to traverse a graph.
* Depth-first search:
* Understand the concept of depth-first search and be able to implement it to traverse a graph.
* Planar graphs:
* Planar graphs and their properties:
* Understand the definition of a planar graph and the properties that distinguish planar graphs from other types of graphs.
* Euler's formula:
* Understand Euler's formula and be able to apply it to analyze the structure of planar graphs.
* Dual graphs:
* Understand the concept of a dual graph and be able to construct the dual of a given planar graph.
* Coloring graphs:
* Vertex coloring:
* Understand the concept of vertex coloring and be able to color the vertices of a given graph according to various coloring schemes.
* Edge coloring:
* Understand the concept of edge coloring and be able to color the edges of a given graph according to various coloring schemes.
* Matchings and factors:
* Matchings:
* Understand the concept of a matching in a graph and be able to identify and construct matchings in a given graph.
* Factors:
* Understand the concept of a factor in a graph and be able to identify and construct factors in a given graph.
* More advanced topics:
* Hamiltonian cycles:
* Understand the concept of a Hamiltonian cycle and be able to identify and construct Hamiltonian cycles in a given graph.
* Network flows:
* Understand the concept of network flows and be able to model and analyze flow problems in graphs.
* Graphs and groups:
* Understand the connection between graphs and group theory, and be able to apply group-theoretic techniques to analyze graphs.
* Graphs and logic:
* Understand the connection between graphs and logic, and be able to apply logical techniques to analyze graphs.
* Graphs and geometry:
* Understand the connection between graphs and geometry, and be able to apply geometric techniques to analyze graphs.
##### Facts
* Definition of a graph and its components:
* Vertices (also called nodes).
* Edges.
* Weights.
* Labels.
* Subgraphs and isomorphism.
* Directed graphs and their representations:
* Adjacency matrices.
* Incidence matrices.
* Graph properties:
* Connected/disconnected.
* Bipartite/not bipartite.
* Cyclic/acyclic.
* Paths and circuits.
* Connectedness and components.
* Distance between vertices.
* Trees:
* Definition.
* Unique path between vertices.
* Root vertex.
* Branches.
* Additional topics:
* Matrix representations:
* Adjacency matrices.
* Incidence matrices.
* Graph algorithms:
* Breadth-first search.
* Depth-first search.
* Planar graphs and their properties:
* Definition of a planar graph.
* Properties that distinguish planar graphs from other types of graphs.
* Euler's formula.
* Dual graphs.
* Tree properties:
* Rooted trees.
* Binary trees.
##### Procedures
1. Representing graphs using different notations (e.g. adjacency lists, adjacency matrices, incidence matrices).
2. Traversing graphs using different algorithms (e.g. breadth-first search, depth-first search).
3. Analyzing the properties of graphs (e.g. connectedness, bipartiteness, acyclicity).
4. Finding paths and circuits in graphs.
5. Identifying and constructing different types of trees (e.g. rooted trees, binary trees).
6. Coloring the vertices or edges of a graph according to various coloring schemes (e.g. vertex coloring, edge coloring).
7. Finding matchings and factors in graphs.
8. Identifying and constructing Hamiltonian cycles in graphs.
9. Modeling and analyzing flow problems in graphs using network flows.
10. Applying group-theoretic and logical techniques to analyze graphs.
11. Applying geometric techniques to analyze graphs.
### Roadmap
This is based on the Meta Learning step Young described as well as some additional tweaks of my own:
* **Outcomes:** The knowledge and abilities you’ll need to acquire for success.
* **Rationale:** Know exactly why you want to learn a skill or subject.
* **Resources:** The resources you’ll use when learning.
* **Done:** If this task has been completed (X) or not yet (cell is empty)
| Done | Topic | Resources | Outcomes |
| ----:| ----------------------------------------:| ---------:| ---------------------------------------------------------------------:|
| | Definition of a graph and its components | [1, 2] | Graph components; differences between directed and undirected graphs |
| | Subgraphs and isomorphism | [1, 2] | Subgraphs; isomorphism; identify and compare given graphs |
| | Directed graphs | [1] | Directed graph; representation using adjacency and incidence matrices |
| | Graphs and their properties | [1, 2] | Properties of graphs; analyze; classify different types of graphs |
| | Paths and circuits | [1, 2] | Paths and circuits; identify and construct given graph |
| | Connectedness and components | [1] | Determine if graph is connected; identify graph components |
| | Distance in graphs | [1, 2] | Vertex distances; compute vertex distances |
| | Trees and their properties | [1, 2] | Tree definitions; identify trees; distinguish trees |
| | Rooted trees and binary trees | [1, 2] | Rooted trees; construct and manipulate rooted trees |
| | Adjacency matrices | [1] | Adjacency matrix concept; representation of adjacency matrix |
| | Incidence matrices | [1] | Incidence matrix concept; representation of incidence graphs |
| | Breadth-first search | [1, 2] | Breadth-first search concept; graph traversal |
| | Depth-first search | [1, 2] | Depth-first search concept; graph traversal |
| | Planar graphs and their properties | [1] | Planar graph definition; properties |
| | Euler's formula | [1, 2] | Euler's formula; structure of planar graphs |
| | Dual graphs | [1] | Dual graph concept; construction of dual graph |
| | Vertex coloring | [1, 2] | Vertex coloring concept; coloring of graph vertices |
| | Edge coloring | [1, 2] | Edge coloring concept; coloring of graph edges |
| | Matchings | [1, 2] | Matching concept; identification and construction |
| | Factors | [1] | Factor concept; identification and construction |
| | Hamiltonian cycles | [1, 2] | Hamiltonian cycle concept; identification and construction |
| | Network flows | [1] | Network flow concept; modeling and analysis |
| | Graphs and groups | [2] | Graph and group theory connection; analysis |
| | Graphs and logic | [2] | Graph and logic connection; analysis |
| | Graphs and geometry | [2] | Graph and geometry connection; analysis |
#### Explanations
These are the explanations and information about each column in this roadmap:
* **Outcomes:** The knowledge and abilities I’ll acquire for success.
* **Rationale:** The rationale is the same across every topic: to gain a basic and fundamental understanding of graph theory
* **Resources:** The resources I'll use are as follows:
* [1] R. Trudeau, Introduction to Graph Theory, Dover. DOVER PUBLICATIONS, INC., 1994.
* [2] N. Hartsfield and Ringel, Pearls in Graph Theory A Comprehensive Introduction. DOVER PUBLICATIONS, INC., 1994.
* **Done:** If this task has been completed (X) or not yet (cell is empty)
## References:
[1] R. Trudeau, Introduction to Graph Theory, Dover. DOVER PUBLICATIONS, INC., 1994.
[2] N. Hartsfield and Ringel, Pearls in Graph Theory A Comprehensive Introduction. DOVER PUBLICATIONS, INC., 1994.
## Discussion:
{{ addcomments }}
```
I have nearly 250 notes published from the notes directory, but all are rendering correctly except this one. At first, I thought this note wasn't rendering correctly at all, but I discovered Franklin is for some reason treating this page differently than the rest. It seems to be ignoring the `@def slug` setting and creating the page at `https://jacobzelko.com/notes/01012023000122-graph-theory-learning/` instead of `https://jacobzelko.com/01012023000122-graph-theory-learning/`
Plus, the Franklin content is not rendering properly when I visit the page (however the rest of the markdown looks right still):

# Questions
What am I doing wrong here? It was working well for everything else but is now failing for this one page. I am so confused as I do not know how to fix the pathing issue.
Thanks!
# Additional information
Julia: 1.8
Franklin: 0.10.79
NodeJS: 1.3.0 | priority | franklin ignoring slug and creating custom path for page background hey franklin folks i am having the most curious of errors for the past half year i have used the following structure for my website sh md page site generated during preview assets any additional assets i need for my post css css styling layout layout libs autogenerated libs rss autogenerated rss info archive md page of my site blog md page of my site config md configuration of franklin site index md landing page of site manifest toml julia file node modules auto generated node files for website notes directory where i keep all my posts project toml julia file resources md page of my site scripts julia scripts to run separately on my site search md page of my site utils jl site functions to be used by franklin it has worked perfectly fine with all my content pages being hosted in the notes directory what i am able to do is generate links to all my content pages on the blog and archive pages that someone can then browse here is a link to how it looks live if you click on a link as you can see it ll take you to a page correctly if i were to visit the page for the post the structure of scientific revolutions i can access it here the associated franklin markdown file looks like this markdown def title the structure of scientific revolutions def slug structure revolutions def tags def description a book review of thomas kuhn s most famous book that challenged all of the philosophy of science and introduced such concepts as normal science paradigm shift why non scientific fields struggle with similar revolutions and when one can adopt new paradigms def rss title the structure of scientific revolutions def rss description a book review of thomas kuhn s most famous book that challenged all of the philosophy of science and introduced such concepts as normal science paradigm shift why non scientific fields struggle with similar revolutions and when one can adopt new paradigms def rss pubdate date the structure of scientific revolutions date may summary a book review of thomas kuhn s most famous book that challenged all of the philosophy of science and introduced such concepts as normal science paradigm shift why non scientific fields struggle with similar revolutions and when one can adopt new paradigms keywords book blog outline review normal science paradigm shift revolution science philosophy crisis archive bibliography t s kuhn and i hacking the structure of scientific revolutions fourth edition chicago london the university of chicago press table of contents toc introduction this book has had an immense impact in the world of science from how science is taught to how science is thought about kuhn s notions of scientific revolution resonated across nearly all domains of science as well as touching into the arts the central conceit that kuhn stated in this book is that the scientific community knows what the world is like i was recommended this book by my friend collaborator and category theorist i can see why it was recommended as it fits in quite nicely to the ensuing philosophical ideas found in category theory scientists md what is normal science normal science md according to kuhn normal science is research based on past scientific accomplishments that are considered the foundation for that area of investigation generally this is the area where most scientists spend their time the research done in normal science can be theoretical or empirical in the book kuhn referred to this as mop up work and that this mopping up or filling out of science is what most scientists do although language such as mop up work can make one think that kuhn was being pejorative to these so called scut scientists he did not intend it so in later versions of this book he made a response to this point of confusion and clarified that this work still is fascinating and crucial in many ways to the advancement of science what are the characteristics of normal science an important aspect of normal science is that it does not engage with or seek out anything new the invention of theories development of new phenomena anything abnormal is not part of normal science novelty is abhorrent and antithetical to normal science aside from this fundamental aspect of normal science kuhn posited that there are three general areas of research in normal science he emphasized that they do not always hold or are always discrete from one another investigating questions around the fundamental facts found in a specific domain questions that are predicted and expected to have answers existing within an already existing research domain further articulating the fundamental facts held in a given domain what was kuhn s concept of a paradigm kuhnian paradigm md kuhn reintroduced into the modern english lexicon the word paradigm before his time the term was rather archaic a paradigm is the background through which normal science is conducted loosely speaking another way of thinking about it is from online user heynonnynonnie suggesting that a paradigm is a consensus agreed upon by a group of practitioners of a field what are the characteristics of a paradigm when he used the word as kuhn admitted himself he overloaded the term to mean quite a number of things to my understanding this was my gist of a kuhnian paradigm in that paradigms generally have two core characteristics unprecedented and can sustain practitioners open ended and with problems to be solved or investigated endemic to paradigms is that they posit theories around a domain of research for a paradigm to be accepted it must propose a better theory than its predecessors or competitors furthermore a proposed new paradigm is not required to address every fact of the world what are the benefits of choosing a paradigm when a domain decides upon a paradigm avenues of research can now be readily scoped by presupposing paradigm questions can now be posed within the context of the paradigm in accordance to the paradigm it can be reasonably assumed that solutions can be found a benefit that did not immediately appear to me was the insulating properties of a paradigm an example that kuhn suggested is that in the social sciences one has to frame an avenue of research by its importance to society such as studying racial discrimination etc problems such as these are notoriously difficult to frame and reach a quorum consensus on due to possibly many competing schools of thought or groups instead by keeping a conversation limited to the adherents of a specific paradigm a researcher can easily keep moving forward through problems without having to strive against competing schools of thought furthermore the insulating power of a paradigms gives a researcher the ability to solely focus on problems they think they can solve or are solvable i will admit his example of social scientists was at first confusing but upon reflection what made this example make sense is that he later explained his decision to have this as an example due to the fact that there are often many competing paradigms in these areas this conflict makes progress difficult as many people still argue the fundamentals of these sciences what causes the downfall of a paradigm downfall kuhnian paradigm md normal science certainly is clear safe and predictable but what if a scientist finds results that do not fit within a paradigm what if a result ruling out all possible errors carried forth by a highly scrupulous researcher is simply unexplainable an anomaly against the backdrop of a paradigm to kuhn this marks an important inflection point in adopted paradigms novelty in science only emerges with resistance and difficulty because any as kuhn wisely points out researchers who investigate every anomaly will not get much done but at some point these anomalies will continue to accumulate to the point of being unignorable to adherents of a paradigm a sort of malcontent will arise adherents and to famous quotes md and that truth is that an accepted paradigm is no longer sufficient to explain a domain which leads to a period of significant upheaval kuhn characterized the downfall of a paradigm in three generic ways awareness of anomaly further recognition of awareness contested possible change or challenge to the existing paradigm what happens when a paradigm is in crisis when the anomalies are fully unconscionable they are finally acknowledged and to quote kuhn discovery commences with awareness of anomaly the previous paradigm prepared an adherent on how to detect an anomaly and in a way set up its own downfall at this stage of upheaval many will attempt to explain or address the anomalous behavior a new era of discovery in the face of a failing paradigm marks this interstitial period of an outdated paradigm where many speculative and unarticulated theories abound often at odds with one another in some way the previous paradigm s rules become hazy and the rules of normal research begin to veer away from its typical standard process extraordinary problems this problem leads normal science into a rather interesting process of science called extraordinary science extraordinary science is an offshoot of normal science that exists when a paradigm is in crisis and to address the paradigm in crisis it is the science that either repairs questions or proves the deficiency of an existing paradigm important to note about extraordinary science is that they are never known at the outset of a paradigm but only after advanced normal research in the context of a given paradigm scientific revolutions and the term revolution scientific revolutions md according to kuhn these crises are the requirements for a new paradigm to come forth this leads to extraordinary science as this episode in a paradigm s life is extraordinary that causes a basic shift in how science is even conducted this period coined by kuhn is called a scientific revolution kuhn was very particular in invoking the term revolution he related the phrase scientific revolution analogously to a political revolution in the same way that a political revolution is often fomented when a political body fails to serve adequately the growing body of its populace so too are the grounds set for a scientific revolution although a paradigm may shift how one does science the world itself does not change rather the way we view and operate in the world does for the adoptees of a new paradigm the adoptee must say something to the effect of i once understood x to be y but i was mistaken and in doing so admit a form of error in looking at reality invoking new paradigms on faith new paradigms md a problem inherit to the development of new paradigms is that to adopt these new paradigms is most certainly an act of faith early adherents to a new paradigm must stand against the onslaught of problems that were solved or addressed by a previous paradigm they must simply have hope and faith that this new paradigm they have adopted will succeed in the areas where the previous paradigm failed as kuhn said a decision of that kind can only be made on faith even when this new paradigm is able to successfully surmount longstanding problems kuhn says that even still a vast majority of scientists will be apprehensive to adopt this paradigm why kuhn observed that two conditions must be met for further adoption the new paradigm must solve outstanding problems that the prior paradigm could not much of the problem solving tools from previous paradigms should still be able to be used in this new paradigm in this sense there is a type of verification or vetting of a new paradigm – an analogy to natural selection as kuhn pointed out for a new paradigm to be successful not only must it address all problems hitherto encountered by prior paradigms but be able to solve outstanding problems prior paradigms could not and the barrier to adopting this new paradigm must be minimal no theory ever solves all puzzles with which it is confronted at a given time nor are the solutions already achieved often perfect is a fitting bookend from kuhn to remember when encountering new paradigms one small final footnote on new paradigms is an observation by kuhn the invention of a paradigm most generally comes from someone very young or new to the field where a paradigm exists that they are trying to change on the non linearity of science non linearity science md one thing out of this book is that i very much appreciated and agreed with kuhn s notion that science is not linear nor is it necessarily the result of a universal truth being uncovered rather it is the confluence of emerging theories that evolve and find they can fit with other theories or paradigms these newly combined theories then come together to possibly overturn or change the understanding of currently practiced science this fallacious notion of linear knowledge going to a particular truth about the world is based in part on science historians and textbook makers as textbooks are designed to assist students in learning as much material as possible the teacher with the textbook maker chooses to formulate a textbook around one particular area of knowledge thereby giving a sense of progress to a domain s particular truth as science does not deal with all possible experiments but only those which are doable according to an existing paradigm so too a textbook must be very judicious in what it presents to a student from its paradigm additional notes as i wrap up this review of the structure of scientific revolutions here are some additional notes that didn t quite fit in the overall review i did still find these pertinent as well as helpful in expanding thoughts about paradigms paradigm shifts in other domains outside of science technology engineering and mathematics kuhn s notion of paradigm shifts do occur such a paradigm shift based on kuhn s writings in an area such as the social sciences could be and i am making an educated guess here something akin to the near modern universal condemnation and outlawing of slavery however to this end kuhn posited that unlike the other natural sciences there still exist competing schools of thought a visceral modern example is that social scientists also have to defend their choice of a research problem such as examining race in the context of the social determinants health md where other existing schools of thought may fiercely disagree on the validity of such endeavors furthermore kuhn gave the great example that the man who argues that philosophy has made no progress emphasizes that there are still aristotelians not that aristotelianism has failed to progress i am in agreement with kuhn in that it is not that schools of thought outside science technology engineering and mathematics are not making progress it is that their are much more fundamental conflicts in these spaces that have yet to be reconciled in sufficient ways in an online group discussion the user ish i ness furthered this idea to the arts that that in the arts you could even say that there is a desire to discover an aesthetic truth something that is indisputably objectively beautiful and thought provoking rather than just a fad that is only interesting because it’s appeals to a particular subjective set of preferences here ish i ness invokes this notion of aesthetic truth which is associated with theodore adorno non kuhnian revolutions or domain transformations in an online group discussion the user heynonnynonnie made a great point that non kuhnian scientific revolutions happen more frequently than the bigger kuhnian scientific revolutions such as the heliocentric versus geocentric theory etc as these are much smaller scale revolutions and do not affect the entirety of science i call these domain transformations as they transform or affect a particular domain s way of operating but not the rest of science as a whole heynonnynonnie gave the example that the discovery of the dna structure though fantastic and a major discovery provided only pure information that fit within the preexisting paradigms conclusion i thought this book was well done and also worth this lengthy analysis it provided context to a lot of ideas that were born from the notions kuhn coined here for me it felt like giving me a bit more of a better foundation to understand better how to operate in domains even if this piece is labeled more as a philosophy of science piece it could easily also be considered a sociological exploration of academia as a whole i recommend the read but also not to take the notions as literally or seriously as possible kuhn himself suggested that as he later would get inundated with letters saying that there was a revolution happening because of x help me as judicious as kuhn was in using the term revolution we too must be careful to recognize when a revolution or paradigm shift is occurring references discussion addcomments everything is rendered properly and the page is created with the appropriate slug looking within site i can see a folder named after its slug with an expected index html problem suddenly franklin seems to be failing for this particular page i added to my notes directory markdown def title achieving an undergraduate level understanding of graph theory def slug graph theory learning def tags def description ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory def rss title achieving an undergraduate level understanding of graph theory def rss description ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory def rss pubdate date achieving an undergraduate level understanding of graph theory date december summary ultralearning project to learn the equivalent of an undergraduate maths of computer science student understanding of graph theory keywords zettel ultralearning graph theory project archive blog bibliography not available table of contents toc motivation i have always found graph theory interesting ever since i was exposed to it back in my undergraduate studies at georgia tech i found out about it through sir modeling but personally found the structure of graphs far more fascinating than its application to sir models furthermore as i intend to be pursuing graduate studies in applied mathematics why not get started with trying to understand it project goals this process is adapted from the ultralearning md what am i doing gain an undergraduate level of understanding of graph theory on par with maths and computer science students core concepts basic concepts definition of a graph and its components understand the components of a graph and the differences between directed and undirected graphs subgraphs and isomorphism understand the definitions of subgraphs and isomorphism and be able to identify and compare them in a given graph directed graphs understand the definition of a directed graph and be able to represent it using adjacency and incidence matrices graphs and their properties understand various properties of graphs and be able to apply them to analyze and classify different types of graphs connectivity paths and circuits understand the definitions of paths and circuits and be able to identify and construct them in a given graph connectedness and components understand the concept of connectedness and be able to determine whether a graph is connected or disconnected understand the concept of graph components and be able to identify them in a given graph distance in graphs understand the concept of distance between vertices and be able to compute it using various measures trees trees and their properties understand the definition of a tree and be able to identify and distinguish trees from other types of graphs rooted trees and binary trees understand the concept of rooted trees and be able to construct and manipulate them understand the concept of binary trees and be able to construct and manipulate them spanning trees matrix representations of graphs adjacency matrices understand the concept of an adjacency matrix and be able to represent a graph using an adjacency matrix incidence matrices understand the concept of an incidence matrix and be able to represent a graph using an incidence matrix graph algorithms breadth first search understand the concept of breadth first search and be able to implement it to traverse a graph depth first search understand the concept of depth first search and be able to implement it to traverse a graph planar graphs planar graphs and their properties understand the definition of a planar graph and the properties that distinguish planar graphs from other types of graphs euler s formula understand euler s formula and be able to apply it to analyze the structure of planar graphs dual graphs understand the concept of a dual graph and be able to construct the dual of a given planar graph coloring graphs vertex coloring understand the concept of vertex coloring and be able to color the vertices of a given graph according to various coloring schemes edge coloring understand the concept of edge coloring and be able to color the edges of a given graph according to various coloring schemes matchings and factors matchings understand the concept of a matching in a graph and be able to identify and construct matchings in a given graph factors understand the concept of a factor in a graph and be able to identify and construct factors in a given graph more advanced topics hamiltonian cycles understand the concept of a hamiltonian cycle and be able to identify and construct hamiltonian cycles in a given graph network flows understand the concept of network flows and be able to model and analyze flow problems in graphs graphs and groups understand the connection between graphs and group theory and be able to apply group theoretic techniques to analyze graphs graphs and logic understand the connection between graphs and logic and be able to apply logical techniques to analyze graphs graphs and geometry understand the connection between graphs and geometry and be able to apply geometric techniques to analyze graphs facts definition of a graph and its components vertices also called nodes edges weights labels subgraphs and isomorphism directed graphs and their representations adjacency matrices incidence matrices graph properties connected disconnected bipartite not bipartite cyclic acyclic paths and circuits connectedness and components distance between vertices trees definition unique path between vertices root vertex branches additional topics matrix representations adjacency matrices incidence matrices graph algorithms breadth first search depth first search planar graphs and their properties definition of a planar graph properties that distinguish planar graphs from other types of graphs euler s formula dual graphs tree properties rooted trees binary trees procedures representing graphs using different notations e g adjacency lists adjacency matrices incidence matrices traversing graphs using different algorithms e g breadth first search depth first search analyzing the properties of graphs e g connectedness bipartiteness acyclicity finding paths and circuits in graphs identifying and constructing different types of trees e g rooted trees binary trees coloring the vertices or edges of a graph according to various coloring schemes e g vertex coloring edge coloring finding matchings and factors in graphs identifying and constructing hamiltonian cycles in graphs modeling and analyzing flow problems in graphs using network flows applying group theoretic and logical techniques to analyze graphs applying geometric techniques to analyze graphs roadmap this is based on the meta learning step young described as well as some additional tweaks of my own outcomes the knowledge and abilities you’ll need to acquire for success rationale know exactly why you want to learn a skill or subject resources the resources you’ll use when learning done if this task has been completed x or not yet cell is empty done topic resources outcomes definition of a graph and its components graph components differences between directed and undirected graphs subgraphs and isomorphism subgraphs isomorphism identify and compare given graphs directed graphs directed graph representation using adjacency and incidence matrices graphs and their properties properties of graphs analyze classify different types of graphs paths and circuits paths and circuits identify and construct given graph connectedness and components determine if graph is connected identify graph components distance in graphs vertex distances compute vertex distances trees and their properties tree definitions identify trees distinguish trees rooted trees and binary trees rooted trees construct and manipulate rooted trees adjacency matrices adjacency matrix concept representation of adjacency matrix incidence matrices incidence matrix concept representation of incidence graphs breadth first search breadth first search concept graph traversal depth first search depth first search concept graph traversal planar graphs and their properties planar graph definition properties euler s formula euler s formula structure of planar graphs dual graphs dual graph concept construction of dual graph vertex coloring vertex coloring concept coloring of graph vertices edge coloring edge coloring concept coloring of graph edges matchings matching concept identification and construction factors factor concept identification and construction hamiltonian cycles hamiltonian cycle concept identification and construction network flows network flow concept modeling and analysis graphs and groups graph and group theory connection analysis graphs and logic graph and logic connection analysis graphs and geometry graph and geometry connection analysis explanations these are the explanations and information about each column in this roadmap outcomes the knowledge and abilities i’ll acquire for success rationale the rationale is the same across every topic to gain a basic and fundamental understanding of graph theory resources the resources i ll use are as follows r trudeau introduction to graph theory dover dover publications inc n hartsfield and ringel pearls in graph theory a comprehensive introduction dover publications inc done if this task has been completed x or not yet cell is empty references r trudeau introduction to graph theory dover dover publications inc n hartsfield and ringel pearls in graph theory a comprehensive introduction dover publications inc discussion addcomments i have nearly notes published from the notes directory but all are rendering correctly except this one at first i thought this note wasn t rendering correctly at all but i discovered franklin is for some reason treating this page differently than the rest it seems to be ignoring the def slug setting and creating the page at instead of plus the franklin content is not rendering properly when i visit the page however the rest of the markdown looks right still questions what am i doing wrong here it was working well for everything else but is now failing for this one page i am so confused as i do not know how to fix the pathing issue thanks additional information julia franklin nodejs | 1 |
512,527 | 14,899,452,722 | IssuesEvent | 2021-01-21 14:21:55 | google/trillian | https://api.github.com/repos/google/trillian | closed | Return SETs for queued entries | Low Priority feature | When leaves are queued a Trillian log should return a promise to include analogous to a Signed Certificate Timestamp in CT. These will be Signed Entry Timestamps. | 1.0 | Return SETs for queued entries - When leaves are queued a Trillian log should return a promise to include analogous to a Signed Certificate Timestamp in CT. These will be Signed Entry Timestamps. | priority | return sets for queued entries when leaves are queued a trillian log should return a promise to include analogous to a signed certificate timestamp in ct these will be signed entry timestamps | 1 |
274,111 | 8,557,089,601 | IssuesEvent | 2018-11-08 14:55:06 | cosmos/voyager | https://api.github.com/repos/cosmos/voyager | closed | Add local testnet script for new single node flow | low priority | Currently a dev needs to overwrite the node urls by starting Voyager with `LCD_URL=http://localhost:9070 RPC_URL=http://localhost:26657 yarn start local-testnet`. I think we could add this as a script `yarn start:local` to make it more convenient. | 1.0 | Add local testnet script for new single node flow - Currently a dev needs to overwrite the node urls by starting Voyager with `LCD_URL=http://localhost:9070 RPC_URL=http://localhost:26657 yarn start local-testnet`. I think we could add this as a script `yarn start:local` to make it more convenient. | priority | add local testnet script for new single node flow currently a dev needs to overwrite the node urls by starting voyager with lcd url rpc url yarn start local testnet i think we could add this as a script yarn start local to make it more convenient | 1 |
141,515 | 5,437,071,633 | IssuesEvent | 2017-03-06 04:56:55 | CS2103JAN2017-W10-B4/main | https://api.github.com/repos/CS2103JAN2017-W10-B4/main | opened | As a user I can view list of deleted events/deadlines/tasks | priority.low type.story | ... so thatI can check details of deleted events/deadlines/tasks | 1.0 | As a user I can view list of deleted events/deadlines/tasks - ... so thatI can check details of deleted events/deadlines/tasks | priority | as a user i can view list of deleted events deadlines tasks so thati can check details of deleted events deadlines tasks | 1 |
754,072 | 26,371,982,196 | IssuesEvent | 2023-01-11 21:33:01 | GeorgianF/Kenpachi-P5-CI | https://api.github.com/repos/GeorgianF/Kenpachi-P5-CI | closed | Filter and Search Products Model | user story priority:low | As a **admin** I want to be able to **filter and search the products model** so that I can **check the stock and availability**
| 1.0 | Filter and Search Products Model - As a **admin** I want to be able to **filter and search the products model** so that I can **check the stock and availability**
| priority | filter and search products model as a admin i want to be able to filter and search the products model so that i can check the stock and availability | 1 |
53,663 | 3,042,856,575 | IssuesEvent | 2015-08-09 04:39:30 | chrisrink10/luadb | https://api.github.com/repos/chrisrink10/luadb | closed | Allow the LuaDB FastCGI daemon to fork itself | bug low priority | Right now, LuaDB stays in the foreground once it is started in FastCGI mode. This doesn't really make sense. It should fork itself into a background process. | 1.0 | Allow the LuaDB FastCGI daemon to fork itself - Right now, LuaDB stays in the foreground once it is started in FastCGI mode. This doesn't really make sense. It should fork itself into a background process. | priority | allow the luadb fastcgi daemon to fork itself right now luadb stays in the foreground once it is started in fastcgi mode this doesn t really make sense it should fork itself into a background process | 1 |
555,846 | 16,471,488,468 | IssuesEvent | 2021-05-23 14:02:01 | Baystation12/Baystation12 | https://api.github.com/repos/Baystation12/Baystation12 | closed | Deity Can Hear New Skrell Ship Sensor Alerts | Priority: Low | <!--
Anything inside tags like these is a comment and will not be displayed in the final issue.
Be careful not to write inside them!
Joke or spammed issues can and will result in punishment.
All fields are required.
Omitting a field will result in your issue being closed.
PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS
(The lines with four #'s)
Don't edit them or delete them - it's part of the formatting
-->
#### Description of issue
Being Deity with the new Skrell ship on the overmap causes an immense spam of sensors announcements if their ship goes out of control, and if they are in control of it you will still get their announcements.
#### Difference between expected and actual behavior
Expected to only hear announcements from ships you have a presence on (aka faithful or structures), rather than hearing the far off ships sensors alerts.
#### Steps to reproduce
Force the Skrell shuttle to fly around into hazards, spawn as Deity on the Torch. Enjoy spam.
#### Specific information for locating
Playing as Deity while the Skrell Scouting Vessel is on the overmap.
#### Length of time in which bug has been known to occur
<!--
Be specific if you approximately know the time it's been occurring
for—this can speed up finding the source. If you're not sure
about it, tell us too!
-->
Since the Skrell Ship PR was merged.
#### Client version, Server revision & Game ID
<!-- Found with the "Show server revision" verb in the OOC tab in game. -->
Server Revision: ac57e1322a9ddfc93e90f6184c5a117e46b930e2 - 3e90f6184c5a117e46b930e2 - 2019-03-15
Game ID: bZh-aW9i
#### Issue bingo
<!-- Check these by writing an x inside the [ ] (like this: [x])-->
<!-- Don't forget to remove the space between the brackets, or it won't work! -->
- [X] Issue could be reproduced at least once
- [ ] Issue could be reproduced by different players
- [ ] Issue could be reproduced in multiple rounds
- [X] Issue happened in a recent (less than 7 days ago) round
- [X] [Couldn't find an existing issue about this](https://github.com/Baystation12/Baystation12/issues)
| 1.0 | Deity Can Hear New Skrell Ship Sensor Alerts - <!--
Anything inside tags like these is a comment and will not be displayed in the final issue.
Be careful not to write inside them!
Joke or spammed issues can and will result in punishment.
All fields are required.
Omitting a field will result in your issue being closed.
PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS
(The lines with four #'s)
Don't edit them or delete them - it's part of the formatting
-->
#### Description of issue
Being Deity with the new Skrell ship on the overmap causes an immense spam of sensors announcements if their ship goes out of control, and if they are in control of it you will still get their announcements.
#### Difference between expected and actual behavior
Expected to only hear announcements from ships you have a presence on (aka faithful or structures), rather than hearing the far off ships sensors alerts.
#### Steps to reproduce
Force the Skrell shuttle to fly around into hazards, spawn as Deity on the Torch. Enjoy spam.
#### Specific information for locating
Playing as Deity while the Skrell Scouting Vessel is on the overmap.
#### Length of time in which bug has been known to occur
<!--
Be specific if you approximately know the time it's been occurring
for—this can speed up finding the source. If you're not sure
about it, tell us too!
-->
Since the Skrell Ship PR was merged.
#### Client version, Server revision & Game ID
<!-- Found with the "Show server revision" verb in the OOC tab in game. -->
Server Revision: ac57e1322a9ddfc93e90f6184c5a117e46b930e2 - 3e90f6184c5a117e46b930e2 - 2019-03-15
Game ID: bZh-aW9i
#### Issue bingo
<!-- Check these by writing an x inside the [ ] (like this: [x])-->
<!-- Don't forget to remove the space between the brackets, or it won't work! -->
- [X] Issue could be reproduced at least once
- [ ] Issue could be reproduced by different players
- [ ] Issue could be reproduced in multiple rounds
- [X] Issue happened in a recent (less than 7 days ago) round
- [X] [Couldn't find an existing issue about this](https://github.com/Baystation12/Baystation12/issues)
| priority | deity can hear new skrell ship sensor alerts anything inside tags like these is a comment and will not be displayed in the final issue be careful not to write inside them joke or spammed issues can and will result in punishment all fields are required omitting a field will result in your issue being closed put your answers on the blank lines below the headers the lines with four s don t edit them or delete them it s part of the formatting description of issue being deity with the new skrell ship on the overmap causes an immense spam of sensors announcements if their ship goes out of control and if they are in control of it you will still get their announcements difference between expected and actual behavior expected to only hear announcements from ships you have a presence on aka faithful or structures rather than hearing the far off ships sensors alerts steps to reproduce force the skrell shuttle to fly around into hazards spawn as deity on the torch enjoy spam specific information for locating playing as deity while the skrell scouting vessel is on the overmap length of time in which bug has been known to occur be specific if you approximately know the time it s been occurring for—this can speed up finding the source if you re not sure about it tell us too since the skrell ship pr was merged client version server revision game id server revision game id bzh issue bingo issue could be reproduced at least once issue could be reproduced by different players issue could be reproduced in multiple rounds issue happened in a recent less than days ago round | 1 |
337,371 | 10,216,881,595 | IssuesEvent | 2019-08-15 12:05:56 | WayfireWM/wayfire | https://api.github.com/repos/WayfireWM/wayfire | closed | Tablet support | enhancement help wanted low-priority | Supporting tablet devices is something missing from Wayfire. However, this can't be currently implemented since I do not have any such hardware, so we'll need somebody who has a tablet, wants to see support for it in Wayfire and is ready to test. | 1.0 | Tablet support - Supporting tablet devices is something missing from Wayfire. However, this can't be currently implemented since I do not have any such hardware, so we'll need somebody who has a tablet, wants to see support for it in Wayfire and is ready to test. | priority | tablet support supporting tablet devices is something missing from wayfire however this can t be currently implemented since i do not have any such hardware so we ll need somebody who has a tablet wants to see support for it in wayfire and is ready to test | 1 |
793,645 | 28,006,100,761 | IssuesEvent | 2023-03-27 15:20:57 | zowe/zowe-cli | https://api.github.com/repos/zowe/zowe-cli | closed | SubmitJobs, viewAllSpoolContent and the Jobid | enhancement for-review priority-low | _SubmitJobs.submitJclString(...)_ has two different implementations, one that returns a _`Promise<IJob>`_ and the other returns _`Promise<ISpoolFile[]>`_. Our CLI plugin is setting the _ISubmitParms_ to _{ viewAllSpoolContent: true }_ so as to drive the second variant, the spool output is aggregated into a simple output array for us. That simplifies things quite nicely, except that we don't have access to the Jobid for the submitted JCL. That in turn means that if something goes wrong we can't easily include the Jobid in our error messages.
Is there any chance that the Jobid could be made available somehow? I like the simplicity of _viewAllSpoolContent_, but that lack of a Jobid is problematic. Maybe the Jobid could be added to the _ISpoolFile_ interface? Or perhaps the entire _IJob_ could be referenced?
We're able to infer the Jobid at the moment by reading it out of the progress bar status message that _SubmitJobs_ writes, but that's not a great solution. If the text of that status message were to change at some point in the future (or be translated into another language) our ability to discover the Jobid could be affected. | 1.0 | SubmitJobs, viewAllSpoolContent and the Jobid - _SubmitJobs.submitJclString(...)_ has two different implementations, one that returns a _`Promise<IJob>`_ and the other returns _`Promise<ISpoolFile[]>`_. Our CLI plugin is setting the _ISubmitParms_ to _{ viewAllSpoolContent: true }_ so as to drive the second variant, the spool output is aggregated into a simple output array for us. That simplifies things quite nicely, except that we don't have access to the Jobid for the submitted JCL. That in turn means that if something goes wrong we can't easily include the Jobid in our error messages.
Is there any chance that the Jobid could be made available somehow? I like the simplicity of _viewAllSpoolContent_, but that lack of a Jobid is problematic. Maybe the Jobid could be added to the _ISpoolFile_ interface? Or perhaps the entire _IJob_ could be referenced?
We're able to infer the Jobid at the moment by reading it out of the progress bar status message that _SubmitJobs_ writes, but that's not a great solution. If the text of that status message were to change at some point in the future (or be translated into another language) our ability to discover the Jobid could be affected. | priority | submitjobs viewallspoolcontent and the jobid submitjobs submitjclstring has two different implementations one that returns a promise and the other returns promise our cli plugin is setting the isubmitparms to viewallspoolcontent true so as to drive the second variant the spool output is aggregated into a simple output array for us that simplifies things quite nicely except that we don t have access to the jobid for the submitted jcl that in turn means that if something goes wrong we can t easily include the jobid in our error messages is there any chance that the jobid could be made available somehow i like the simplicity of viewallspoolcontent but that lack of a jobid is problematic maybe the jobid could be added to the ispoolfile interface or perhaps the entire ijob could be referenced we re able to infer the jobid at the moment by reading it out of the progress bar status message that submitjobs writes but that s not a great solution if the text of that status message were to change at some point in the future or be translated into another language our ability to discover the jobid could be affected | 1 |
540,602 | 15,814,423,442 | IssuesEvent | 2021-04-05 09:26:52 | AY2021S2-CS2103-T14-1/tp | https://api.github.com/repos/AY2021S2-CS2103-T14-1/tp | closed | [PE-D] Use of technical terms | priority.Low | Throughout the UG, the term GUI was used without explanation as to what it is. This is not beginner friendly.
<!--session: 1617430469031-72ec8361-8ae5-4da2-9e75-169713d23cf6-->
-------------
Labels: `severity.Medium` `type.DocumentationBug`
original: jlxw48/ped#3 | 1.0 | [PE-D] Use of technical terms - Throughout the UG, the term GUI was used without explanation as to what it is. This is not beginner friendly.
<!--session: 1617430469031-72ec8361-8ae5-4da2-9e75-169713d23cf6-->
-------------
Labels: `severity.Medium` `type.DocumentationBug`
original: jlxw48/ped#3 | priority | use of technical terms throughout the ug the term gui was used without explanation as to what it is this is not beginner friendly labels severity medium type documentationbug original ped | 1 |
527,544 | 15,344,400,265 | IssuesEvent | 2021-02-28 00:59:12 | batect/batect | https://api.github.com/repos/batect/batect | closed | Ask user to confirm command and run it after making correction suggestion | good first issue is:enhancement priority:low | As a user,
When I mis-type the task name
And...batect gives you a suggestion of what I mostlikely meant,
I want batect to ask me to confirm if that is the command i meant (probably with y/n) and if i confirm...i want batect to run that command | 1.0 | Ask user to confirm command and run it after making correction suggestion - As a user,
When I mis-type the task name
And...batect gives you a suggestion of what I mostlikely meant,
I want batect to ask me to confirm if that is the command i meant (probably with y/n) and if i confirm...i want batect to run that command | priority | ask user to confirm command and run it after making correction suggestion as a user when i mis type the task name and batect gives you a suggestion of what i mostlikely meant i want batect to ask me to confirm if that is the command i meant probably with y n and if i confirm i want batect to run that command | 1 |
199,092 | 6,980,997,877 | IssuesEvent | 2017-12-13 05:28:31 | onocy/doma | https://api.github.com/repos/onocy/doma | closed | Profile: Other's Profiles | low priority | - Currently can see their status. Maybe change the card color depending on whether they're there or not.
- Have the profile either in a modal or a separate link | 1.0 | Profile: Other's Profiles - - Currently can see their status. Maybe change the card color depending on whether they're there or not.
- Have the profile either in a modal or a separate link | priority | profile other s profiles currently can see their status maybe change the card color depending on whether they re there or not have the profile either in a modal or a separate link | 1 |
765,893 | 26,865,143,416 | IssuesEvent | 2023-02-03 22:34:41 | Wizleap-Inc/wiz-ui | https://api.github.com/repos/Wizleap-Inc/wiz-ui | closed | Feat(WizChatCard): リンクを貼ったら有効になるようにする | 📦 component 🔽 Low Priority | **機能追加理由・詳細**
Webチャット上でリンクを送りたいケースが多いため
**解決策の提案(任意)**
フロントでは、リンクの正規表現に当てはまる文字列があればaタグで囲う
(バックエンドでサニタイズしてから返す)
**その他考慮事項(任意)** | 1.0 | Feat(WizChatCard): リンクを貼ったら有効になるようにする - **機能追加理由・詳細**
Webチャット上でリンクを送りたいケースが多いため
**解決策の提案(任意)**
フロントでは、リンクの正規表現に当てはまる文字列があればaタグで囲う
(バックエンドでサニタイズしてから返す)
**その他考慮事項(任意)** | priority | feat wizchatcard リンクを貼ったら有効になるようにする 機能追加理由・詳細 webチャット上でリンクを送りたいケースが多いため 解決策の提案(任意) フロントでは、リンクの正規表現に当てはまる文字列があればaタグで囲う バックエンドでサニタイズしてから返す その他考慮事項(任意) | 1 |
109,223 | 4,382,880,998 | IssuesEvent | 2016-08-07 06:05:52 | Murkantilism/skylabgame | https://api.github.com/repos/Murkantilism/skylabgame | closed | Add a post-death camera effect | enhancement Low Priority | After death during score animation, add a slow 360 pan around the player | 1.0 | Add a post-death camera effect - After death during score animation, add a slow 360 pan around the player | priority | add a post death camera effect after death during score animation add a slow pan around the player | 1 |
512,659 | 14,906,489,613 | IssuesEvent | 2021-01-22 00:43:21 | input-output-hk/ouroboros-network | https://api.github.com/repos/input-output-hk/ouroboros-network | closed | Chain DB: rename reader to follower | consensus good first issue priority low | The name "reader" is not so descriptive for an object to follow the chain with. A better name would be "follower" or "chain follower".
The code, the comments, and the technical report will have to be updated accordingly. | 1.0 | Chain DB: rename reader to follower - The name "reader" is not so descriptive for an object to follow the chain with. A better name would be "follower" or "chain follower".
The code, the comments, and the technical report will have to be updated accordingly. | priority | chain db rename reader to follower the name reader is not so descriptive for an object to follow the chain with a better name would be follower or chain follower the code the comments and the technical report will have to be updated accordingly | 1 |
709,313 | 24,373,282,825 | IssuesEvent | 2022-10-03 21:22:53 | codbex/codbex-kronos | https://api.github.com/repos/codbex/codbex-kronos | closed | [IDE] Migration perspective not loading | bug IDE effort-low priority-high | Migration perspective is not loading due to some errors:
```
2022-09-30 10:13:58.044 [ERROR] [http-nio-8080-exec-8] o.e.d.e.a.r.AbstractResourceExecutor - There is no resource at the specified path: /registry/public/ide-core/ui/message-hub.js
2022-09-30 10:13:58.220 [ERROR] [http-nio-8080-exec-8] o.e.d.e.a.r.AbstractResourceExecutor - There is no resource at the specified path: /registry/public/ide-core/ui/ui-layout.js
2022-09-30 10:13:58.415 [ERROR] [http-nio-8080-exec-2] o.e.d.e.a.r.AbstractResourceExecutor - There is no resource at the specified path: /registry/public/ide-core/ui/ui-core-ng-modules.js
```
Probably related to:
- https://github.com/eclipse/dirigible/issues/2034 | 1.0 | [IDE] Migration perspective not loading - Migration perspective is not loading due to some errors:
```
2022-09-30 10:13:58.044 [ERROR] [http-nio-8080-exec-8] o.e.d.e.a.r.AbstractResourceExecutor - There is no resource at the specified path: /registry/public/ide-core/ui/message-hub.js
2022-09-30 10:13:58.220 [ERROR] [http-nio-8080-exec-8] o.e.d.e.a.r.AbstractResourceExecutor - There is no resource at the specified path: /registry/public/ide-core/ui/ui-layout.js
2022-09-30 10:13:58.415 [ERROR] [http-nio-8080-exec-2] o.e.d.e.a.r.AbstractResourceExecutor - There is no resource at the specified path: /registry/public/ide-core/ui/ui-core-ng-modules.js
```
Probably related to:
- https://github.com/eclipse/dirigible/issues/2034 | priority | migration perspective not loading migration perspective is not loading due to some errors o e d e a r abstractresourceexecutor there is no resource at the specified path registry public ide core ui message hub js o e d e a r abstractresourceexecutor there is no resource at the specified path registry public ide core ui ui layout js o e d e a r abstractresourceexecutor there is no resource at the specified path registry public ide core ui ui core ng modules js probably related to | 1 |
143,582 | 5,520,485,829 | IssuesEvent | 2017-03-19 05:45:02 | CitronJS/CitronJS | https://api.github.com/repos/CitronJS/CitronJS | closed | Templates and Cleanup | enhancement fix help wanted Priority: Low | @CitronJS/admin and @CitronJS/maintainers, work on updating templates for the following:
- arc
- quadratic curve
And format older files (the very first ones) and keep comments virtually the same | 1.0 | Templates and Cleanup - @CitronJS/admin and @CitronJS/maintainers, work on updating templates for the following:
- arc
- quadratic curve
And format older files (the very first ones) and keep comments virtually the same | priority | templates and cleanup citronjs admin and citronjs maintainers work on updating templates for the following arc quadratic curve and format older files the very first ones and keep comments virtually the same | 1 |
374,613 | 11,093,067,492 | IssuesEvent | 2019-12-15 23:20:08 | seebye/ueberzug | https://api.github.com/repos/seebye/ueberzug | closed | Depends on attr > 18.2.0 | low priority | The `attrs` package in Ubuntu 18.04 is too old, and doesn't support the `kw_only` argument (used here e.g. in `action.py`), which was added in `attr` version 18.2.0. This should be reflected in the install dependencies. | 1.0 | Depends on attr > 18.2.0 - The `attrs` package in Ubuntu 18.04 is too old, and doesn't support the `kw_only` argument (used here e.g. in `action.py`), which was added in `attr` version 18.2.0. This should be reflected in the install dependencies. | priority | depends on attr the attrs package in ubuntu is too old and doesn t support the kw only argument used here e g in action py which was added in attr version this should be reflected in the install dependencies | 1 |
146,056 | 5,592,786,900 | IssuesEvent | 2017-03-30 06:16:41 | CS2103JAN2017-T09-B4/main | https://api.github.com/repos/CS2103JAN2017-T09-B4/main | closed | Backup my entire task list to the cloud or external storage via export | priority.low type.story | So that I can have extra redundancy against system failures | 1.0 | Backup my entire task list to the cloud or external storage via export - So that I can have extra redundancy against system failures | priority | backup my entire task list to the cloud or external storage via export so that i can have extra redundancy against system failures | 1 |
173,997 | 6,535,341,036 | IssuesEvent | 2017-08-31 14:19:11 | Cxbx-Reloaded/Cxbx-Reloaded | https://api.github.com/repos/Cxbx-Reloaded/Cxbx-Reloaded | opened | Feature: Crash Detection in Specific Section | enhancement good-for-beginners help wanted low-priority | What I do suggest to implement check is to verify which section a title is crashing in. Then Cxbx should output message box where the crash is actually coming from.
Here's what exception handling should check for crash has occur in specific order.
- [ ] 1. Title's section (Section's name with detected nearest address name)
- **address name is already implemented**
- [ ] 2. Cxbx executable
- [ ] 3. Unknown (Could state which windows module is making the crash.) | 1.0 | Feature: Crash Detection in Specific Section - What I do suggest to implement check is to verify which section a title is crashing in. Then Cxbx should output message box where the crash is actually coming from.
Here's what exception handling should check for crash has occur in specific order.
- [ ] 1. Title's section (Section's name with detected nearest address name)
- **address name is already implemented**
- [ ] 2. Cxbx executable
- [ ] 3. Unknown (Could state which windows module is making the crash.) | priority | feature crash detection in specific section what i do suggest to implement check is to verify which section a title is crashing in then cxbx should output message box where the crash is actually coming from here s what exception handling should check for crash has occur in specific order title s section section s name with detected nearest address name address name is already implemented cxbx executable unknown could state which windows module is making the crash | 1 |
733,133 | 25,289,174,457 | IssuesEvent | 2022-11-16 22:09:56 | gitblit/gitblit | https://api.github.com/repos/gitblit/gitblit | closed | UI issue on storing or deleting ssh-keys | Catg-Enhancement Priority-Low Status-New Topic: SSH | It possible to add or delete additional ssh-key in the user profile.
But there is no feedback to the user when he pushes the "Löschen" or "Hinzufügen" button. I would expect a page reload. After a manual page reload, the new ssh-key is shown.
| 1.0 | UI issue on storing or deleting ssh-keys - It possible to add or delete additional ssh-key in the user profile.
But there is no feedback to the user when he pushes the "Löschen" or "Hinzufügen" button. I would expect a page reload. After a manual page reload, the new ssh-key is shown.
| priority | ui issue on storing or deleting ssh keys it possible to add or delete additional ssh key in the user profile but there is no feedback to the user when he pushes the löschen or hinzufügen button i would expect a page reload after a manual page reload the new ssh key is shown | 1 |
228,137 | 7,546,357,102 | IssuesEvent | 2018-04-18 02:27:46 | TheAssassin/AppImageLauncher | https://api.github.com/repos/TheAssassin/AppImageLauncher | closed | Desktop action for updating | enhancement low priority | AppImageLauncher should add a desktop action for updates to desktop entries created for AppImages.
Therefore, a little app should be developed using libappimageupdate-qt. | 1.0 | Desktop action for updating - AppImageLauncher should add a desktop action for updates to desktop entries created for AppImages.
Therefore, a little app should be developed using libappimageupdate-qt. | priority | desktop action for updating appimagelauncher should add a desktop action for updates to desktop entries created for appimages therefore a little app should be developed using libappimageupdate qt | 1 |
609,314 | 18,870,256,197 | IssuesEvent | 2021-11-13 03:21:53 | scilus/fibernavigator | https://api.github.com/repos/scilus/fibernavigator | closed | Compute curvature, torsion only once | enhancement Priority-Low OpSys-All Component-Logic Performance | When using the curvature and torsion coloring mode for fibers, they should be computed only once, since they do not change.
| 1.0 | Compute curvature, torsion only once - When using the curvature and torsion coloring mode for fibers, they should be computed only once, since they do not change.
| priority | compute curvature torsion only once when using the curvature and torsion coloring mode for fibers they should be computed only once since they do not change | 1 |
816,412 | 30,598,735,995 | IssuesEvent | 2023-07-22 04:56:19 | Memmy-App/memmy | https://api.github.com/repos/Memmy-App/memmy | closed | Allow users to delete their own posts | enhancement low priority in progress | Accessing my posts via the default web interface I'm able to delete posts I've made. In Memmy there is no such option.
Navigating to a post via the profile page should allow you to delete a post you've made when you tap on the 3 dots of the post. As of now the only option is to report your own post.
I'll admit I'm not familiar with the state of Lemmy's API at the moment and whether that's possible but it is a missing feature I'd love to see added. | 1.0 | Allow users to delete their own posts - Accessing my posts via the default web interface I'm able to delete posts I've made. In Memmy there is no such option.
Navigating to a post via the profile page should allow you to delete a post you've made when you tap on the 3 dots of the post. As of now the only option is to report your own post.
I'll admit I'm not familiar with the state of Lemmy's API at the moment and whether that's possible but it is a missing feature I'd love to see added. | priority | allow users to delete their own posts accessing my posts via the default web interface i m able to delete posts i ve made in memmy there is no such option navigating to a post via the profile page should allow you to delete a post you ve made when you tap on the dots of the post as of now the only option is to report your own post i ll admit i m not familiar with the state of lemmy s api at the moment and whether that s possible but it is a missing feature i d love to see added | 1 |
110,591 | 4,434,972,389 | IssuesEvent | 2016-08-18 06:25:04 | jahirfiquitiva/IconShowcase | https://api.github.com/repos/jahirfiquitiva/IconShowcase | opened | Make status bar completely transparent in AltWallpaperViewerActivity | enhancement help wanted low priority | Not translucent but completely transparent. | 1.0 | Make status bar completely transparent in AltWallpaperViewerActivity - Not translucent but completely transparent. | priority | make status bar completely transparent in altwallpapervieweractivity not translucent but completely transparent | 1 |
397,507 | 11,728,697,071 | IssuesEvent | 2020-03-10 18:00:23 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | [Coverity CID :208410] Unsigned compared against 0 in drivers/modem/modem_pin.c | Coverity bug has-pr priority: low |
Static code scan issues found in file:
https://github.com/zephyrproject-rtos/zephyr/tree/93b78b7bf8bfad75196de969a7487f95f235aad3/drivers/modem/modem_pin.c#L31
Category: Control flow issues
Function: `modem_pin_write`
Component: Drivers
CID: [208410](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=208410)
Details:
```
25 return gpio_pin_get_raw(ctx->pins[pin].gpio_port_dev,
26 ctx->pins[pin].pin);
27 }
28
29 int modem_pin_write(struct modem_context *ctx, u32_t pin, u32_t value)
30 {
>>> CID 208410: Control flow issues (NO_EFFECT)
>>> This less-than-zero comparison of an unsigned value is never true. "pin < 0U".
31 if (pin < 0 || pin >= ctx->pins_len) {
32 return -ENODEV;
33 }
34
35 return gpio_pin_set_raw(ctx->pins[pin].gpio_port_dev,
36 ctx->pins[pin].pin, value);
```
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 :208410] Unsigned compared against 0 in drivers/modem/modem_pin.c -
Static code scan issues found in file:
https://github.com/zephyrproject-rtos/zephyr/tree/93b78b7bf8bfad75196de969a7487f95f235aad3/drivers/modem/modem_pin.c#L31
Category: Control flow issues
Function: `modem_pin_write`
Component: Drivers
CID: [208410](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=208410)
Details:
```
25 return gpio_pin_get_raw(ctx->pins[pin].gpio_port_dev,
26 ctx->pins[pin].pin);
27 }
28
29 int modem_pin_write(struct modem_context *ctx, u32_t pin, u32_t value)
30 {
>>> CID 208410: Control flow issues (NO_EFFECT)
>>> This less-than-zero comparison of an unsigned value is never true. "pin < 0U".
31 if (pin < 0 || pin >= ctx->pins_len) {
32 return -ENODEV;
33 }
34
35 return gpio_pin_set_raw(ctx->pins[pin].gpio_port_dev,
36 ctx->pins[pin].pin, value);
```
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 | unsigned compared against in drivers modem modem pin c static code scan issues found in file category control flow issues function modem pin write component drivers cid details return gpio pin get raw ctx pins gpio port dev ctx pins pin int modem pin write struct modem context ctx t pin t value cid control flow issues no effect this less than zero comparison of an unsigned value is never true pin if pin ctx pins len return enodev return gpio pin set raw ctx pins gpio port dev ctx pins pin value 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 |
463,827 | 13,301,449,691 | IssuesEvent | 2020-08-25 12:58:38 | oppia/oppia-android | https://api.github.com/repos/oppia/oppia-android | closed | Remove 'Sean' from being the default admin | Priority: Important Status: In implementation Type: Improvement Where: Profiles Where: Starting flows | While we don't have the account login flow enabled for alpha, we need to default the admin account. We should default to 'admin' rather than 'Sean' since the latter may lead to user confusion. | 1.0 | Remove 'Sean' from being the default admin - While we don't have the account login flow enabled for alpha, we need to default the admin account. We should default to 'admin' rather than 'Sean' since the latter may lead to user confusion. | priority | remove sean from being the default admin while we don t have the account login flow enabled for alpha we need to default the admin account we should default to admin rather than sean since the latter may lead to user confusion | 1 |
457,825 | 13,162,961,224 | IssuesEvent | 2020-08-10 22:55:54 | mapbox/mapbox-navigation-android | https://api.github.com/repos/mapbox/mapbox-navigation-android | closed | Cannot create custom voice with SpeechAnnouncement | bug low priority navigation-ui topic: instructions topic: voice | I need to inform the users when they go **offroute** by voiceInstuction saying "Recalculating".
Im using navigationView in a fragment, and when the offroute detection fires, Im trying to generate a custom voice instruction. I could not find any documentation on how to generate it correctly, I also looked at custom Milestones, but there is no trigger option for offRoute.
//.................
NavigationViewOptions.Builder navigationOptionsBuilder = NavigationViewOptions.builder()
.navigationListener(this)
.directionsRoute(selectedRoute)
.shouldSimulateRoute(isSimulate)
.routeListener(new RouteListener() {
@Override
public boolean allowRerouteFrom(Point offRoutePoint) {
return true;
}
@Override
public void onOffRoute(Point offRoutePoint) {
willVoice(SpeechAnnouncement.builder().announcement("Recalculating").ssmlAnnouncement("<speak>Recalculating</speak>").build());
}
@Override
public void onRerouteAlong(DirectionsRoute directionsRoute) {
}
@Override
public void onFailedReroute(String errorMessage) {
}
@Override
public void onArrival() {
}
})
.progressChangeListener(this)
.instructionListListener(this)
.speechAnnouncementListener(this)
.bannerInstructionsListener(this);
//..........
@Override
public SpeechAnnouncement willVoice(SpeechAnnouncement speechAnnouncement) {
return speechAnnouncement;
}
**Android API:** 16-28
**Mapbox Navigation SDK version:** 0.40.0
### Steps to trigger behavior
1. create navigationView
2. add offroute detection
3. call willVoice with custom instruction
### Expected behavior
The device plays the custom audio.
### Actual behavior
No audio can be heard.
| 1.0 | Cannot create custom voice with SpeechAnnouncement - I need to inform the users when they go **offroute** by voiceInstuction saying "Recalculating".
Im using navigationView in a fragment, and when the offroute detection fires, Im trying to generate a custom voice instruction. I could not find any documentation on how to generate it correctly, I also looked at custom Milestones, but there is no trigger option for offRoute.
//.................
NavigationViewOptions.Builder navigationOptionsBuilder = NavigationViewOptions.builder()
.navigationListener(this)
.directionsRoute(selectedRoute)
.shouldSimulateRoute(isSimulate)
.routeListener(new RouteListener() {
@Override
public boolean allowRerouteFrom(Point offRoutePoint) {
return true;
}
@Override
public void onOffRoute(Point offRoutePoint) {
willVoice(SpeechAnnouncement.builder().announcement("Recalculating").ssmlAnnouncement("<speak>Recalculating</speak>").build());
}
@Override
public void onRerouteAlong(DirectionsRoute directionsRoute) {
}
@Override
public void onFailedReroute(String errorMessage) {
}
@Override
public void onArrival() {
}
})
.progressChangeListener(this)
.instructionListListener(this)
.speechAnnouncementListener(this)
.bannerInstructionsListener(this);
//..........
@Override
public SpeechAnnouncement willVoice(SpeechAnnouncement speechAnnouncement) {
return speechAnnouncement;
}
**Android API:** 16-28
**Mapbox Navigation SDK version:** 0.40.0
### Steps to trigger behavior
1. create navigationView
2. add offroute detection
3. call willVoice with custom instruction
### Expected behavior
The device plays the custom audio.
### Actual behavior
No audio can be heard.
| priority | cannot create custom voice with speechannouncement i need to inform the users when they go offroute by voiceinstuction saying recalculating im using navigationview in a fragment and when the offroute detection fires im trying to generate a custom voice instruction i could not find any documentation on how to generate it correctly i also looked at custom milestones but there is no trigger option for offroute navigationviewoptions builder navigationoptionsbuilder navigationviewoptions builder navigationlistener this directionsroute selectedroute shouldsimulateroute issimulate routelistener new routelistener override public boolean allowreroutefrom point offroutepoint return true override public void onoffroute point offroutepoint willvoice speechannouncement builder announcement recalculating ssmlannouncement recalculating build override public void onreroutealong directionsroute directionsroute override public void onfailedreroute string errormessage override public void onarrival progresschangelistener this instructionlistlistener this speechannouncementlistener this bannerinstructionslistener this override public speechannouncement willvoice speechannouncement speechannouncement return speechannouncement android api mapbox navigation sdk version steps to trigger behavior create navigationview add offroute detection call willvoice with custom instruction expected behavior the device plays the custom audio actual behavior no audio can be heard | 1 |
559,907 | 16,580,612,515 | IssuesEvent | 2021-05-31 11:16:08 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | 9.2.0 1897 AshlarStoneTable and AdornedAshlarStoneTable missing "mount" component | Category: Gameplay Priority: Low Squad: Redwood Status: Fixed | AshlarStoneTable and AdornedAshlarStoneTable are missing the "mount" components
also missing the bit just below porotected override void when comparing them

| 1.0 | 9.2.0 1897 AshlarStoneTable and AdornedAshlarStoneTable missing "mount" component - AshlarStoneTable and AdornedAshlarStoneTable are missing the "mount" components
also missing the bit just below porotected override void when comparing them

| priority | ashlarstonetable and adornedashlarstonetable missing mount component ashlarstonetable and adornedashlarstonetable are missing the mount components also missing the bit just below porotected override void when comparing them | 1 |
777,576 | 27,286,501,068 | IssuesEvent | 2023-02-23 13:52:19 | Puzzlepart/prosjektportalen365 | https://api.github.com/repos/Puzzlepart/prosjektportalen365 | opened | Omskriv Porteføljeoversikten til å være en funksjonell komponent | priority: low complexity: medium internal | Porteføljeoversikten bruker nå en klasse-komponent, som begynner å bli utdatert i React. Vi bør refaktorere denne til å bruke funksjonell komponent. Dette gjøres for `PortfolioOverviewCommands` som en del av #1028.
Det blir lettere å gjøre endringer på denne webdelen/komponenten om vi moduliserer den og bruker funksjonelle komponenter. | 1.0 | Omskriv Porteføljeoversikten til å være en funksjonell komponent - Porteføljeoversikten bruker nå en klasse-komponent, som begynner å bli utdatert i React. Vi bør refaktorere denne til å bruke funksjonell komponent. Dette gjøres for `PortfolioOverviewCommands` som en del av #1028.
Det blir lettere å gjøre endringer på denne webdelen/komponenten om vi moduliserer den og bruker funksjonelle komponenter. | priority | omskriv porteføljeoversikten til å være en funksjonell komponent porteføljeoversikten bruker nå en klasse komponent som begynner å bli utdatert i react vi bør refaktorere denne til å bruke funksjonell komponent dette gjøres for portfoliooverviewcommands som en del av det blir lettere å gjøre endringer på denne webdelen komponenten om vi moduliserer den og bruker funksjonelle komponenter | 1 |
244,283 | 7,873,029,871 | IssuesEvent | 2018-06-25 13:11:23 | GimmerBot/Gimmer | https://api.github.com/repos/GimmerBot/Gimmer | closed | Search field not working on Indicator menu | Category: UX Platform: All Priority : Low Status: On Hold Type: Bug | Expected Behavior: Result are filtered while typing in Search field
Actual Behavior: No change to Indicator options
Steps to Reproduce the Problem: Type in the Search field of the Indicator menu
Specifications
Gimmer Version: v0.2.13
OS: Windows 7
Date: 05/31/2018

| 1.0 | Search field not working on Indicator menu - Expected Behavior: Result are filtered while typing in Search field
Actual Behavior: No change to Indicator options
Steps to Reproduce the Problem: Type in the Search field of the Indicator menu
Specifications
Gimmer Version: v0.2.13
OS: Windows 7
Date: 05/31/2018

| priority | search field not working on indicator menu expected behavior result are filtered while typing in search field actual behavior no change to indicator options steps to reproduce the problem type in the search field of the indicator menu specifications gimmer version os windows date | 1 |
555,696 | 16,463,493,916 | IssuesEvent | 2021-05-22 00:43:48 | SmashMC-Development/Bugs-and-Issues | https://api.github.com/repos/SmashMC-Development/Bugs-and-Issues | opened | SmashClear is using the old lang/config | low priority pixelmon | **Describe the Bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Servers with the Bug**
Please provide a list of which servers have this bug.
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem. If not, please add 'N/A'.
**Additional context**
Add any other context about the problem here. If nothing, please add 'N/A'.
| 1.0 | SmashClear is using the old lang/config - **Describe the Bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Servers with the Bug**
Please provide a list of which servers have this bug.
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem. If not, please add 'N/A'.
**Additional context**
Add any other context about the problem here. If nothing, please add 'N/A'.
| priority | smashclear is using the old lang config describe the bug a clear and concise description of what the bug is to reproduce steps to reproduce the behavior go to click on scroll down to see error servers with the bug please provide a list of which servers have this bug expected behavior a clear and concise description of what you expected to happen screenshots if applicable add screenshots to help explain your problem if not please add n a additional context add any other context about the problem here if nothing please add n a | 1 |
208,199 | 7,136,854,077 | IssuesEvent | 2018-01-23 08:58:00 | spacetelescope/cubeviz | https://api.github.com/repos/spacetelescope/cubeviz | opened | Moment Map Alpha | bug low-priority | Moment map alpha goes to default level when moment map is changed b/w orders. | 1.0 | Moment Map Alpha - Moment map alpha goes to default level when moment map is changed b/w orders. | priority | moment map alpha moment map alpha goes to default level when moment map is changed b w orders | 1 |
352,213 | 10,533,280,006 | IssuesEvent | 2019-10-01 12:44:38 | workcraft/workcraft | https://api.github.com/repos/workcraft/workcraft | opened | Import and Export features for XBM plugin | priority:low status:confirmed tag:model:xbm | To create a feature to allow users to import their BM/XBM models into Workcraft for a '.work' version of XBM, as well as export their '.work' XBM into a corresponding BM/XBM file.
| 1.0 | Import and Export features for XBM plugin - To create a feature to allow users to import their BM/XBM models into Workcraft for a '.work' version of XBM, as well as export their '.work' XBM into a corresponding BM/XBM file.
| priority | import and export features for xbm plugin to create a feature to allow users to import their bm xbm models into workcraft for a work version of xbm as well as export their work xbm into a corresponding bm xbm file | 1 |
704,465 | 24,197,878,544 | IssuesEvent | 2022-09-24 05:54:37 | iskandarzulkarnaien/DCUBE-ShrinkUrl | https://api.github.com/repos/iskandarzulkarnaien/DCUBE-ShrinkUrl | opened | Create functional tests for routes that utilize forms | low priority | As in title. Currently unable to do so due to lack of knowledge on how to do so. Low priority issue. | 1.0 | Create functional tests for routes that utilize forms - As in title. Currently unable to do so due to lack of knowledge on how to do so. Low priority issue. | priority | create functional tests for routes that utilize forms as in title currently unable to do so due to lack of knowledge on how to do so low priority issue | 1 |
713,706 | 24,536,411,557 | IssuesEvent | 2022-10-11 21:12:42 | KinsonDigital/CICD | https://api.github.com/repos/KinsonDigital/CICD | opened | 🔬Research GraphGL API for future use | low priority 🔬research | ### Complete The Item Below
- [X] I have updated the title without removing the 🔬 emoji.
### What To Research
Research how GraphQL works and how to use it. This is for the purpose of future enhancements on dealing with GitHub data and can help enhance the CICD project itself.
**Resources:**
- [GraphQL Org](https://graphql.org/)
- [GitHub GraphQL API](https://docs.github.com/en/graphql)
Create some examples that can be documented into this issue. Also try to use GraphQL in postman which will not only help learn about GraphQL, but also about using the GitHub GraphQL API.
Once this is all done and understood, create some issues to use the GraphQL API to add a feature to interact with the new project system to check if an issue or PR has been added to the project as well as possibly check which column it is in.
Another benefit is that once GraphQL is understood, workflows can be created to help automate some of the board flow.
### Research Results
_No response_
### Acceptance Criteria
**This issue is finished when:**
- [ ] Research complete and issues created _(if needed)_.
- [ ] If any issues were created, they have been added to the _**Related Work**_ section below.
### ToDo Items
- [ ] Priority label added to this issue. Refer to the _**Priority Type Labels**_ section below.
- [ ] Issue linked to the correct project.
### Issue Dependencies
_No response_
### Related Work
_No response_
### Additional Information:
**_<details closed><summary>Priority Type Labels</summary>_**
| Priority Type | Label |
|---------------------|-------------------|
| Low Priority | `low priority` |
| Medium Priority | `medium priority` |
| High Priority | `high priority` |
</details>
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct. | 1.0 | 🔬Research GraphGL API for future use - ### Complete The Item Below
- [X] I have updated the title without removing the 🔬 emoji.
### What To Research
Research how GraphQL works and how to use it. This is for the purpose of future enhancements on dealing with GitHub data and can help enhance the CICD project itself.
**Resources:**
- [GraphQL Org](https://graphql.org/)
- [GitHub GraphQL API](https://docs.github.com/en/graphql)
Create some examples that can be documented into this issue. Also try to use GraphQL in postman which will not only help learn about GraphQL, but also about using the GitHub GraphQL API.
Once this is all done and understood, create some issues to use the GraphQL API to add a feature to interact with the new project system to check if an issue or PR has been added to the project as well as possibly check which column it is in.
Another benefit is that once GraphQL is understood, workflows can be created to help automate some of the board flow.
### Research Results
_No response_
### Acceptance Criteria
**This issue is finished when:**
- [ ] Research complete and issues created _(if needed)_.
- [ ] If any issues were created, they have been added to the _**Related Work**_ section below.
### ToDo Items
- [ ] Priority label added to this issue. Refer to the _**Priority Type Labels**_ section below.
- [ ] Issue linked to the correct project.
### Issue Dependencies
_No response_
### Related Work
_No response_
### Additional Information:
**_<details closed><summary>Priority Type Labels</summary>_**
| Priority Type | Label |
|---------------------|-------------------|
| Low Priority | `low priority` |
| Medium Priority | `medium priority` |
| High Priority | `high priority` |
</details>
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct. | priority | 🔬research graphgl api for future use complete the item below i have updated the title without removing the 🔬 emoji what to research research how graphql works and how to use it this is for the purpose of future enhancements on dealing with github data and can help enhance the cicd project itself resources create some examples that can be documented into this issue also try to use graphql in postman which will not only help learn about graphql but also about using the github graphql api once this is all done and understood create some issues to use the graphql api to add a feature to interact with the new project system to check if an issue or pr has been added to the project as well as possibly check which column it is in another benefit is that once graphql is understood workflows can be created to help automate some of the board flow research results no response acceptance criteria this issue is finished when research complete and issues created if needed if any issues were created they have been added to the related work section below todo items priority label added to this issue refer to the priority type labels section below issue linked to the correct project issue dependencies no response related work no response additional information priority type labels priority type label low priority low priority medium priority medium priority high priority high priority code of conduct i agree to follow this project s code of conduct | 1 |
188,441 | 6,776,364,480 | IssuesEvent | 2017-10-27 17:34:04 | redox-os/ion | https://api.github.com/repos/redox-os/ion | closed | Multiple Redirection Support | B-Class enhancement high-priority low-hanging fruit | It's currently only possible to perform one redirection at a time. Adding support for multiple redirections would be very useful in a number of cases, and should be somewhat easy to implement. In example, redirecting standard output to /dev/null, but redirecting standard error to a log.
```sh
cmd args... > /dev/null ^> log
``` | 1.0 | Multiple Redirection Support - It's currently only possible to perform one redirection at a time. Adding support for multiple redirections would be very useful in a number of cases, and should be somewhat easy to implement. In example, redirecting standard output to /dev/null, but redirecting standard error to a log.
```sh
cmd args... > /dev/null ^> log
``` | priority | multiple redirection support it s currently only possible to perform one redirection at a time adding support for multiple redirections would be very useful in a number of cases and should be somewhat easy to implement in example redirecting standard output to dev null but redirecting standard error to a log sh cmd args dev null log | 1 |
247,824 | 7,924,092,466 | IssuesEvent | 2018-07-05 15:50:27 | xAPI-vle/moodle-logstore_xapi | https://api.github.com/repos/xAPI-vle/moodle-logstore_xapi | closed | Trim attempt_reviewed statement to only include necessary parts | priority:low status:confirmed type:enhancement | attempt_reviewed statements are a bit verbose for what they are. Should be a simple statement of:
User reviewed attempt.
Also, remove the QuestionSubmitted recipe so that answers aren't submitted every time.
https://github.com/xAPI-vle/moodle-logstore_xapi/blob/516bf881c09ff2ddee43694edfb84cde42ebe4e5/lib/translator/src/Controller.php#L52 | 1.0 | Trim attempt_reviewed statement to only include necessary parts - attempt_reviewed statements are a bit verbose for what they are. Should be a simple statement of:
User reviewed attempt.
Also, remove the QuestionSubmitted recipe so that answers aren't submitted every time.
https://github.com/xAPI-vle/moodle-logstore_xapi/blob/516bf881c09ff2ddee43694edfb84cde42ebe4e5/lib/translator/src/Controller.php#L52 | priority | trim attempt reviewed statement to only include necessary parts attempt reviewed statements are a bit verbose for what they are should be a simple statement of user reviewed attempt also remove the questionsubmitted recipe so that answers aren t submitted every time | 1 |
712,747 | 24,506,240,084 | IssuesEvent | 2022-10-10 16:37:55 | ChainSafe/forest | https://api.github.com/repos/ChainSafe/forest | opened | Miscellaneous clean-up. | Priority: 4 - Low Maintenance Status: Needs Triage Ready | **Issue summary**
<!-- A clear and concise description of what the task is. -->
- Unused: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/forest/cli/src/main.rs#L16
- Shouldn't be `pub`: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/forest/daemon/src/main.rs#L30
- Remove this function: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/ipld/blockstore/src/lib.rs#L19
- Unused: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/vm/actor_interface/src/builtin/mod.rs#L80
- Unused: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/vm/actor_interface/src/builtin/mod.rs#L90
- Unused: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/vm/actor_interface/src/builtin/mod.rs#L100
- Move `forest_networks` such that is isn't nested in `forest_fil_types`.
**Other information and links**
<!-- Add any other context or screenshots about the issue here. -->
<!-- Thank you 🙏 --> | 1.0 | Miscellaneous clean-up. - **Issue summary**
<!-- A clear and concise description of what the task is. -->
- Unused: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/forest/cli/src/main.rs#L16
- Shouldn't be `pub`: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/forest/daemon/src/main.rs#L30
- Remove this function: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/ipld/blockstore/src/lib.rs#L19
- Unused: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/vm/actor_interface/src/builtin/mod.rs#L80
- Unused: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/vm/actor_interface/src/builtin/mod.rs#L90
- Unused: https://github.com/ChainSafe/forest/blob/c2d3918a293970b42ff883e723c02b6e1bb03934/vm/actor_interface/src/builtin/mod.rs#L100
- Move `forest_networks` such that is isn't nested in `forest_fil_types`.
**Other information and links**
<!-- Add any other context or screenshots about the issue here. -->
<!-- Thank you 🙏 --> | priority | miscellaneous clean up issue summary unused shouldn t be pub remove this function unused unused unused move forest networks such that is isn t nested in forest fil types other information and links | 1 |
534,532 | 15,624,841,313 | IssuesEvent | 2021-03-21 04:52:26 | bluecherrydvr/bluecherry-apps | https://api.github.com/repos/bluecherrydvr/bluecherry-apps | closed | Web: Support low bandwidth mode | Feature Priority Low | A option in live view should enable low bandwidth mode where only 1 or 2FPS is pulled from the server.
| 1.0 | Web: Support low bandwidth mode - A option in live view should enable low bandwidth mode where only 1 or 2FPS is pulled from the server.
| priority | web support low bandwidth mode a option in live view should enable low bandwidth mode where only or is pulled from the server | 1 |
408,174 | 11,942,629,560 | IssuesEvent | 2020-04-02 21:22:11 | wireservice/csvkit | https://api.github.com/repos/wireservice/csvkit | closed | TimeDelta sum | Low Priority feature | Hi!
Thank you for csvkit.
I am wondering if it would be possible to add the "sum feature" for `TimeDelta` type?
How would I use it?
```
$ csvstat -c Duration --unique test.csv
2
$ csvstat -c Duration --sum test.csv
None # Here I would expect 4:06:00 instead of None -- sum of the time delta times
$ cat test.csv
Duration
01:16:00
02:50:00
```
I am happy to submit PR.
Thanks | 1.0 | TimeDelta sum - Hi!
Thank you for csvkit.
I am wondering if it would be possible to add the "sum feature" for `TimeDelta` type?
How would I use it?
```
$ csvstat -c Duration --unique test.csv
2
$ csvstat -c Duration --sum test.csv
None # Here I would expect 4:06:00 instead of None -- sum of the time delta times
$ cat test.csv
Duration
01:16:00
02:50:00
```
I am happy to submit PR.
Thanks | priority | timedelta sum hi thank you for csvkit i am wondering if it would be possible to add the sum feature for timedelta type how would i use it csvstat c duration unique test csv csvstat c duration sum test csv none here i would expect instead of none sum of the time delta times cat test csv duration i am happy to submit pr thanks | 1 |
194,019 | 6,890,673,553 | IssuesEvent | 2017-11-22 14:45:51 | fabric8-launch/appdev-documentation | https://api.github.com/repos/fabric8-launch/appdev-documentation | closed | WildFly Swarm guide: missing product version number | Effort | Low Issue | Has PR Priority | High Runtime | WildFly Swarm Type | Bug | The Swarm guide doesn't tell what's the version number to use when adding Maven dependencies. What's more, when showing the BOM usage, it even uses a community version number for demonstration!
FTR, the correct version number for our first GA is `7.0.0.redhat-8`. | 1.0 | WildFly Swarm guide: missing product version number - The Swarm guide doesn't tell what's the version number to use when adding Maven dependencies. What's more, when showing the BOM usage, it even uses a community version number for demonstration!
FTR, the correct version number for our first GA is `7.0.0.redhat-8`. | priority | wildfly swarm guide missing product version number the swarm guide doesn t tell what s the version number to use when adding maven dependencies what s more when showing the bom usage it even uses a community version number for demonstration ftr the correct version number for our first ga is redhat | 1 |
453,265 | 13,067,398,492 | IssuesEvent | 2020-07-31 00:19:43 | ProjectSidewalk/SidewalkWebpage | https://api.github.com/repos/ProjectSidewalk/SidewalkWebpage | closed | Separate prod/test servers a bit more | Priority: Low logging | I realized that for Google Analytics, I can separate the logging for the test servers vs prod servers by adding a new "property" to that city's "account". Then I just need to change the Google Analytics IDs in the config files to use "-1" vs "-2".
And if I'm changing configs based on whether or not the server is a test server, I might as well also make sure the links on the test server landing pages point to other test servers instead of their prod servers. This can also make it so the landing page link in our local dev environments point to test servers instead of prod servers as well. | 1.0 | Separate prod/test servers a bit more - I realized that for Google Analytics, I can separate the logging for the test servers vs prod servers by adding a new "property" to that city's "account". Then I just need to change the Google Analytics IDs in the config files to use "-1" vs "-2".
And if I'm changing configs based on whether or not the server is a test server, I might as well also make sure the links on the test server landing pages point to other test servers instead of their prod servers. This can also make it so the landing page link in our local dev environments point to test servers instead of prod servers as well. | priority | separate prod test servers a bit more i realized that for google analytics i can separate the logging for the test servers vs prod servers by adding a new property to that city s account then i just need to change the google analytics ids in the config files to use vs and if i m changing configs based on whether or not the server is a test server i might as well also make sure the links on the test server landing pages point to other test servers instead of their prod servers this can also make it so the landing page link in our local dev environments point to test servers instead of prod servers as well | 1 |
624,090 | 19,686,169,954 | IssuesEvent | 2022-01-11 22:28:36 | BUUPE/Inquisitor | https://api.github.com/repos/BUUPE/Inquisitor | closed | Refactor General Settings | enhancement low priority | Switch the generalSettings.js to use immutability helper to set values
Scope settings ie
```
{
general: {}.
timeslots: {},
...
}
```
Abstract rendering of settings so the file isnt huge | 1.0 | Refactor General Settings - Switch the generalSettings.js to use immutability helper to set values
Scope settings ie
```
{
general: {}.
timeslots: {},
...
}
```
Abstract rendering of settings so the file isnt huge | priority | refactor general settings switch the generalsettings js to use immutability helper to set values scope settings ie general timeslots abstract rendering of settings so the file isnt huge | 1 |
651,614 | 21,483,179,914 | IssuesEvent | 2022-04-26 19:55:51 | epam/ketcher | https://api.github.com/repos/epam/ketcher | opened | The valence of monovalent atoms is displayed incorrectly in the structure after the Copy/Paste actions | bug priority: low | **Steps to Reproduce**
1. Lauch Ketcher.
2. Create a structure (e.g. chain).
3. Change some carbon atoms located in the middle of the structure to a monovalent atom (e.g. 'F' and 'Br').
**Expected behavior** 'F' and 'Br' atoms are underlined in red as atoms with an impossible number of bonds - correct behavior.
4. Select the structure. Copy - Paste it on the canvas.
**Expected behavior**
'F' and 'Br' atoms are underlined in red in the pasted structure.
**Actual behavior**
'F' and 'Br' atoms are not underlined and shown as atoms with correct number of bonds.
**Screenshots**
<img width="248" alt="2022-04-26_22h54_39" src="https://user-images.githubusercontent.com/80695128/165381405-6c6c0bf4-8922-46b9-a565-0d2bea2f5428.png">
Desktop:
OS: Windows 10
Browser: chrome
Version 100.0.4896.127
Ketcher version
v2.4.2-212-g4dee48be | 1.0 | The valence of monovalent atoms is displayed incorrectly in the structure after the Copy/Paste actions - **Steps to Reproduce**
1. Lauch Ketcher.
2. Create a structure (e.g. chain).
3. Change some carbon atoms located in the middle of the structure to a monovalent atom (e.g. 'F' and 'Br').
**Expected behavior** 'F' and 'Br' atoms are underlined in red as atoms with an impossible number of bonds - correct behavior.
4. Select the structure. Copy - Paste it on the canvas.
**Expected behavior**
'F' and 'Br' atoms are underlined in red in the pasted structure.
**Actual behavior**
'F' and 'Br' atoms are not underlined and shown as atoms with correct number of bonds.
**Screenshots**
<img width="248" alt="2022-04-26_22h54_39" src="https://user-images.githubusercontent.com/80695128/165381405-6c6c0bf4-8922-46b9-a565-0d2bea2f5428.png">
Desktop:
OS: Windows 10
Browser: chrome
Version 100.0.4896.127
Ketcher version
v2.4.2-212-g4dee48be | priority | the valence of monovalent atoms is displayed incorrectly in the structure after the copy paste actions steps to reproduce lauch ketcher create a structure e g chain change some carbon atoms located in the middle of the structure to a monovalent atom e g f and br expected behavior f and br atoms are underlined in red as atoms with an impossible number of bonds correct behavior select the structure copy paste it on the canvas expected behavior f and br atoms are underlined in red in the pasted structure actual behavior f and br atoms are not underlined and shown as atoms with correct number of bonds screenshots img width alt src desktop os windows browser chrome version ketcher version | 1 |
625,295 | 19,724,456,364 | IssuesEvent | 2022-01-13 18:30:00 | epam/ketcher | https://api.github.com/repos/epam/ketcher | closed | Exception if insert a molecule past the Ketcher | bug priority: low | **Steps to Reproduce**
1. Copy some molecule into clipboard
2. Open new window with Ketcher
3. Do not move the mouse or place it anywhere other than over the Ketcher
4. Ctrl+V
5. Exception in console
**Expected behavior**
Molecule is inserted into Ketcher.
**Actual behavior**
There is no inserted molecule.
Exception in console.
**Screenshots**

**Desktop**
- OS: Windows 10
- Browser Chrome
- Version 96.0.4664.110 (Official Build) (64-bit)
**Additional context**
If to click on Ketcher, the bug will not be reproducible, even if move the mouse out. But the focus element is always the same.
| 1.0 | Exception if insert a molecule past the Ketcher - **Steps to Reproduce**
1. Copy some molecule into clipboard
2. Open new window with Ketcher
3. Do not move the mouse or place it anywhere other than over the Ketcher
4. Ctrl+V
5. Exception in console
**Expected behavior**
Molecule is inserted into Ketcher.
**Actual behavior**
There is no inserted molecule.
Exception in console.
**Screenshots**

**Desktop**
- OS: Windows 10
- Browser Chrome
- Version 96.0.4664.110 (Official Build) (64-bit)
**Additional context**
If to click on Ketcher, the bug will not be reproducible, even if move the mouse out. But the focus element is always the same.
| priority | exception if insert a molecule past the ketcher steps to reproduce copy some molecule into clipboard open new window with ketcher do not move the mouse or place it anywhere other than over the ketcher ctrl v exception in console expected behavior molecule is inserted into ketcher actual behavior there is no inserted molecule exception in console screenshots desktop os windows browser chrome version official build bit additional context if to click on ketcher the bug will not be reproducible even if move the mouse out but the focus element is always the same | 1 |
138,760 | 5,346,605,663 | IssuesEvent | 2017-02-17 20:08:45 | nluedtke/linux_kernel_cves | https://api.github.com/repos/nluedtke/linux_kernel_cves | opened | Ignore vendor specific kernel issues | enhancement low priority | Because this tracker is concerned with upstream kernels, the CVEs introduced by vendor patches should be ignored. This will likely require some sort of flag to be carried with the CVE in the json. I am not prepared to make this decision yet so filing this as a placeholder and a reminder it needs to be done. This will clear up several CVEs across all streams that appear as "Unknown fix" | 1.0 | Ignore vendor specific kernel issues - Because this tracker is concerned with upstream kernels, the CVEs introduced by vendor patches should be ignored. This will likely require some sort of flag to be carried with the CVE in the json. I am not prepared to make this decision yet so filing this as a placeholder and a reminder it needs to be done. This will clear up several CVEs across all streams that appear as "Unknown fix" | priority | ignore vendor specific kernel issues because this tracker is concerned with upstream kernels the cves introduced by vendor patches should be ignored this will likely require some sort of flag to be carried with the cve in the json i am not prepared to make this decision yet so filing this as a placeholder and a reminder it needs to be done this will clear up several cves across all streams that appear as unknown fix | 1 |
322,726 | 9,828,154,220 | IssuesEvent | 2019-06-15 08:50:31 | leonidesu/AzN-Survival2 | https://api.github.com/repos/leonidesu/AzN-Survival2 | closed | Kesalahan broadcast vote | bug priority: low | Broadcast Vote
Kalo vote kan dapetnya "Shard Key"
tp di vote broadcastnya tulisannya "vote key" | 1.0 | Kesalahan broadcast vote - Broadcast Vote
Kalo vote kan dapetnya "Shard Key"
tp di vote broadcastnya tulisannya "vote key" | priority | kesalahan broadcast vote broadcast vote kalo vote kan dapetnya shard key tp di vote broadcastnya tulisannya vote key | 1 |
54,906 | 3,071,587,715 | IssuesEvent | 2015-08-19 13:02:49 | sunpy/sunpy | https://api.github.com/repos/sunpy/sunpy | opened | Add a shift() method to GenericMap | effort-low Feature Request Map priority-medium | In order to easily fix any translation errors in the map location. | 1.0 | Add a shift() method to GenericMap - In order to easily fix any translation errors in the map location. | priority | add a shift method to genericmap in order to easily fix any translation errors in the map location | 1 |
635,659 | 20,424,461,924 | IssuesEvent | 2022-02-24 01:16:15 | AY2122S2-CS2103-F09-4/tp | https://api.github.com/repos/AY2122S2-CS2103-F09-4/tp | opened | As a home baker that has multiple orders through the week, I can be notified of what ingredients are needed | enhancement priority.low | So that I can fulfil the orders
| 1.0 | As a home baker that has multiple orders through the week, I can be notified of what ingredients are needed - So that I can fulfil the orders
| priority | as a home baker that has multiple orders through the week i can be notified of what ingredients are needed so that i can fulfil the orders | 1 |
735,152 | 25,381,132,287 | IssuesEvent | 2022-11-21 17:38:03 | ufosc/Club_Website_2 | https://api.github.com/repos/ufosc/Club_Website_2 | closed | Add a version parameter to the footer component | low priority difficulty: easy | **TODO:** Create a parameter in the footer component that takes and displays a version string.
Preview:
<img width="901" alt="image" src="https://user-images.githubusercontent.com/50573884/199523031-d5222374-afb4-45f7-bdb1-27f811311aac.png">
See the 'source' hyperlink at the bottom left. Currently, we're only displaying 'source,' you should pass the parameter into the source string so that it displays as 'Source [VERSION STRING]' | 1.0 | Add a version parameter to the footer component - **TODO:** Create a parameter in the footer component that takes and displays a version string.
Preview:
<img width="901" alt="image" src="https://user-images.githubusercontent.com/50573884/199523031-d5222374-afb4-45f7-bdb1-27f811311aac.png">
See the 'source' hyperlink at the bottom left. Currently, we're only displaying 'source,' you should pass the parameter into the source string so that it displays as 'Source [VERSION STRING]' | priority | add a version parameter to the footer component todo create a parameter in the footer component that takes and displays a version string preview img width alt image src see the source hyperlink at the bottom left currently we re only displaying source you should pass the parameter into the source string so that it displays as source | 1 |
654,566 | 21,656,332,671 | IssuesEvent | 2022-05-06 14:26:58 | prisma/prisma | https://api.github.com/repos/prisma/prisma | closed | FindFirst returns the first item even if it is undefined | bug/0-unknown kind/bug topic: findFirst team/client priority/low size/s | ### Bug description
I was trying to find a user by email, then I realized that my input was sending undefined and even so the findFirst was returning the first user of my database.
### How to reproduce
<!--
1. Go to '...'
2. Change '....'
3. Run '....'
4. See error
-->
1. Try searching for a user or anything
2. Dentro do where, coloque um argumento como undefined, como where: {name: undefined}
3. make the request
4. See that it will return an item, even though it is undefined
### Expected behavior
I expected it to return the user according to the parameters, and in case of undefined it doesn't return any.
### Prisma information
<!-- Do not include your database credentials when sharing your Prisma schema! -->
```ks
getUserByEmail: async ({email}) => {
console.log({email});
return await prisma.user.findFirst({
where: {
status: 1,
email: email,
},
});
},
```
### Environment & setup
- OS: Windows <!--[e.g. Mac OS, Windows, Debian, CentOS, ...]-->
- Database: MySQL <!--[,MySQL]-->
- Node.js version: v16.13.2 <!--[Run `node -v` to see your Node.js version]-->
### Prisma Version
```
"@prisma/client": "3.6.0",
``` | 1.0 | FindFirst returns the first item even if it is undefined - ### Bug description
I was trying to find a user by email, then I realized that my input was sending undefined and even so the findFirst was returning the first user of my database.
### How to reproduce
<!--
1. Go to '...'
2. Change '....'
3. Run '....'
4. See error
-->
1. Try searching for a user or anything
2. Dentro do where, coloque um argumento como undefined, como where: {name: undefined}
3. make the request
4. See that it will return an item, even though it is undefined
### Expected behavior
I expected it to return the user according to the parameters, and in case of undefined it doesn't return any.
### Prisma information
<!-- Do not include your database credentials when sharing your Prisma schema! -->
```ks
getUserByEmail: async ({email}) => {
console.log({email});
return await prisma.user.findFirst({
where: {
status: 1,
email: email,
},
});
},
```
### Environment & setup
- OS: Windows <!--[e.g. Mac OS, Windows, Debian, CentOS, ...]-->
- Database: MySQL <!--[,MySQL]-->
- Node.js version: v16.13.2 <!--[Run `node -v` to see your Node.js version]-->
### Prisma Version
```
"@prisma/client": "3.6.0",
``` | priority | findfirst returns the first item even if it is undefined bug description i was trying to find a user by email then i realized that my input was sending undefined and even so the findfirst was returning the first user of my database how to reproduce go to change run see error try searching for a user or anything dentro do where coloque um argumento como undefined como where name undefined make the request see that it will return an item even though it is undefined expected behavior i expected it to return the user according to the parameters and in case of undefined it doesn t return any prisma information ks getuserbyemail async email console log email return await prisma user findfirst where status email email environment setup os windows database mysql node js version prisma version prisma client | 1 |
727,259 | 25,028,813,363 | IssuesEvent | 2022-11-04 10:28:58 | returntocorp/semgrep-rules | https://api.github.com/repos/returntocorp/semgrep-rules | closed | documentbuilderfactory-disallow-doctype-decl-missing.java doesn't work with static variables | bug priority:low | **Describe the bug**
documentbuilderfactory-disallow-doctype-decl-missing.java does not work with java static variables
**To Reproduce**
```
class GoodDocumentBuilderFactoryStatic {
private static DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
static {
//ok:documentbuilderfactory-disallow-doctype-decl-missing
dbf.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true);
}
}
```
**Expected behavior**
The rule should be able to match static blocks with static variables and see that doctypes are correctly disabled. It looks like the current rule only matches inside a method. If you give me some pointers about how I might do this, then I'll test + prepare a PR.
**Priority**
How important is this to you?
- [ ] P2: annoying but not blocking me
| 1.0 | documentbuilderfactory-disallow-doctype-decl-missing.java doesn't work with static variables - **Describe the bug**
documentbuilderfactory-disallow-doctype-decl-missing.java does not work with java static variables
**To Reproduce**
```
class GoodDocumentBuilderFactoryStatic {
private static DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
static {
//ok:documentbuilderfactory-disallow-doctype-decl-missing
dbf.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true);
}
}
```
**Expected behavior**
The rule should be able to match static blocks with static variables and see that doctypes are correctly disabled. It looks like the current rule only matches inside a method. If you give me some pointers about how I might do this, then I'll test + prepare a PR.
**Priority**
How important is this to you?
- [ ] P2: annoying but not blocking me
| priority | documentbuilderfactory disallow doctype decl missing java doesn t work with static variables describe the bug documentbuilderfactory disallow doctype decl missing java does not work with java static variables to reproduce class gooddocumentbuilderfactorystatic private static documentbuilderfactory dbf documentbuilderfactory newinstance static ok documentbuilderfactory disallow doctype decl missing dbf setfeature true expected behavior the rule should be able to match static blocks with static variables and see that doctypes are correctly disabled it looks like the current rule only matches inside a method if you give me some pointers about how i might do this then i ll test prepare a pr priority how important is this to you annoying but not blocking me | 1 |
410,412 | 11,987,326,634 | IssuesEvent | 2020-04-07 20:59:41 | rathena/rathena | https://api.github.com/repos/rathena/rathena | closed | Brandish Spear Stacked Damage Bug | component:skill mode:renewal priority:low status:confirmed type:bug | <!-- NOTE: Anything within these brackets will be hidden on the preview of the Issue. -->
* **rAthena Hash**: Latest
<!-- 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**: 20180621
<!-- Please specify the client date you used. -->
* **Server Mode**: Renewal
<!-- Which mode does your server use: Pre-Renewal or Renewal? -->
* **Description of Issue**: Brandish Spear is now doing stacked damage.
* Result: <!-- Describe the issue that you experienced in detail. --> Upon testing brandish spear i realized that the skill is having a stacked damage behaving like the old bowling bash.
* Expected Result: <!-- Describe what you would expect to happen in detail. -->Should not do stacked damage.
* How to Reproduce: <!-- If you have not stated in the description of the result already, please give us a short guide how we can reproduce your issue. -->Just test it on the latest rathena.
<!-- * _NOTE: Make sure you quote ``` `@atcommands` ``` just like this so that you do not tag uninvolved GitHub users!_ -->
* **Modifications that may affect results**: none
<!-- * 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 | Brandish Spear Stacked Damage Bug - <!-- NOTE: Anything within these brackets will be hidden on the preview of the Issue. -->
* **rAthena Hash**: Latest
<!-- 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**: 20180621
<!-- Please specify the client date you used. -->
* **Server Mode**: Renewal
<!-- Which mode does your server use: Pre-Renewal or Renewal? -->
* **Description of Issue**: Brandish Spear is now doing stacked damage.
* Result: <!-- Describe the issue that you experienced in detail. --> Upon testing brandish spear i realized that the skill is having a stacked damage behaving like the old bowling bash.
* Expected Result: <!-- Describe what you would expect to happen in detail. -->Should not do stacked damage.
* How to Reproduce: <!-- If you have not stated in the description of the result already, please give us a short guide how we can reproduce your issue. -->Just test it on the latest rathena.
<!-- * _NOTE: Make sure you quote ``` `@atcommands` ``` just like this so that you do not tag uninvolved GitHub users!_ -->
* **Modifications that may affect results**: none
<!-- * 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 | brandish spear stacked damage bug rathena hash latest 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 renewal description of issue brandish spear is now doing stacked damage result upon testing brandish spear i realized that the skill is having a stacked damage behaving like the old bowling bash expected result should not do stacked damage how to reproduce just test it on the latest rathena modifications that may affect results none | 1 |
607,228 | 18,774,985,191 | IssuesEvent | 2021-11-07 14:10:57 | bounswe/2021SpringGroup1 | https://api.github.com/repos/bounswe/2021SpringGroup1 | opened | Reviewing the initial project configurations and model design. | Priority: Low Status: Revision Needed Platform: Backend | We started our initial project and migrated the existing model from the practice-app to the current project. However, we should review project configurations and the initial model more extensively as they will be the base of all implementation. | 1.0 | Reviewing the initial project configurations and model design. - We started our initial project and migrated the existing model from the practice-app to the current project. However, we should review project configurations and the initial model more extensively as they will be the base of all implementation. | priority | reviewing the initial project configurations and model design we started our initial project and migrated the existing model from the practice app to the current project however we should review project configurations and the initial model more extensively as they will be the base of all implementation | 1 |
272,816 | 8,518,005,953 | IssuesEvent | 2018-11-01 10:05:13 | CS2103-AY1819S1-F11-3/main | https://api.github.com/repos/CS2103-AY1819S1-F11-3/main | closed | Statistics: Generate and display all points accumulated in daily, weekly, and all-time windows | priority.Low type.Task | Dependent on #104 | 1.0 | Statistics: Generate and display all points accumulated in daily, weekly, and all-time windows - Dependent on #104 | priority | statistics generate and display all points accumulated in daily weekly and all time windows dependent on | 1 |
399,603 | 11,757,594,874 | IssuesEvent | 2020-03-13 13:58:22 | SoftengPoliTo/SoftwareMetrics | https://api.github.com/repos/SoftengPoliTo/SoftwareMetrics | opened | Consider more files for rust-code-analysis | enhancement low-priority | For now we run `rust-code-analysis` on a single file. It would be helpful to run this tool on an entire directory and consider each file produced in the process. | 1.0 | Consider more files for rust-code-analysis - For now we run `rust-code-analysis` on a single file. It would be helpful to run this tool on an entire directory and consider each file produced in the process. | priority | consider more files for rust code analysis for now we run rust code analysis on a single file it would be helpful to run this tool on an entire directory and consider each file produced in the process | 1 |
451,030 | 13,023,224,735 | IssuesEvent | 2020-07-27 09:38:22 | egison/egison | https://api.github.com/repos/egison/egison | closed | Fix TSV manipulation command options | bug priority:low | - [x] Add missing implementation of `-m`
- [x] Add missing implementation of `-f`
- [x] Fix `-s`
Ref: https://www.egison.org/ja/manual/command.html | 1.0 | Fix TSV manipulation command options - - [x] Add missing implementation of `-m`
- [x] Add missing implementation of `-f`
- [x] Fix `-s`
Ref: https://www.egison.org/ja/manual/command.html | priority | fix tsv manipulation command options add missing implementation of m add missing implementation of f fix s ref | 1 |
643,435 | 20,957,403,190 | IssuesEvent | 2022-03-27 09:34:59 | TeamChocoQuest/ChocolateQuestRepoured | https://api.github.com/repos/TeamChocoQuest/ChocolateQuestRepoured | closed | Shelob Suffocated Issue | Type: Enhancement Status: Reproduced Priority: Low | **General Information**
To check a checkbox: Insert a X between the square brackets, you need to remove the space though.
- I play...
- [X] With a large modpack
- [ ] Only with CQR and it's dependencies
- The issue occurs in...
- [X] Singleplayer
- [ ] Multiplayer
- [1] I have searched for this or a similar issue before reporting and it was either (1) not previously reported, or (2) previously fixed and I'm having the same problem.
- [X] I am using the latest version of the mod (all versions can be found on github under releases)
- [ ] I read through the FAQ and I could not find something helpful ([FAQ](https://wiki.cq-repoured.net/index.php?title=FAQ))
- [ ] I reproduced the bug without any other mod's except forge, cqr and it's dependencies
- [ ] The game crashes because of this bug
**Describe the bug**
Shelob always spawns between stone blocks and suffocates
**To Reproduce**
Steps to reproduce the behavior:
1. Go where Shelob spawns and you will see him suffocated.
**Screenshots**
If applicable, add screenshots to help explain your problem.

**Versions (Note that 'latest' is NOT a valid version!**
Chocolate Quest Repoured: 2.6.7B
Forge: 14.23.5.2859
Minecraft: 1.12.2
Other mods (necessary to reproduce the bug):
Github doesn't support .jar files, so I'll send you the folder in a rar trough mediafire.
https://www.mediafire.com/file/d991hzwkktw0urf/mods.rar/file | 1.0 | Shelob Suffocated Issue - **General Information**
To check a checkbox: Insert a X between the square brackets, you need to remove the space though.
- I play...
- [X] With a large modpack
- [ ] Only with CQR and it's dependencies
- The issue occurs in...
- [X] Singleplayer
- [ ] Multiplayer
- [1] I have searched for this or a similar issue before reporting and it was either (1) not previously reported, or (2) previously fixed and I'm having the same problem.
- [X] I am using the latest version of the mod (all versions can be found on github under releases)
- [ ] I read through the FAQ and I could not find something helpful ([FAQ](https://wiki.cq-repoured.net/index.php?title=FAQ))
- [ ] I reproduced the bug without any other mod's except forge, cqr and it's dependencies
- [ ] The game crashes because of this bug
**Describe the bug**
Shelob always spawns between stone blocks and suffocates
**To Reproduce**
Steps to reproduce the behavior:
1. Go where Shelob spawns and you will see him suffocated.
**Screenshots**
If applicable, add screenshots to help explain your problem.

**Versions (Note that 'latest' is NOT a valid version!**
Chocolate Quest Repoured: 2.6.7B
Forge: 14.23.5.2859
Minecraft: 1.12.2
Other mods (necessary to reproduce the bug):
Github doesn't support .jar files, so I'll send you the folder in a rar trough mediafire.
https://www.mediafire.com/file/d991hzwkktw0urf/mods.rar/file | priority | shelob suffocated issue general information to check a checkbox insert a x between the square brackets you need to remove the space though i play with a large modpack only with cqr and it s dependencies the issue occurs in singleplayer multiplayer i have searched for this or a similar issue before reporting and it was either not previously reported or previously fixed and i m having the same problem i am using the latest version of the mod all versions can be found on github under releases i read through the faq and i could not find something helpful i reproduced the bug without any other mod s except forge cqr and it s dependencies the game crashes because of this bug describe the bug shelob always spawns between stone blocks and suffocates to reproduce steps to reproduce the behavior go where shelob spawns and you will see him suffocated screenshots if applicable add screenshots to help explain your problem versions note that latest is not a valid version chocolate quest repoured forge minecraft other mods necessary to reproduce the bug github doesn t support jar files so i ll send you the folder in a rar trough mediafire | 1 |
734,173 | 25,338,730,949 | IssuesEvent | 2022-11-18 19:18:22 | LukeStanbery89/stonks | https://api.github.com/repos/LukeStanbery89/stonks | closed | Implement APM software | dev ops low priority | ### Description
We should integrate with an APM software to track errors and performance.
### Dependent On
- #12
- #9 | 1.0 | Implement APM software - ### Description
We should integrate with an APM software to track errors and performance.
### Dependent On
- #12
- #9 | priority | implement apm software description we should integrate with an apm software to track errors and performance dependent on | 1 |
112,994 | 4,541,215,454 | IssuesEvent | 2016-09-09 17:03:06 | elementary/website | https://api.github.com/repos/elementary/website | reopened | Do not hardcode release variables. | Priority Low Status In Progress | - [ ] Any string containing the version number, "0.4".
- [ ] Any string containing the release name, "Loki".
- [ ] Any string containing the release code, "loki".
- [ ] The filename.
- [ ] The ISO Size. | 1.0 | Do not hardcode release variables. - - [ ] Any string containing the version number, "0.4".
- [ ] Any string containing the release name, "Loki".
- [ ] Any string containing the release code, "loki".
- [ ] The filename.
- [ ] The ISO Size. | priority | do not hardcode release variables any string containing the version number any string containing the release name loki any string containing the release code loki the filename the iso size | 1 |
787,530 | 27,720,764,145 | IssuesEvent | 2023-03-14 20:25:35 | apache/airflow | https://api.github.com/repos/apache/airflow | closed | Task Group: Node order changes after collapse | kind:bug priority:low area:UI affected_version:2.0 area:TaskGroup | **Apache Airflow version**: 2.0.0rc1
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
**Environment**:
- **Cloud provider or hardware configuration**:
- **OS** (e.g. from /etc/os-release):
- **Kernel** (e.g. `uname -a`):
- **Install tools**:
- **Others**:
**What happened**:
The order of the nodes changes when expanding and collapsing task groups:
Before:

After expanding task group and collapsing:

**What you expected to happen**:
node order to be consistent
**How to reproduce it**:
Create a DAG with multiple task groups.
expand the top group
collapse the top group
observe is is now at the end.
**Anything else we need to know**:
happens every time.
| 1.0 | Task Group: Node order changes after collapse - **Apache Airflow version**: 2.0.0rc1
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
**Environment**:
- **Cloud provider or hardware configuration**:
- **OS** (e.g. from /etc/os-release):
- **Kernel** (e.g. `uname -a`):
- **Install tools**:
- **Others**:
**What happened**:
The order of the nodes changes when expanding and collapsing task groups:
Before:

After expanding task group and collapsing:

**What you expected to happen**:
node order to be consistent
**How to reproduce it**:
Create a DAG with multiple task groups.
expand the top group
collapse the top group
observe is is now at the end.
**Anything else we need to know**:
happens every time.
| priority | task group node order changes after collapse apache airflow version kubernetes version if you are using kubernetes use kubectl version environment cloud provider or hardware configuration os e g from etc os release kernel e g uname a install tools others what happened the order of the nodes changes when expanding and collapsing task groups before after expanding task group and collapsing what you expected to happen node order to be consistent how to reproduce it create a dag with multiple task groups expand the top group collapse the top group observe is is now at the end anything else we need to know happens every time | 1 |
75,159 | 3,455,833,659 | IssuesEvent | 2015-12-17 21:56:08 | Solinea/goldstone-server | https://api.github.com/repos/Solinea/goldstone-server | opened | tracking issue filed against djoser related to username/password in django-rest-swagger | component: server priority 4: low type: bug | The issue summary from our side is that we can't create a django-rest-swagger representation of the /login API endpoint.
Here's the Djoser ticket.
https://github.com/sunscrapers/djoser/issues/41 | 1.0 | tracking issue filed against djoser related to username/password in django-rest-swagger - The issue summary from our side is that we can't create a django-rest-swagger representation of the /login API endpoint.
Here's the Djoser ticket.
https://github.com/sunscrapers/djoser/issues/41 | priority | tracking issue filed against djoser related to username password in django rest swagger the issue summary from our side is that we can t create a django rest swagger representation of the login api endpoint here s the djoser ticket | 1 |
245,746 | 7,890,482,967 | IssuesEvent | 2018-06-28 08:57:51 | bedita/web | https://api.github.com/repos/bedita/web | closed | Profile page | Priority - Low feature | Page with logged user data from `User: ###` on left menu
User should be able to change properties like:
* `password` - with `password confirm`
* `name`, `surname`, `email`.... and other attributes like `city`, `address` if available
Unchangeable properties:
* `username`
* `uname`
* `status`
Current `roles` can be displayed but not changed | 1.0 | Profile page - Page with logged user data from `User: ###` on left menu
User should be able to change properties like:
* `password` - with `password confirm`
* `name`, `surname`, `email`.... and other attributes like `city`, `address` if available
Unchangeable properties:
* `username`
* `uname`
* `status`
Current `roles` can be displayed but not changed | priority | profile page page with logged user data from user on left menu user should be able to change properties like password with password confirm name surname email and other attributes like city address if available unchangeable properties username uname status current roles can be displayed but not changed | 1 |
279,024 | 8,656,471,998 | IssuesEvent | 2018-11-27 18:33:12 | cosmos/ethermint | https://api.github.com/repos/cosmos/ethermint | closed | Dockerfile no such file or directory | bug priority: low | __System info:__ [Include Ethermint commit, operating system name, and other relevant details]
Linux mate-MACH-WX9 4.15.0-36-generic #39-Ubuntu SMP Mon Sep 24 16:19:09 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
__Steps to reproduce:__
1. docker build -t ethermint . --no-cache
2. Received
```
Step 10/18 : COPY --from=build-env /go/src/github.com/cosmos/ethermint/build/ethermint /usr/bin/ethermint
COPY failed: stat /var/lib/docker/overlay2/47ff6aac86b0205bf623bcf072448f2525bd05b5135c3ba06e214ff0f3d8b1ce/merged/go/src/github.com/cosmos/ethermint/build/ethermint: no such file or directory
```
__Expected behavior:__ ethermint to be copied to `/usr/bin/ethermint` in Docker image
__Actual behavior:__ Ethermint has been renamed to build/emintd and build/emintcli, so the copy command in the dockerfile will always fail.
| 1.0 | Dockerfile no such file or directory - __System info:__ [Include Ethermint commit, operating system name, and other relevant details]
Linux mate-MACH-WX9 4.15.0-36-generic #39-Ubuntu SMP Mon Sep 24 16:19:09 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
__Steps to reproduce:__
1. docker build -t ethermint . --no-cache
2. Received
```
Step 10/18 : COPY --from=build-env /go/src/github.com/cosmos/ethermint/build/ethermint /usr/bin/ethermint
COPY failed: stat /var/lib/docker/overlay2/47ff6aac86b0205bf623bcf072448f2525bd05b5135c3ba06e214ff0f3d8b1ce/merged/go/src/github.com/cosmos/ethermint/build/ethermint: no such file or directory
```
__Expected behavior:__ ethermint to be copied to `/usr/bin/ethermint` in Docker image
__Actual behavior:__ Ethermint has been renamed to build/emintd and build/emintcli, so the copy command in the dockerfile will always fail.
| priority | dockerfile no such file or directory system info linux mate mach generic ubuntu smp mon sep utc gnu linux steps to reproduce docker build t ethermint no cache received step copy from build env go src github com cosmos ethermint build ethermint usr bin ethermint copy failed stat var lib docker merged go src github com cosmos ethermint build ethermint no such file or directory expected behavior ethermint to be copied to usr bin ethermint in docker image actual behavior ethermint has been renamed to build emintd and build emintcli so the copy command in the dockerfile will always fail | 1 |
478,053 | 13,771,961,912 | IssuesEvent | 2020-10-07 23:13:10 | prometheus/prometheus | https://api.github.com/repos/prometheus/prometheus | closed | Increase value for `maxErrMsgLen` for remote write API | component/remote storage kind/enhancement low hanging fruit priority/P3 | ## Proposal
Currently only 256 bytes is read upon non HTTP 200 from remote write server:https://github.com/prometheus/prometheus/blob/072b9649a30e06c71ddd1c64d25f71c4936e56ba/storage/remote/client.go#L41
256 bytes is quite short, and leads to error message being truncated, which may make operator's life hard.
As an example, I was remote writing to Cortex and saw the error message gets truncated like in [this Cortex issue](https://github.com/cortexproject/cortex/issues/3247).
I am thinking if we can increase the value of `maxErrMsgLen` to 512 or even bigger like 10KB? | 1.0 | Increase value for `maxErrMsgLen` for remote write API - ## Proposal
Currently only 256 bytes is read upon non HTTP 200 from remote write server:https://github.com/prometheus/prometheus/blob/072b9649a30e06c71ddd1c64d25f71c4936e56ba/storage/remote/client.go#L41
256 bytes is quite short, and leads to error message being truncated, which may make operator's life hard.
As an example, I was remote writing to Cortex and saw the error message gets truncated like in [this Cortex issue](https://github.com/cortexproject/cortex/issues/3247).
I am thinking if we can increase the value of `maxErrMsgLen` to 512 or even bigger like 10KB? | priority | increase value for maxerrmsglen for remote write api proposal currently only bytes is read upon non http from remote write server bytes is quite short and leads to error message being truncated which may make operator s life hard as an example i was remote writing to cortex and saw the error message gets truncated like in i am thinking if we can increase the value of maxerrmsglen to or even bigger like | 1 |
775,279 | 27,227,251,004 | IssuesEvent | 2023-02-21 10:34:00 | akvo/akvo-rsr | https://api.github.com/repos/akvo/akvo-rsr | opened | Feature Request: Visual indication that indicator is cumulative in program overview | Feature request Priority: Low | ### What are you trying to do?
Discern whether an indicator in the program overview is cumulative.
### Describe the solution you'd like
Some kind of visual hint that the indicator is cumulative. Maybe just a tag under the header of an indicator.

### Have you consider alternatives?
_No response_
### Additional context
_No response_ | 1.0 | Feature Request: Visual indication that indicator is cumulative in program overview - ### What are you trying to do?
Discern whether an indicator in the program overview is cumulative.
### Describe the solution you'd like
Some kind of visual hint that the indicator is cumulative. Maybe just a tag under the header of an indicator.

### Have you consider alternatives?
_No response_
### Additional context
_No response_ | priority | feature request visual indication that indicator is cumulative in program overview what are you trying to do discern whether an indicator in the program overview is cumulative describe the solution you d like some kind of visual hint that the indicator is cumulative maybe just a tag under the header of an indicator have you consider alternatives no response additional context no response | 1 |
112,100 | 4,506,781,225 | IssuesEvent | 2016-09-02 06:18:08 | music-encoding/music-encoding | https://api.github.com/repos/music-encoding/music-encoding | opened | Making ```@rend``` an attribute class | Component: Core Schema Priority: Low | Is it correct that ```@rend``` is not part of an attribute class but is defined directly in ```rend``` and ```del```? If yes, is there any reason why not to have it part of a attribute class? Can we change this? | 1.0 | Making ```@rend``` an attribute class - Is it correct that ```@rend``` is not part of an attribute class but is defined directly in ```rend``` and ```del```? If yes, is there any reason why not to have it part of a attribute class? Can we change this? | priority | making rend an attribute class is it correct that rend is not part of an attribute class but is defined directly in rend and del if yes is there any reason why not to have it part of a attribute class can we change this | 1 |
372,162 | 11,009,955,624 | IssuesEvent | 2019-12-04 13:43:30 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | opened | [0.9.0 staging-1285] Tutorial: won't skip visually | Low Priority | 1. Start tutorial.
2. Finish first task.
3. When the Icon of the first task will change to the completed, skip all tutorials
4. After that you will get new tutorials, which can't be skipped. Food-house bars will appear.
https://drive.google.com/file/d/1Il6bjVfrexZjSBqROlD1jNv6GUtmHxLY/view?usp=sharing | 1.0 | [0.9.0 staging-1285] Tutorial: won't skip visually - 1. Start tutorial.
2. Finish first task.
3. When the Icon of the first task will change to the completed, skip all tutorials
4. After that you will get new tutorials, which can't be skipped. Food-house bars will appear.
https://drive.google.com/file/d/1Il6bjVfrexZjSBqROlD1jNv6GUtmHxLY/view?usp=sharing | priority | tutorial won t skip visually start tutorial finish first task when the icon of the first task will change to the completed skip all tutorials after that you will get new tutorials which can t be skipped food house bars will appear | 1 |
770,034 | 27,026,855,204 | IssuesEvent | 2023-02-11 18:10:28 | tateisu/SubwayTooter | https://api.github.com/repos/tateisu/SubwayTooter | closed | Suggestion about behaviour BG personalization | priority-low | Can you reset the alpha channel when background image reset function is applied ?
or when a new image is inserted? | 1.0 | Suggestion about behaviour BG personalization - Can you reset the alpha channel when background image reset function is applied ?
or when a new image is inserted? | priority | suggestion about behaviour bg personalization can you reset the alpha channel when background image reset function is applied or when a new image is inserted | 1 |
451,181 | 13,026,043,116 | IssuesEvent | 2020-07-27 14:26:00 | department-of-veterans-affairs/caseflow | https://api.github.com/repos/department-of-veterans-affairs/caseflow | closed | Collect and report all cases where an EvidenceSubmissionWindowTask was prematurely closed | Priority: High Product: caseflow-hearings Stakeholder: BVA Team: Tango 💃 | ## Description
This issue follows on #14077. Once that fix is in place, find all cases in production where an EvidenceSubmissionWindowTask on an appeal in the hearing docket was automatically closed earlier than 90 days after the withdrawal of the hearing. Query and export list of tasks that were closed, no need to (yet) resolve.
## Background
Direction from the board and relevant regulations are cited in [this slack thread](https://dsva.slack.com/archives/C3EAF3Q15/p1587490868394000?thread_ts=1587485907.391500&cid=C3EAF3Q15).
## Open question
- Do users need links to the appeal, file numbers, etc.?
Answer: Links to a file should be sufficient. | 1.0 | Collect and report all cases where an EvidenceSubmissionWindowTask was prematurely closed - ## Description
This issue follows on #14077. Once that fix is in place, find all cases in production where an EvidenceSubmissionWindowTask on an appeal in the hearing docket was automatically closed earlier than 90 days after the withdrawal of the hearing. Query and export list of tasks that were closed, no need to (yet) resolve.
## Background
Direction from the board and relevant regulations are cited in [this slack thread](https://dsva.slack.com/archives/C3EAF3Q15/p1587490868394000?thread_ts=1587485907.391500&cid=C3EAF3Q15).
## Open question
- Do users need links to the appeal, file numbers, etc.?
Answer: Links to a file should be sufficient. | priority | collect and report all cases where an evidencesubmissionwindowtask was prematurely closed description this issue follows on once that fix is in place find all cases in production where an evidencesubmissionwindowtask on an appeal in the hearing docket was automatically closed earlier than days after the withdrawal of the hearing query and export list of tasks that were closed no need to yet resolve background direction from the board and relevant regulations are cited in open question do users need links to the appeal file numbers etc answer links to a file should be sufficient | 1 |
131,288 | 5,145,849,842 | IssuesEvent | 2017-01-12 22:49:40 | sandialabs/slycat | https://api.github.com/repos/sandialabs/slycat | closed | Timeseries Model Wizard Time Estimate Entry Allows Negative Time | bug Low Priority Timeseries Model | The Time field on the Compute Model Tab allows the time values for hours, minutes, and seconds to be assigned negative values. It does test for negative values once you click continue, but why would the field allow negative values to begin with? Can't we put a floor of '0' on all the time fields? Not sure if we should fix this at all, given that we need to redesign the interface, but I want to make note of it...
| 1.0 | Timeseries Model Wizard Time Estimate Entry Allows Negative Time - The Time field on the Compute Model Tab allows the time values for hours, minutes, and seconds to be assigned negative values. It does test for negative values once you click continue, but why would the field allow negative values to begin with? Can't we put a floor of '0' on all the time fields? Not sure if we should fix this at all, given that we need to redesign the interface, but I want to make note of it...
| priority | timeseries model wizard time estimate entry allows negative time the time field on the compute model tab allows the time values for hours minutes and seconds to be assigned negative values it does test for negative values once you click continue but why would the field allow negative values to begin with can t we put a floor of on all the time fields not sure if we should fix this at all given that we need to redesign the interface but i want to make note of it | 1 |
705,712 | 24,245,854,841 | IssuesEvent | 2022-09-27 10:28:46 | python-jsonschema/bowtie | https://api.github.com/repos/python-jsonschema/bowtie | opened | Implementation / language-specific REPL environments / `bowtie repl` | enhancement low priority | This is clearly not something that can be done (easily) in general, but when things fail, it'd be nice to have a general way to drop into an interactive environment for a particular implementation.
E.g. `bowtie repl -i bowtie/clojure-json-schema` could drop into a Clojure REPL with the library available, ready to interactively validate schemas. Obviously doing so now requires authors to know about the library they're using. | 1.0 | Implementation / language-specific REPL environments / `bowtie repl` - This is clearly not something that can be done (easily) in general, but when things fail, it'd be nice to have a general way to drop into an interactive environment for a particular implementation.
E.g. `bowtie repl -i bowtie/clojure-json-schema` could drop into a Clojure REPL with the library available, ready to interactively validate schemas. Obviously doing so now requires authors to know about the library they're using. | priority | implementation language specific repl environments bowtie repl this is clearly not something that can be done easily in general but when things fail it d be nice to have a general way to drop into an interactive environment for a particular implementation e g bowtie repl i bowtie clojure json schema could drop into a clojure repl with the library available ready to interactively validate schemas obviously doing so now requires authors to know about the library they re using | 1 |
677,754 | 23,173,326,279 | IssuesEvent | 2022-07-31 03:13:21 | Ankit-Gupta18/Edit-Request-Wizard | https://api.github.com/repos/Ankit-Gupta18/Edit-Request-Wizard | closed | Header changes between screens | low priority | Header changes from "EDIT REQUEST WIZARD" on one screen to "EDIT WIZARD" on the next - keep it consistent. I suggest not using ALL CAPS because wikipedians in particular don't like that | 1.0 | Header changes between screens - Header changes from "EDIT REQUEST WIZARD" on one screen to "EDIT WIZARD" on the next - keep it consistent. I suggest not using ALL CAPS because wikipedians in particular don't like that | priority | header changes between screens header changes from edit request wizard on one screen to edit wizard on the next keep it consistent i suggest not using all caps because wikipedians in particular don t like that | 1 |
346,536 | 10,416,532,546 | IssuesEvent | 2019-09-14 14:23:07 | wesnoth/wesnoth | https://api.github.com/repos/wesnoth/wesnoth | closed | Wish menu to pop up when there is animation going on (GNA #17219) | Enhancement Low-priority UI | **[Original submission](https://gna.org/bugs/index.php?17219)** by porcho on 2010-12-04
When an unit is moving(in animation), and you click on an empty slot of the castle to recruit another unit, a menu with "Unit Description", "Clear Labels", "Toggle planing mode", "Next Unit" pops up instead of the normal menu. It would be very nice, to be able to open the menu with the "Recruit" option, while an unit is moving.
(Reproduced on Windows XP)
Release: 1.9.2
Priority: 5 - Normal
Severity: 2 - Minor | 1.0 | Wish menu to pop up when there is animation going on (GNA #17219) - **[Original submission](https://gna.org/bugs/index.php?17219)** by porcho on 2010-12-04
When an unit is moving(in animation), and you click on an empty slot of the castle to recruit another unit, a menu with "Unit Description", "Clear Labels", "Toggle planing mode", "Next Unit" pops up instead of the normal menu. It would be very nice, to be able to open the menu with the "Recruit" option, while an unit is moving.
(Reproduced on Windows XP)
Release: 1.9.2
Priority: 5 - Normal
Severity: 2 - Minor | priority | wish menu to pop up when there is animation going on gna by porcho on when an unit is moving in animation and you click on an empty slot of the castle to recruit another unit a menu with unit description clear labels toggle planing mode next unit pops up instead of the normal menu it would be very nice to be able to open the menu with the recruit option while an unit is moving reproduced on windows xp release priority normal severity minor | 1 |
743,491 | 25,901,183,207 | IssuesEvent | 2022-12-15 05:54:54 | dr3ams/Roguelike-Adventures-and-Dungeons-2 | https://api.github.com/repos/dr3ams/Roguelike-Adventures-and-Dungeons-2 | closed | [Bug]: Sudden Death to Void (Ender Eyes) | bug Low Priority Fix Incoming Known Issue | ### General Info
- [X] I didn't added any mods
- [X] I can reproduce this issue consistently in single-player
- [ ] I can reproduce this issue consistently in multi-player
- [X] I have searched for this issue previously and it was either (1) not previously reported, or (2) previously fixed and I am having the same problem.
- [ ] I am crashing and can provide my crash report(s)
- [X] I am using the latest version of the modpack
### Your launcher
CurseForge
### Modpack version
0.9
### Describe your issue
Mobs wearing the Ender Eyes enchantment from Unique Enchantments, player dies to void
Reporting so people know it is the cause
Temporary fix is to disable Ender Eyes in **config\ue\ue.toml**
Dev (Xaikii) is aware of issue, knows the fix, and will try to release a hotfix tomorrow
### Steps to reproduce the issue
Find mob with Ender Eyes
Get Hit
Die to void
### Additional Information
boop | 1.0 | [Bug]: Sudden Death to Void (Ender Eyes) - ### General Info
- [X] I didn't added any mods
- [X] I can reproduce this issue consistently in single-player
- [ ] I can reproduce this issue consistently in multi-player
- [X] I have searched for this issue previously and it was either (1) not previously reported, or (2) previously fixed and I am having the same problem.
- [ ] I am crashing and can provide my crash report(s)
- [X] I am using the latest version of the modpack
### Your launcher
CurseForge
### Modpack version
0.9
### Describe your issue
Mobs wearing the Ender Eyes enchantment from Unique Enchantments, player dies to void
Reporting so people know it is the cause
Temporary fix is to disable Ender Eyes in **config\ue\ue.toml**
Dev (Xaikii) is aware of issue, knows the fix, and will try to release a hotfix tomorrow
### Steps to reproduce the issue
Find mob with Ender Eyes
Get Hit
Die to void
### Additional Information
boop | priority | sudden death to void ender eyes general info i didn t added any mods i can reproduce this issue consistently in single player i can reproduce this issue consistently in multi player i have searched for this issue previously and it was either not previously reported or previously fixed and i am having the same problem i am crashing and can provide my crash report s i am using the latest version of the modpack your launcher curseforge modpack version describe your issue mobs wearing the ender eyes enchantment from unique enchantments player dies to void reporting so people know it is the cause temporary fix is to disable ender eyes in config ue ue toml dev xaikii is aware of issue knows the fix and will try to release a hotfix tomorrow steps to reproduce the issue find mob with ender eyes get hit die to void additional information boop | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.