repo stringlengths 7 67 | org stringlengths 2 32 โ | issue_id int64 780k 941M | issue_number int64 1 134k | pull_request dict | events list | user_count int64 1 77 | event_count int64 1 192 | text_size int64 0 329k | bot_issue bool 1 class | modified_by_bot bool 2 classes | text_size_no_bots int64 0 279k | modified_usernames bool 2 classes |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
conda-forge/staged-recipes | conda-forge | 292,436,527 | 4,942 | {
"number": 4942,
"repo": "staged-recipes",
"user_login": "conda-forge"
} | [
{
"action": "opened",
"author": "MathiasHaudgaard",
"comment_id": null,
"datetime": 1517237758000,
"masked_author": "username_0",
"text": "",
"title": "added r-kernsmooth",
"type": "issue"
}
] | 2 | 2 | 294 | false | true | 0 | false |
symfony/symfony | symfony | 440,355,756 | 31,382 | {
"number": 31382,
"repo": "symfony",
"user_login": "symfony"
} | [
{
"action": "opened",
"author": "l-vo",
"comment_id": null,
"datetime": 1556994950000,
"masked_author": "username_0",
"text": "| Q | A\r\n| ------------- | ---\r\n| Branch? | master\r\n| Bug fix? | yes\r\n| New feature? | no\r\n| BC breaks? | no\r\n| Deprecations? | no\r\n| Tests pass? | yes \r\n| Fixed tickets | \r\n| License | MIT\r\n| Doc PR | \r\n\r\nDuring the refactoring for #29211 , it seems a little bug was introduced. When using runInSeparateProcess, deprecation message isn't unserialized anymore.",
"title": "[PhpunitBridge] Fix not unserialized logs after DeprecationErrorHandler refacto",
"type": "issue"
},
{
"action": "created",
"author": "l-vo",
"comment_id": 489389794,
"datetime": 1557031704000,
"masked_author": "username_0",
"text": "@greg0ire It may occur on big refactos... Thank you for your feedback ๐",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "nicolas-grekas",
"comment_id": 489440359,
"datetime": 1557072789000,
"masked_author": "username_1",
"text": "Thank you @username_0.",
"title": null,
"type": "comment"
}
] | 2 | 3 | 489 | false | false | 489 | true |
nolimits4web/swiper | null | 419,963,423 | 3,009 | {
"number": 3009,
"repo": "swiper",
"user_login": "nolimits4web"
} | [
{
"action": "opened",
"author": "bartlomn",
"comment_id": null,
"datetime": 1552394312000,
"masked_author": "username_0",
"text": "As per title, fixing incorrect positioning of scroll thumb when dragging.",
"title": "Fixes #3008 - scroll thumb correctly positioned when dragging",
"type": "issue"
},
{
"action": "created",
"author": "nolimits4web",
"comment_id": 476256446,
"datetime": 1553528818000,
"masked_author": "username_1",
"text": "Hi! Can you please revert changes from `dist/` folder files? Only `src/` files can be changed",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "nolimits4web",
"comment_id": 531200370,
"datetime": 1568373842000,
"masked_author": "username_1",
"text": "Thanks, merged, manually",
"title": null,
"type": "comment"
}
] | 2 | 3 | 190 | false | false | 190 | false |
opencv/opencv | opencv | 341,549,015 | 11,988 | null | [
{
"action": "opened",
"author": "UrielSalomon",
"comment_id": null,
"datetime": 1531752274000,
"masked_author": "username_0",
"text": "<!--\r\nIf you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.\r\nIf you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).\r\n\r\nThis is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library.\r\n-->\r\n\r\n##### System information (version)\r\n<!-- Example\r\n- OpenCV => \r\n- Operating System / Platform => \r\n- Compiler => \r\n-->\r\n\r\n- OpenCV => 3.2\r\n- Operating System / Platform => Ubuntu 16.04.10\r\n- Compiler => g++ 5.4.0\r\n\r\n##### Detailed description\r\n\r\nRect_<_Tp> operator & (const Rect_<_Tp>& a, const Rect_<_Tp>& b)\r\nreturns a wrong result for Rect_<unsigned>, Rect_<unsigned long>.\r\nFor example, the intersection of x=0,y=0,w=1,h=1 and 2,2,1,1 should be zero, but I get 1. The intersection variable gets a very large width and height: 4294967295 for both. \r\n\r\n##### Steps to reproduce\r\n\r\n\tcv::Rect_<unsigned> r1(0,0,1,1);\r\n\tcv::Rect_<unsigned> r2(2,2,1,1);\r\n\tauto intersection = r1 & r2;\r\n\tauto area = intersection.area();",
"title": "Rect_<Tp> operator & return wrong result",
"type": "issue"
},
{
"action": "created",
"author": "csukuangfj",
"comment_id": 405275081,
"datetime": 1531752890000,
"masked_author": "username_1",
"text": "Underflow for `unsigned`\r\nhttps://github.com/opencv/opencv/blob/5e31c82b5b71efdd4e9e119e73765d4a2b50457b/modules/core/include/opencv2/core/types.hpp#L1947-L1948\r\n\r\nhttps://github.com/opencv/opencv/blob/5e31c82b5b71efdd4e9e119e73765d4a2b50457b/modules/core/include/opencv2/core/types.hpp#L1951\r\n\r\nI think it is a bug.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "alalek",
"comment_id": 405280530,
"datetime": 1531753855000,
"masked_author": "username_2",
"text": "Not all template parameters work well (and tested).\r\n\r\nConsider using type from [this list](https://github.com/opencv/opencv/blob/3.4.2/modules/core/include/opencv2/core/types.hpp#L453-L456):\r\n```\r\ntypedef Rect_<int> Rect2i;\r\ntypedef Rect_<float> Rect2f;\r\ntypedef Rect_<double> Rect2d;\r\ntypedef Rect2i Rect;\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "berak",
"comment_id": 405299415,
"datetime": 1531757240000,
"masked_author": "username_3",
"text": "the `-=` operators suffer from the same problem with unsigned types",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "UrielSalomon",
"comment_id": 405324195,
"datetime": 1531762173000,
"masked_author": "username_0",
"text": "@username_3 are you suggesting to change these operators? If you are, shouldn't `-=` just stay as it is, and have the users of `-=` worry about underflow? like this:\r\n\r\n```\r\nRect_<unsigned> rect1;\r\nPoint_<unsigned> point1;\r\nif (rect1.tl() >= point1) \r\n{\r\n rect1 -= point1;\r\n} else\r\n{\r\n//handle this underflow case. maybe set rect.tl() = (0,0);\r\n}\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "berak",
"comment_id": 405328588,
"datetime": 1531763917000,
"masked_author": "username_3",
"text": "@username_0 i'm not suggesting anything right now ;)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "kinchungwong",
"comment_id": 408563680,
"datetime": 1532734577000,
"masked_author": "username_4",
"text": "Perhaps the ```Rect<>``` template should be modified to `static_assert` prevent instantiation on unsigned numeric types.\r\n\r\n```Rect<>``` doesn't come with integer overflow detection. For typical integer use (less than pow(2,31)), always use ```Rect<int>```. For larger integers, use ```Rect<int64_t>``` (with C++11 compliant `<cstdint>` standard header include).\r\n\r\nMight need to check whether ```Rect<int64_t>``` passes all unit tests. If the unit test doesn't run on ```int64_t```, it is time to add them now.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "UrielSalomon",
"comment_id": 408573576,
"datetime": 1532741668000,
"masked_author": "username_0",
"text": "@username_3, yeah, I wouldn't implement < or > for Point or Size, since it's not straightforward (is it p1.x < p2.x && p1.y < p2.y? or ||?)\r\n\r\n@username_4, why you're not considering the positive case of supporting unsigned types? In my company, we love defining using BoundingBox = cv::Rect_<unsigned>; Since we're dealing with images, we found no reason to allow for negative coordinates.",
"title": null,
"type": "comment"
}
] | 5 | 8 | 3,135 | false | false | 3,135 | true |
Oslandia/streetscene_CNN | Oslandia | 308,551,970 | 29 | null | [
{
"action": "opened",
"author": "delhomer",
"comment_id": null,
"datetime": 1522067440000,
"masked_author": "username_0",
"text": "In order to simplify the code of this project, a major improvement should be to switch from [TensorFlow](https://www.tensorflow.org/) library to [Keras](https://keras.io/) one.\r\n\r\nKeras would allow us to handle data in an easier way; TensorBoard will be still callable as well.",
"title": "Switch from TensorFlow to Keras",
"type": "issue"
},
{
"action": "created",
"author": "delhomer",
"comment_id": 376822196,
"datetime": 1522229355000,
"masked_author": "username_0",
"text": "This issue is strongly related to issue #32 and #33 . Issues #34 and #35 have to be addressed according to this new framework as well.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "delhomer",
"comment_id": 384654449,
"datetime": 1524751754000,
"masked_author": "username_0",
"text": "We can consider that this issue is solved with the PR #61 merging. I close it.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "delhomer",
"comment_id": null,
"datetime": 1524751754000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 4 | 489 | false | false | 489 | false |
digitalbitbox/bitbox-wallet-app | digitalbitbox | 352,382,405 | 25 | null | [
{
"action": "opened",
"author": "mercurytoxic",
"comment_id": null,
"datetime": 1534826064000,
"masked_author": "username_0",
"text": "To package BitBox wallet app for Arch Linux AUR from the .AppImage, I extract the bitbox.desktop and bitbox(.png, .svg, etc) to include them in the current desktop environment. But the .AppImage does not include any image files.\r\n\r\n`$ ./BitBox-4.1.0-x86_64.AppImage --appimage-extract`\r\n`$ ls -la`\r\n`drwx------ 8 pizzaman users 4096 Aug 21 14:20 .`\r\n`drwxr-xr-x 5 pizzaman users 4096 Aug 21 14:20 ..`\r\n`lrwxrwxrwx 1 pizzaman users 6 Aug 21 14:20 AppRun -> BitBox`\r\n`-rw-r--r-- 1 pizzaman users 159474 Aug 21 14:20 assets.rcc`\r\n`-rwxr-xr-x 1 pizzaman users 51268 Aug 21 14:20 BitBox`\r\n`-rw-r--r-- 1 pizzaman users 155 Aug 21 14:20 bitbox.desktop`\r\n`-rw-r--r-- 1 pizzaman users 0 Aug 21 14:20 BitBox-x86_64.AppImage`\r\n`-rw-r--r-- 1 pizzaman users 0 Aug 21 14:20 default.png`\r\n`lrwxrwxrwx 1 pizzaman users 11 Aug 21 14:20 .DirIcon -> default.png`\r\n`drwx------ 58 pizzaman users 4096 Aug 21 14:20 doc`\r\n`drwx------ 2 pizzaman users 4096 Aug 21 14:20 lib`\r\n`drwx------ 2 pizzaman users 4096 Aug 21 14:20 libexec`\r\n`-rw-r--r-- 1 pizzaman users 11645848 Aug 21 14:20 libserver.so`\r\n`drwx------ 9 pizzaman users 4096 Aug 21 14:20 plugins`\r\n`-rw-r--r-- 1 pizzaman users 145 Aug 21 14:20 qt.conf`\r\n`drwx------ 2 pizzaman users 4096 Aug 21 14:20 resources`\r\n`drwx------ 3 pizzaman users 4096 Aug 21 14:20 translations`\r\n\r\nThe only image file is default.png with 0 bytes.\r\n\r\nref. https://wiki.archlinux.org/index.php/desktop_entries#Icons",
"title": "AppImage missing icons file",
"type": "issue"
},
{
"action": "created",
"author": "mercurytoxic",
"comment_id": 457137730,
"datetime": 1548323963000,
"masked_author": "username_0",
"text": "The bitbox.desktop file contains no reference to the icon file except Icon=default this is not correct according to https://developer.gnome.org/desktop-entry-spec/",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "benma",
"comment_id": 457191438,
"datetime": 1548335564000,
"masked_author": "username_1",
"text": "@username_0 thx. Can you open a PR? Icon: https://github.com/digitalbitbox/bitbox-wallet-app/tree/master/frontends/qt/resources/linux/usr/share/pixmaps",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mercurytoxic",
"comment_id": 467268160,
"datetime": 1551148141000,
"masked_author": "username_0",
"text": "I see that in https://github.com/digitalbitbox/bitbox-wallet-app/blob/7c8cb2d4e08076ba701f7b5fe301d85fdb1c99d9/frontends/qt/Makefile#L39 the name of the icon is changed to **default** purposely, I assume this is because the .Appimage is self contained.\r\n\r\nSo from this I get that it would be up to the distribution maintainer of the package to add icon and sed the .desktop file with the proper icon name?",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "benma",
"comment_id": null,
"datetime": 1569922567000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 5 | 2,237 | false | false | 2,237 | true |
chameleon-system/chameleon-system | chameleon-system | 442,637,178 | 428 | null | [
{
"action": "opened",
"author": "pSpeck",
"comment_id": null,
"datetime": 1557482235000,
"masked_author": "username_0",
"text": "**Describe the bug**\r\nThere seems to be a problem with the less generating console command. \r\nSometimes the command generates empty css files. \r\nI think the cache files are the problem, after deletion of the cache files the css was correctly generated.\r\nHowever we do not need the cache in prod mode.\r\n\r\n**Affected version(s)**\r\n6.2\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Cant reproduce locally. What we did on live\r\n2 Clear Cache in cms\r\n3 call page -> css could not be generated \r\n4 clear cach with command\r\n5 compile less with command\r\n6 empyt css files",
"title": "Disable less cache in prod mode",
"type": "issue"
},
{
"action": "closed",
"author": "UlrichKu",
"comment_id": null,
"datetime": 1562737605000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 2 | 576 | false | false | 576 | false |
CyberReboot/CRviz | CyberReboot | 422,816,491 | 263 | null | [
{
"action": "opened",
"author": "rashley-iqt",
"comment_id": null,
"datetime": 1553011224000,
"masked_author": "username_0",
"text": "### Describe the feature you are requesting\r\nWhen clicking on a leaf node zoomin all the way in on the selected leaf node is not helpful. Instead it makes more sense to zoom to the parent.\r\n\r\n### Describe your use case\r\nit makes for a cleaner and easier way to move around the system.",
"title": "More intelligent zoom",
"type": "issue"
},
{
"action": "closed",
"author": "rashley-iqt",
"comment_id": null,
"datetime": 1554123336000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 2 | 284 | false | false | 284 | false |
johnsonandjohnson/Guppy | johnsonandjohnson | 455,921,851 | 7 | null | [
{
"action": "opened",
"author": "schayes04",
"comment_id": null,
"datetime": 1560455238000,
"masked_author": "username_0",
"text": "Each PR should have to pass build validation prior to being merged",
"title": "Add continuous integration",
"type": "issue"
},
{
"action": "closed",
"author": "dspaces1",
"comment_id": null,
"datetime": 1560950559000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 2 | 66 | false | false | 66 | false |
biosustain/cameo | biosustain | 188,776,038 | 85 | {
"number": 85,
"repo": "cameo",
"user_login": "biosustain"
} | [
{
"action": "opened",
"author": "joaocardoso",
"comment_id": null,
"datetime": 1478875863000,
"masked_author": "username_0",
"text": "Hi @biosustain/team-modeling \r\nThe final effort to get the high-level API running smoothly is here.\r\n\r\n#### Please read everything before asking questions that are might be answered bellow! Thanks\r\n\r\nBefore any changes, things work like this: methods on strain_design are subclass of StrainDesignMethod. A StrainDesignMethod.run returns a StrainDesignMethodResult, which contains a list of StrainDesign. The StrainDesign contains a DictList of Target (Target is explained bellow).\r\n\r\nAdded stuff:\r\n* Target (anything from GeneManipulationTarget, GeneKnockoutTarget, ReactionCofactorSwapTarget, ReactionKnockinTarget, etc.) basically everything that changes the model and is predicted by a strain design method.\r\n* swap_cofators method to the Reaction (@hredestig I told you so before).\r\n* DifferentialFVA to the high-level API (because the results are now comparable and 'aggregatable')\r\n* OptSwap as a StrainDesignMethod (like OptGene). Let's make it clear that stuff under cameo.strain_design.heuristic.evolutionary is low-level API, not to be exposed as StrainDesignMethod.\r\n* Target output gnomic if python.version >= 3.\r\n\r\nRefactored stuff:\r\n* Evaluators moved to cameo.strain_design.heuristic.evolutionary.evaluators because cameo.strain_design.heuristic.optimization became a mess.\r\n* cameo.strain_design.heuristic.decoders got more generic names for what they do.\r\n* since Gene and Reaction support knock_out() there is no need for weird stuff coming out of the decoders any more.\r\n* FSEOF, DifferentialFVA, OptKnock, OptGene, PathwayPredictor and OptSwap are all subclass of StrainDesignMethod and all outputs are converted into target.\r\n* KnockoutOptimziation was renamed to TargetOptimization and only specific stuff is implemented.\r\n* KnockoutOptimizationResult was renamed to TargetOptimizationResult and has a metadata field to include specific stuff from implementations of TargetOptimization (such as cofactors to swap).",
"title": "High level api",
"type": "issue"
},
{
"action": "created",
"author": "joaocardoso",
"comment_id": 260302037,
"datetime": 1479119797000,
"masked_author": "username_0",
"text": "@KristianJensen: I made it possible to merge Target. If targets are incompatible it will raise an exception.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "phantomas1234",
"comment_id": 260634697,
"datetime": 1479214816000,
"masked_author": "username_1",
"text": "\r\n\r\nThe progress bar for the optimizations ends up at the top. Can it be moved to the bottom of the running computation?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Midnighter",
"comment_id": 260638187,
"datetime": 1479215779000,
"masked_author": "username_2",
"text": "Not sure what you're currently using for the progressbar. I've been quite impressed with [tqdm](https://github.com/tqdm/tqdm) so far.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "phantomas1234",
"comment_id": 266700590,
"datetime": 1481624357000,
"masked_author": "username_1",
"text": "I am going to merge this now, come hell and high water ...",
"title": null,
"type": "comment"
}
] | 4 | 6 | 2,463 | false | true | 2,463 | false |
eoscanada/eosc | eoscanada | 436,262,669 | 127 | null | [
{
"action": "opened",
"author": "joshkauffman",
"comment_id": null,
"datetime": 1556034575000,
"masked_author": "username_0",
"text": "Missing feature for `--add-code` which is available within `cleos`.\r\nSee this link for information regarding what it accomplishes:\r\nhttps://developers.eos.io/eosio-home/docs/inline-actions\r\n\r\nThis is a user-submitted issue by Jon-Eric Cook from StrongBlock. When issue is resolved, be sure to notify him.",
"title": "Add support for `--add-code`",
"type": "issue"
}
] | 1 | 1 | 304 | false | false | 304 | false |
Juniper/py-junos-eznc | Juniper | 251,080,926 | 775 | null | [
{
"action": "opened",
"author": "tach47",
"comment_id": null,
"datetime": 1503006165000,
"masked_author": "username_0",
"text": "https://github.com/Juniper/py-junos-eznc/blob/8016b515284a561ed5b4693e0a01c691ccc9e0de/lib/jnpr/junos/device.py#L1238\r\n\r\nThe intended result can be achieved with `(self._ssh_private_key_file is not None)) `",
"title": "allow_agent boolean is broken",
"type": "issue"
},
{
"action": "created",
"author": "tach47",
"comment_id": 323222868,
"datetime": 1503013374000,
"masked_author": "username_0",
"text": "allow_agent: False\r\n_auth_password: None\r\n_ssh_private_key_file: ['~/.ssh/id_rsa']\r\n```",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "tach47",
"comment_id": null,
"datetime": 1503013374000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 3 | 293 | false | false | 293 | false |
eidottermihi/rpicheck | null | 454,820,883 | 193 | null | [
{
"action": "opened",
"author": "rathel",
"comment_id": null,
"datetime": 1560275016000,
"masked_author": "username_0",
"text": "I'm not sure of the correct terminology, add a way to jump hosts or proxycommand to different rpis. For example, I have one rpi accessible to the outside world and I can use proxycommand in my ssh config to gain access to the others in terms.",
"title": "jump hosts",
"type": "issue"
},
{
"action": "closed",
"author": "eidottermihi",
"comment_id": null,
"datetime": 1619777347000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "eidottermihi",
"comment_id": 829990311,
"datetime": 1619777347000,
"masked_author": "username_1",
"text": "see https://github.com/username_1/rpicheck/issues/197#issuecomment-829983929",
"title": null,
"type": "comment"
}
] | 2 | 3 | 320 | false | false | 320 | true |
voronkovich/sberbank-acquiring-client | null | 245,621,934 | 3 | null | [
{
"action": "opened",
"author": "KOPOJI",
"comment_id": null,
"datetime": 1501051602000,
"masked_author": "username_0",
"text": "https://github.com/username_1/sberbank-acquiring-client/blob/master/src/Client.php#L181",
"title": "$date need change to $data",
"type": "issue"
},
{
"action": "closed",
"author": "voronkovich",
"comment_id": null,
"datetime": 1501059102000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "voronkovich",
"comment_id": 317991306,
"datetime": 1501059102000,
"masked_author": "username_1",
"text": "@username_0, thanks! I've fixed the typo. Update your dependency using `composer update username_1/sberbank-acquiring-client`.",
"title": null,
"type": "comment"
}
] | 2 | 3 | 211 | false | false | 211 | true |
hhvm/homebrew-hhvm | hhvm | 424,907,327 | 118 | null | [
{
"action": "opened",
"author": "Daemeron",
"comment_id": null,
"datetime": 1553521182000,
"masked_author": "username_0",
"text": "## Description\r\n\r\nIt seems that `hhvm 3.24-lts` was removed. When? Why? And why readme does not mention it?",
"title": "HHVM 3.24 removed",
"type": "issue"
},
{
"action": "closed",
"author": "fredemmott",
"comment_id": null,
"datetime": 1553528396000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "fredemmott",
"comment_id": 476253262,
"datetime": 1553528396000,
"masked_author": "username_1",
"text": "3.24 has been unsupported since the 12th of December, following [our usual release cycle](https://docs.hhvm.com/hhvm/installation/release-schedule)\r\n\r\nVarious homebrew changes made it uninstallable - both bottles and source - without changes. Using it would either require forking this repository and backporting changes, or having a complete mirror of homebrew from December.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Daemeron",
"comment_id": 476348075,
"datetime": 1553542856000,
"masked_author": "username_0",
"text": "I see. Thank you very much for an explanation.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "fredemmott",
"comment_id": 476350803,
"datetime": 1553543353000,
"masked_author": "username_1",
"text": "FWIW, the binaries can still be downloaded directly at https://dl.hhvm.com/homebrew-bottles/ - but I don't think they're particularly useful as they depend on other binaries such as old versions of glog, PCRE, and Boost which are no longer available through homebrew - and I don't think brew provides a supported way to directly install a bottle",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Daemeron",
"comment_id": 476502677,
"datetime": 1553584447000,
"masked_author": "username_0",
"text": "Yes. Already tried this approach as well as compiling from source based on forked tap and it is how you say it is, dependencies upgraded without a way to downgrade them are the main issue. Perhaps the only way now is to fork those dependencies, link hhvm source to them and compile.\r\n\r\nAnyway, thank you for the tips.",
"title": null,
"type": "comment"
}
] | 2 | 6 | 1,191 | false | false | 1,191 | false |
eggjs/egg | eggjs | 358,446,226 | 2,979 | null | [
{
"action": "opened",
"author": "blockmood",
"comment_id": null,
"datetime": 1536547003000,
"masked_author": "username_0",
"text": "<!--\r\nThank you for reporting an issue.\r\n\r\n1. It's RECOMMENDED to submit PR for typo or tiny bug fix.\r\n2. If this's a FEATURE request, please provide: details, pseudo codes if necessary.\r\n3. If this's a BUG, please provide: course repetition, error log and configuration. Fill in as much of the template below as you're able.\r\n4. It will be nice to use `egg-init --type=simple bug` to provide a mini GitHub repository which can reproduce the issue.\r\n\r\nๆ่ฐขๆจๅๆไปฌๅ้ฆ้ฎ้ขใ\r\n\r\n1. ๆไบค้ฎ้ขๅ๏ผ่ฏทๅ
้
่ฏป https://eggjs.org/zh-cn/faq.html\r\n2. ๆไปฌๆจ่ๅฆๆๆฏๅฐ้ฎ้ข๏ผ้ๅซๅญไฟฎๆน๏ผๅฐ็ bug fix๏ผ็ดๆฅๆไบค PRใ\r\n3. ๅฆๆๆฏไธไธชๆฐ้ๆฑ๏ผ่ฏทๆไพ๏ผ่ฏฆ็ป้ๆฑๆ่ฟฐ๏ผๆๅฅฝๆฏๆไผชไปฃ็ ๅฎ็ฐใ\r\n4. ๅฆๆๆฏไธไธช BUG๏ผ่ฏทๆไพ๏ผๅค็ฐๆญฅ้ชค๏ผ้่ฏฏๆฅๅฟไปฅๅ็ธๅ
ณ้
็ฝฎ๏ผๅนถๅฐฝ้ๅกซๅไธ้ข็ๆจกๆฟไธญ็ๆก็ฎใ\r\n5. ๅฆๆๅฏไปฅ๏ผ่ฏทไฝฟ็จ `egg-init --type=simple bug` ๆไพไธไธชๆๅฐๅฏๅค็ฐ็ไปฃ็ ไปๅบ๏ผๆนไพฟๆไปฌๆๆฅ้ฎ้ขใ\r\n6. ๆฉๅฑ้
่ฏป๏ผ[ๅฆไฝๅๅผๆบ้กน็ฎๆไบคๆ ๆณ่งฃ็ญ็้ฎ้ข](https://zhuanlan.zhihu.com/p/25795393)\r\n-->\r\n\r\n* **Node Version**:\r\n* **Egg Version**:\r\n* **Plugin Name**:\r\n* **Plugin Version**:\r\n* **Platform**:\r\n* **Mini Showcase Repository**:\r\n\r\n<!-- Enter your issue details below this comment. -->",
"title": "get post ๅๆฐๅฆไฝ่ทๅ? ctx.query ? ctx.req.query? ctx..... ?",
"type": "issue"
},
{
"action": "closed",
"author": "atian25",
"comment_id": null,
"datetime": 1536547106000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "atian25",
"comment_id": 419770968,
"datetime": 1536547106000,
"masked_author": "username_1",
"text": "GO AND READ THE MANUAL.",
"title": null,
"type": "comment"
}
] | 3 | 4 | 2,498 | false | true | 994 | false |
SortableJS/Sortable | SortableJS | 446,476,867 | 1,518 | null | [
{
"action": "opened",
"author": "sattes-faction",
"comment_id": null,
"datetime": 1558426319000,
"masked_author": "username_0",
"text": "When I start dragging the last element in the grid example the grid just a few pixels it starts flickering a little bit by appearing on a different position. This seeems to happen only with the last element (using Chrome Version 74.0.3729.157). Hard to explain, see the video:\r\n\r\nhttps://youtu.be/GCbqq8OAwp8",
"title": "Moving the grids on the example page causes flickering in Chrome",
"type": "issue"
},
{
"action": "created",
"author": "owen-m1",
"comment_id": 494394606,
"datetime": 1558445854000,
"masked_author": "username_1",
"text": "Seems to be the same issue as #1450.\r\n\r\nDoes it happen only on the grid demo? Or the other lists as well?\r\nIf you edit the code and set `forceFallback: true` in the options, does it still happen?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "sattes-faction",
"comment_id": 494785397,
"datetime": 1558528903000,
"masked_author": "username_0",
"text": "On the example page it seems to happen only on the grid demo. But in my implementation it's the same issue. I'm using the latest Bootstrap grid system and made the rows sortable there.\r\n\r\nMaybe it's the display-Type that's causing this issue? The bootstrap grid uses flex.\r\n\r\nHowever, when adding `forceFallback: true` the issue is gone in my case (didn't try it for the grid demo), so thanks for this workaround, though it's not that nice because obviously the items can be dragged anywhere and are not staying within their parent container.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "owen-m1",
"comment_id": 494845938,
"datetime": 1558537918000,
"masked_author": "username_1",
"text": "@username_0 What browser are you using, and what version?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "sattes-faction",
"comment_id": 495736524,
"datetime": 1558721301000,
"masked_author": "username_0",
"text": "See my first post, it's Chrome Version 74.0.3729.157 on Windows 10. The issue does not appear in Firefox.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "owen-m1",
"comment_id": 500643791,
"datetime": 1560213989000,
"masked_author": "username_1",
"text": "As with the other reports of this bug, I still cannot reproduce this :/",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "kevin-j-morse",
"comment_id": 518550785,
"datetime": 1565077581000,
"masked_author": "username_2",
"text": "@username_0 I have opened an issue in the Chrome bug tracker. \r\n\r\nIf you have any relevant information to help them track this down I would greatly appreciate it. At the very least, if you could comment that you are also experiencing the issue (assuming you are)\r\n\r\nhttps://bugs.chromium.org/p/chromium/issues/detail?id=990572",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "sattes-faction",
"comment_id": 519539631,
"datetime": 1565274114000,
"masked_author": "username_0",
"text": "@username_2 ok I posted a comment there with the youtube link from the first post. Hope it helps. I did no further investigation since then...",
"title": null,
"type": "comment"
}
] | 3 | 8 | 1,757 | false | false | 1,757 | true |
scalecube/reactor-aeron | scalecube | 413,982,828 | 126 | {
"number": 126,
"repo": "reactor-aeron",
"user_login": "scalecube"
} | [
{
"action": "opened",
"author": "segabriel",
"comment_id": null,
"datetime": 1551082747000,
"masked_author": "username_0",
"text": "",
"title": "Added limit to handle active processors",
"type": "issue"
},
{
"action": "created",
"author": "artem-v",
"comment_id": 467005471,
"datetime": 1551100277000,
"masked_author": "username_1",
"text": "Closing it as agreed. But let's keep branch for reference.",
"title": null,
"type": "comment"
}
] | 2 | 2 | 58 | false | false | 58 | false |
QuantStack/ipysheet | QuantStack | 409,983,592 | 29 | null | [
{
"action": "opened",
"author": "krey",
"comment_id": null,
"datetime": 1550089175000,
"masked_author": "username_0",
"text": "```python\r\nimport ipysheet\r\n\r\nkwargs = dict(row_start=0, row_end=0, squeeze_column=True, squeeze_row=True)\r\n\r\ngrid = ipysheet.Sheet(rows=1, columns=2, column_headers = False, row_headers=False, column_width=[20, 100])\r\ngrid.cells = (ipysheet.Cell(value=True, column_start=0, column_end=0, type='checkbox', **kwargs),\r\n ipysheet.Cell(value='True', column_start=1, column_end=1, **kwargs))\r\n\r\ngrid.cells[0].value = False\r\ngrid.cells[1].value = 'False'\r\n\r\ngrid\r\n```\r\nThis shows a checked box and a cell containing \"False\"\r\n\r\nSomewhat related to https://github.com/QuantStack/ipysheet/issues/3",
"title": "checkbox value not updating",
"type": "issue"
},
{
"action": "created",
"author": "martinRenou",
"comment_id": 465522118,
"datetime": 1550659421000,
"masked_author": "username_1",
"text": "I am not able to reproduce your issue. I'm using `master`. Maybe it was fixed since the last version. Did you try using `master`?\r\n\r\n",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "krey",
"comment_id": null,
"datetime": 1551808963000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "krey",
"comment_id": 469874439,
"datetime": 1551823109000,
"masked_author": "username_0",
"text": "My bad, thank you",
"title": null,
"type": "comment"
}
] | 2 | 4 | 864 | false | false | 864 | false |
OmniSharp/omnisharp-vscode | OmniSharp | 386,238,557 | 2,720 | null | [
{
"action": "opened",
"author": "ckaczor",
"comment_id": null,
"datetime": 1543592443000,
"masked_author": "username_0",
"text": "I have a workspace with 10 Visual Studio solutions and the \"select project\" list only shows the first project in the workspace - I can't switch to any of the others.\r\n\r\nI did some digging and the problem is that findLaunchTargets in launcher.ts does a find for project files and CS files but limits it to maxProjectResults (250 by default) files. This means if the first directory/project has more than 250 files it will be the only one detected. If the projects are smaller you might get the first few projects but once the limit is reached you won't get any more projects.\r\n\r\nIt doesn't seem efficient to just raise the limit since that will require even more directory scanning.",
"title": "A workspace with a lot of CS files prevents projects from being detected",
"type": "issue"
},
{
"action": "created",
"author": "akshita31",
"comment_id": 443363278,
"datetime": 1543618133000,
"masked_author": "username_1",
"text": "This is fixed by https://github.com/OmniSharp/omnisharp-vscode/pull/2721",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "akshita31",
"comment_id": null,
"datetime": 1543618133000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 3 | 755 | false | false | 755 | false |
Microsoft/TypeScript | Microsoft | 253,787,753 | 18,118 | null | [
{
"action": "opened",
"author": "gcnew",
"comment_id": null,
"datetime": 1504037335000,
"masked_author": "username_0",
"text": "**TypeScript Version:** nightly (2.6.0-dev.20170829)\r\n\r\n**Code**\r\n```ts\r\ntype Point = { x: number, y: number }\r\ntype Mapped = Record<'x'|'y', number>\r\ntype IndexSignature = { [x: string]: never }\r\n\r\n// All of the following have type: `() => Object`\r\ntype Test1 = Point['valueOf']\r\ntype Test2 = Mapped['valueOf'] \r\ntype Test3 = IndexSignature['valueOf']\r\n```\r\n\r\n**Expected behavior:**\r\n`Test1`, `Test2` and `Test3` should all be errors.\r\n\r\nUser provided types should be considered \"exact\". No properties should be inherited from `Object`. The current behaviour is of little use, it's quite confusing and really gets in the way of type level programming.",
"title": "Global object properties should not surface on type level indexing",
"type": "issue"
},
{
"action": "created",
"author": "gcnew",
"comment_id": 325796353,
"datetime": 1504039026000,
"masked_author": "username_0",
"text": "The magic `Object` keys are not present in `keyof` expressions, creating non-uniform behaviour:\r\n\r\n```ts\r\ntype ValueOf<T, K extends keyof T> = T[K]\r\ntype Test4 = ValueOf<1, 'constructor'> // error\r\ntype Test5 = 1['constructor'] // OK \r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "olegdunkan",
"comment_id": 326018585,
"datetime": 1504105281000,
"masked_author": "username_1",
"text": "https://github.com/Microsoft/TypeScript/issues/16578#issuecomment-309082083",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mhegazy",
"comment_id": 342347310,
"datetime": 1510018698000,
"masked_author": "username_2",
"text": "It is consistent with other uses of indexing.. e.g. indexing with numbers.. `keyof T` will return you only string, public, and own properties. I would argue that this is exactelly what you want.. you do not want `toString` to start showing up in all `keyof T`... that would be too verbose, and would be a breaking change..\r\n\r\nOn the flip side, not having it in `keyof T` does not change the fact that `toString` exists on all objects.. this is in a sense similar to indexing with numbers.",
"title": null,
"type": "comment"
}
] | 4 | 6 | 1,618 | false | true | 1,464 | false |
sensu/sensu-go | sensu | 315,205,398 | 1,328 | null | [
{
"action": "opened",
"author": "jamesdphillips",
"comment_id": null,
"datetime": 1523994531000,
"masked_author": "username_0",
"text": "## โ๏ธ Notes\r\n\r\n- List is continually reordered making it difficult to click entries\r\n- If selected, state is lost when a record is updated\r\n- Jarring.\r\n\r\n## โจ Expected\r\n\r\n- When new entries are available add banner with link to explicitly add/remove entries.\r\n- Entries in the list are updated but not re-orded.\r\n- Selection state should never be lost",
"title": "[Web UI] Polling on events page is very disruptive",
"type": "issue"
},
{
"action": "created",
"author": "10xjs",
"comment_id": 382127722,
"datetime": 1523996192000,
"masked_author": "username_1",
"text": "I'm thinking that an approach that conditionally enables polling would be good solution.\r\n\r\nBy default, if the user hasn't interacted with the selection state and the sort is latest desc, auto loading new results at the top would not be disrupted.\r\n\r\nOnce the user makes a selection or changes the sort method, a banner could alert them that there are new results are available, allowing them to manually refresh the list state if they want.\r\n\r\nWe could handle this all at the component level within the query, leaving the outer `pollInterval` (or potentially the GraphQL subscription) intact. The child list component could enter a \"locked\" state, with the current list of result moved to component state. It would continue to accept new results through props and would itself prompt the user to accept new results. This could be achieved nicely as a HOC.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "portertech",
"comment_id": 383670051,
"datetime": 1524506969000,
"masked_author": "username_2",
"text": "Curious to know how we are addressing this in the Sensu Enterprise Dashboard (and Uchiwa).",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "portertech",
"comment_id": 383671021,
"datetime": 1524507153000,
"masked_author": "username_2",
"text": "As discussed, an immediate \"solution\" would be to disable polling and add a refresh button to all views.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "portertech",
"comment_id": 383671444,
"datetime": 1524507230000,
"masked_author": "username_2",
"text": "@username_0 could you please create a separate issue for this immediate solution?",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "oferrigni",
"comment_id": null,
"datetime": 1529345690000,
"masked_author": "username_3",
"text": "",
"title": null,
"type": "issue"
}
] | 4 | 6 | 1,486 | false | false | 1,486 | true |
thinhbuzz/laravel-google-captcha | null | 366,351,885 | 34 | {
"number": 34,
"repo": "laravel-google-captcha",
"user_login": "thinhbuzz"
} | [
{
"action": "opened",
"author": "fdjkgh580",
"comment_id": null,
"datetime": 1538574926000,
"masked_author": "username_0",
"text": "",
"title": "Add namespace and modify description",
"type": "issue"
},
{
"action": "created",
"author": "thinhbuzz",
"comment_id": 426650103,
"datetime": 1538575506000,
"masked_author": "username_1",
"text": "thanks for PR",
"title": null,
"type": "comment"
}
] | 2 | 2 | 13 | false | false | 13 | false |
opentracing/opentracing-cpp | opentracing | 193,528,059 | 3 | {
"number": 3,
"repo": "opentracing-cpp",
"user_login": "opentracing"
} | [
{
"action": "opened",
"author": "lookfwd",
"comment_id": null,
"datetime": 1480951728000,
"masked_author": "username_0",
"text": "Adding a method that prints minimal information able to identify the span (e.g. trace id/span id) to an output stream. This is useful in order to be able to correlate traces with other types of logs.",
"title": "Adding a way to print span/trace ids",
"type": "issue"
},
{
"action": "created",
"author": "bensigelman",
"comment_id": 264901384,
"datetime": 1480955342000,
"masked_author": "username_1",
"text": "This is something that's come up a number of times... I just summarized the issue here: https://github.com/opentracing/specification/issues/24",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "tedsuo",
"comment_id": 337016676,
"datetime": 1508183544000,
"masked_author": "username_2",
"text": "@username_0 do you mind if I close this PR?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "lookfwd",
"comment_id": 337021301,
"datetime": 1508184317000,
"masked_author": "username_0",
"text": "no, bo problem!",
"title": null,
"type": "comment"
}
] | 3 | 4 | 396 | false | false | 396 | true |
flow-project/flow | flow-project | 395,867,761 | 369 | null | [
{
"action": "opened",
"author": "KidTrunks",
"comment_id": null,
"datetime": 1546595788000,
"masked_author": "username_0",
"text": "",
"title": "'Worker",
"type": "issue"
},
{
"action": "created",
"author": "KidTrunks",
"comment_id": 451401863,
"datetime": 1546596102000,
"masked_author": "username_0",
"text": "Please let me know how the 2 failures can be fixed.\r\n\r\nThanks!",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "AboudyKreidieh",
"comment_id": 452158656,
"datetime": 1546916468000,
"masked_author": "username_1",
"text": "@username_0 thank you for bringing this up! Iโll look into it and get back to you shortly.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "fywu85",
"comment_id": 452467453,
"datetime": 1546984816000,
"masked_author": "username_2",
"text": "@username_0 Which version of Ray are you currently using?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "KidTrunks",
"comment_id": 452577275,
"datetime": 1547011898000,
"masked_author": "username_0",
"text": "@username_2 I am currently using Ubuntu version 18.04.1.\r\nRay Version - 0.6.0\r\nI Installed ray by- \"pip install -U ray\"\r\n\r\nCould it be a compatibility issue? Would I need to downgrade Ray or Ubuntu?\r\n\r\nThanks for your help.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "KidTrunks",
"comment_id": 458014861,
"datetime": 1548657752000,
"masked_author": "username_0",
"text": "Does anyone know how to do that?\r\n\r\nThanks!",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "KidTrunks",
"comment_id": 529293203,
"datetime": 1568002605000,
"masked_author": "username_0",
"text": "Error was solved after changing:\r\nray.init(redirect_output=True, num_cpus=CPUS)\r\nto\r\nray.init(num_cpus=CPUS)",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "KidTrunks",
"comment_id": null,
"datetime": 1568002606000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 3 | 8 | 579 | false | false | 579 | true |
firstcontributions/first-contributions | firstcontributions | 374,506,587 | 11,465 | {
"number": 11465,
"repo": "first-contributions",
"user_login": "firstcontributions"
} | [
{
"action": "opened",
"author": "Pluto71",
"comment_id": null,
"datetime": 1540580106000,
"masked_author": "username_0",
"text": "",
"title": "Add James Strong",
"type": "issue"
},
{
"action": "created",
"author": "Roshanjossey",
"comment_id": 433509679,
"datetime": 1540580112000,
"masked_author": "username_1",
"text": "Hi @username_0, I'm quite elated about your pull request. I wanna evolve this project to addresses various problems faced by first-time contributors. I'd love to learn about your journey in open source community, the problems, pain points you had etc.\nCould you explain how you felt when you went through the tutorial, made a pull request and learned that I merged it?\n\nโจWeโve recently added social share to our web app. Could you please go to https://roshanjossey.github.io/first-contributions/#social-share and share your first contribution to open source? โจAlso, check out projects with easy issues while youโre there.",
"title": null,
"type": "comment"
}
] | 2 | 2 | 620 | false | false | 620 | true |
ServiceInnovationLab/FSD | ServiceInnovationLab | 421,982,835 | 194 | null | [
{
"action": "opened",
"author": "lamorrison",
"comment_id": null,
"datetime": 1552862500000,
"masked_author": "username_0",
"text": "",
"title": "Move Reset Search button",
"type": "issue"
},
{
"action": "created",
"author": "Br3nda",
"comment_id": 499291733,
"datetime": 1559777022000,
"masked_author": "username_1",
"text": "Was this one completed?",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "Br3nda",
"comment_id": null,
"datetime": 1568245976000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 3 | 23 | false | false | 23 | false |
jorisvink/kore | null | 75,886,840 | 49 | {
"number": 49,
"repo": "kore",
"user_login": "jorisvink"
} | [
{
"action": "opened",
"author": "thorduri",
"comment_id": null,
"datetime": 1431503111000,
"masked_author": "username_0",
"text": "",
"title": "travis",
"type": "issue"
},
{
"action": "created",
"author": "apfohl",
"comment_id": 101556901,
"datetime": 1431503552000,
"masked_author": "username_1",
"text": "@username_0 you could have included the travis-ci badge in the readme.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "jorisvink",
"comment_id": 101565157,
"datetime": 1431504744000,
"masked_author": "username_2",
"text": "@username_1 The badge is in now =)",
"title": null,
"type": "comment"
}
] | 3 | 3 | 98 | false | false | 98 | true |
ttag-org/ttag | ttag-org | 389,524,576 | 136 | null | [
{
"action": "opened",
"author": "AlexMost",
"comment_id": null,
"datetime": 1544482846000,
"masked_author": "username_0",
"text": "Something bad happens with dtslint\r\nhttps://travis-ci.org/ttag-org/ttag/jobs/466242717\r\n\r\n```\r\nnpm ERR! code ETARGET\r\nnpm ERR! notarget No matching version found for typescript@3.3\r\nnpm ERR! notarget In most cases you or one of your dependencies are requesting\r\nnpm ERR! notarget a package version that doesn't exist.\r\nnpm ERR! A complete log of this run can be found in:\r\nnpm ERR! /home/travis/.npm/_logs/2018-12-10T22_59_17_742Z-debug.log\r\n at ChildProcess.exithandler (child_process.js:276:12)\r\n at emitTwo (events.js:126:13)\r\n at ChildProcess.emit (events.js:214:7)\r\n at maybeClose (internal/child_process.js:915:16)\r\n at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)\r\n```\r\n\r\nNot sure where to look at, can you help me with this @username_2 ?",
"title": "dtslint is failing",
"type": "issue"
},
{
"action": "created",
"author": "taion",
"comment_id": 450460299,
"datetime": 1546052383000,
"masked_author": "username_1",
"text": "Upgrading from 0.3.0 to 0.4.2 fixed this for me.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "erickwilder",
"comment_id": 450964285,
"datetime": 1546458263000,
"masked_author": "username_2",
"text": "Sorry @username_0 - I've been busy during the end of the year (the perks of working with e-commerce-related products)\r\n\r\n---\r\n\r\nIs this still an issue?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "erickwilder",
"comment_id": 450977114,
"datetime": 1546461266000,
"masked_author": "username_2",
"text": "Okay. I did check the latest builds and it still fails. Unfortunately, just upgrading (as suggested by @username_1 did not solve the issue for me - macOS, node@11.6.0, npm@6.5.0.\r\n\r\nI'm still trying to figure it out why is it breaking out of a sudden.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "AlexMost",
"comment_id": null,
"datetime": 1546507319000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 3 | 5 | 1,233 | false | false | 1,233 | true |
kconkas/dxspider-deployment | null | 471,758,621 | 6 | null | [
{
"action": "opened",
"author": "kconkas",
"comment_id": null,
"datetime": 1563894945000,
"masked_author": "username_0",
"text": "The image currently in use is based on CentOS linux and adds quite a bit of an overhead for running DX Spider (it is about 200 MB big). Investigate whether Alpine-linux based base image could cut this size down.",
"title": "Smaller image size",
"type": "issue"
},
{
"action": "closed",
"author": "kconkas",
"comment_id": null,
"datetime": 1563895030000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 2 | 211 | false | false | 211 | false |
json-editor/json-editor | json-editor | 475,789,831 | 440 | null | [
{
"action": "opened",
"author": "djy0215",
"comment_id": null,
"datetime": 1564678633000,
"masked_author": "username_0",
"text": "I saw `For arrays of enumerated strings, you can also use the select or checkbox format`. I am wondering if it is possible for `checkbox` format each item in it is an object. \r\n\r\nFor example, every item lists in checkbox are the following format. \r\n```\r\n{\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"address\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n}\r\n```",
"title": "Is there a way to combine 'checkbox' and 'object' together? ",
"type": "issue"
},
{
"action": "created",
"author": "pmk65",
"comment_id": 517385691,
"datetime": 1564680864000,
"masked_author": "username_1",
"text": "No. Currently objects support the following formats: `grid`, `grid-strict` and `categories`\r\nYou can see a test schema with various formats [here](https://username_1.github.io/jedemov2/dist/demo.html?schema=EQbwOgdgBFbALgTwA4FM4C5bAPYCMArVAY3jgBpIY54BLeAG3WCzgBkBDRHAV3inioAzv2IchwilWwAnVAEcetOQBNMUANo1h8AMLjJwALqVo2ZDJxoZdQ1nBnqCHfolD1DmF%2BxI06uCIytBAA5lKOXjT0TP7AACo6UK7Mpt5OqBA8ALbqWhHeAfAcECocMipiEgCM4WmRwCLFpeWVqABMtXXYZTJcrTXAqV1wPX0GHYPSdSMyvYitAMyd08Cj8wYALMtpcPhEpP3bBbiEJPCtE0Mre2eLR%2FU3B5twU14mr05WdDgQ7ixQnmGwAy2QA%2BnRGHZNB8dsAAMpFEplFRQABitFQDBUfyuQIRTWRaIxWKEUAA7gA6KBfWg%2FKDEHBZZAcUhYeAyHgpGHHACCsy4915%2FMQ5KpADMcDIshx4GyOHgcdz6ny5qKoBKpTK5QqALTwKyC5XCtUa6WygTymKTfKwgDyp1Ihqc9v2%2FEp6slZqwYkEIUlGMVNuOLrOJs9WqgISCamtXXqIdIYc15qjtBUOsCtEdwCVRhhAF9XvncdoRMkPDCaChmKwTq77lFIbEEiIkgYG8AABaoDgqVAyBJMhgymvYEAgCFMfP5gETlwGacdmk%2FP72JVwBlMllkf7szm444qWhCS2oUEWKz92yrgQc1AH%2BpHk94Jig1BH%2BCgghCH7qPf39dgCfU9QQZBhh2QCQ%2FzvAsHzgMkZWITsKyDHx5yg%2F5Sz0Aw%2FlgytgAYYIAGsbw0QEVjkBhYj7IRiCCPB3wAIUQQ04E7OQxViABiAB6PsxWCehaV%2BHjx0EMsF0LHMbXzPMIkLMxi2kOB%2BME75fhQ45GiRFoDAGNcbTgC9rGvTSgUEAAPOgIGQPh9IBJUnF8UdCiCUInR8aIXPiVArKgYJbP4ATMRRMl6E7KAaLo2hkHUqAmn8iAJQSKyPJU4Roti4Tm18%2FgAr4dViVC8LIoyoIsrpBLgmS3KKTS3AKo0%2F5yLjbBqpwFKd1rTrEsCwqQvJEqovKuKqqSjrapeVCYAUuMlNQjdu2IIi8BwCz8vgeyWpWZzYkzdzY1auBTRlWIkJIFa1vqydvN0JbLos3qCuCrFBvgCLhpi0aSkSmrUsOuN0tokbssw4A7ou1bHo2%2FrXrC97SuBr7hPin72s6uqAaBZcmoM1r6nR3LYgh5aoaeoKirej6yuRyq0fGjGpvx2aunmwGGkxM4Nq2xyfGrPb2WCMIsZ2rzYjhTnExhl7ioRz7GtRlFCf%2Bh9DxpxrxclvKbOeyn4eppGFbGv74Ex1X6hBHJ%2FjyfGnAGc3jkuXmnCWaT8feabsBxm9tqBS3wS80jnfqdEZBEDzjglhkSgj%2Bo4k7ZQY2Dj3bbahmibBiWmClnWKYG%2FXEcy76lfTqzMd5lm6jZoEsh4Bg6AkbPrMCnnParPwwbWeqTq67BG7OeqeAgWhFFQABJQQshvf8Hc8pswYAWTrhutfJ2HZYNouUeNia%2FJ1D1kywfvs1noGt9%2FRfl%2BPVfpb1ob1eL37d9NqB957o%2Btfq%2BhUCnsz8fb7y%2B1haz3SJkK2WAbap2wKtLEscnD0A4IRYgcC%2B7SnAmISCTNbZyWZqfBq6kfbBzgMrXucAl712vk3NeMsqaFxBnTEuJsqRv3DOaY%2BO4K5KmrisWuFD2EbQmHjI6CB%2Bad2FN3VhZ17pQ0HsPUeE8f7TzvHgm6sRyEryobffO99DaPxIa%2FA%2BXp6TSKuiLWE8t1JqKvuw6hd85YP23vTJhBj37GMhqYvB39f7NSISIjutYgGxzgJbXIwcnAwJjCAgmRQkEoICGghgGDcKexgDg1q3DsaNUISktOJsrF8JvrndetCLGOMYc%2FZhhiIznVJqYzhqEMnHF6EeHA3M%2F7mVEQEwWB08E91iM02k10xZgwAEq9lpLY7R9jdFlKfp1eqpSL61jGS0yZcMdHn2gDveZZjjghOtr4kZ74gnAAAOJyAyCcxiDBORYLjCnYR3t2nsxIbEFZEytHrOmZsxWcyM71LmgWIsJYGiImaBUcYzzzCWBMgGKFTlcptJ8W3PxgDunAN5o2K03VcprI3nQ2mWynHPwWQ4pZ2AeqfPxYsol5TGa7IeFk%2BFsJXlg0pUUmhBcaW%2FJIWbXxm5mTZjZDBT2lc0iNPqDUh6SKhHs12mDQJDKnB9LBlKmRSq57YuwCTB6eKSlktpX8lWmKgIGuJiY6GHK7Gb3oYa3l9UnnItTsQ0upDwYWr1Vyg1PLXV8pyRuRkgre7%2FgBazc2AQtYyocii%2BVXS3IYpjcM2sWdQxUv1TMhhRqdx4JpZrTRVqpk2sJT6ph9V9kQN8fbXxTt%2FXAFdrzB57NHWyuEf7G6QcclOFDuHDVkcSA%2FEiWEilCdyh3Nao24RrLk2FL6pyjZtqS0VJOQK7c0Fbmiq4aYQCvCNFc1zq3f%2BqLYhdw1cdSRCrP6nuAEPEenIFHeOFfuE1qjL4FPzbO61BKjbEp6iww%2BUB2GkozRAfJu6c4fsLV%2BvRvqXGsI%2Fk3L%2Bk9snOqPQq9FJzy3Qk7dAnAsDe3RMQVmOJDQElJLHfciueDm3RpQ1O7A6jKGpoLV8ot366W1Vg%2F%2BwD%2BGA1biFbeddzNN3busZG3OgiaPCNjd0cRV6VW1jVR4k1N75FIbXQBRN89awMZsWmr1wHF2%2FqqeaRTFkgObNA4x8DutIPcu2Rxv9RjTOIcUcy440nXJCww2A0J2G4AROIwg2J%2BGnBCFIxwTBbtsGUZNdR32Kw6NkNE%2B%2BmzLGoOzN5ZxpzFrl2BtXbuEVQmGnhuAAM1p%2B6OBub5v4vu6G5PntrGVoZWnsDvJwJ6%2Bdxb7PGpRbm0Z4z2t6c62xrNZafMHNrUcwdtbzmoEuTx4A1zblRfuVRplTrbYuryf11ZQ3vkLu69m%2FleX%2BMho3Q0oF8kQVrEOBt44xkrxwru7CcSm0qsAOPbJlRSbtW4clIGQ9%2FEODL1CcAKbFBsCzfm%2BQbAS3mAToS2p57crOm1fjeR8VXDLveAyTMOYFwoVGRhY9qE8W0IiAPVJ1HeOBT1eTLEIoCpmtargLoP7YdSVimB%2FXUH4PBiQ4uSB%2FncA4dwARyypHLaUc1c8wdUNVdsdeFx6sYUdxkfQsvDYJ7Uv6ivcp9L7yJ7ekNZ8PKIQeoDRXpfbWNnDB%2Fuc%2B573LQYPjnC7OYLiHIubnw88ZLyTh6POgvRyt1mWOZLAteDT9YEgtjq6J5r0y6uEUU%2Fe6h2sRuTXydNy%2BLkmmWfg3ZwD4RQOQcHJd5EgXc2hcw698t8XxwvHIc22ntHXmQ8K4u%2BHq7ke6y3D0oT4AD2tek8Anr1PgfHhHbz95BMU%2FD1D8TzrnaOh9fN8D4q4OErl8iAk2Tna1PgBgIYjIDHVcolYVdkvjpMvgDBF9P2U%2FmPzuAq7zjkFk%2BCdx8H8T4fTft9vaT11wP0nwkXp1VRHD9CCEMG%2BxazgFnyTCcwgP9GgNi3Wyv0PGPBAjAgggwkfQ0xQ2AhzzfA%2FC%2FB%2FCFzwPPyAkwKIIX21wE3QFFTwVoJH1rR9FXwD2AIdDnygSxVuiQJkBFCrT83wWEj%2Fx4KoOfFfGwIi1wPoKiQwMkLPHfHoFIPJRniHScEINfGYKUSfWwycBXVO0KygS3yBB0KqxWEVXQKpxvw330KgDFSK1TlMOOB9F3yHQ%2BzBhAJC01T4N9ElBFBrSgS9jQP93EK0LPGkMglHHUPsJUmoNfGUM%2FG%2FDUOUQ0OwAiPPB%2F0X3oKHRcNhHMMAPZiPwfyKJsO8hKJP3b1tkcPSU30oJ9EvzCI4Jv28PkN8OJn4JFFdnaPj1hRYOCPgQgHvyqOsIN1iDv1QBCFKPSNqJf2cMgHlyfw7zfx7w%2FwMCaN9j6JJzEPcxX3H04PrDpzNFiFTGmwDx%2BzgK4IQIjDOPqkKLGPJwAMeKcgPzsOcMoNe3cOEMD0qMf1WNrVe02I8JbxdRGP%2BKVyWJx0Vxmnfy4NaFjx122N%2F2ZSwnYJe0OIHmONOjBjOIzEFhPmfUuOAHgPdFcTxMzEJJRQeOaPMn2LKPczeLq16JEJXAsNhDONAlw2yFxigA2HaKcE5LwDkA4CInUzyPqN8S%2BPZNeJvz%2BJ8N2FCL3yBE5LAh5JvA6GwzmPFU%2BJ0GBJ%2BIP0mOmKqJZLi3SLgFVO5KyF5M1OCO1OhOf1D1f0hMUkgHzGACAA%3D%3D&value=ETI%3D&code=EQehAIBUAsFNwGYHsA2KkHcCWA7A5uCrrAM7gCGATvALbk4Am5ALkpQJ4WPjXkNI4U7AHTgAmkgCu4AMb0KDBrMklWNWUgbxyAIyQA3bdx2x0GYQB0cWBOAAUAKxKwGWVpXC5V9GbCS3sRkxhACkAZQB5ADkAUVd3AEpwJxc3NmEtVUokdjsEgG4rFPi2cABecBxYDHBA%2FnNw6Li0yjt%2BGUkaWBxmYQBHSVgOMNNYGXc7C2AAYicBAFpU93nkShophIAaZJcWcgLgIA%3D&style=ETI%3D&theme=bootstrap3&iconlib=bootstrap3&object_layout=normal&template=default&show_errors=interaction&required_by_default=0&no_additional_properties=0&display_required_only=0&remove_empty_properties=0&keep_oneof_values=1&ajax=0&ajaxCredentials=0&show_opt_in=0&disable_edit_json=1&disable_collapse=1&disable_properties=1&disable_array_add=0&disable_array_reorder=0&disable_array_delete=0&enable_array_copy=0&array_controls_top=0&disable_array_delete_all_rows=0&disable_array_delete_last_row=0&prompt_before_delete=1&lib_aceeditor=0&lib_autocomplete=0&lib_sceditor=0&lib_simplemde=0&lib_select2=0&lib_selectize=0&lib_choices=0&lib_flatpickr=0&lib_signaturepad=0&lib_mathjs=0&lib_cleavejs=0&lib_jodit=0&lib_jquery=0&lib_dompurify=0).",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "djy0215",
"comment_id": 517389958,
"datetime": 1564681583000,
"masked_author": "username_0",
"text": "Thanks. \r\nIs it means that if I need the format to be `checkbox` and items in it must be enumerated strings?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmk65",
"comment_id": 517397897,
"datetime": 1564682884000,
"masked_author": "username_1",
"text": "Yes, (Unless you create single checkbox elements. These don't need enum lists)\r\n\r\nYou can also create a custom editor to handle this specific format. You can see an example of a custom editor (autocomplete) here: https://is.gd/WihSGg",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "djy0215",
"comment_id": 517421748,
"datetime": 1564687073000,
"masked_author": "username_0",
"text": "@username_1 Thanks for replay. Could u provide me some example of `create single checkbox elements`? \r\nThanks so much:)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmk65",
"comment_id": 517422634,
"datetime": 1564687231000,
"masked_author": "username_1",
"text": "Look at the 1st link I posted. the \"checkboxinput1\" is such a field.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "pmk65",
"comment_id": null,
"datetime": 1565783154000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 7 | 6,532 | false | false | 6,532 | true |
google/ExoPlayer | google | 215,425,650 | 2,580 | null | [
{
"action": "opened",
"author": "cauchywei",
"comment_id": null,
"datetime": 1490017747000,
"masked_author": "username_0",
"text": "When I try to learn ExoPlayer2 source code, I found that it do not using MediaExtractor + MediaCodec as usual rather than implement Mp4Extractor itself. There any problem with MediaExtractor ?",
"title": "Why ExoPlayer2 don't use MediaExtractor?",
"type": "issue"
},
{
"action": "created",
"author": "ojw28",
"comment_id": 287765556,
"datetime": 1490018081000,
"masked_author": "username_1",
"text": "There are a few reasons:\r\n- It uses a threading model that's not well suited to ExoPlayer.\r\n- It doesn't provide as much control over buffering as we'd like.\r\n- Implementation of the extractors under MediaExtractor varies between versions of Android.\r\n- Extractors under MediaExtractor lack some functionality that we're able to support in ExoPlayer extractors.\r\nImplementing our own extractors avoids all of the above. It also means that we can add new features to the extractors and have them apply on all versions of Android, rather than adding them into the platform and have them apply to new versions of Android only.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "ojw28",
"comment_id": null,
"datetime": 1490018081000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "cauchywei",
"comment_id": 287780266,
"datetime": 1490020981000,
"masked_author": "username_0",
"text": "@username_1 Thank your for your reply in time.",
"title": null,
"type": "comment"
}
] | 2 | 4 | 856 | false | false | 856 | true |
jlippold/tweakCompatible | null | 316,585,446 | 10,570 | null | [
{
"action": "opened",
"author": "tommoses",
"comment_id": null,
"datetime": 1524408727000,
"masked_author": "username_0",
"text": "```\r\n{\r\n \"packageId\": \"com.imkpatil.letmeknow\",\r\n \"action\": \"working\",\r\n \"userInfo\": {\r\n \"arch32\": false,\r\n \"packageId\": \"com.imkpatil.letmeknow\",\r\n \"deviceId\": \"iPhone10,6\",\r\n \"url\": \"http://cydia.saurik.com/package/com.imkpatil.letmeknow/\",\r\n \"iOSVersion\": \"11.1.2\",\r\n \"packageVersionIndexed\": true,\r\n \"packageName\": \"LetMeKnow\",\r\n \"category\": \"Tweaks\",\r\n \"repository\": \"apt.thebigboss.org\",\r\n \"name\": \"LetMeKnow\",\r\n \"packageIndexed\": true,\r\n \"packageStatusExplaination\": \"This package version has been marked as Working based on feedback from users in the community. The current positive rating is 88% with 8 working reports.\",\r\n \"id\": \"com.imkpatil.letmeknow\",\r\n \"commercial\": false,\r\n \"packageInstalled\": true,\r\n \"tweakCompatVersion\": \"0.0.7\",\r\n \"shortDescription\": \"play vibration when call connect/disconnect\",\r\n \"latest\": \"1.2-1\",\r\n \"author\": \"Kiran Patil\",\r\n \"packageStatus\": \"Working\"\r\n },\r\n \"base64\": \"eyJhcmNoMzIiOmZhbHNlLCJwYWNrYWdlSWQiOiJjb20uaW1rcGF0aWwubGV0bWVrbm93IiwiZGV2aWNlSWQiOiJpUGhvbmUxMCw2IiwidXJsIjoiaHR0cDpcL1wvY3lkaWEuc2F1cmlrLmNvbVwvcGFja2FnZVwvY29tLmlta3BhdGlsLmxldG1la25vd1wvIiwiaU9TVmVyc2lvbiI6IjExLjEuMiIsInBhY2thZ2VWZXJzaW9uSW5kZXhlZCI6dHJ1ZSwicGFja2FnZU5hbWUiOiJMZXRNZUtub3ciLCJjYXRlZ29yeSI6IlR3ZWFrcyIsInJlcG9zaXRvcnkiOiJhcHQudGhlYmlnYm9zcy5vcmciLCJuYW1lIjoiTGV0TWVLbm93IiwicGFja2FnZUluZGV4ZWQiOnRydWUsInBhY2thZ2VTdGF0dXNFeHBsYWluYXRpb24iOiJUaGlzIHBhY2thZ2UgdmVyc2lvbiBoYXMgYmVlbiBtYXJrZWQgYXMgV29ya2luZyBiYXNlZCBvbiBmZWVkYmFjayBmcm9tIHVzZXJzIGluIHRoZSBjb21tdW5pdHkuIFRoZSBjdXJyZW50IHBvc2l0aXZlIHJhdGluZyBpcyA4OCUgd2l0aCA4IHdvcmtpbmcgcmVwb3J0cy4iLCJpZCI6ImNvbS5pbWtwYXRpbC5sZXRtZWtub3ciLCJjb21tZXJjaWFsIjpmYWxzZSwicGFja2FnZUluc3RhbGxlZCI6dHJ1ZSwidHdlYWtDb21wYXRWZXJzaW9uIjoiMC4wLjciLCJzaG9ydERlc2NyaXB0aW9uIjoicGxheSB2aWJyYXRpb24gd2hlbiBjYWxsIGNvbm5lY3RcL2Rpc2Nvbm5lY3QiLCJsYXRlc3QiOiIxLjItMSIsImF1dGhvciI6IktpcmFuIFBhdGlsIiwicGFja2FnZVN0YXR1cyI6IldvcmtpbmcifQ==\",\r\n \"chosenStatus\": \"working\",\r\n \"notes\": \"\"\r\n}\r\n```",
"title": "`LetMeKnow` working on iOS 11.1.2",
"type": "issue"
}
] | 2 | 3 | 2,259 | false | true | 2,017 | false |
lucacri/homebridge-http-simple-switch | null | 294,101,959 | 4 | null | [
{
"action": "opened",
"author": "reppmic",
"comment_id": null,
"datetime": 1517654958000,
"masked_author": "username_0",
"text": "Hi,\r\n i canยดt figure out how to use more than one device like \r\n\r\n\"accessories\": [\r\n {\r\n \"accessory\": \"SimpleHttpSwitch\",\r\n \"name\": \"Living Room Button\",\r\n \"url\": \"http://192.168.1.210/button\",\r\n \"default_state_off\": true, \r\n \"sendimmediately\": \"\",\r\n \"http_method\": \"GET\"\r\n \r\n \r\n \"name\": \"Living Room Button2\",\r\n \"url\": \"http://192.168.1.212/button2\",\r\n \"default_state_off\": true, \r\n \"sendimmediately\": \"\",\r\n \"http_method\": \"GET\"\r\n}\r\n\r\n ]\r\n\r\nhow is this possible?\r\nThanks!",
"title": "How to add more than one device",
"type": "issue"
},
{
"action": "created",
"author": "reppmic",
"comment_id": 362798185,
"datetime": 1517655778000,
"masked_author": "username_0",
"text": "ok, forgot a \",\" between devices....\r\n\r\n\"accessories\": [\r\n{\r\n\"accessory\": \"SimpleHttpSwitch\",\r\n\"name\": \"Living Room Button\",\r\n\"url\": \"http://192.168.1.210/button\",\r\n\"default_state_off\": true,\r\n\"sendimmediately\": \"\",\r\n\"http_method\": \"GET\"\r\n},\r\n}\r\n \"name\": \"Living Room Button2\",\r\n \"url\": \"http://192.168.1.212/button2\",\r\n \"default_state_off\": true, \r\n \"sendimmediately\": \"\",\r\n \"http_method\": \"GET\"\r\n}\r\n\r\n]",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "reppmic",
"comment_id": null,
"datetime": 1517655778000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 3 | 1,039 | false | false | 1,039 | false |
pothosware/SoapySDR | pothosware | 451,255,877 | 227 | null | [
{
"action": "opened",
"author": "MarcKaufman",
"comment_id": null,
"datetime": 1559523579000,
"masked_author": "username_0",
"text": "There are several places in Modules.cpp where the incorrect separator is used. Here are my patches:\r\n\r\nSoapySDR::listSearchPaths\r\n searchPaths.push_back(SoapySDR::getRootPath() + \r\n#ifdef _MSC_VER\r\n\t\t\"\\\\lib\\\\SoapySDR\\\\modules\"\r\n#else\r\n\t\t\"/lib/SoapySDR/modules\"\r\n#endif\r\n\t\t+ SoapySDR::getABIVersion());\r\n\r\nSoapySDR::listModules\r\n return searchModulePath(path + \r\n#ifdef _MSC_VER\r\n\t\t\"\\\\\"\r\n#else\r\n\t\t\"/\"\r\n#endif\r\n\t); //requires trailing slash",
"title": "Windows file separators incorrect in several places",
"type": "issue"
},
{
"action": "created",
"author": "guruofquality",
"comment_id": 498087535,
"datetime": 1559526705000,
"masked_author": "username_1",
"text": "Most command lines don't allow \"/\" because it conflicts with the use of \"/\" for a switch delimiter. But the Windows and DOS kernels are happy with either \"\\\" or \"/\". So something isnt broken, this is just aesthetic right?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "MarcKaufman",
"comment_id": 498093459,
"datetime": 1559529176000,
"masked_author": "username_0",
"text": "Nothing to do with the command line. getRootPath and listModules are used for finding the dlls to load. If you don't do the change you get \"/\" in Windows paths, which doesn't work. I was chasing a bug where SDRPlaySupport wouldn't load in CubicSDR. Cubic was giving Soapy a path ending in \"\\\\\\\\\", which then had a \"/\" appended, making file search unworkable. I'll try taking out the Soapy changes one at a time now that I have the file search running correctly.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "MarcKaufman",
"comment_id": null,
"datetime": 1559530055000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "MarcKaufman",
"comment_id": 498095360,
"datetime": 1559530055000,
"masked_author": "username_0",
"text": "I just checked with the other delimiters. Works fine. Sorry for the false bug report.",
"title": null,
"type": "comment"
}
] | 2 | 5 | 1,210 | false | false | 1,210 | false |
freeCodeCamp/freeCodeCamp | freeCodeCamp | 376,197,546 | 33,961 | {
"number": 33961,
"repo": "freeCodeCamp",
"user_login": "freeCodeCamp"
} | [
{
"action": "opened",
"author": "smithnkereuwem",
"comment_id": null,
"datetime": 1541028345000,
"masked_author": "username_0",
"text": "<!-- Please follow this checklist and put an x in each of the boxes, like this: [x]. It will ensure that our team takes your pull request seriously. -->\r\n\r\n- [x] I have read [freeCodeCamp's contribution guidelines](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md).\r\n- [x] My pull request has a descriptive title (not a vague title like `Update index.md`)\r\n- [x] My pull request targets the `master` branch of freeCodeCamp.\r\n- [x] None of my changes are plagiarized from another source without proper attribution.\r\n- [x] My article does not contain shortened URLs or affiliate links.\r\n\r\nIf your pull request closes a GitHub issue, replace the XXXXX below with the issue number.\r\n\r\nCloses #XXXXX",
"title": "An Update to the intro to PHP guide. Quick Little Review.",
"type": "issue"
},
{
"action": "created",
"author": "RandellDawson",
"comment_id": 442814343,
"datetime": 1543494128000,
"masked_author": "username_1",
"text": "Closed and Reopened this PR to attempt to resolve a specific Travis build failure.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "RandellDawson",
"comment_id": 476921126,
"datetime": 1553649262000,
"masked_author": "username_1",
"text": "Congrats @username_0 on your first pull request (PR)! ๐\r\n\r\nThank you for your contribution to the page! ๐\r\nWe're happy to accept these changes, and look forward to future contributions. ๐",
"title": null,
"type": "comment"
}
] | 2 | 3 | 991 | false | false | 991 | true |
vuejs/vue | vuejs | 304,620,424 | 7,813 | null | [
{
"action": "opened",
"author": "jinzhubaofu",
"comment_id": null,
"datetime": 1520913751000,
"masked_author": "username_0",
"text": "### Version\r\n2.5.15\r\n\r\n### Reproduction link\r\n[https://codepen.io/ludafa/pen/Broxxy](https://codepen.io/ludafa/pen/Broxxy)\r\n\r\n### Steps to reproduce\r\n1. npm install vue vue-server-render\r\n2. new a `index.js` with this code:\r\n\r\n ```js\r\n const Vue = require('vue')\r\n const app = new Vue({\r\n template: `<div :style=\"[{color: a, background: b}]\" v-show=\"c\">test</div>`,\r\n data() {\r\n return {\r\n a: 'red',\r\n b: 'blue',\r\n c: false\r\n };\r\n }\r\n })\r\n const renderer = require('vue-server-renderer').createRenderer()\r\n renderer.renderToString(app, (err, html) => {\r\n if (err) throw err\r\n console.log(html)\r\n })\r\n ```\r\n\r\n3. run: node index.js\r\n\r\n### What is expected?\r\n<div data-server-rendered=\"true\" style=\"color:red;background:blue;display:none;\">test</div>\r\n\r\n### What is actually happening?\r\n<div data-server-rendered=\"true\" style=\"color:red;background:blue;\">test</div>\r\n\r\n---\r\nPlease run the CodePen on Node\r\n\r\n<!-- generated by vue-issues. DO NOT REMOVE -->",
"title": "server side render lost v-show if style to binding to an array",
"type": "issue"
},
{
"action": "closed",
"author": "yyx990803",
"comment_id": null,
"datetime": 1520953679000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 2 | 1,006 | false | false | 1,006 | false |
Microsoft/vscode | Microsoft | 384,542,920 | 63,809 | null | [
{
"action": "opened",
"author": "roblourens",
"comment_id": null,
"datetime": 1543272240000,
"masked_author": "username_0",
"text": "I'd like to be able to add a comment with a keyboard shortcut, so the thing that happens when I click on the comment margin should be exposed via command. At least I think this is on vscode not the PR extension.",
"title": "Add PR comment via keyboard shortcut",
"type": "issue"
},
{
"action": "created",
"author": "RMacfarlane",
"comment_id": 539109090,
"datetime": 1570467735000,
"masked_author": "username_1",
"text": "This was implemented with https://github.com/microsoft/vscode/commit/72a18e636b2d9f1ad866f0c9b3563b7d91973809, the action has no default keybinding but is called `workbench.action.addComment`",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "RMacfarlane",
"comment_id": null,
"datetime": 1570467736000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 3 | 402 | false | false | 402 | false |
jmxtrans/jmxtrans | jmxtrans | 486,261,075 | 755 | null | [
{
"action": "opened",
"author": "HouwelingFrank",
"comment_id": null,
"datetime": 1566991572000,
"masked_author": "username_0",
"text": "Dear all,\r\n\r\nWhen I start the latest jmxtrans docker container me and my colleague get an java.lang.UnsatisfiedLinkError error. I took the image from the latest from docker hub:\r\nhttps://hub.docker.com/r/jmxtrans/jmxtrans. Does anyone have a suggestion to solve this?\r\n\r\nI the docker container with the following command on my windows machine, with a volume defined where I have my config.json file:\r\n_docker run -it -v C:/data/volume_jmxtrans:/var/lib/jmxtrans --env SECONDS_BETWEEN_RUNS=30 --env HEAP_SIZE=1024 -P jmxtrans/jmxtrans_\r\n\r\n\r\nThe logging including the error:\r\nOpenJDK 64-Bit Server VM warning: ignoring option PermSize=384m; support was removed in 8.0\r\nOpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=384m; support was removed in 8.0\r\n2019-08-28 09:19:15 [main] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor\r\n2019-08-28 09:19:15 [main] INFO org.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl\r\n2019-08-28 09:19:15 [main] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.1.8.6 created.\r\n2019-08-28 09:19:15 [main] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.\r\n2019-08-28 09:19:15 [main] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v1.8.6) 'ServerScheduler' with instanceId '23ee1f28259f1566983955096'\r\n Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.\r\n NOT STARTED.\r\n Currently in standby mode.\r\n Number of jobs executed: 0\r\n Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.\r\n Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.\r\n\r\n2019-08-28 09:19:15 [main] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'ServerScheduler' initialized from an externally opened InputStream.\r\n2019-08-28 09:19:15 [main] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 1.8.6\r\n2019-08-28 09:19:15 [main] INFO org.quartz.core.QuartzScheduler - JobFactory set to: com.googlecode.jmxtrans.guice.GuiceJobFactory@26e356f0\r\n2019-08-28 09:19:15 [main] INFO com.googlecode.jmxtrans.JmxTransformer - Starting Jmxtrans on : /var/lib/jmxtrans\r\n2019-08-28 09:19:15 [main] INFO org.quartz.core.QuartzScheduler - Scheduler ServerScheduler_$_23ee1f28259f1566983955096 started.\r\njava.lang.UnsatisfiedLinkError: /tmp/jpathwatch-nativelib-v-0-95-libjpathwatch-native.so: Error loading shared library ld-linux-x86-64.so.2: No such file or directory (needed by /tmp/jpathwatch-nativelib-v-0-95-libjpathwatch-native.so)\r\n at java.lang.ClassLoader$NativeLibrary.load(Native Method)\r\n at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)\r\n at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824)\r\n at java.lang.Runtime.load0(Runtime.java:809)\r\n at java.lang.System.load(System.java:1086)\r\n at name.pachler.nio.file.impl.NativeLibLoader.extractAndLoadLibrary(NativeLibLoader.java:407)\r\n at name.pachler.nio.file.impl.NativeLibLoader.loadLibrary(NativeLibLoader.java:257)\r\n at name.pachler.nio.file.impl.LinuxPathWatchService.<clinit>(LinuxPathWatchService.java:105)\r\n at name.pachler.nio.file.ext.Bootstrapper.newWatchService(Bootstrapper.java:80)\r\n at name.pachler.nio.file.FileSystems$1.newWatchService(FileSystems.java:40)\r\n at com.googlecode.jmxtrans.util.WatchDir.<init>(WatchDir.java:56)\r\n at com.googlecode.jmxtrans.JmxTransformer.startupWatchdir(JmxTransformer.java:298)\r\n at com.googlecode.jmxtrans.JmxTransformer.start(JmxTransformer.java:181)\r\n at com.googlecode.jmxtrans.JmxTransformer.doMain(JmxTransformer.java:155)\r\n at com.googlecode.jmxtrans.JmxTransformer.main(JmxTransformer.java:147)\r\njava.lang.UnsatisfiedLinkError: /tmp/jpathwatch-nativelib-v-0-95-8404108935848086502libjpathwatch-native.so: Error loading shared library ld-linux-x86-64.so.2: No such file or directory (needed by /tmp/jpathwatch-nativelib-v-0-95-8404108935848086502libjpathwatch-native.so)\r\n at java.lang.ClassLoader$NativeLibrary.load(Native Method)\r\n at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)\r\n at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824)\r\n at java.lang.Runtime.load0(Runtime.java:809)\r\n at java.lang.System.load(System.java:1086)\r\n at name.pachler.nio.file.impl.NativeLibLoader.extractAndLoadLibrary(NativeLibLoader.java:407)\r\n at name.pachler.nio.file.impl.NativeLibLoader.loadLibrary(NativeLibLoader.java:267)\r\n at name.pachler.nio.file.impl.LinuxPathWatchService.<clinit>(LinuxPathWatchService.java:105)\r\n at name.pachler.nio.file.ext.Bootstrapper.newWatchService(Bootstrapper.java:80)\r\n at name.pachler.nio.file.FileSystems$1.newWatchService(FileSystems.java:40)\r\n at com.googlecode.jmxtrans.util.WatchDir.<init>(WatchDir.java:56)\r\n at com.googlecode.jmxtrans.JmxTransformer.startupWatchdir(JmxTransformer.java:298)\r\n at com.googlecode.jmxtrans.JmxTransformer.start(JmxTransformer.java:181)\r\n at com.googlecode.jmxtrans.JmxTransformer.doMain(JmxTransformer.java:155)\r\n at com.googlecode.jmxtrans.JmxTransformer.main(JmxTransformer.java:147)\r\njava.lang.UnsatisfiedLinkError: no jpathwatch-native in java.library.path\r\n at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867)\r\n at java.lang.Runtime.loadLibrary0(Runtime.java:870)\r\n at java.lang.System.loadLibrary(System.java:1122)\r\n at name.pachler.nio.file.impl.NativeLibLoader.loadDefaultLibrary(NativeLibLoader.java:84)\r\n at name.pachler.nio.file.impl.NativeLibLoader.loadLibrary(NativeLibLoader.java:277)\r\n at name.pachler.nio.file.impl.LinuxPathWatchService.<clinit>(LinuxPathWatchService.java:105)\r\n at name.pachler.nio.file.ext.Bootstrapper.newWatchService(Bootstrapper.java:80)\r\n at name.pachler.nio.file.FileSystems$1.newWatchService(FileSystems.java:40)\r\n at com.googlecode.jmxtrans.util.WatchDir.<init>(WatchDir.java:56)\r\n at com.googlecode.jmxtrans.JmxTransformer.startupWatchdir(JmxTransformer.java:298)\r\n at com.googlecode.jmxtrans.JmxTransformer.start(JmxTransformer.java:181)\r\n at com.googlecode.jmxtrans.JmxTransformer.doMain(JmxTransformer.java:155)\r\n at com.googlecode.jmxtrans.JmxTransformer.main(JmxTransformer.java:147)\r\njava.lang.UnsatisfiedLinkError: /tmp/jpathwatch-nativelib-v-0-95-libjpathwatch-native.so: Error loading shared library ld-linux-x86-64.so.2: No such file or directory (needed by /tmp/jpathwatch-nativelib-v-0-95-libjpathwatch-native.so)\r\n at java.lang.ClassLoader$NativeLibrary.load(Native Method)\r\n at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)\r\n at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824)\r\n at java.lang.Runtime.load0(Runtime.java:809)\r\n at java.lang.System.load(System.java:1086)\r\n at name.pachler.nio.file.impl.NativeLibLoader.extractAndLoadLibrary(NativeLibLoader.java:407)\r\n at name.pachler.nio.file.impl.NativeLibLoader.loadLibrary(NativeLibLoader.java:257)\r\n at name.pachler.nio.file.impl.Unix.<clinit>(Unix.java:86)\r\n at name.pachler.nio.file.impl.LinuxPathWatchService.<init>(LinuxPathWatchService.java:211)\r\n at name.pachler.nio.file.ext.Bootstrapper.newWatchService(Bootstrapper.java:80)\r\n at name.pachler.nio.file.FileSystems$1.newWatchService(FileSystems.java:40)\r\n at com.googlecode.jmxtrans.util.WatchDir.<init>(WatchDir.java:56)\r\n at com.googlecode.jmxtrans.JmxTransformer.startupWatchdir(JmxTransformer.java:298)\r\n at com.googlecode.jmxtrans.JmxTransformer.start(JmxTransformer.java:181)\r\n at com.googlecode.jmxtrans.JmxTransformer.doMain(JmxTransformer.java:155)\r\n at com.googlecode.jmxtrans.JmxTransformer.main(JmxTransformer.java:147)\r\njava.lang.UnsatisfiedLinkError: /tmp/jpathwatch-nativelib-v-0-95-7444898884185850588libjpathwatch-native.so: Error loading shared library ld-linux-x86-64.so.2: No such file or directory (needed by /tmp/jpathwatch-nativelib-v-0-95-7444898884185850588libjpathwatch-native.so)\r\n at java.lang.ClassLoader$NativeLibrary.load(Native Method)\r\n at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)\r\n at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824)\r\n at java.lang.Runtime.load0(Runtime.java:809)\r\n at java.lang.System.load(System.java:1086)\r\n at name.pachler.nio.file.impl.NativeLibLoader.extractAndLoadLibrary(NativeLibLoader.java:407)\r\n at name.pachler.nio.file.impl.NativeLibLoader.loadLibrary(NativeLibLoader.java:267)\r\n at name.pachler.nio.file.impl.Unix.<clinit>(Unix.java:86)\r\n at name.pachler.nio.file.impl.LinuxPathWatchService.<init>(LinuxPathWatchService.java:211)\r\n at name.pachler.nio.file.ext.Bootstrapper.newWatchService(Bootstrapper.java:80)\r\n at name.pachler.nio.file.FileSystems$1.newWatchService(FileSystems.java:40)\r\n at com.googlecode.jmxtrans.util.WatchDir.<init>(WatchDir.java:56)\r\n at com.googlecode.jmxtrans.JmxTransformer.startupWatchdir(JmxTransformer.java:298)\r\n at com.googlecode.jmxtrans.JmxTransformer.start(JmxTransformer.java:181)\r\n at com.googlecode.jmxtrans.JmxTransformer.doMain(JmxTransformer.java:155)\r\n at com.googlecode.jmxtrans.JmxTransformer.main(JmxTransformer.java:147)\r\njava.lang.UnsatisfiedLinkError: no jpathwatch-native in java.library.path\r\n at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867)\r\n at java.lang.Runtime.loadLibrary0(Runtime.java:870)\r\n at java.lang.System.loadLibrary(System.java:1122)\r\n at name.pachler.nio.file.impl.NativeLibLoader.loadDefaultLibrary(NativeLibLoader.java:84)\r\n at name.pachler.nio.file.impl.NativeLibLoader.loadLibrary(NativeLibLoader.java:277)\r\n at name.pachler.nio.file.impl.Unix.<clinit>(Unix.java:86)\r\n at name.pachler.nio.file.impl.LinuxPathWatchService.<init>(LinuxPathWatchService.java:211)\r\n at name.pachler.nio.file.ext.Bootstrapper.newWatchService(Bootstrapper.java:80)\r\n at name.pachler.nio.file.FileSystems$1.newWatchService(FileSystems.java:40)\r\n at com.googlecode.jmxtrans.util.WatchDir.<init>(WatchDir.java:56)\r\n at com.googlecode.jmxtrans.JmxTransformer.startupWatchdir(JmxTransformer.java:298)\r\n at com.googlecode.jmxtrans.JmxTransformer.start(JmxTransformer.java:181)\r\n at com.googlecode.jmxtrans.JmxTransformer.doMain(JmxTransformer.java:155)\r\n at com.googlecode.jmxtrans.JmxTransformer.main(JmxTransformer.java:147)\r\nAug 28, 2019 9:19:15 AM name.pachler.nio.file.ext.Bootstrapper newWatchService\r\nWARNING: null\r\njava.lang.UnsatisfiedLinkError: name.pachler.nio.file.impl.Unix.getIntDefine(Ljava/lang/String;)I\r\n at name.pachler.nio.file.impl.Unix.getIntDefine(Native Method)\r\n at name.pachler.nio.file.impl.Unix.<clinit>(Unix.java:87)\r\n at name.pachler.nio.file.impl.LinuxPathWatchService.<init>(LinuxPathWatchService.java:211)\r\n at name.pachler.nio.file.ext.Bootstrapper.newWatchService(Bootstrapper.java:80)\r\n at name.pachler.nio.file.FileSystems$1.newWatchService(FileSystems.java:40)\r\n at com.googlecode.jmxtrans.util.WatchDir.<init>(WatchDir.java:56)\r\n at com.googlecode.jmxtrans.JmxTransformer.startupWatchdir(JmxTransformer.java:298)\r\n at com.googlecode.jmxtrans.JmxTransformer.start(JmxTransformer.java:181)\r\n at com.googlecode.jmxtrans.JmxTransformer.doMain(JmxTransformer.java:155)\r\n at com.googlecode.jmxtrans.JmxTransformer.main(JmxTransformer.java:147)",
"title": "java.lang.UnsatisfiedLinkError",
"type": "issue"
},
{
"action": "created",
"author": "gerardo",
"comment_id": 554860222,
"datetime": 1574055477000,
"masked_author": "username_1",
"text": "I'm hitting the same error as well. I started the container like this to get a console and try some things out: `docker run -it jmxtrans/jmxtrans sh`. Once inside, I checked the state of the links, and it matches [this](https://stackoverflow.com/a/55568352/76833). The solution is to install gcompat like this: `apk add --no-cache gcompat`.\r\n\r\nIt would be great if we could get this fixed in the docker image ๐ .",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "gerardo",
"comment_id": 554861411,
"datetime": 1574055756000,
"masked_author": "username_1",
"text": "@gehel as per https://github.com/jmxtrans/jmxtrans/issues/636, would you be willing to review a PR fixing this if I submit it? I see there are around 31 open PRs right now, some dating all the way to 2015 :(",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "gquintana",
"comment_id": 568194091,
"datetime": 1576946143000,
"masked_author": "username_2",
"text": "This issue is fixed is it?",
"title": null,
"type": "comment"
}
] | 3 | 4 | 12,363 | false | false | 12,363 | false |
nix-community/nixpkgs-fmt | nix-community | 485,282,055 | 130 | {
"number": 130,
"repo": "nixpkgs-fmt",
"user_login": "nix-community"
} | [
{
"action": "opened",
"author": "matklad",
"comment_id": null,
"datetime": 1566831469000,
"masked_author": "username_0",
"text": "",
"title": "format directories",
"type": "issue"
},
{
"action": "created",
"author": "matklad",
"comment_id": 524895168,
"datetime": 1566842356000,
"masked_author": "username_0",
"text": "Formatting nixpkgs after this change I get\r\n\r\n```\r\nฮป time ../nixpkgs-fmt/target/release/nixpkgs-fmt .\r\nreal 12.81s\r\nuser 24.74s\r\nsys 0.77s\r\nrss 464100k\r\n\r\n17:54:53|~/projects/nixpkgs|masterโก*\r\nฮป git diff | wc -l\r\n1763412\r\n```\r\n\r\nNote that this effectively uses two cores out of 4cores/8hyperthreads machine, which I can't really explain without digging into. That said, 10 seconds for nixpkgs seems like a reasonable time which shouldn't be optimized further",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "matklad",
"comment_id": 524896318,
"datetime": 1566842520000,
"masked_author": "username_0",
"text": "@username_1 I wonder why it took you 10 minutes for nixpkgs in https://discourse.nixos.org/t/nixpkgs-fmt-beta-0-3-1/3812/5?u=username_0? That is excessive... I guess that either you used the debug version of the build, or that whichever directory traversal was the bottleneck. \r\n\r\nTo be clear, I haven't really optimized the formatter at all, it currently allocates all other the place, so, if we care about perf, I'd say another order of magnitude could be possible, but is probably unnecessary.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "zimbatm",
"comment_id": 524973344,
"datetime": 1566844047000,
"masked_author": "username_1",
"text": "Yeah I did all of things wrong. I was using the debug build with `git ls-files | grep -e \".nix$\" | xargs nixpkgs-fmt`.\r\n\r\nHaving the path traversal builtin is really nice, it's going to be more convenient to use on code bases without the pre-commit hook.\r\n\r\nbors r+",
"title": null,
"type": "comment"
}
] | 3 | 5 | 1,274 | false | true | 1,215 | true |
blackflux/dy-alchemy | blackflux | 465,025,950 | 402 | {
"number": 402,
"repo": "dy-alchemy",
"user_login": "blackflux"
} | [
{
"action": "opened",
"author": "simlu",
"comment_id": null,
"datetime": 1562552659000,
"masked_author": "username_0",
"text": "",
"title": "fix: updated deps",
"type": "issue"
},
{
"action": "created",
"author": "MrsFlux",
"comment_id": 509063108,
"datetime": 1562555329000,
"masked_author": "username_1",
"text": ":tada: This PR is included in version 1.1.14 :tada:\n\nThe release is available on:\n- [npm package (@latest dist-tag)](https://www.npmjs.com/package/dy-alchemy)\n- [GitHub release](https://github.com/blackflux/dy-alchemy/releases/tag/v1.1.14)\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:",
"title": null,
"type": "comment"
}
] | 2 | 2 | 344 | false | false | 344 | false |
opencv/opencv | opencv | 504,199,560 | 15,666 | {
"number": 15666,
"repo": "opencv",
"user_login": "opencv"
} | [
{
"action": "opened",
"author": "seanm",
"comment_id": null,
"datetime": 1570558602000,
"masked_author": "username_0",
"text": "",
"title": "Fixed clang -Wnewline-eof warning by adding newline to end of file",
"type": "issue"
},
{
"action": "created",
"author": "seanm",
"comment_id": 539638479,
"datetime": 1570558674000,
"masked_author": "username_0",
"text": "@username_1",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "alalek",
"comment_id": 539648747,
"datetime": 1570560235000,
"masked_author": "username_1",
"text": "This patch should [go](https://github.com/opencv/opencv/wiki/How_to_contribute#faq) into [3.4 branch](https://github.com/opencv/opencv/wiki/Branches) first. We will merge changes from 3.4 into master regularly (weekly/bi-weekly).\r\n\r\nSo, please:\r\n- change \"base\" branch of this PR: master => 3.4 (use \"Edit\" button near PR title)\r\n- rebase your commits from master onto 3.4 branch. For example:\r\n `git rebase -i --onto upstream/3.4 upstream/master`\r\n (check list of your commits, save and quit (Esc + \"wq\" + Enter)\r\n where `upstream` is configured by following [this GitHub guide](https://help.github.com/articles/configuring-a-remote-for-a-fork/) and fetched (`git fetch upstream`).\r\n- push rebased commits into source branch of your fork (with `--force` option)\r\n\r\nNote: no needs to re-open PR, apply changes \"inplace\".",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "asmorkalov",
"comment_id": 539952577,
"datetime": 1570619011000,
"masked_author": "username_2",
"text": ":+1:",
"title": null,
"type": "comment"
}
] | 3 | 4 | 840 | false | false | 840 | true |
jekyll/jekyll-feed | jekyll | 411,215,534 | 264 | {
"number": 264,
"repo": "jekyll-feed",
"user_login": "jekyll"
} | [
{
"action": "opened",
"author": "pmb00cs",
"comment_id": null,
"datetime": 1550426463000,
"masked_author": "username_0",
"text": "Hi I wanted to get jekyll to automatically generate feeds for the tags I apply to my blog. I've put together this pull request, which works functionally, but doesn't build with the current rubocop settings.\r\nI'd like some help improving the work that I have done to make it acceptable to include in this project.\r\n\r\nI'm not primarily a ruby developer, but a Sysadmin, so pointers would be welcomed.\r\n\r\nStrictly my use case does not need this complexity, but it annoys me that Jekyll doesn't include this functionality that is part of most popular blogging platforms.",
"title": "Feed by tag",
"type": "issue"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 464874556,
"datetime": 1550523197000,
"masked_author": "username_0",
"text": "So I've written some tests, there is still some work to do on making the code pass rubocop, and it would be nice to get some help with that",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 464885620,
"datetime": 1550525238000,
"masked_author": "username_0",
"text": "So I've done some work to refactor the logic I've built to reduce the rubocop errors, but the last error I'm not sure how to correct it without breaking things badly.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 464914873,
"datetime": 1550530949000,
"masked_author": "username_0",
"text": "So I've fixed the last of the rubocop errors, and added extra tests for when the feature I'm wanting to add is not invoked (it occured to me that I hadn't added that test and I should have) to ensure it doesn't create feeds it shouldn't do. I would still appreciate any feedback you may have.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "ashmaroli",
"comment_id": 465059512,
"datetime": 1550569258000,
"masked_author": "username_1",
"text": "@username_0 I've refactored the Ruby code for you since it is not a familiar language to you and therefore would have simply led to noise if I were to just leave comments behind.\r\n\r\nThat said, I've marked two areas (documentation and tests) needing changes. Please make the changes when possible.\r\nFeel free to further improve the code if you feel the need.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 465265259,
"datetime": 1550602752000,
"masked_author": "username_0",
"text": "@username_1 thank you for your feedback, and for your changes. Your logic looks much cleaner than mine. I've fixed the comments you have made against the tests and the README",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 516795947,
"datetime": 1564569621000,
"masked_author": "username_0",
"text": "It's been a while since I raised this pull request, and it has been waiting on a review for most of that time. I could understand if there is reluctance to accept a new feature into your project, but I would like the opportunity to try and address any such reluctance if I can. As such is there anything I can do or say, to increase the chances of getting such a review? I apologise if the wait is simply down to work load however. I do know that open source project maintainers can be short on time.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "ashmaroli",
"comment_id": 573288231,
"datetime": 1578724881000,
"masked_author": "username_1",
"text": "@username_0 Can you add a test-case for a scenario involving front matter key `tag`? Since Jekyll handles `tag` and `tags` automatically, there shouldn't be an issue. But it helps to be sure.\r\n```yaml\r\n---\r\ntag: foobar # value is a string instead of an array..\r\n---\r\n\r\nThis a test document.\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 573308277,
"datetime": 1578742059000,
"masked_author": "username_0",
"text": "That looks like a reasonable ask. I'll see what I can do.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 573309773,
"datetime": 1578743318000,
"masked_author": "username_0",
"text": "I've added the requested test. It's passing for me locally.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "ashmaroli",
"comment_id": 573310886,
"datetime": 1578744257000,
"masked_author": "username_1",
"text": "Thank you very much @username_0.\r\n\r\n@username_2 This LGTM! as well. I'm not leaving an explicit approval here since I've made some non-trivial changes. If none of the other maintainers requests for further changes in a couple of days, feel free to merge.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "DirtyF",
"comment_id": 573324323,
"datetime": 1578755000000,
"masked_author": "username_2",
"text": "@username_1 yes, I would prefer a former approval from @mattr- @parkr or @benbalter as this plugin is white listed on GitHub Pages.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "ashmaroli",
"comment_id": 574569697,
"datetime": 1579080100000,
"masked_author": "username_1",
"text": "@username_0 I was wondering.. How about renaming `config[\"includes\"]` to `config[\"only\"]` so that it is more intuitive..? `includes` gives the feeling that it is to *include* a tag that is otherwise not considered... and then `config[\"excludes\"]` to `config[\"except\"]`..?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 574779491,
"datetime": 1579111208000,
"masked_author": "username_0",
"text": "That looks like a sensible suggestion.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 574783696,
"datetime": 1579111865000,
"masked_author": "username_0",
"text": "I've pushed up a change to address that @username_1 suggested to make the settings clearer on what they do.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "FREELANCEGITIT",
"comment_id": 586057760,
"datetime": 1581644764000,
"masked_author": "username_3",
"text": "@benbalter @username_2 @username_0 @username_1 @mojombo \r\nNice work. I enjoyed reading your correspondence and am learning a lot c\r\nFrom this process. Best, K",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 629348014,
"datetime": 1589559256000,
"masked_author": "username_0",
"text": "Is there any update on when the outstanding review of this pull request might happen?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "hozza",
"comment_id": 646257270,
"datetime": 1592507892000,
"masked_author": "username_4",
"text": "I would super love this to be merged! Perfect for connecting a Jekyll site to MailChimp for tag based email marketing! ๐คฉ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "ashmaroli",
"comment_id": 647304152,
"datetime": 1592806135000,
"masked_author": "username_1",
"text": "@username_0 Will you be able to update the tests in light of Parker's review?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "pmb00cs",
"comment_id": 647627550,
"datetime": 1592842958000,
"masked_author": "username_0",
"text": "Hi, @username_1 I've removed the test that @parkr has raised as unneeded, and also merged the latest commits in master to ensure this pull request is fully up to date.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "DirtyF",
"comment_id": 647628822,
"datetime": 1592843100000,
"masked_author": "username_2",
"text": "@jekyll: merge +minor ๐",
"title": null,
"type": "comment"
}
] | 5 | 21 | 4,007 | false | false | 4,007 | true |
CondeNast/atjson | CondeNast | 497,323,090 | 207 | {
"number": 207,
"repo": "atjson",
"user_login": "CondeNast"
} | [
{
"action": "opened",
"author": "tim-evans",
"comment_id": null,
"datetime": 1569272042000,
"masked_author": "username_0",
"text": "This should decrease our CI time and separate out our tests into logical groups:\r\n\r\n- Test\r\n- Type Check\r\n- Performance\r\n\r\nI've also removed our TypeDoc documentation being built, as we're in the process of bringing up a new website that will provide all of our documentation ๐",
"title": "๐ทโโ๏ธUse jobs to run tests in parallel to decrease test time",
"type": "issue"
},
{
"action": "created",
"author": "tim-evans",
"comment_id": 534287130,
"datetime": 1569273193000,
"masked_author": "username_0",
"text": "Whelp, closing this, as it seems like type checking in a monorepo requires a bit more finessing with regard to `.d.ts` files generated ๐ญ",
"title": null,
"type": "comment"
}
] | 1 | 2 | 413 | false | false | 413 | false |
996icu/996.ICU | null | 426,847,830 | 22,314 | null | [
{
"action": "opened",
"author": "fangsidian",
"comment_id": null,
"datetime": 1553843342000,
"masked_author": "username_0",
"text": "",
"title": "ไฝ ไปฌไปฅไธบๅฐฑ็จๅบๅ996๏ผ ๅคง้้ซไธญ็996๏ผ ๅคง้ๆฐ่ฅไผไธ966",
"type": "issue"
},
{
"action": "created",
"author": "liuxiaobina",
"comment_id": 477893249,
"datetime": 1553843424000,
"masked_author": "username_1",
"text": "่ๅฅ๏ผไป็จๅบๅๅผๅงๅ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "lich",
"comment_id": 477893562,
"datetime": 1553843512000,
"masked_author": "username_2",
"text": "ไปไปฌไนๅฏไปฅ้ไธญ็ๅ๏ผไธ่ฟ ๆ่งๅพๅฝๅฎถไธไผๅ
่ฎธๅคงๅ็บฟไธ่ไผ๏ผๅ่ๅ
ๆถตๆฎตๅญใ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "songyiwei",
"comment_id": 477893708,
"datetime": 1553843551000,
"masked_author": "username_3",
"text": "1.้ซไธญ็่ฟๆฏ996ๆจ๏ผ้ซไธ่ตท็ ๅพ706-707\r\n2.้ซไธญ็ๅฒๅบ3-4ๅนด๏ผ็จๅบๅไปๆฏไธ22ๅฒ่ตท็ ๅนฒๅฐ35ๅฒ๏ผ็ถๅๅคฑไธ...๏ผ\r\n3.ๆฐ่ฅไผไธๅคง้จๅๆฏ็ไบง็บฟ๏ผไธ่ฝๅ๏ผๅ็ญๅถ๏ผไธ็ญๅใไธค็ญๅใ",
"title": null,
"type": "comment"
}
] | 5 | 5 | 141 | false | true | 141 | false |
fraywing/textAngular | null | 137,610,176 | 1,094 | null | [
{
"action": "opened",
"author": "gklandes",
"comment_id": null,
"datetime": 1456847418000,
"masked_author": "username_0",
"text": "We are seeing a general inability to paste text that includes HTML-like elements.\r\n\r\nCopy the following from an outside source: \"This is a <tag> test\". I would expect the pasted text to appear and use HTML entities in the model.\r\n\r\nTesting on Mac and Windows across browsers generally produces one of 2 behaviors:\r\n* the tag-like text is striped out\r\n* the paste fails (nothing is pasted)\r\n\r\nIs there a way to overcome this?",
"title": "Pasting text with HTML tag-like characters fails or strips them",
"type": "issue"
}
] | 1 | 1 | 424 | false | false | 424 | false |
apache/hbase | apache | 347,589,472 | 89 | {
"number": 89,
"repo": "hbase",
"user_login": "apache"
} | [
{
"action": "opened",
"author": "taklwu",
"comment_id": null,
"datetime": 1533360370000,
"masked_author": "username_0",
"text": "Existing logic of cleaner chore is to firstly execute HFiles cleaner and then oldwals cleaner in a request, and only return succeed if both completes. \r\n\r\nThere is a use case of running only oldwals cleaner because oldwals uses all the disk space, and running HFiles cleaner is too slow because either the amount of old HFiles or directories are too much. So, this change provide the flexibility for those disabled cleaner by default or would like to execute admin command to run oldwals and HFiles cleaning procedure individually.\r\n\r\nJIRA https://issues.apache.org/jira/browse/HBASE-21011",
"title": "HBASE-21011 Provide CLI option to run oldwals and hfiles cleaner separately",
"type": "issue"
},
{
"action": "created",
"author": "taklwu",
"comment_id": 410425456,
"datetime": 1533361054000,
"masked_author": "username_0",
"text": "* mvn build \r\n\r\n```\r\n[INFO] Apache HBase - Thrift .............................. SUCCESS [ 9.399 s]\r\n[INFO] Apache HBase - RSGroup ............................. SUCCESS [ 5.593 s]\r\n[INFO] Apache HBase - Shell ............................... SUCCESS [ 6.224 s]\r\n[INFO] Apache HBase - Coprocessor Endpoint ................ SUCCESS [ 6.771 s]\r\n[INFO] Apache HBase - Backup .............................. SUCCESS [ 5.245 s]\r\n[INFO] Apache HBase - Integration Tests ................... SUCCESS [ 7.493 s]\r\n[INFO] Apache HBase - Rest ................................ SUCCESS [ 6.264 s]\r\n[INFO] Apache HBase - Examples ............................ SUCCESS [ 5.281 s]\r\n[INFO] Apache HBase - Shaded .............................. SUCCESS [ 0.345 s]\r\n[INFO] Apache HBase - Shaded - Client (with Hadoop bundled) SUCCESS [ 1.709 s]\r\n[INFO] Apache HBase - Shaded - Client ..................... SUCCESS [ 1.750 s]\r\n[INFO] Apache HBase - Shaded - MapReduce .................. SUCCESS [ 3.261 s]\r\n[INFO] Apache HBase - External Block Cache ................ SUCCESS [ 3.837 s]\r\n[INFO] Apache HBase - Spark ............................... SUCCESS [01:01 min]\r\n[INFO] Apache HBase - Spark Integration Tests ............. SUCCESS [ 5.535 s]\r\n[INFO] Apache HBase - Assembly ............................ SUCCESS [ 14.762 s]\r\n[INFO] Apache HBase Shaded Packaging Invariants ........... SUCCESS [ 4.499 s]\r\n[INFO] Apache HBase Shaded Packaging Invariants (with Hadoop bundled) SUCCESS [ 1.940 s]\r\n[INFO] Apache HBase - Archetypes .......................... SUCCESS [ 0.100 s]\r\n[INFO] Apache HBase - Exemplar for hbase-client archetype . SUCCESS [ 6.007 s]\r\n[INFO] Apache HBase - Exemplar for hbase-shaded-client archetype SUCCESS [ 5.166 s]\r\n[INFO] Apache HBase - Archetype builder ................... SUCCESS [ 1.136 s]\r\n[INFO] ------------------------------------------------------------------------\r\n[INFO] BUILD SUCCESS\r\n[INFO] ------------------------------------------------------------------------\r\n[INFO] Total time: 05:56 min\r\n[INFO] Finished at: 2018-08-03T22:27:55-07:00\r\n[INFO] Final Memory: 334M/1787M\r\n[INFO] ------------------------------------------------------------------------\r\n```\r\n\r\n* related unit tests \r\n\r\n```\r\n$ mvn clean test -Dtest=TestRpcAccessChecks\r\n...\r\n[INFO] Running org.apache.hadoop.hbase.security.access.TestRpcAccessChecks\r\n[INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 22.99 s - in org.apache.hadoop.hbase.security.access.TestRpcAccessChecks\r\n[INFO] \r\n[INFO] Results:\r\n[INFO] \r\n[INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0\r\n[INFO] \r\n[INFO] \r\n[INFO] --- maven-surefire-plugin:2.21.0:test (secondPartTestsExecution) @ hbase-server ---\r\n[INFO] Tests are skipped.\r\n[INFO] ------------------------------------------------------------------------\r\n[INFO] BUILD SUCCESS\r\n[INFO] ------------------------------------------------------------------------\r\n[INFO] Total time: 01:01 min\r\n[INFO] Finished at: 2018-08-04T05:00:15+00:00\r\n[INFO] Final Memory: 111M/1847M\r\n[INFO] ------------------------------------------------------------------------\r\n\r\n$ mvn test -Dtest=TestAsyncRegionAdminApi,TestAsyncRegionAdminApi2\r\n...\r\n[INFO] -------------------------------------------------------\r\n[INFO] T E S T S\r\n[INFO] -------------------------------------------------------\r\n[INFO] Running org.apache.hadoop.hbase.client.TestAsyncRegionAdminApi\r\n[INFO] Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 101.791 s - in org.apache.hadoop.hbase.client.TestAsyncRegionAdminApi\r\n[INFO] Running org.apache.hadoop.hbase.client.TestAsyncRegionAdminApi2\r\n[WARNING] Tests run: 10, Failures: 0, Errors: 0, Skipped: 2, Time elapsed: 57.89 s - in org.apache.hadoop.hbase.client.TestAsyncRegionAdminApi2\r\n[INFO] \r\n[INFO] Results:\r\n[INFO] \r\n[WARNING] Tests run: 28, Failures: 0, Errors: 0, Skipped: 2\r\n[INFO] \r\n[INFO] \r\n[INFO] --- maven-surefire-plugin:2.21.0:test (secondPartTestsExecution) @ hbase-server ---\r\n[INFO] Tests are skipped.\r\n[INFO] ------------------------------------------------------------------------\r\n[INFO] BUILD SUCCESS\r\n[INFO] ------------------------------------------------------------------------\r\n[INFO] Total time: 02:52 min\r\n[INFO] Finished at: 2018-08-04T05:26:12+00:00\r\n[INFO] Final Memory: 82M/1623M\r\n[INFO] ------------------------------------------------------------------------\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "taklwu",
"comment_id": 410806589,
"datetime": 1533580202000,
"masked_author": "username_0",
"text": "close this PR because it does not trigger QAbot at this point, moved back to use review board with https://reviews.apache.org/r/68241/",
"title": null,
"type": "comment"
}
] | 1 | 3 | 5,093 | false | false | 5,093 | false |
conda-forge/staged-recipes | conda-forge | 230,526,167 | 3,011 | {
"number": 3011,
"repo": "staged-recipes",
"user_login": "conda-forge"
} | [
{
"action": "opened",
"author": "kynan",
"comment_id": null,
"datetime": 1495488912000,
"masked_author": "username_0",
"text": "",
"title": "Add wmctrl recipe",
"type": "issue"
},
{
"action": "created",
"author": "kynan",
"comment_id": 303311957,
"datetime": 1495524016000,
"masked_author": "username_0",
"text": "Good to go @synapticarbors ?",
"title": null,
"type": "comment"
}
] | 2 | 3 | 232 | false | true | 28 | false |
romancm/gamebrary | null | 432,414,589 | 61 | null | [
{
"action": "opened",
"author": "areyouokani",
"comment_id": null,
"datetime": 1555052100000,
"masked_author": "username_0",
"text": "Now that we have wallpapers, let's make them actually visible on busy gamebraries! How about adding 50% transparency for the list backgrounds? Looks nice to me!\r\n\r\nBEFORE: \r\n\r\n\r\nAFTER:\r\n\r\n\r\nCODE:\r\n```css\r\n.list[data-v-41e546bc] {\r\n background: rgba(255, 255, 255, 0.5);\r\n}\r\n```",
"title": "Make the list backgrounds transparent",
"type": "issue"
},
{
"action": "created",
"author": "romancm",
"comment_id": 482631468,
"datetime": 1555085229000,
"masked_author": "username_1",
"text": "That's a great idea, I think I'll make it an optional feature inside the background modal since some busier background may interfere with the experience.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "romancm",
"comment_id": null,
"datetime": 1555193974000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "romancm",
"comment_id": 482894462,
"datetime": 1555193974000,
"masked_author": "username_1",
"text": "https://github.com/username_1/gamebrary/releases/tag/v1.14.2",
"title": null,
"type": "comment"
}
] | 2 | 4 | 710 | false | false | 710 | true |
microsoft/Azure-Kinect-Sensor-SDK | microsoft | 506,133,062 | 835 | null | [
{
"action": "opened",
"author": "shreyapandit",
"comment_id": null,
"datetime": 1570856581000,
"masked_author": "username_0",
"text": "<!--\r\nBefore filing a bug\r\n- Ensure the bug reproduces on the latest SDK.\r\n- Search existing issues and make sure this issue is not already filed.\r\n-->\r\n\r\n**Describe the bug**\r\n<!-- A clear and concise description of what the bug is. -->\r\n\r\nTrying to run the offline_processor example as mentioned in https://github.com/microsoft/Azure-Kinect-Sensor-SDK/issues/808\r\n\r\nI built the offline processor exe successfully and now trying to feed it an mkv file to convert.\r\nIt fails with an error cc @username_1 \r\n\r\n**To Reproduce**\r\n<!-- Steps to reproduce the behavior:\r\n1. Go to `offline_processor` example\r\n2. Build project through VS 2019.\r\n3. cd into `build\\bin\\Debug` \r\n4. Run the exe as ```offline_processor.exe C:\\Users\\ivcla\\workspace\\kinectoutput\\output1.mkv output1.json```\r\n4.The following error comes after a few seconds of wait\r\n\r\n\r\n\r\n\r\n**Expected behavior**\r\n<!-- A clear and concise description of what you expected to happen. -->\r\nThe output json file should have been created.\r\n\r\n\r\n**Logs**\r\n<!-- Please enable *info* level logging and attach any logs you have that your issue.\r\nSee [k4atypes.h](https://github.com/Microsoft/Azure-Kinect-Sensor-SDK/blob/feecae0456511ac734287571b101d10fd7292673/include/k4a/k4atypes.h#L184) for how to enable logs. -->\r\n\r\n**Screenshots**\r\n<!-- If applicable, add screenshots to help explain your problem. -->\r\n\r\n\r\n**Desktop (please complete the following information):**\r\n - OS with Version: Windows 10\r\n - SDK Version: 1.0.3\r\n\r\n**Additional context**\r\n<!-- Add any other context about the problem here. -->",
"title": "Offline processor body tracking example doesn't run out of the box",
"type": "issue"
},
{
"action": "closed",
"author": "yijiew",
"comment_id": null,
"datetime": 1571089195000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "yijiew",
"comment_id": 541937702,
"datetime": 1571089195000,
"masked_author": "username_1",
"text": "@username_0 Thanks for reporting this! This change should have fixed the issue you reported: https://github.com/microsoft/Azure-Kinect-Samples/pull/32.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "shreyapandit",
"comment_id": 542012378,
"datetime": 1571107799000,
"masked_author": "username_0",
"text": "Glad I could help @username_1! :)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "aanexplus",
"comment_id": 592847851,
"datetime": 1582947636000,
"masked_author": "username_2",
"text": "Hey Shreyapandit. How did you record the body tracking as an MKV file?",
"title": null,
"type": "comment"
}
] | 3 | 5 | 2,038 | false | false | 2,038 | true |
openstreetmap/iD | openstreetmap | 373,677,894 | 5,428 | null | [
{
"action": "opened",
"author": "wysiwia",
"comment_id": null,
"datetime": 1540415293000,
"masked_author": "username_0",
"text": "Sometime when editing itโs necessary to select an item which is completely hidden by other items. Currently I havenโt found a save way to get the lower item except for malicious mapping of upper item and fix this later.\r\n\r\nIMO there should be an easier way. How about to introduce a โquery featureโ as is on OSM base page to get a list of items of a small area. Then any of the items can be selected.\r\n\r\nBest solution would be the โquery featureโ in the context menu (right mouse button).",
"title": "Add \"query feature\" to ID",
"type": "issue"
},
{
"action": "created",
"author": "bhousel",
"comment_id": 432845219,
"datetime": 1540418902000,
"masked_author": "username_1",
"text": "Yep that's https://github.com/openstreetmap/iD/issues/2225#issuecomment-282736947",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "bhousel",
"comment_id": null,
"datetime": 1540418902000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 3 | 569 | false | false | 569 | false |
darrenfang/vuetify-datetime-picker | null | 484,114,106 | 34 | null | [
{
"action": "opened",
"author": "Anubarak",
"comment_id": null,
"datetime": 1566493949000,
"masked_author": "username_0",
"text": "I included your datetime-picker into my project with Vuetify >2.0\r\n\r\nWhile I can use the default date and time pickers without any issues I always receive the following error when I try to use your library\r\n```\r\n[Vue warn]: Unknown custom element: <v-dialog> - did you register the component correctly? For recursive components, make sure to provide the \"name\" option\r\n```\r\n\r\nI use `v-dialog` by myself without any issues but it seems to break in your library. Is there anything I can do?",
"title": "Unknown custom element: <v-dialog>",
"type": "issue"
},
{
"action": "created",
"author": "darrenfang",
"comment_id": 524524671,
"datetime": 1566627451000,
"masked_author": "username_1",
"text": "It maybe cause by the ` vuetify-loader` plugin. Configure this in `webpack.config.js`: https://vuetifyjs.com/en/customization/a-la-carte\r\n\r\nIf you use the `nuxt.js`, you can configure `vuetify-module` in `nuxt.config.js`: https://github.com/nuxt-community/vuetify-module, and don't need ` vuetify-loader`.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "Anubarak",
"comment_id": null,
"datetime": 1566892608000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "Anubarak",
"comment_id": 525150770,
"datetime": 1566892705000,
"masked_author": "username_0",
"text": "I was not able to fix it so I forked the included Vuetify and the components in it and added full moment support.\r\nThen it worked\r\n\r\nThank you very much - it's a great help",
"title": null,
"type": "comment"
}
] | 2 | 4 | 965 | false | false | 965 | false |
bestswifter/macbootstrap | null | 292,266,887 | 16 | null | [
{
"action": "opened",
"author": "TMTBO",
"comment_id": null,
"datetime": 1517193042000,
"masked_author": "username_0",
"text": "**enter `vim a_file` it show me the error:**\r\n```\r\nError detected while processing function <SNR>22_theme_reload:\r\nline 5:\r\nE121: Undefined variable: g:colors_name\r\nE116: Invalid arguments for function writefile\r\nError detected while processing /Users/lizhi/.config/nvim/config/theme.vim:\r\nline 37:\r\nE185: Cannot find color scheme 'hybrid'\r\nPress ENTER or type command to continue\r\n```\r\n**pressed enter, then it show:**\r\n```\r\nError detected while processing VimEnter Auto commands for \"*\":\r\nE492: Not an editor command: NERDTree\r\n[dein] command TagbarToggle is not found.\r\nPress ENTER or type command to continue\r\n```\r\n**press enter again, I can edit me file**",
"title": "Vim Error",
"type": "issue"
},
{
"action": "created",
"author": "bestswifter",
"comment_id": 361196544,
"datetime": 1517220221000,
"masked_author": "username_1",
"text": "ๅฎ่ฃ
ๆไปถ็่ฟ็จไธญๆๆฅ้ไน๏ผTagBar ๅ NERDTree ้ฝๆฏๆไปถใ\r\n\r\nไธป้ขๅ้ข่ฒ็้ฎ้ข่ฟๆฒกๆ้ๅฐ่ฟ๏ผไธ็ฅ้ๆไนๅค็",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "TMTBO",
"comment_id": 361214216,
"datetime": 1517224421000,
"masked_author": "username_0",
"text": "ๆฅ้ไธป่ฆๆฏไปฅไธไธคไธช\r\n\r\n```\r\n<Notice>: install-steps/guest_account.sh: Disabling the guest account\r\ndelete: Invalid Path\r\n<dscl_cmd> DS Error: -14009 (eDSUnknownNodeName)\r\nsecurity: SecKeychainSearchCopyNext: The specified item could not be found in the keychain.\r\nJan 29 19:03:20 lizhi[23000] <Notice>: install-steps/guest_account.sh: Guest account disabled\r\nchmod: changing permissions of '/System/Library/CoreServices/Search.bundle/Contents/MacOS/Search': Operation not permitted\r\n```\r\n\r\n```\r\nDownloading bin/fzf ...\r\n % Total % Received % Xferd Average Speed Time Time Time Current\r\n Dload Upload Total Spent Left Speed\r\n100 617 0 617 0 0 637 0 --:--:-- --:--:-- --:--:-- 636\r\n100 884k 100 884k 0 0 203k 0 0:00:04 0:00:04 --:--:-- 375k\r\n - Checking fzf executable ... dyld: Library not loaded: /usr/local/opt/mpfr/lib/libmpfr.4.dylib\r\n Referenced from: /usr/local/bin/awk\r\n Reason: image not found\r\nError: \r\n - Invalid binary !!!\r\ngo executable not found. Installation failed.\r\nfatal: destination path '/Users/lizhi/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting' already exists and is not an empty directory.\r\nmv: cannot move '/Users/lizhi/.config/nvim/' to a subdirectory of itself, '/Users/lizhi/.config/nvim/_backup'\r\nfatal: destination path '/Users/lizhi/.config/nvim' already exists and is not an empty directory.\r\nln: failed to create symbolic link '/Users/lizhi/.config/nvim/.vim': File exists\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bestswifter",
"comment_id": 361229624,
"datetime": 1517228617000,
"masked_author": "username_1",
"text": "็ฆ็จ่ฎฟๅฎข่ดฆๆท็่ๆฌไผ่พๅบไธ่ฟฐ้่ฏฏๆฅๅฟ๏ผไฝไผผไนๅ่ฝๆฏๆญฃๅธธ็๏ผๆๆถไธไผ็ฎกๅฎใ\r\nOperation not permitted ้ฃไธชๆฏๅ ไธบ็ต่ๅผๅฏไบ SIP๏ผๅ
ณ้ญๅๅณๅฏๆญฃๅธธไฝฟ็จใ\r\n\r\n่ฟไธคไธชๆฅ้้ฝๆฒกๅฅๅคงๅฝฑๅใfzf ็ๆฅ้ไนๆฒก้ๅฐ่ฟ๏ผๆๆถๆ ๆณ่งฃๅณใ\r\n\r\nๅ
ถๅฎๆๆฏ่พๅ
ณๅฟ็ๆฏไฝ ็ฌฌไธๆฌก่พๅ
ฅ vim๏ผๅบ่ฏฅไผๅฎ่ฃ
ๆไปถ๏ผ่ฟไธช่ฟ็จๆๆฅ้ไน๏ผๆฏๅฆๆไธชๆไปถๆฒกๆๅฎ่ฃ
ๆๅไน็ฑป็ใ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "TMTBO",
"comment_id": 361233139,
"datetime": 1517229585000,
"masked_author": "username_0",
"text": "้ฃๅ ไธ่ฅฟๆฉๅฎ่ฃ
่ฟไบ๏ผๅ
ทไฝๆๆฒกๅบ้ๅฟ่ฎฐไบ\r\n\r\nSent from my iPhone",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "TMTBO",
"comment_id": 361462982,
"datetime": 1517281796000,
"masked_author": "username_0",
"text": "่งฃๅณไบ,ไธป่ฆๆฏ neovim ้ฃๅ ไพ่ตๆฒกๆๅฎ่ฃ
ๅฎๆ",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "TMTBO",
"comment_id": null,
"datetime": 1517281809000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "bestswifter",
"comment_id": 361470190,
"datetime": 1517284841000,
"masked_author": "username_1",
"text": "ๅฑ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "FUTingFei",
"comment_id": 480485030,
"datetime": 1554538365000,
"masked_author": "username_2",
"text": "ๆไนๆฏไธๆ ท็้ฎ้ข่ฏถ๏ผๆฏ่ฆ้ๆฐ่ฃ
ไธไธไพ่ตๅ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "TMTBO",
"comment_id": 481534594,
"datetime": 1554872584000,
"masked_author": "username_0",
"text": "cd .vim",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "MWLBear",
"comment_id": 508919077,
"datetime": 1562412921000,
"masked_author": "username_3",
"text": "Error detected while processing function <SNR>21_theme_reload:\r\nline 5:\r\nE121: Undefined variable: g:colors_name\r\nE116: Invalid arguments for function writefile\r\nError detected while processing /Users/lz/.config/nvim/config/theme.vim:\r\nline 37:\r\nE185: Cannot find color scheme 'hybrid'\r\nPress ENTER or type command to continue",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bihaiyuanqing",
"comment_id": 575483392,
"datetime": 1579242366000,
"masked_author": "username_4",
"text": "ๆๅไฝ ็ๆ
ๅตไธ่ด๏ผ่ฏท้ฎไฝ ๆไน่งฃๅณ็๏ผ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "kingshijie",
"comment_id": 607009656,
"datetime": 1585712487000,
"masked_author": "username_5",
"text": "็ขฐๅฐๅๆ ทๆ
ๅต๏ผๆ็่งฃๅณๆนๆณๆฏๅจๅฝไปค่กไธญๆง่กไธๆฌก vimๅฝไปค๏ผ็ถๅไผๅฎ่ฃ
ไธๅ ๆไปถ๏ผ็ถๅๅ็จnvimๅฐฑๆขๅคๆญฃๅธธ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bihaiyuanqing",
"comment_id": 607013448,
"datetime": 1585713177000,
"masked_author": "username_4",
"text": "ไฝ ๅฅฝ ่ฝๅ ไธไธๅพฎไฟกๆฒ้ไธๅ๏ผ574448638 ๆ็ฐๅจๆฒกๆ่งฃๅณ๏ผๆฏๆฌกๆฅ้็ดๆฅctrl+D ็ถๅ็ปง็ปญ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bihaiyuanqing",
"comment_id": 607014103,
"datetime": 1585713276000,
"masked_author": "username_4",
"text": "ไฝ ๅฅฝ๏ผ่ฏท้ฎ่ฟไธชๆฏๅฆไฝ่งฃๅณ็๏ผๅฏๅฆๅ ๅพฎไฟกๆฒ้ไธ 574448638\r\n\r\n\r\n\r\n\r\n------------------ ๅๅง้ฎไปถ ------------------",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "TMTBO",
"comment_id": 608189759,
"datetime": 1585879746000,
"masked_author": "username_0",
"text": "https://github.com/rafi/vim-config/blob/master/themes/hybrid.vim",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "TMTBO",
"comment_id": 608189851,
"datetime": 1585879768000,
"masked_author": "username_0",
"text": "> ไฝ ๅฅฝ๏ผ่ฏท้ฎ่ฟไธชๆฏๅฆไฝ่งฃๅณ็๏ผๅฏๅฆๅ ๅพฎไฟกๆฒ้ไธ 574448638\r\n> [โฆ](#)\r\n\r\nhttps://github.com/rafi/vim-config/blob/master/themes/hybrid.vim",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "TMTBO",
"comment_id": 608190051,
"datetime": 1585879819000,
"masked_author": "username_0",
"text": "> ไฝ ๅฅฝ๏ผ่ฏท้ฎ่ฟไธชๆฏๅฆไฝ่งฃๅณ็๏ผๅฏๅฆๅ ๅพฎไฟกๆฒ้ไธ 574448638\r\n> [โฆ](#)\r\n\r\nhttps://github.com/rafi/vim-config/blob/master/themes/hybrid.vim\r\nๅฐ่ฟ้ๅปๆ่ฟไธชๆไปถ copy ๅฐไฝ ็~/.config/nvim/themes/ ๆไปถๅคนไธๅบ่ฏฅๅฏไปฅ่งฃๅณ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bihaiyuanqing",
"comment_id": 608212913,
"datetime": 1585885413000,
"masked_author": "username_4",
"text": "> > ไฝ ๅฅฝ๏ผ่ฏท้ฎ่ฟไธชๆฏๅฆไฝ่งฃๅณ็๏ผๅฏๅฆๅ ๅพฎไฟกๆฒ้ไธ 574448638\r\n> > [โฆ](#)\r\n\r\nๅขๅ ไบ่ฟไธชๆไปถ ่ฟๆฏๆฒกๆ่งฃๅณ๏ผๆฅ้ๅไนๅไธๆ ท๏ผๆง่ก cd ~/.vim; make; ไพ็ถๆฅ้๏ผvim a_file ไป็ถๅไนๅไธๆ ท",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bihaiyuanqing",
"comment_id": 608213488,
"datetime": 1585885580000,
"masked_author": "username_4",
"text": "cd ~/.vim; make ;\r\n",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "TMTBO",
"comment_id": 608383704,
"datetime": 1585913525000,
"masked_author": "username_0",
"text": "่ฆไธไฝ ่ฏไธๅฆๅคไธไธช\r\nๆnvimๆไปถๅคนๅ ้ค\r\n็จไธ้ข่ฟไธช\r\n\r\nhttps://github.com/rafi/vim-config\r\n\r\n\r\nSent from my iPhone",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bihaiyuanqing",
"comment_id": 608397798,
"datetime": 1585915699000,
"masked_author": "username_4",
"text": "> ่ฆไธไฝ ่ฏไธๅฆๅคไธไธช ๆnvimๆไปถๅคนๅ ้ค ็จไธ้ข่ฟไธช https://github.com/rafi/vim-config\r\n> [โฆ](#)\r\n> Sent from my iPhone",
"title": null,
"type": "comment"
}
] | 6 | 22 | 3,830 | false | false | 3,830 | false |
thumbsup/thumbsup | thumbsup | 328,770,307 | 103 | null | [
{
"action": "opened",
"author": "mmccoo",
"comment_id": null,
"datetime": 1527967344000,
"masked_author": "username_0",
"text": "<!--\r\n\r\nHi!\r\n\r\nThanks for taking the time to submit a feature request or bug report. Please try to fill out the relevant fields, and remove any irrelevant section from this template.\r\n\r\n-->\r\n\r\nThis is mostly a set of observations. Even if my feature suggestions are stupid, note that I had some missing files (light gallery). Once I copied the files, I went from no video, to everythings a ok.\r\n\r\n## Feature request\r\n1) ability to give two separate max heights for video and pics. I'd like to limit the size of final output. I'm not really trying to build a page, but rather a way to browser what I have on my system. Copying video at higher resolutions defeats this purpose\r\n\r\n2) perhaps the ability to just link to the original file instead of making a copy?\r\n\r\n3) the ability to add metadata to the album view. For videos, I'd like to see the length. For pics, the resolution. Kinda like an adobe lightroom view.\r\n\r\n4) one of the other issues expressed annoyance at failure on the first corrupt image. First, it didn't really tell me \"hey, I think this image is corrupt\". Instead it just said \"unexpected error.\" Secondly, it stopped after the first one (what if I have a bunch?). Last, a placeholder, \"dude, I had trouble with this image\" and moving on, would have been preferred.\r\n\r\n5) in debug mode, it could be useful to have a listing of cmd line invocations of gm. Then i can rerun it myself and see why gm croaks. Once I get gm to run, I have confidence that thumbsup will work\r\n\r\n\r\n## Bug report\r\n\r\nI'm running on arch linux. I had to copy light gallery js's (to public/light-gallery/js) to get video to work. I think you had an issue on this before.\r\n\r\nto fnd this, I opened the page in chrome's inspect page and saw some load errors. not everyone would know to do this.\r\n\r\nI'm running thumbsup 2.3.1 installed through arch pkg manager.\r\n\r\nalso, note that on arch, the dependency on gcc6 made thumbsup a pain to install.\r\n\r\nhope it's helpful.\r\nMiles\r\n\r\nIf running as an npm package:\r\n\r\n```\r\nThumbsup version: __________\r\nNode version: __________\r\nNPM version: __________\r\nOperating system: __________\r\n```\r\n\r\nIf running as a Docker container:\r\n\r\n```\r\nThumbsup image tag: __________\r\nDocker version: __________\r\nOperating system: __________\r\n```\r\n\r\nAbout the bug...\r\n\r\n- Are you getting an error message?\r\n- Have you tried running `DEBUG=\"*\" thumbsup <args>` to get more troubleshooting info?\r\n- Is the behavior different from expected?\r\n- Can you provide steps to reproduce the issue?",
"title": "Observations on getting thumbsup to work (awful title. sorry)",
"type": "issue"
},
{
"action": "created",
"author": "rprieto",
"comment_id": 394114432,
"datetime": 1527970791000,
"masked_author": "username_1",
"text": "Hi @username_0, thanks a lot for all the comments.\r\n\r\n1. this is a good idea. Current the max height only applies to photos. Video are only transcoded to `libx264` and down-sampled to `1200k` - I'll admit, arbitrary bitrate that I thought was acceptable. I'll have a look at resizing videos, otherwise what do you think about a configurable bitrate? Or both?\r\n2. You should be able to do this already with `--download-photos link` or `--download-photos symlink` (see https://thumbsup.github.io/docs/3-configuration/output-settings/). Let me know if it doesn't work.\r\n3. Do you mean rendering the metadata on the HTML pages? For example right under the thumbnail? This could be a good idea for a \"give me all the info you have\" theme. Custom there should be available very soon, keep an eye on https://github.com/thumbsup/thumbsup/issues/97.\r\n4. That's a very good point. I understand how it could even make someone give up if it happens on the first try. I'll have a think about how to implement your idea.\r\n5. Can you try `--log trace`? Let me know if that's not enough info.\r\n6. About lightgallery, that's very strange. I'm about to push a big change to master that changes how lightgallery is installed, do you mind trying again maybe when I'm finished?\r\n\r\nCheers!",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "rprieto",
"comment_id": 396138973,
"datetime": 1528699605000,
"masked_author": "username_1",
"text": "Hi, (4) above is fixed on master, it now move on and print a summary at the end. The log file containd all errors, including the exact `gm` command.\r\n\r\nIโll close this issue and open a new one for (1) about the video size. Thanks for all the feedback!",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "rprieto",
"comment_id": null,
"datetime": 1528699605000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "mmccoo",
"comment_id": 396226308,
"datetime": 1528720117000,
"masked_author": "username_0",
"text": "hello,\n\nI'm glad the feedback was helpful. With bug reports, I never know how much\nthe author actually cares. From your reply, I get the sense that you care\nvery much, so here are a couple addtions:\n\n\nReducing video size\n============\nOn video size, I'll give an example. I have a folder representing my wife's\nphone from 2017.\nthe original is 23GB. The thumbsup gallery is 7.3GB. Of that, total mp4\nsize is 15GB -> 6GB\n\nI don't -really- know how much can be squeezed out, but there two thoughts\nthat come to mind. First, instead of bitrate, use/allow giving a crf value. see\nhere <https://trac.ffmpeg.org/wiki/Encode/H.264>. Theoretically, this would\nsay \"this is how bad/bad the video needs to be while hopefully using\nminimal space\". Reducing resolution may also be more effective than\nbitrates or quality factors. I'm far from an expert on this.\n\nI did an experiment. I took that largest video from my wife's area.\n\noriginal size is 1.3G\n\nthe mp4 in my thumbsup area is:\n443M Jun 8 18:42\n./robie_2017/media/large/2017/02/18/170218-VID_20170218_094254.mp4\n\nUsing a 1200k bitrate that you mentioned before\nffmpeg -i\n/bubba/picturesDS_2017/robie_phone/2017/02/18/170218-VID_20170218_094254.mp4\n-f mp4 -c:a copy -c:v libx264 -b:v 1200k 1200k.mp4\n\n86M Jun 11 11:21 1200k.mp4 - quality is noticeably worse but given the\nsize reduction, there are scenarios where I could be happy. It might enable\nher to keep on a card on her phone.\n\nTheoretically, it should be about the same size as the one generated by\nthumbsup\n\nUsing the defaults to libx264 (medium and crf 23)\nffmpeg -i\n/bubba/picturesDS_2017/robie_phone/2017/02/18/170218-VID_20170218_094254.mp4\n-f mp4 -c:a copy -c:v libx264 -preset medium -crf 23 crf23_medium.mp4\n\nthe size reduces to 441M\n\n\npushing it a bit:\nfor crf in 27 30 34 36 40; do\n ffmpeg -i\n/bubba/picturesDS_2017/robie_phone/2017/02/18/170218-VID_20170218_094254.mp4\n-f mp4 -c:a copy -c:v libx264 -preset medium -crf $crf crf${crf}_medium.mp4\ndone\n\n441M Jun 11 10:35 crf23_medium.mp4\n86M Jun 11 11:21 1200k.mp4\n264M Jun 11 12:05 crf27_medium.mp4\n185M Jun 11 12:41 crf30_medium.mp4\n121M Jun 11 13:10 crf34_medium.mp4\n100M Jun 11 13:44 crf36_medium.mp4\n71M Jun 11 13:55 crf40_medium.mp4\n\n\nThe default thumbsup behavior is probably better than trying to push the\nlimits of bitrates and such. A new user would likely be disappointed with\nthe 1200k bitrate. If you make someone explicitly use a lower quality\nthey'll explicitly know to expect quality degradation.\n\nStill, it doesn't seem to be using the 1200k you mentioned.\n\nI didn't try changing the resolution. I could if you'd like.\n\nOn linking\n======\nI reran with this cmdline\nthumbsup --download-videos symlink --download-photos symlink --input\n/bubba/picturesDS_2017/robie_phone --output .\n\nI then searched for a random mp4.\noriginal size is 257M\n\nIn the thumbs area, I see these:\nlrwxrwxrwx 1 username_0 audio 76 Jun 11 10:44\n./robie_2017_linked/media/original/2017/08/31/170831-VID_20170831_182040.mp4\n->\n/bubba/picturesDS_2017/robie_phone/2017/08/31/170831-VID_20170831_182040.mp4\n-rw-r--r-- 1 username_0 audio 6.3K Jun 11 10:44\n./robie_2017_linked/media/thumbs/2017/08/31/170831-VID_20170831_182040.jpg\n-rw-r--r-- 1 username_0 audio 223K Jun 11 10:44\n./robie_2017_linked/media/large/2017/08/31/170831-VID_20170831_182040.jpg\n-rw-r--r-- 1 username_0 audio 72M Jun 11 10:55\n./robie_2017_linked/media/large/2017/08/31/170831-VID_20170831_182040.mp4\n\ncompared to my previous run\n-rw-r--r-- 1 username_0 audio 223K Jun 8 16:26\n./robie_2017/media/large/2017/08/31/170831-VID_20170831_182040.jpg\n-rw-r--r-- 1 username_0 audio 95M Jun 8 16:45\n./robie_2017/media/large/2017/08/31/170831-VID_20170831_182040.mp4\n-rw-r--r-- 1 username_0 audio 6.3K Jun 8 16:26\n./robie_2017/media/thumbs/2017/08/31/170831-VID_20170831_182040.jpg\n\nI still see the one in the \"large\" directory at 72M. I had expected it to\nbe gone. In other words, I had thought that when clicking to play the\nvideo, it would have gone directly to the original with no intermediate\nnecessary.\nOn the one hand, I'd like a small, self contained page structure that my\nwife could use to see the basics of of old pics. If needed she/I could then\nget the original somewhere else\nOn the other hand, I want a simple html wrapper around her stuff. The\noriginals would still be online (all this is mostly on our home network)\nbut why eat up more space than necessary.\n\n\n\n\n\nOn metadata and themes.\n================\n\nI like the idea of themes. different people will want their data in\ndifferent places. From the 30 secconds I skimmed the themes documentation,\nI only saw look and feel stuff. Would things like video duration, image\nresolution, time of day be supported. Per image/video things. I imagine\nthat allowing exiftool style tags as placeholders could be a generic path.\n\nOn log trace, I don't see the cmdline that shrinks the video. I see the\ncreation of the big image for before the user clicks play (I think that's\nwhat I'm seeing) and the thumbnail. But not the recompression of the video.\nI've pasted the log trace below.\n\n\n\n\n\nOn light gallery missing stuff.\n==================\n\n I tried reinstalling using npm and I couldn't get it to install. I'm not a\nnode guy so that's my fault. I'm using the arch linux install.\n\n\n\nOn log trace\n=======\n\nthumbsup:info Finished [title changed] +0ms\n thumbsup:info media/thumbs/VID-20170519-WA0003.jpg [title changed] +0ms\n thumbsup:debug video:thumbnail from\n/bubba/picturesDS_2017/robie_phone/2017/05/19/VID-20170519-WA0003.mp4 to\n/tres/thumbsDS/test/media/thumbs/VID-20170519-WA0003.jpg +882ms\n thumbsup:trace ffmpeg exited with code 0 +0ms\n gm gm \"identify\" \"-ping\" \"-format\" \"%[EXIF:Orientation]\"\n\"/tres/thumbsDS/test/media/thumbs/VID-20170519-WA0003.jpg\" +2s\n gm gm \"convert\" \"-quality\" \"90\"\n\"/tres/thumbsDS/test/media/thumbs/VID-20170519-WA0003.jpg\" \"-resize\"\n\"120x120^\" \"-gravity\" \"Center\" \"-crop\" \"120x120+0+0\" \"+profile\" \"\\\"*\\\"\"\n\"+comment\" \"/tres/thumbsDS/test/media/thumbs/VID-20170519-WA0003.jpg\" +47ms\n thumbsup:info Processing media (10/18) [title changed] +865ms\n thumbsup:info Finished [title changed] +1ms\n thumbsup:info media/large/VID-20170519-WA0003.jpg [title changed] +0ms\n thumbsup:debug video:poster from\n/bubba/picturesDS_2017/robie_phone/2017/05/19/VID-20170519-WA0003.mp4 to\n/tres/thumbsDS/test/media/large/VID-20170519-WA0003.jpg +866ms\n thumbsup:info Processing media (11/18) [title changed] +126ms\n thumbsup:info Finished [title changed] +1ms\n thumbsup:info media/large/VID-20170519-WA0003.mp4 [title changed] +0ms\n thumbsup:debug video:resized from\n/bubba/picturesDS_2017/robie_phone/2017/05/19/VID-20170519-WA0003.mp4 to\n/tres/thumbsDS/test/media/large/VID-20170519-WA0003.mp4 +127ms\n thumbsup:info Processing media (12/18) [title changed] +61ms\n thumbsup:info Finished [title changed] +0ms\n\n\n\n\nso, I hope all that is not TMI but hopefully you managed to slog through it\nall.\n\nMiles",
"title": null,
"type": "comment"
}
] | 2 | 5 | 10,887 | false | false | 10,887 | true |
rebing/graphql-laravel | null | 460,712,969 | 365 | null | [
{
"action": "opened",
"author": "dharkness",
"comment_id": null,
"datetime": 1561511624000,
"masked_author": "username_0",
"text": "### Versions:\r\n\r\n- graphql-laravel Version: 1.22.0\r\n- Laravel Version: 5.5.45\r\n- PHP Version: 7.2.19\r\n\r\n### Description:\r\n\r\nThe `$args` passed to an Eloquent relation closure defined in a type's `fields()` function are those for the top-level query instead of the args on the relation itself in the GraphQL queryโthe ones passed to the field resolver function.\r\n\r\n### Steps To Reproduce:\r\n\r\n1. Create types and Eloquent models to support this query of a simple parent-child model with a one-to-many relation:\r\n\r\n```graphql\r\nquery {\r\n parents(name: \"bob\") {\r\n name\r\n children(minAge: 25) {\r\n name\r\n }\r\n }\r\n}\r\n```\r\n\r\n2. Define a `query` for the `children` field on the `Parent` type to get eager loading.\r\n\r\n```php\r\nclass ParentType extends Type {\r\n protected $attributes = [\r\n 'name' => 'Parent',\r\n 'model' => Parent::class,\r\n ];\r\n public function fields() {\r\n return [\r\n ...\r\n 'children' => [\r\n 'type' => Type::listOf(GraphQL::type('Child')),\r\n 'args' => [\r\n 'id' => ['type' => Type::int()],\r\n 'model' => ['type' => Type::string()],\r\n ],\r\n 'query' => function (array $args, $query) { // WRONG: $args = ['name' => 'bob']\r\n if (isset($args['minAge'])) {\r\n return $query->where('age', '>=', $args['minAge']);\r\n }\r\n else {\r\n return $query; // and so the subquery is not limited, loading too many rows\r\n }\r\n },\r\n ],\r\n ];\r\n }\r\n}\r\n```\r\n\r\n### Workaround:\r\n\r\nAdd a custom field resolver for the relation. This may be the intended solution, but it means we end up loading much more data than necessary.\r\n\r\n```php\r\nclass ParentType extends Type {\r\n ...\r\n public function resolveChildrenField($root, $args) { // RIGHT: $args = ['minAge' => 25]\r\n if (isset($args['minAge'])) {\r\n return $root->children->where('age', '>=', $args['minAge']);\r\n }\r\n else {\r\n return $root->children;\r\n }\r\n }\r\n}\r\n```",
"title": "Eloquent relation closure in type's fields config gets wrong $args",
"type": "issue"
},
{
"action": "created",
"author": "mfn",
"comment_id": 505731080,
"datetime": 1561528790000,
"masked_author": "username_1",
"text": "This was fixed with https://github.com/rebing/graphql-laravel/pull/327 recently but only in master which will eventually become v2 of this library (no ETA at this point).",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "mfn",
"comment_id": null,
"datetime": 1561528790000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "dharkness",
"comment_id": 505738104,
"datetime": 1561530452000,
"masked_author": "username_0",
"text": "Sweet, it works. Thank you so much!",
"title": null,
"type": "comment"
}
] | 2 | 4 | 2,417 | false | false | 2,417 | false |
ARTbio/tools-artbio | ARTbio | 451,244,100 | 365 | {
"number": 365,
"repo": "tools-artbio",
"user_login": "ARTbio"
} | [
{
"action": "opened",
"author": "drosofff",
"comment_id": null,
"datetime": 1559516152000,
"masked_author": "username_0",
"text": "",
"title": "add gsc_signature tool to the galaxysinglecell release PR",
"type": "issue"
},
{
"action": "created",
"author": "drosofff",
"comment_id": 498462354,
"datetime": 1559604387000,
"masked_author": "username_0",
"text": "@username_1 We need to review a couple of plot titles, that are a bit cryptic, if not misleading...",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bellenger-l",
"comment_id": 498595621,
"datetime": 1559640522000,
"masked_author": "username_1",
"text": "Ok !",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "drosofff",
"comment_id": 498597906,
"datetime": 1559640914000,
"masked_author": "username_0",
"text": "@username_1 OK lea, I put some comments in review about the graph titles",
"title": null,
"type": "comment"
}
] | 2 | 4 | 177 | false | false | 177 | true |
unruly/junit-rules | unruly | 299,146,695 | 5 | {
"number": 5,
"repo": "junit-rules",
"user_login": "unruly"
} | [
{
"action": "opened",
"author": "siladu",
"comment_id": null,
"datetime": 1519250785000,
"masked_author": "username_0",
"text": "example_test_ignored_until_a_datetime() is covered in the code block just above",
"title": "Fixed couple of minor errors in the README",
"type": "issue"
},
{
"action": "created",
"author": "mrwilson",
"comment_id": 367634268,
"datetime": 1519294657000,
"masked_author": "username_1",
"text": "Thanks for this correction. :)",
"title": null,
"type": "comment"
}
] | 2 | 2 | 109 | false | false | 109 | false |
kubernetes/test-infra | kubernetes | 472,604,156 | 13,594 | {
"number": 13594,
"repo": "test-infra",
"user_login": "kubernetes"
} | [
{
"action": "opened",
"author": "sebastienvas",
"comment_id": null,
"datetime": 1564012999000,
"masked_author": "username_0",
"text": "Remove all the persistent volumes things, since we have using CRDs for more than a year now.",
"title": "Update boskos stateful set to use RollingUpdate (default @v1)",
"type": "issue"
},
{
"action": "created",
"author": "sebastienvas",
"comment_id": 515312242,
"datetime": 1564118178000,
"masked_author": "username_0",
"text": "/assign @username_2",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "krzyzacy",
"comment_id": 515316607,
"datetime": 1564119596000,
"masked_author": "username_1",
"text": "/lgtm\r\n/hold",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "krzyzacy",
"comment_id": 517475995,
"datetime": 1564697343000,
"masked_author": "username_1",
"text": "(feel free to hold cancel when you are around)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "sebastienvas",
"comment_id": 517501228,
"datetime": 1564704916000,
"masked_author": "username_0",
"text": "is this going to auto deploy ?\r\nI don't think I have access to that cluster",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Katharine",
"comment_id": 519988821,
"datetime": 1565369498000,
"masked_author": "username_2",
"text": "I don't believe this will auto-deploy. Oncall (currently @mirandachrist) should probably deploy this after it merges.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "stevekuznetsov",
"comment_id": 528447612,
"datetime": 1567700563000,
"masked_author": "username_3",
"text": "Why isn't `boskos` a Deployment?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "sebastienvas",
"comment_id": 528609273,
"datetime": 1567721196000,
"masked_author": "username_0",
"text": "Good point. However in order to deploy this we want to make sure the stateful set is deleted before. Not sure how on call wants to handle this.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "stevekuznetsov",
"comment_id": 528744981,
"datetime": 1567754896000,
"masked_author": "username_3",
"text": "I think it would be best to list the `kubectl` commands you expect here so that on-call can just execute them and post the output. I think we'd want to manually delete the StatefulSet, then the PV, then apply the Deployment.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "sebastienvas",
"comment_id": 528768504,
"datetime": 1567759392000,
"masked_author": "username_0",
"text": "correct:\r\nkubectl delete -n test-pods statefulset boskos\r\nwait for pod to be gone\r\nkubectl delete -n test-pods pv boskos-storage\r\nkubectl apply -f boskos/deployment.yaml",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "chases2",
"comment_id": 528959766,
"datetime": 1567793746000,
"masked_author": "username_4",
"text": "/hold cancel\r\n/lgtm",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "chases2",
"comment_id": 529608439,
"datetime": 1568053848000,
"masked_author": "username_4",
"text": "In order to remove the persistent volume, the persistent volume claim also needed to be removed. On the k8s build cluster, this was named `boskos-volume-boskos-0`.\r\n\r\n```\r\nstatefulset.apps \"boskos\" deleted\r\n\r\npersistentvolume \"boskos-storage\" deleted\r\n\r\nclusterrole.rbac.authorization.k8s.io/boskos unchanged\r\nserviceaccount/boskos unchanged\r\nclusterrolebinding.rbac.authorization.k8s.io/crd-creator unchanged\r\ndeployment.apps/boskos created\r\n```\r\n\r\n```\r\nkubectl delete -n test-pods pvc boskos-volume-boskos-0\r\npersistentvolumeclaim \"boskos-volume-boskos-0\" deleted\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "sebastienvas",
"comment_id": 529613280,
"datetime": 1568054579000,
"masked_author": "username_0",
"text": "Thanks @username_4",
"title": null,
"type": "comment"
}
] | 6 | 18 | 3,543 | false | true | 1,532 | true |
Kronos-Integration/kronos-koa | Kronos-Integration | 420,370,944 | 289 | {
"number": 289,
"repo": "kronos-koa",
"user_login": "Kronos-Integration"
} | [
{
"action": "opened",
"author": "arlac77",
"comment_id": null,
"datetime": 1552465437000,
"masked_author": "username_0",
"text": "package.json\n---\n- chore(package): documentation@^9.3.1\n- chore(package): esm@^3.2.16\n- chore(scripts): cover@#overwrite c8 --temp-directory build/coverage ava && c8 report -r lcov --temp-directory build/coverage\n- chore(package): add nyc from template\n- docs(package): remove keyword null\n- chore(package): set $.ava.require='esm' as in template\n- chore(package): set $.ava.files='tests/*-test.js,tests/*-test.mjs' as in template\n- chore(package): set $.ava.extensions='js,mjs' as in template",
"title": "merge package from arlac77/npm-package-template",
"type": "issue"
}
] | 3 | 3 | 772 | false | true | 493 | false |
NG-ZORRO/ng-zorro-antd | NG-ZORRO | 315,209,930 | 1,342 | null | [
{
"action": "opened",
"author": "hamdiwanis",
"comment_id": null,
"datetime": 1523995355000,
"masked_author": "username_0",
"text": "Version\r\n0.7.0-beta.4\r\n\r\nEnvironment\r\nMacos sierra , chrome 65\r\n\r\nReproduction link\r\nHttps://stackblitz.com/edit/ng-zorro-antd-setup-x6x2jg\r\n\r\nSteps to reproduce\r\nClick on a node tree\r\n\r\nWhat is expected?\r\nTo work\r\n\r\nWhat is actually happening?\r\nError produced\r\n\r\nOther?",
"title": "http://ng.ant.design/issue-helper/",
"type": "issue"
}
] | 3 | 4 | 648 | false | true | 270 | false |
redkyn/grader | redkyn | 395,419,635 | 38 | {
"number": 38,
"repo": "grader",
"user_login": "redkyn"
} | [
{
"action": "opened",
"author": "LinuxMercedes",
"comment_id": null,
"datetime": 1546473645000,
"masked_author": "username_0",
"text": "",
"title": "Automatically check all supported python versions",
"type": "issue"
},
{
"action": "created",
"author": "LinuxMercedes",
"comment_id": 451061120,
"datetime": 1546495061000,
"masked_author": "username_0",
"text": "The py3.7 build unfortunately has some `DeprecationWarnings` from dependencies that we can't fix as the dependencies have yet to update themselves.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "LinuxMercedes",
"comment_id": 451676670,
"datetime": 1546710762000,
"masked_author": "username_0",
"text": "Opened an issue (#40) to track dependencies with deprecation warnings. We'll update them as it becomes possible to.",
"title": null,
"type": "comment"
}
] | 1 | 3 | 262 | false | false | 262 | false |
kripken/emscripten | null | 396,868,287 | 7,823 | {
"number": 7823,
"repo": "emscripten",
"user_login": "kripken"
} | [
{
"action": "opened",
"author": "juj",
"comment_id": null,
"datetime": 1546947473000,
"masked_author": "username_0",
"text": "Remove some of uses of allocate() function in favor of directly calling staticAlloc/malloc(). This allows more code to closure DCE out the whole `allocate()` function from runtime.",
"title": "remove_uses_of_allocate",
"type": "issue"
},
{
"action": "created",
"author": "kripken",
"comment_id": 452486027,
"datetime": 1546989192000,
"masked_author": "username_1",
"text": "Test failures look real though.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "juj",
"comment_id": 453028767,
"datetime": 1547112614000,
"masked_author": "username_0",
"text": "Updated tests to pass.",
"title": null,
"type": "comment"
}
] | 2 | 3 | 233 | false | false | 233 | false |
raiden-network/raiden-services | raiden-network | 411,892,184 | 123 | {
"number": 123,
"repo": "raiden-services",
"user_login": "raiden-network"
} | [
{
"action": "opened",
"author": "Dominik1999",
"comment_id": null,
"datetime": 1550578122000,
"masked_author": "username_0",
"text": "",
"title": "Moves matrix.py to raiden_libs",
"type": "issue"
}
] | 2 | 2 | 0 | false | true | 0 | false |
opencb/opencga | opencb | 404,310,181 | 1,086 | null | [
{
"action": "opened",
"author": "j-coll",
"comment_id": null,
"datetime": 1548771181000,
"masked_author": "username_0",
"text": "When adding the AzureBatch in #937 the guava version increased from v18 to v20. This produced an incompatibility with Apache Phoenix, which was using a method removed in v20: `com.google.common.collect.Iterators.emptyIterator()`\r\n\r\nRelated phoenix issue: [PHOENIX-3556](https://issues.apache.org/jira/browse/PHOENIX-3556)\r\n\r\n```\r\njava.lang.IllegalAccessError: tried to access method com.google.common.collect.Iterators.emptyIterator()Lcom/google/common/collect/UnmodifiableIterator; from class org.apache.phoenix.schema.MetaDataClient\r\n\r\n\tat org.apache.phoenix.schema.MetaDataClient.createTableInternal(MetaDataClient.java:1644)\r\n\tat org.apache.phoenix.schema.MetaDataClient.createTable(MetaDataClient.java:872)\r\n\tat org.apache.phoenix.compile.CreateTableCompiler$2.execute(CreateTableCompiler.java:194)\r\n\tat org.apache.phoenix.jdbc.PhoenixStatement$2.call(PhoenixStatement.java:343)\r\n\tat org.apache.phoenix.jdbc.PhoenixStatement$2.call(PhoenixStatement.java:331)\r\n\tat org.apache.phoenix.call.CallRunner.run(CallRunner.java:53)\r\n\tat org.apache.phoenix.jdbc.PhoenixStatement.executeMutation(PhoenixStatement.java:330)\r\n\tat org.apache.phoenix.jdbc.PhoenixStatement.executeUpdate(PhoenixStatement.java:1421)\r\n\tat org.apache.phoenix.query.ConnectionQueryServicesImpl$13.call(ConnectionQueryServicesImpl.java:2385)\r\n\tat org.apache.phoenix.query.ConnectionQueryServicesImpl$13.call(ConnectionQueryServicesImpl.java:2333)\r\n\tat org.apache.phoenix.util.PhoenixContextExecutor.call(PhoenixContextExecutor.java:78)\r\n\tat org.apache.phoenix.query.ConnectionQueryServicesImpl.init(ConnectionQueryServicesImpl.java:2333)\r\n\tat org.apache.phoenix.jdbc.PhoenixDriver.getConnectionQueryServices(PhoenixDriver.java:237)\r\n\tat org.apache.phoenix.jdbc.PhoenixEmbeddedDriver.createConnection(PhoenixEmbeddedDriver.java:150)\r\n\tat org.apache.phoenix.jdbc.PhoenixDriver.connect(PhoenixDriver.java:205)\r\n\tat java.sql.DriverManager.getConnection(DriverManager.java:664)\r\n\tat java.sql.DriverManager.getConnection(DriverManager.java:208)\r\n\tat org.apache.phoenix.util.QueryUtil.getConnection(QueryUtil.java:333)\r\n\tat org.apache.phoenix.util.QueryUtil.getConnection(QueryUtil.java:306)\r\n\tat org.opencb.opencga.storage.hadoop.variant.index.phoenix.PhoenixHelper.newJdbcConnection(PhoenixHelper.java:214)\r\n\tat org.opencb.opencga.storage.hadoop.variant.index.phoenix.PhoenixHelper.newJdbcConnection(PhoenixHelper.java:205)\r\n\tat org.opencb.opencga.storage.hadoop.variant.HadoopVariantStorageTest.deleteTable(HadoopVariantStorageTest.java:427)\r\n\tat org.opencb.opencga.storage.hadoop.variant.HadoopVariantStorageTest.clearDB(HadoopVariantStorageTest.java:420)\r\n\tat org.opencb.opencga.storage.hadoop.variant.VariantHadoopStoragePipelineTest.beforeClass(VariantHadoopStoragePipelineTest.java:71)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)\r\n\tat org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)\r\n\tat org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)\r\n\tat org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24)\r\n\tat org.junit.rules.ExternalResource$1.evaluate(ExternalResource.java:48)\r\n\tat org.junit.rules.RunRules.evaluate(RunRules.java:20)\r\n\tat org.junit.runners.ParentRunner.run(ParentRunner.java:363)\r\n\tat org.junit.runner.JUnitCore.run(JUnitCore.java:137)\r\n\tat com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)\r\n\tat com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)\r\n\tat com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)\r\n\tat com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)\r\n```",
"title": "IllegalAccessError when connecting to Phoenix",
"type": "issue"
},
{
"action": "created",
"author": "j-coll",
"comment_id": 458618060,
"datetime": 1548780867000,
"masked_author": "username_0",
"text": "Options:\r\n\r\n- Shade more guava classes\r\n - [ ] Including the affected classes to the shaded jar is not possible because of the number of libraries using guava. This change affects to a core class of guava.\r\n- Downgrade to v19\r\n - [x] Downgrade guava to v19 seems to work fine with Azure Batch library. \r\n Thanks @wbari for testing and confirming this possibility\r\n- Create a new shaded jar with azure batch and guava20\r\n - [ ] This will definitely work, but will require a lot of work to prepare the shaded jar",
"title": null,
"type": "comment"
}
] | 1 | 2 | 4,548 | false | false | 4,548 | false |
bjyoungblood/es6-error | null | 216,778,983 | 30 | null | [
{
"action": "opened",
"author": "gajus",
"comment_id": null,
"datetime": 1490360518000,
"masked_author": "username_0",
"text": "When used in combination with https://github.com/mattinsler/longjohn, produces no stack trace.\r\n\r\nExtending Error object directly:\r\n\r\n```\r\n/Users/username_0/Documents/dev/username_0/mightyql/dist/index.js:86\r\n throw new _errors.NotFoundError();\r\n ^\r\nError: Resource not found.\r\n at exports.many (/Users/username_0/Documents/dev/username_0/mightyql/dist/index.js:86:11)\r\n---------------------------------------------\r\n at Object.<anonymous> (/Users/username_0/Documents/dev/applaudience/showtime-api/src/bin/server.js:42:9)\r\n at Module._compile (module.js:571:32)\r\n at loader (/Users/username_0/Documents/dev/applaudience/showtime-api/node_modules/babel-register/lib/node.js:144:5)\r\n at Object.require.extensions.(anonymous function) [as .js] (/Users/username_0/Documents/dev/applaudience/showtime-api/node_modules/babel-register/lib/node.js:154:7)\r\n at Module.load (module.js:488:32)\r\n at tryModuleLoad (module.js:447:12)\r\n at Function.Module._load (module.js:439:3)\r\n at Function.Module.runMain (module.js:605:10)\r\n at Object.<anonymous> (/Users/username_0/Documents/dev/applaudience/showtime-api/node_modules/babel-cli/lib/_babel-node.js:154:22)\r\n at Module._compile (module.js:571:32)\r\n at Object.Module._extensions..js (module.js:580:10)\r\n at Module.load (module.js:488:32)\r\n at tryModuleLoad (module.js:447:12)\r\n at Function.Module._load (module.js:439:3)\r\n at Module.runMain (module.js:605:10)\r\n\r\n```\r\n\r\nExtending `es6-error`:\r\n\r\n```\r\n/Users/username_0/Documents/dev/username_0/mightyql/dist/index.js:86\r\n throw new _errors.NotFoundError();\r\n ^\r\nNotFoundError: Resource not found.\r\n at exports.many (/Users/username_0/Documents/dev/username_0/mightyql/dist/index.js:86:11)\r\n\r\n```",
"title": "Does not work in combination with longjohn",
"type": "issue"
},
{
"action": "created",
"author": "gajus",
"comment_id": 289016742,
"datetime": 1490360565000,
"masked_author": "username_0",
"text": "This is a major bummer, because it makes it impossible to debug code that uses `setTimeout`, `setImmediate`, `nextTick`.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bjyoungblood",
"comment_id": 289032095,
"datetime": 1490364487000,
"masked_author": "username_1",
"text": "Can you provide a simple example that causes this? Using node v7.7.4, the following script gave correct-looking output (I also tried simpler cases with just `setTimeout`, `nextTick`):\r\n\r\n```js\r\nrequire('longjohn');\r\nconst { EventEmitter } = require('events');\r\nconst ExtendableError = require('es6-error');\r\n\r\nclass NotFoundError extends ExtendableError {}\r\n\r\nclass MyEE extends EventEmitter {\r\n emitErr() {\r\n this.emit('error', new NotFoundError('not found'));\r\n }\r\n}\r\n\r\nlet x = new MyEE();\r\n\r\nfunction causeAnErrorSoon() {\r\n setTimeout(function() {\r\n x.emitErr();\r\n }, 500);\r\n}\r\n\r\ncauseAnErrorSoon();\r\n```\r\n\r\nOutput:\r\n```\r\n/Users/bjy/workspace/es6-error/test.js:9\r\n this.emit('error', new NotFoundError('not found'));\r\n ^\r\nNotFoundError: not found\r\n at MyEE.emitErr (/Users/bjy/workspace/es6-error/test.js:9:24)\r\n at Timeout.<anonymous> (/Users/bjy/workspace/es6-error/test.js:17:7)\r\n at ontimeout (timers.js:380:14)\r\n at tryOnTimeout (timers.js:244:5)\r\n at Timer.listOnTimeout (timers.js:214:5)\r\n---------------------------------------------\r\n at causeAnErrorSoon (/Users/bjy/workspace/es6-error/test.js:16:3)\r\n at Object.<anonymous> (/Users/bjy/workspace/es6-error/test.js:21:1)\r\n at Module._compile (module.js:571:32)\r\n at Object.Module._extensions..js (module.js:580:10)\r\n at Module.load (module.js:488:32)\r\n at tryModuleLoad (module.js:447:12)\r\n at Function.Module._load (module.js:439:3)\r\n at Module.runMain (module.js:605:10)\r\n at run (bootstrap_node.js:427:7)\r\n```",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "gajus",
"comment_id": null,
"datetime": 1490364568000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "gajus",
"comment_id": 289032436,
"datetime": 1490364568000,
"masked_author": "username_0",
"text": "I think I rushed to report this issue. There is something low level going on that I haven't managed to isolate yet. Sorry.\r\n\r\nClosing this for now.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "gajus",
"comment_id": 289032593,
"datetime": 1490364604000,
"masked_author": "username_0",
"text": "I am not even able to get the expected stack traces with:\r\n\r\n```\r\nconsole.log( \"new Error('test').stack\", new Error('test').stack );\r\n```\r\n\r\njust before throwing the error.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bjyoungblood",
"comment_id": 289033066,
"datetime": 1490364719000,
"masked_author": "username_1",
"text": "No worries! Feel free to reopen if it ends up being an issue with es6-error.",
"title": null,
"type": "comment"
}
] | 2 | 7 | 3,766 | false | false | 3,766 | true |
sobolevn/git-secret | null | 416,076,109 | 370 | {
"number": 370,
"repo": "git-secret",
"user_login": "sobolevn"
} | [
{
"action": "opened",
"author": "joshrabinowitz",
"comment_id": null,
"datetime": 1551442380000,
"masked_author": "username_0",
"text": "experiment with travis-ci and windows",
"title": "simple test for travis-ci windows support",
"type": "issue"
},
{
"action": "created",
"author": "joshrabinowitz",
"comment_id": 468911898,
"datetime": 1551525932000,
"masked_author": "username_0",
"text": "@username_2 @username_1 @simbo1905 \r\n\r\nI've been trying to set up this test of git-secret on travis-ci's windows build environment <https://docs.travis-ci.com/user/reference/windows/> but keep having issues executing scripts with `bash` (see PR). Help?\r\n\r\nI'd like to get git-secret windows builds going for windows PRs , tests and possibly releases. Please take a look a the PR and the travis-ci windows output and see if you can spot anything wrong. Thank you.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Mohjive",
"comment_id": 468916650,
"datetime": 1551530087000,
"masked_author": "username_1",
"text": "@username_0 I did try to run the tests the other day and one issue I found is that `ps` has incompatible options under git for windows version of bash.\r\nThe other was that I had to install **bats** (installed it from git).",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Mohjive",
"comment_id": 468916851,
"datetime": 1551530264000,
"masked_author": "username_1",
"text": "and what I can see from the travis docs it uses git bash, so it should use the same environment (and no need to install bash separately).",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "sobolevn",
"comment_id": 468917148,
"datetime": 1551530505000,
"masked_author": "username_2",
"text": "Sorry, @username_0, but I do not have any experience with Windows (I am lucky man).\r\nMaybe we can ask for help in https://travis-ci.community/c/environments/windows ?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Mohjive",
"comment_id": 468938382,
"datetime": 1551545893000,
"masked_author": "username_1",
"text": "Itโs impossible to follow any process. Make it work on your machine with git for windows first and make that one commit and **then** push that one change. I cannot give any feedback on these commits, because the signal to noise ratio is way too low.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "joshrabinowitz",
"comment_id": 468940468,
"datetime": 1551547252000,
"masked_author": "username_0",
"text": "@username_1 Thanks for taking a look at the PR.\r\n\r\nTo raise the signal: the current problem has to do with subshells finding various commands at run time; all the recent changes to this branch have been around the PATH env variable. You can see the problems, which all relate to this, at the end in the recent 'windows' outputs from this PR in travis-ci. One issue I find especially vexing is that `utils/tests.sh` has issues using a `#!/usr/bin/env bash` line.\r\n\r\nIf you wanted to take a crack at making a branch work on travis from your machine like you say, that would be great, it's been surprisingly difficult to get travis-ci windows builds this far. You could start either from my branch or master. I get that the commit trail might not be helpful, but if you look at the overall diff (41 lines with debug output) I think the intent is pretty clear. \r\n\r\nI've been avoiding using a windows machine/vm here so far, thus the numerous commits. Obviously they'll all get squashed before merge.\r\n\r\nOnce I get the tests to run, I'll look at the `ps` issue, thanks for bringing that up too.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Mohjive",
"comment_id": 468941220,
"datetime": 1551547743000,
"masked_author": "username_1",
"text": "Looking at the output from Travis Iโd say that it has to do with spaces in paths and the mix of `:` and `;` as path separators. But I donโt have any good advice at how to solve it.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "joshrabinowitz",
"comment_id": 468943625,
"datetime": 1551549269000,
"masked_author": "username_0",
"text": "Hm, maybe it is related to the spaces. \r\n\r\nLooking at https://travis-ci.org/username_2/git-secret/jobs/500846698, I'm using `;` as separator on windows and `:` on linux, so I'm pretty sure that's not the problem.\r\n\r\nIt'd be really preferable to get windows travis-ci tests working so we can test your PR like the rest of the features. So if you do have a few cycles to get git-secret's `make test` further along on travis-ci/windows that would be great. We can temporarily skip some tests on windows if it makes sense because of `ps` differences.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Mohjive",
"comment_id": 468961141,
"datetime": 1551561397000,
"masked_author": "username_1",
"text": "I can probably put some time into this, when I have access to a windows machine again (after the weekend)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "joshrabinowitz",
"comment_id": 468964156,
"datetime": 1551563809000,
"masked_author": "username_0",
"text": "Ok, I reverted the code that was trying to special-case the PATH var on windows; I wasn't progressing.\r\n\r\nThis PR is pretty close to as little changes as needed for travis-ci and windows, but doesn't work as you can see at https://travis-ci.org/username_2/git-secret/jobs/500921592\r\n\r\nI don't know what's going on with things not finding `bash`; according to #40 (windows support) this seems like it should just work.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Mohjive",
"comment_id": 469214232,
"datetime": 1551697809000,
"masked_author": "username_1",
"text": "I made a PR to your branch for this PR",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Mohjive",
"comment_id": 469214367,
"datetime": 1551697840000,
"masked_author": "username_1",
"text": "@username_0 I made a PR to your path for this PR",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "joshrabinowitz",
"comment_id": 469247949,
"datetime": 1551705131000,
"masked_author": "username_0",
"text": "this PR is being closed, #374 has all the changes in this PR along with PATH and `ps` fixes from @username_1",
"title": null,
"type": "comment"
}
] | 3 | 14 | 3,802 | false | false | 3,802 | true |
Kitware/kwiver | Kitware | 430,601,484 | 782 | {
"number": 782,
"repo": "kwiver",
"user_login": "Kitware"
} | [
{
"action": "opened",
"author": "mwoehlke-kitware",
"comment_id": null,
"datetime": 1554749054000,
"masked_author": "username_0",
"text": "Add a new method to `metadata` to retrieve an item if present, or clearly indicate (by returning a null pointer) if no such item is present. This saves having to perform two lookups to avoid the \"undefined result\" of the old look-up method. Also update users to use the new method, and remove the no-longer-needed `find`.",
"title": " Improve API for metadata collections",
"type": "issue"
},
{
"action": "created",
"author": "linus-sherrill",
"comment_id": 482271979,
"datetime": 1555010714000,
"masked_author": "username_1",
"text": "I agree with finding a way around querying the map twice, but my concern with returning a null_ptr, is that forgetting to check the return value is a very common mistake. I am not sure what the alternative would be? optional<>?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mwoehlke-kitware",
"comment_id": 482299618,
"datetime": 1555014609000,
"masked_author": "username_0",
"text": "Yeah, I think that would work (I think `optional<T&>` does not add overhead compared to `T*` provided you use its `operator*` rather than `value`), but alas, that requires C++17... unless we want to roll our own version until then? (It would be easy to make one that only holds references... IIRC all the tricky bits have to do with holding *values* and exception safety.)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mleotta",
"comment_id": 484603030,
"datetime": 1555608573000,
"masked_author": "username_2",
"text": "One option here is to keep the `get` function, but have it return a reference as before and go back to returning the special unknown metadata object when a value is not found. To avoid the use of `has` and the double search we could add a `virtual bool is_valid();` member function that returns true for all real metadata items and return false for the special unknown metadata object. For convenience you could then define a boolean cast function for the metadata item that calls this `is_valid` function. So you could then use the metadata item much like we use the pointer in this branch with\r\n```c++\r\nif(auto const& item = md.get(NAME))\r\n{\r\n double val = item.as_double();\r\n}\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "linus-sherrill",
"comment_id": 484614970,
"datetime": 1555610048000,
"masked_author": "username_1",
"text": "I like the behaviour of Matt's suggestion. The unknown metadata object could then throw something. This is better than a seg-fault.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mwoehlke-kitware",
"comment_id": 484618681,
"datetime": 1555610578000,
"masked_author": "username_0",
"text": "The down side of @username_2's suggestion (and we had previously discussed exactly this option) is that it adds the overhead of a *virtual* call to just about every user. This isn't Java/Python; we use pointers (often smart pointers, but those still don't protect you against dereferencing a null) all over the place. *If* we were to do that, I would prefer to do it by re-adding / un-removing `find` with the safer behavior. \"Don't pay for what you don't need.\"",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mleotta",
"comment_id": 484642458,
"datetime": 1555613945000,
"masked_author": "username_2",
"text": "I think the expense of a virtual function call to check if an object is valid is negligible here. I also like the idea @username_1 had of throwing an exception if you try to access values from in valid item. This allows users to not check if a metadata item is valid (in some cases you can assume that it should always be there) and then catch exceptions in the rare case that something went wrong.\r\n\r\nIf you are really against the virtual function you could have the unknown item be a static, globally accessible instance and then you could just compare the memory address to see if what you got was the one and only unknown item. However, I would still go with the virtual function.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mwoehlke-kitware",
"comment_id": 484644515,
"datetime": 1555614223000,
"masked_author": "username_0",
"text": "Jenkins test this please",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mwoehlke-kitware",
"comment_id": 486438572,
"datetime": 1556142171000,
"masked_author": "username_0",
"text": "So... in this revision, I've basically left `find` alone (aside from clarifying in the documentation that it *will* return a \"usable\" object), but added `metadata_item::is_valid`. If you want safety, use `find`. If you want efficiency, use `get`, especially if you are writing something like `if (auto i = md.get(...)) { ...use i... }`. Note that `get` is approximately as safe as `std::map::find`ยน, and *exactly* as safe as any of the many, *many* functions in KWIVER that return some flavor of `std::shared_ptr`.\r\n\r\n(ยน Both are [UB](https://en.wikipedia.org/wiki/Undefined_behavior) if the item was not found and you try to use it without checking. The latter may crash or may lead to silent memory corruption, whereas `get` almost certainly *will* crash.)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "mwoehlke-kitware",
"comment_id": 491931586,
"datetime": 1557771588000,
"masked_author": "username_0",
"text": "Since I am apparently outvoted, this version a) just has `find` and b) requires calling the virtual method `is_valid`ยน to know if the result of `find` is a \"real\" item or the \"fake\" 'not found' item.\r\n\r\n(ยน ...which will almost always happen implicitly via `operator bool`.)",
"title": null,
"type": "comment"
}
] | 4 | 47 | 7,179 | false | true | 3,944 | true |
conda-forge/petsc-feedstock | conda-forge | 211,986,792 | 13 | {
"number": 13,
"repo": "petsc-feedstock",
"user_login": "conda-forge"
} | [
{
"action": "opened",
"author": "minrk",
"comment_id": null,
"datetime": 1488750069000,
"masked_author": "username_0",
"text": "libs are linked all the way to the patch file (@rpath/libsuitesparseconfig.4.5.3.dylib) rather than the top-level lib (@rpath/libsuitesparseconfig.dylib)\n\nSo while a patch-level update to suitesparse *shouldnโt* break anything, the linkage breaks because it's pointing to the patch-specific path.\n\nI *think* this should be fixed in the suitesparse package (via `install_name_tool` on macOS), but I'm not sure.\n\ncf https://github.com/conda-forge/mshr-feedstock/issues/5",
"title": "pin suitesparse version to patch-level",
"type": "issue"
}
] | 2 | 2 | 664 | false | true | 468 | false |
alibaba/arthas | alibaba | 434,800,024 | 656 | null | [
{
"action": "opened",
"author": "hqq2023623",
"comment_id": null,
"datetime": 1555597724000,
"masked_author": "username_0",
"text": "- [ ] ๆๅทฒ็ปๅจ [issues](https://github.com/alibaba/arthas/issues) ้ๆ็ดข๏ผๆฒกๆ้ๅค็issueใ\r\n\r\n### ็ฏๅขไฟกๆฏ\r\n\r\n* ๅๆฏ : master\r\n* Arthas ็ๆฌ : 3.1.1-SNAPSHOT\r\n\r\n### ้็ฐ้ฎ้ข็ๆญฅ้ชค\r\n\r\n1. ๅฏๅจdemo.MathGame\r\n2. ๅฏๅจarthas\r\n3. ๆง่กๅฝไปค \r\n watch -E demo.MathGame print|primeFactors \"{params,returnObj}\" -x 1\r\n\r\n### ๆๆ็็ปๆ\r\n\r\nWhat do you expected from the above steps๏ผ\r\nๅธๆๅจไฝฟ็จ-E็ๅฌๅคไธชๆนๆณๆง่กๆถ่ฝๅธฆไธๆนๆณๅ๏ผ\r\nๆฏๅฆ๏ผ\r\n``` java\r\npublic java.util.List demo.MathGame.primeFactors(int)\r\nts=2019-04-18 22:25:55; [cost=0.779152ms] result=@ArrayList[\r\n @Object[][isEmpty=false;size=1],\r\n @ArrayList[isEmpty=false;size=3],\r\n]\r\npublic static void demo.MathGame.print(int,java.util.List)\r\nts=2019-04-18 22:25:55; [cost=0.251226ms] result=@ArrayList[\r\n @Object[][isEmpty=false;size=2],\r\n null,\r\n]\r\npublic java.util.List demo.MathGame.primeFactors(int)\r\nts=2019-04-18 22:25:56; [cost=0.148582ms] result=@ArrayList[\r\n @Object[][isEmpty=false;size=1],\r\n null,\r\n]\r\n\r\n```\r\n\r\n\r\n### ๅฎ้
่ฟ่ก็็ปๆ\r\n\r\nๅฎ้
่ฟ่ก็ปๆ๏ผๆๅฅฝๆ่ฏฆ็ป็ๆฅๅฟ๏ผๅผๅธธๆ ใๅฐฝ้่ดดๆๆฌใ\r\n\r\n``` java\r\n $ watch -E demo.MathGame print|primeFactors \"{params,returnObj}\" -x 1\r\nwatch -E demo.MathGame print|primeFactors \"{params,returnObj}\" -x 1\r\nPress Q or Ctrl+C to abort.\r\nAffect(class-cnt:1 , method-cnt:2) cost in 12 ms.\r\nts=2019-04-18 22:04:14; [cost=0.084969ms] result=@ArrayList[\r\n @Object[][isEmpty=false;size=1],\r\n @ArrayList[isEmpty=false;size=2],\r\n]\r\nts=2019-04-18 22:04:14; [cost=0.134199ms] result=@ArrayList[\r\n @Object[][isEmpty=false;size=2],\r\n null,\r\n]\r\nts=2019-04-18 22:04:15; [cost=0.092992ms] result=@ArrayList[\r\n @Object[][isEmpty=false;size=1],\r\n null,\r\n]\r\nts=2019-04-18 22:04:16; [cost=0.477355ms] result=@ArrayList[\r\n @Object[][isEmpty=false;size=1],\r\n @ArrayList[isEmpty=false;size=2],\r\n]\r\n```\r\n\r\n\r\n### ่งฃๅณๆนๆก\r\n1ใๅจWatchAdviceListener็85่ก่พๅบ็ปๆ็ๅฐๆนๅ ไธๆนๆณไฟกๆฏ\r\n``` java\r\nprivate void watching(Advice advice) {\r\n try {\r\n // ๆฌๆฌก่ฐ็จ็่ๆถ\r\n double cost = threadLocalWatch.costInMillis();\r\n if (isConditionMet(command.getConditionExpress(), advice, cost)) {\r\n // TODO: concurrency issues for process.write\r\n Object value = getExpressionResult(command.getExpress(), advice, cost);\r\n String result = StringUtils.objectToString(\r\n isNeedExpand() ? new ObjectView(value, command.getExpand(), command.getSizeLimit()).draw() : value);\r\n //ๅขๅ ๆนๆณ็่พๅบ\r\n process.write(advice.getMethod() + \"\\n\");\r\n process.write(\"ts=\" + DateUtils.getCurrentDate() + \"; [cost=\" + cost + \"ms] result=\" + result + \"\\n\");\r\n process.times().incrementAndGet();\r\n if (isLimitExceeded(command.getNumberOfLimit(), process.times().get())) {\r\n abortProcess(process, command.getNumberOfLimit());\r\n }\r\n }\r\n } catch (Exception e) {\r\n logger.warn(\"watch failed.\", e);\r\n process.write(\"watch failed, condition is: \" + command.getConditionExpress() + \", express is: \"\r\n + command.getExpress() + \", \" + e.getMessage() + \", visit \" + LogUtil.LOGGER_FILE\r\n + \" for more details.\\n\");\r\n process.end();\r\n }\r\n }\r\n```",
"title": "WatchCommand็ปๆ่พๅบไผๅ",
"type": "issue"
},
{
"action": "created",
"author": "hengyunabc",
"comment_id": 484585062,
"datetime": 1555605395000,
"masked_author": "username_1",
"text": "ไธไธช็ฎๅ็่งฃๆณๆฏๆ methodๅ
ฅๅฐ ่ฟๅๅผ่กจ่พพๅผ้ใ",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "hqq2023623",
"comment_id": 484743570,
"datetime": 1555639025000,
"masked_author": "username_0",
"text": "ๆmethodๅ ่ฟๅป่งฃๅณไบ\r\n่ฟๆไธช็นๅฐฑๆฏ่ฝๅฆๆexpress็key็ปๅธฆไธ๏ผ็ฐๅจ่ฟๅ็ArrayListๅพๆ้กบๅบๅปๆฐๆ็ฅ้ๅฏนๅบ็็ปๆ\r\n``` java\r\n$ watch demo.MathGame * \"{target,clazz,method,params,returnObj,throwExp,isReturn,isThrow,#cost}\" -x 1\r\nPress Q or Ctrl+C to abort.\r\nAffect(class-cnt:1 , method-cnt:5) cost in 33 ms.\r\nts=2019-04-19 09:42:36; [cost=0.199626ms] result=@ArrayList[\r\n @MathGame[demo.MathGame@37f8bb67],\r\n @Class[class demo.MathGame],\r\n @ArthasMethod[public java.util.List demo.MathGame.primeFactors(int)],\r\n @Object[][isEmpty=false;size=1],\r\n null,\r\n @IllegalArgumentException[java.lang.IllegalArgumentException: number is: -108954, need >= 2],\r\n @Boolean[false],\r\n @Boolean[true],\r\n @Double[0.199626],\r\n]\r\nts=2019-04-19 09:42:36; [cost=18.996848ms] result=@ArrayList[\r\n @MathGame[demo.MathGame@37f8bb67],\r\n @Class[class demo.MathGame],\r\n @ArthasMethod[public void demo.MathGame.run() throws java.lang.InterruptedException],\r\n @Object[][isEmpty=true;size=0],\r\n null,\r\n null,\r\n @Boolean[true],\r\n @Boolean[false],\r\n @Double[18.996848],\r\n]\r\n\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "hengyunabc",
"comment_id": 484745905,
"datetime": 1555640020000,
"masked_author": "username_1",
"text": "https://commons.apache.org/proper/commons-ognl/language-guide.html\r\n\r\n```\r\n#{ \"foo\" : \"foo value\", \"bar\" : \"bar value\" }\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "hqq2023623",
"comment_id": 484751146,
"datetime": 1555642206000,
"masked_author": "username_0",
"text": "่ฏไบไธ๏ผ่ฟๅ ็งๆนๅผ้ฝๅฏไปฅๅฎ็ฐ\r\n1ใ watch demo.MathGame * \"#{'method':method}\" -x 1\r\n2ใ watch demo.MathGame * #{\\\"params\\\":params} -x 1\r\n3ใ watch demo.MathGame * '#{\"method\":method}' -x 1",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "hengyunabc",
"comment_id": null,
"datetime": 1555643616000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 6 | 4,566 | false | false | 4,566 | false |
compstat-lmu/lecture_i2ml | compstat-lmu | 440,116,603 | 303 | {
"number": 303,
"repo": "lecture_i2ml",
"user_login": "compstat-lmu"
} | [
{
"action": "opened",
"author": "SebGruber1996",
"comment_id": null,
"datetime": 1556899772000,
"masked_author": "username_0",
"text": "- 5 lines description\r\n- link to app\r\n- 4 gifs\r\n\r\n\r\n(hi tobi!)",
"title": "Added mlrPlayground to README",
"type": "issue"
},
{
"action": "created",
"author": "berndbischl",
"comment_id": 489184344,
"datetime": 1556906091000,
"masked_author": "username_1",
"text": "das sollte nicht hier hin sondern unter contents...",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "fabian-s",
"comment_id": 580265099,
"datetime": 1580392662000,
"masked_author": "username_2",
"text": "closing -- this is out of date, we've moved to mlr3",
"title": null,
"type": "comment"
}
] | 3 | 3 | 164 | false | false | 164 | false |
pandas-dev/pandas | pandas-dev | 458,924,555 | 26,975 | {
"number": 26975,
"repo": "pandas",
"user_login": "pandas-dev"
} | [
{
"action": "opened",
"author": "jbrockmendel",
"comment_id": null,
"datetime": 1561071610000,
"masked_author": "username_0",
"text": "- [ ] closes #xxxx\r\n- [ ] tests added / passed\r\n- [ ] passes `git diff upstream/master -u -- \"*.py\" | flake8 --diff`\r\n- [ ] whatsnew entry",
"title": "Assorted cleanups",
"type": "issue"
},
{
"action": "created",
"author": "jreback",
"comment_id": 504248853,
"datetime": 1561078284000,
"masked_author": "username_1",
"text": "thanks @username_0",
"title": null,
"type": "comment"
}
] | 3 | 5 | 158 | false | true | 158 | true |
NixOS/nixpkgs | NixOS | 318,541,239 | 39,625 | {
"number": 39625,
"repo": "nixpkgs",
"user_login": "NixOS"
} | [
{
"action": "opened",
"author": "bgamari",
"comment_id": null,
"datetime": 1524861220000,
"masked_author": "username_0",
"text": "###### Motivation for this change\r\n\r\nImproved hardware support\r\n\r\n###### Things done\r\n\r\n<!-- Please check what applies. Note that these are not hard requirements but merely serve as information for reviewers. -->\r\n\r\n- [ ] Tested using sandboxing ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS, or option `build-use-sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file) on non-NixOS)\r\n- Built on platform(s)\r\n - [x] NixOS\r\n - [ ] macOS\r\n - [ ] other Linux distributions\r\n- [ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside [nixos/tests](https://github.com/NixOS/nixpkgs/blob/master/nixos/tests))\r\n- [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nox --run \"nox-review wip\"`\r\n- [ ] Tested execution of all binary files (usually in `./result/bin/`)\r\n- [x] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md).\r\n\r\n---",
"title": "hplip: 3.17.11 -> 3.18.4",
"type": "issue"
},
{
"action": "created",
"author": "Mic92",
"comment_id": 385113989,
"datetime": 1524869752000,
"masked_author": "username_1",
"text": "I get:\r\n\r\n```console\r\n$ nix-review pr 39625\r\n...\r\nthese derivations will be built:\r\n /nix/store/vq381g9yb9baizlv36lbz8rqjg70yw31-hplip-3.18.4-plugin.run.drv\r\n /nix/store/0s67dwzvigpcrf5m1c1j1600cnilvzm3-hplip-3.18.4.drv\r\nbuilding '/nix/store/vq381g9yb9baizlv36lbz8rqjg70yw31-hplip-3.18.4-plugin.run.drv'...\r\ntrying https://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/hplip-3.18.4-plugin.run\r\n % Total % Received % Xferd Average Speed Time Time Time Current\r\n Dload Upload Total Spent Left Speed\r\n 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\r\ncurl: (22) The requested URL returned error: 404 Not Found\r\nerror: cannot download hplip-3.18.4-plugin.run from any mirror\r\nbuilder for '/nix/store/vq381g9yb9baizlv36lbz8rqjg70yw31-hplip-3.18.4-plugin.run.drv' failed with exit code 1\r\ncannot build derivation '/nix/store/0s67dwzvigpcrf5m1c1j1600cnilvzm3-hplip-3.18.4.drv': 1 dependencies couldn't be built\r\nerror: build of '/nix/store/0s67dwzvigpcrf5m1c1j1600cnilvzm3-hplip-3.18.4.drv' failed\r\nThe invocation of 'nix-shell --no-out-link --keep-going --max-jobs 4 --option build-use-sandbox true --run true -p hplipWithPlugin_3_16_11 -p hplip -p hplipWithPlugin' failed\r\n```",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "davidak",
"comment_id": 385144276,
"datetime": 1524895908000,
"masked_author": "username_2",
"text": "I was able to build and execute. Maybe just a small outage of the website.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Mic92",
"comment_id": 385153554,
"datetime": 1524904865000,
"masked_author": "username_1",
"text": "@username_3 build hplipWithPlugin_3_16_11 hplip hplipWithPlugin",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385153575,
"datetime": 1524904893000,
"masked_author": "username_3",
"text": "No attempt on aarch64-linux [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=915d8a72-6fb5-4170-a361-a6249d12efbc)\n\nThe following builds were skipped because they don't evaluate on aarch64-linux: hplipWithPlugin_3_16_11, hplip, hplipWithPlugin\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\n { allowUnsupportedSystem = true; }\nto ~/.config/nixpkgs/config.nix.\n\n\nCannot nix-instantiate `hplipWithPlugin' because:\n\u001b[31;1merror:\u001b[0m while evaluating 'override' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-17/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-17/lib/customisation.nix\u001b[0m:78:20, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-17/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-17/pkgs/top-level/all-packages.nix\u001b[0m:20622:21:\nwhile evaluating 'makeOverridable' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-17/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-17/lib/customisation.nix\u001b[0m:72:24, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-17/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-17/lib/customisation.nix\u001b[0m:78:29:\nwhile evaluating anonymous function at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-17/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-17/pkgs/misc/drivers/hplip/default.nix\u001b[0m:1:1, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-17/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-17/lib/customisation.nix\u001b[0m:74:12:\nHPLIP not supported on aarch64-linux\n\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385153581,
"datetime": 1524904900000,
"masked_author": "username_3",
"text": "No attempt on x86_64-darwin [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=1ffe228a-dccd-4492-9f44-b75dc1fd0c85)\n\nThe following builds were skipped because they don't evaluate on x86_64-darwin: hplipWithPlugin_3_16_11, hplip, hplipWithPlugin\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\n { allowUnsupportedSystem = true; }\nto ~/.config/nixpkgs/config.nix.\n\n\nCannot nix-instantiate `hplipWithPlugin' because:\nerror: while evaluating 'override' at /private/var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/lib/customisation.nix:78:20, called from /private/var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/pkgs/top-level/all-packages.nix:20622:21:\nwhile evaluating 'makeOverridable' at /private/var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/lib/customisation.nix:72:24, called from /private/var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/lib/customisation.nix:78:29:\nwhile evaluating anonymous function at /private/var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/pkgs/misc/drivers/hplip/default.nix:1:1, called from /private/var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/lib/customisation.nix:74:12:\nHPLIP not supported on x86_64-darwin\n\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385153595,
"datetime": 1524904917000,
"masked_author": "username_3",
"text": "No attempt on x86_64-darwin [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=a47de513-e74a-4948-a154-2147e275daee)\n\nThe following builds were skipped because they don't evaluate on x86_64-darwin: hplipWithPlugin_3_16_11, hplip, hplipWithPlugin\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\n { allowUnsupportedSystem = true; }\nto ~/.config/nixpkgs/config.nix.\n\n\nCannot nix-instantiate `hplipWithPlugin' because:\n\u001b[31;1merror:\u001b[0m while evaluating 'override' at \u001b[1m/private/var/lib/ofborg/builds/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/lib/customisation.nix\u001b[0m:78:20, called from \u001b[1m/private/var/lib/ofborg/builds/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/pkgs/top-level/all-packages.nix\u001b[0m:20622:21:\nwhile evaluating 'makeOverridable' at \u001b[1m/private/var/lib/ofborg/builds/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/lib/customisation.nix\u001b[0m:72:24, called from \u001b[1m/private/var/lib/ofborg/builds/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/lib/customisation.nix\u001b[0m:78:29:\nwhile evaluating anonymous function at \u001b[1m/private/var/lib/ofborg/builds/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/pkgs/misc/drivers/hplip/default.nix\u001b[0m:1:1, called from \u001b[1m/private/var/lib/ofborg/builds/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-ndnd/lib/customisation.nix\u001b[0m:74:12:\nHPLIP not supported on x86_64-darwin\n\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385153596,
"datetime": 1524904921000,
"masked_author": "username_3",
"text": "No attempt on aarch64-linux [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=415c7111-f243-4c76-abb0-a0aff1cbdf0a)\n\nThe following builds were skipped because they don't evaluate on aarch64-linux: hplipWithPlugin_3_16_11, hplip, hplipWithPlugin\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\n { allowUnsupportedSystem = true; }\nto ~/.config/nixpkgs/config.nix.\n\n\nCannot nix-instantiate `hplipWithPlugin' because:\n\u001b[31;1merror:\u001b[0m while evaluating 'override' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-30/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-30/lib/customisation.nix\u001b[0m:78:20, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-30/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-30/pkgs/top-level/all-packages.nix\u001b[0m:20622:21:\nwhile evaluating 'makeOverridable' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-30/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-30/lib/customisation.nix\u001b[0m:72:24, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-30/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-30/lib/customisation.nix\u001b[0m:78:29:\nwhile evaluating anonymous function at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-30/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-30/pkgs/misc/drivers/hplip/default.nix\u001b[0m:1:1, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-30/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-30/lib/customisation.nix\u001b[0m:74:12:\nHPLIP not supported on aarch64-linux\n\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385153669,
"datetime": 1524904993000,
"masked_author": "username_3",
"text": "Success on x86_64-linux [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=654966c1-d766-46a2-a79f-d2e7aa84b66a)\n\nAttempted: hplip\n\nThe following builds were skipped because they don't evaluate on x86_64-linux: hplipWithPlugin_3_16_11, hplipWithPlugin\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4/share/hplip/testpage.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4/share/hplip/timedate.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4/share/hplip/toolbox.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4/share/hplip/uninstall.py: interpreter directive changed from \"/usr/bin/python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4/share/hplip/unload.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4/share/hplip/upgrade.py: interpreter directive changed from \"/usr/bin/python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4/share/hplip/wificonfig.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\nchecking for references to /build in /nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4...\npostPatchMkspecs\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385153673,
"datetime": 1524904995000,
"masked_author": "username_3",
"text": "Success on x86_64-linux [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=4063555e-de3e-4386-8d0e-84c65948c082)\n\nAttempted: hplip\n\nThe following builds were skipped because they don't evaluate on x86_64-linux: hplipWithPlugin_3_16_11, hplipWithPlugin\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\n\nb) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add\n { allowUnfree = true; }\nto ~/.config/nixpkgs/config.nix.\n\n\nthese derivations will be built:\n /nix/store/vlsjpx9av5r6jdcw3jajhak4firjx81f-hplip-3.18.4.drv\nwaiting for locks or build slots...\n/nix/store/g9dwjiq8zxbyzn7qn51y2l59hfs03ccm-hplip-3.18.4\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bgamari",
"comment_id": 385268015,
"datetime": 1525023573000,
"masked_author": "username_0",
"text": "Hmm, odd. I suppose we could either just wait for a 3.18.4 release or bump this down to 3.18.3. Opinions?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "davidak",
"comment_id": 385268278,
"datetime": 1525023808000,
"masked_author": "username_2",
"text": "How long could that take? Maybe ask and decide respectively.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "xeji",
"comment_id": 385269625,
"datetime": 1525024999000,
"masked_author": "username_4",
"text": "I'm fine either way. Marking this as WIP until resolved.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bgamari",
"comment_id": 385273736,
"datetime": 1525028837000,
"masked_author": "username_0",
"text": "Honestly I have no idea; I've ping `#openprinting` but I don't hold out much hope for getting a response.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "xeji",
"comment_id": 385275125,
"datetime": 1525030084000,
"masked_author": "username_4",
"text": "@username_3 build hplip hplipWithPlugin hplipWithPlugin_3_16_11",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385275160,
"datetime": 1525030111000,
"masked_author": "username_3",
"text": "No attempt on aarch64-linux [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=88b07ed1-c145-4015-bf05-086ea13629dc)\n\nThe following builds were skipped because they don't evaluate on aarch64-linux: hplip, hplipWithPlugin, hplipWithPlugin_3_16_11\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\nwhile evaluating 'makeOverridable' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/lib/customisation.nix\u001b[0m:72:24, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/lib/customisation.nix\u001b[0m:78:29:\nwhile evaluating anonymous function at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/pkgs/misc/drivers/hplip/default.nix\u001b[0m:1:1, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/lib/customisation.nix\u001b[0m:74:12:\nHPLIP not supported on aarch64-linux\n\nCannot nix-instantiate `hplipWithPlugin_3_16_11' because:\n\u001b[31;1merror:\u001b[0m while evaluating 'override' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/lib/customisation.nix\u001b[0m:78:20, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/pkgs/top-level/all-packages.nix\u001b[0m:20641:29:\nwhile evaluating 'makeOverridable' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/lib/customisation.nix\u001b[0m:72:24, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/lib/customisation.nix\u001b[0m:78:29:\nwhile evaluating anonymous function at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/pkgs/misc/drivers/hplip/default.nix\u001b[0m:1:1, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-1/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-1/lib/customisation.nix\u001b[0m:74:12:\nHPLIP not supported on aarch64-linux\n\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385275236,
"datetime": 1525030181000,
"masked_author": "username_3",
"text": "Success on x86_64-linux [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=c016b25e-7183-4001-a983-e5be0398732c)\n\nAttempted: hplip\n\nThe following builds were skipped because they don't evaluate on x86_64-linux: hplipWithPlugin, hplipWithPlugin_3_16_11\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3/share/hplip/testpage.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3/share/hplip/timedate.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3/share/hplip/toolbox.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3/share/hplip/uninstall.py: interpreter directive changed from \"/usr/bin/python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3/share/hplip/unload.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3/share/hplip/upgrade.py: interpreter directive changed from \"/usr/bin/python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3/share/hplip/wificonfig.py: interpreter directive changed from \"/usr/bin/env python\" to \"/nix/store/l9j2jsc9flrbmpf799nw9wdq59gpwms8-python-2.7.14/bin/python\"\nchecking for references to /build in /nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3...\npostPatchMkspecs\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "xeji",
"comment_id": 385275678,
"datetime": 1525030594000,
"masked_author": "username_4",
"text": "Don't understand this. Everythin evaluates and builds locally.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "xeji",
"comment_id": 385276252,
"datetime": 1525031109000,
"masked_author": "username_4",
"text": "There's a (previously existing) bug in `top-level/all-packages.nix`:\r\n```\r\nhplipWithPlugin_3_16_11 = hplip.override { withPlugin = true; };\r\n```\r\nis wrong, it should be \r\n```\r\nhplipWithPlugin_3_16_11 = hplip_3_16_11.override { withPlugin = true; };\r\n```\r\n\r\n@username_0 can you please fix that as well so we can get this merged?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "xeji",
"comment_id": 385454545,
"datetime": 1525106173000,
"masked_author": "username_4",
"text": "Thank you for fixing this!\r\n \r\n@username_3 build hplip hplipWithPlugin hplip_3_16_11 hplipWithPlugin_3_16_11",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385454678,
"datetime": 1525106202000,
"masked_author": "username_3",
"text": "No attempt on aarch64-linux [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=f266b1b4-5263-4acd-bcba-53b75c97fc4c)\n\nThe following builds were skipped because they don't evaluate on aarch64-linux: hplip, hplipWithPlugin, hplip_3_16_11, hplipWithPlugin_3_16_11\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\n { allowUnsupportedSystem = true; }\nto ~/.config/nixpkgs/config.nix.\n\n\nCannot nix-instantiate `hplipWithPlugin_3_16_11' because:\n\u001b[31;1merror:\u001b[0m while evaluating 'override' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-2/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-2/lib/customisation.nix\u001b[0m:78:20, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-2/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-2/pkgs/top-level/all-packages.nix\u001b[0m:20642:29:\nwhile evaluating 'makeOverridable' at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-2/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-2/lib/customisation.nix\u001b[0m:72:24, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-2/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-2/lib/customisation.nix\u001b[0m:78:29:\nwhile evaluating anonymous function at \u001b[1m/var/lib/gc-of-borg/nix-test-rs-2/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-2/pkgs/misc/drivers/hplip/3.16.11.nix\u001b[0m:1:1, called from \u001b[1m/var/lib/gc-of-borg/nix-test-rs-2/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/grahamc-aarch64-community-2/lib/customisation.nix\u001b[0m:74:12:\nHPLIP not supported on aarch64-linux\n\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "GrahamcOfBorg",
"comment_id": 385454892,
"datetime": 1525106255000,
"masked_author": "username_3",
"text": "Success on x86_64-linux [(full log)](https://logs.nix.ci/?key=nixos/nixpkgs.39625&attempt_id=46741797-a74e-4ac6-a73d-f64c3633ee52)\n\nAttempted: hplip, hplip_3_16_11\n\nThe following builds were skipped because they don't evaluate on x86_64-linux: hplipWithPlugin, hplipWithPlugin_3_16_11\n\n<details><summary>Partial log (click to expand)</summary><p>\n\n```\nto ~/.config/nixpkgs/config.nix.\n\n\nthese paths will be fetched (16.17 MiB download, 37.83 MiB unpacked):\n /nix/store/5j6v139sfz3b6a5yf1pnh8hgp64gvc2s-hplip-3.16.11\n /nix/store/w87nvx394wd9bih4l6kky2mm9x5zrrsq-python2.7-PyQt-x11-gpl-4.12\ncopying path '/nix/store/w87nvx394wd9bih4l6kky2mm9x5zrrsq-python2.7-PyQt-x11-gpl-4.12' from 'https://cache.nixos.org'...\ncopying path '/nix/store/5j6v139sfz3b6a5yf1pnh8hgp64gvc2s-hplip-3.16.11' from 'https://cache.nixos.org'...\n/nix/store/07rsrzbwk6n80r0ak0pnrwcicr47ixm4-hplip-3.18.3\n/nix/store/5j6v139sfz3b6a5yf1pnh8hgp64gvc2s-hplip-3.16.11\n```\n</p></details>",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "xeji",
"comment_id": 385458600,
"datetime": 1525107022000,
"masked_author": "username_4",
"text": "Still no idea what's going on here but it should be ok since everything builds fine after merging locally.",
"title": null,
"type": "comment"
}
] | 5 | 23 | 18,885 | false | false | 18,885 | true |
WhyNotHugo/python-barcode | null | 454,146,418 | 40 | null | [
{
"action": "opened",
"author": "shangqianfang",
"comment_id": null,
"datetime": 1560169797000,
"masked_author": "username_0",
"text": "How to set parameter for svg \"width\" and \"height\"? Thanks!",
"title": "How to set parameter for svg \"width\" and \"height\"",
"type": "issue"
},
{
"action": "created",
"author": "blutme",
"comment_id": 534410353,
"datetime": 1569306491000,
"masked_author": "username_1",
"text": "#44 check my answer.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "WhyNotHugo",
"comment_id": 590630145,
"datetime": 1582593119000,
"masked_author": "username_2",
"text": "Answered.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "WhyNotHugo",
"comment_id": null,
"datetime": 1582593122000,
"masked_author": "username_2",
"text": "",
"title": null,
"type": "issue"
}
] | 3 | 4 | 88 | false | false | 88 | false |
eKristensen/beer | null | 468,754,465 | 12 | {
"number": 12,
"repo": "beer",
"user_login": "eKristensen"
} | [
{
"action": "opened",
"author": "eKristensen",
"comment_id": null,
"datetime": 1563294910000,
"masked_author": "username_0",
"text": "This pull request applies code style fixes from an analysis carried out by [StyleCI](https://github.styleci.io).\n\n---\n\nFor more information, click [here](https://github.styleci.io/analyses/q1Qp7P).",
"title": "Apply fixes from StyleCI",
"type": "issue"
}
] | 2 | 2 | 197 | false | true | 197 | false |
yulingtianxia/TBActionSheet | null | 368,665,437 | 32 | null | [
{
"action": "opened",
"author": "miss-yadi",
"comment_id": null,
"datetime": 1539178033000,
"masked_author": "username_0",
"text": "่ฐ็จaddButtonWithTitleๅ๏ผๅๆถๆ้ฎๅจbuttonsไธ้ขไบ๏ผๅฏไปฅ่ฐๆดๅๆถๆ้ฎ็ไฝ็ฝฎๅ๏ผ",
"title": "addButtonWithTitle่ฐๆดๆ้ฎไฝ็ฝฎ",
"type": "issue"
},
{
"action": "created",
"author": "yulingtianxia",
"comment_id": 428963998,
"datetime": 1539266002000,
"masked_author": "username_1",
"text": "@username_0 ๅฏไปฅไธๅจ init ็ๆถๅ่ฎพ็ฝฎๅๆถๆ้ฎ๏ผ่ๆฏๅจๅ้ข็จaddButtonWithTitleๆทปๅ ๅๆถๆ้ฎ๏ผstyle ็จ TBActionButtonStyleCancel ๅณๅฏใ่ฟๆ ทๅฏไปฅๅๅฐๆๆๆ้ฎไฝ็ฝฎ็ตๆดปๅฏ่ฐใ",
"title": null,
"type": "comment"
}
] | 2 | 2 | 167 | false | false | 167 | true |
dojot/dojot | dojot | 397,911,058 | 852 | null | [
{
"action": "opened",
"author": "bizetti",
"comment_id": null,
"datetime": 1547137720000,
"masked_author": "username_0",
"text": "",
"title": "AUTH - Even with no rights, it's possible to handle groups and permissions",
"type": "issue"
},
{
"action": "closed",
"author": "betefaber",
"comment_id": null,
"datetime": 1555592259000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "betefaber",
"comment_id": 484495761,
"datetime": 1555592259000,
"masked_author": "username_1",
"text": "Test OK.",
"title": null,
"type": "comment"
}
] | 2 | 3 | 8 | false | false | 8 | false |
LSSTScienceCollaborations/StackClub | LSSTScienceCollaborations | 362,016,810 | 122 | null | [
{
"action": "opened",
"author": "drphilmarshall",
"comment_id": null,
"datetime": 1537418645000,
"masked_author": "username_0",
"text": "@LSSTScienceCollaborations/stack-club\r\n\r\nHope you're all having good weeks! Friday's Stack Club session will be a little different: we're going to be hacking on our notebooks together from the start (following the usual stand-up go-around), and give ourselves longer to work on our projects (and also talk about new projects for those who need them). And then we'll leave a bit extra time at the end, because @kadrlica is going to hack together an ordered list of the tutorials we have so far, to define a \"course\" of tutorials that we will go through in club sessions this fall. This course should bring the new members up to speed, and give people looking for new projects some ideas of what to spin off and work on.\r\n\r\nSee you Friday, on http://stanford.zoom.us/j/946390572 !",
"title": "Stack Club Session, Friday September 21, 0900 PDT",
"type": "issue"
},
{
"action": "created",
"author": "drphilmarshall",
"comment_id": 424070337,
"datetime": 1537812461000,
"masked_author": "username_0",
"text": "For those of you that missed last week's Stack Club session, the video is now linked from the [Meetings page](https://github.com/LSSTScienceCollaborations/StackClub/blob/master/Meetings.md).",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "drphilmarshall",
"comment_id": null,
"datetime": 1537812461000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 3 | 970 | false | false | 970 | false |
monarch-initiative/monarch-ui | monarch-initiative | 405,497,241 | 39 | null | [
{
"action": "opened",
"author": "cmungall",
"comment_id": null,
"datetime": 1548979965000,
"masked_author": "username_0",
"text": "Similar to #20 but different\r\n\r\nhttps://alpha.monarchinitiative.org/disease/MONDO:0007947#gene\r\n\r\nWe don't want this\r\n\r\nSee email thread re Marfan for context\r\n\r\nHigh priority",
"title": "Fix G2D associations, show relationship type prominently",
"type": "issue"
},
{
"action": "created",
"author": "monicacecilia",
"comment_id": 459569136,
"datetime": 1548983612000,
"masked_author": "username_1",
"text": "Correct, it needs to be fixed in alpha. \r\n\r\nIt is now fixed in production (see https://monarchinitiative.org/disease/MONDO:0007947#genes - thanks @kshefchek!!) but it has not yet been propagated to alpha. To do that, we need to first add [this filter (#1637)](https://github.com/monarch-initiative/monarch-app/pull/1637) in biolink/ontobio. \r\n\r\nI'll finish the issue in BioLink and link to this one.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "cmungall",
"comment_id": 464194243,
"datetime": 1550263795000,
"masked_author": "username_0",
"text": "I'm going to split this into two separate tickets",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "monicacecilia",
"comment_id": null,
"datetime": 1550263972000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 4 | 623 | false | false | 623 | false |
dotnet/docfx | dotnet | 164,260,549 | 477 | {
"number": 477,
"repo": "docfx",
"user_login": "dotnet"
} | [
{
"action": "opened",
"author": "superyyrrzz",
"comment_id": null,
"datetime": 1467881716000,
"masked_author": "username_0",
"text": "#396 \r\n\r\n@username_5 @username_1 @username_4 @username_3 @username_2 \r\n\r\nsample docfx.json:\r\n```json\r\n{\r\n \"build\": {\r\n \"content\": [\r\n {\r\n \"files\": \"*.yml\",\r\n \"src\": \"v2.0\",\r\n \"dest\": \"v2.0/api\",\r\n \"version\": \"v2.0\"\r\n },\r\n {\r\n \"files\": \"*.yml\",\r\n \"src\": \"v2.1\",\r\n \"dest\": \"v2.1/api\",\r\n \"version\": \"v2.1\"\r\n },\r\n {\r\n \"files\": \"conceptual/*.md\",\r\n \"src\": \"v2.0\",\r\n \"dest\": \"v2.0\",\r\n \"version\": \"v2.0\"\r\n },\r\n {\r\n \"files\": \"conceptual/*.md\",\r\n \"src\": \"v2.1\",\r\n \"dest\": \"v2.1\",\r\n \"version\": \"v2.1\"\r\n },\r\n {\r\n \"files\": \"index.md\"\r\n }\r\n ],\r\n \"dest\": \"_site\"\r\n }\r\n} \r\n```",
"title": "support multiple versions build",
"type": "issue"
},
{
"action": "created",
"author": "vwxyzh",
"comment_id": 231041458,
"datetime": 1467887267000,
"masked_author": "username_1",
"text": "๐",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "hellosnow",
"comment_id": 231265298,
"datetime": 1467947512000,
"masked_author": "username_2",
"text": ":shipit:",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "qinezh",
"comment_id": 231268388,
"datetime": 1467949478000,
"masked_author": "username_3",
"text": "Seems that we need to rebase this PR together as there're too many conflicts :joy:",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "qinezh",
"comment_id": 231294189,
"datetime": 1467963056000,
"masked_author": "username_3",
"text": ":shipit:",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "ansyral",
"comment_id": 231630240,
"datetime": 1468204785000,
"masked_author": "username_4",
"text": "useless?\r\n\r\n---\r\nRefers to: src/Microsoft.DocAsCode.Build.Engine/TemplateProcessor.cs:258 in d9b55d3. [](commit_id = d9b55d33ef23d40c6cc5ed413682658a88d186a7, deletion_comment = False)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "superyyrrzz",
"comment_id": 231643661,
"datetime": 1468213981000,
"masked_author": "username_0",
"text": "yeah.. should remove it.\r\n\r\n---\r\nIn reply to: [231630240](https://github.com/dotnet/docfx/pull/477#issuecomment-231630240) [](ancestors = 231630240)\r\n\r\n---\r\nRefers to: src/Microsoft.DocAsCode.Build.Engine/TemplateProcessor.cs:258 in d9b55d3. [](commit_id = d9b55d33ef23d40c6cc5ed413682658a88d186a7, deletion_comment = False)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "ansyral",
"comment_id": 231645405,
"datetime": 1468215024000,
"masked_author": "username_4",
"text": ":+1:",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "chenkennt",
"comment_id": 231651191,
"datetime": 1468218138000,
"masked_author": "username_5",
"text": ":shipit:",
"title": null,
"type": "comment"
}
] | 6 | 9 | 1,347 | false | false | 1,347 | true |
cerner/clara-rules | cerner | 206,837,592 | 265 | null | [
{
"action": "opened",
"author": "WilliamParker",
"comment_id": null,
"datetime": 1486743304000,
"masked_author": "username_0",
"text": "https://github.com/cerner/clara-rules/issues/255 added information to most exceptions thrown in LHS rule conditions. However, it does not handle exceptions thrown inside accumulators. The types of information most meaningful to accumulator errors likely vary from that for exceptions that arise from constraints, but we should be able to reuse the functionality that was added there for gathering information on the condition(s) that correspond to a node and the rules that they ultimately feed into.",
"title": "Add error handling of exception thrown during accumulation",
"type": "issue"
}
] | 1 | 1 | 502 | false | false | 502 | false |
kotritrona/osumapper | null | 433,055,648 | 7 | null | [
{
"action": "opened",
"author": "VINXIS",
"comment_id": null,
"datetime": 1555289754000,
"masked_author": "username_0",
"text": "Yo i dunno if u r still working on this but I figured i'd try some stuff with it and see some results\r\n\r\nI tried running step 1 however i was getting this error:\r\n```py\r\n---------------------------------------------------------------------------\r\nFileNotFoundError Traceback (most recent call last)\r\n<ipython-input-5-7e5bd69e56b2> in <module>\r\n 45 # try:\r\n 46 start = time.time()\r\n---> 47 read_and_save_osu_file(mname.strip(), filename=os.path.join(mapdata_path, str(k)), divisor=divisor);\r\n 48 end = time.time()\r\n 49 print(\"Map data #\" + str(k) + \" saved! time = \" + str(end - start) + \" secs\");\r\n\r\nA:\\Users\\oykxf\\Documents\\osumapper\\ipynb\\osureader.py in read_and_save_osu_file(path, filename, divisor)\r\n 327 #\r\n 328 def read_and_save_osu_file(path, filename = \"saved\", divisor=4):\r\n--> 329 osu_dict, wav_file = read_osu_file(path, convert = True);\r\n 330 data, flow_data = get_map_notes(osu_dict, divisor=divisor);\r\n 331 timestamps = [c[1] for c in data];\r\n\r\nA:\\Users\\oykxf\\Documents\\osumapper\\ipynb\\osureader.py in read_osu_file(path, convert, wav_name, json_name)\r\n 20 subprocess.call([\"node\", \"load_map.js\", \"jq\", path, json_name]);\r\n 21 \r\n---> 22 with open(json_name, encoding=\"utf-8\") as map_json:\r\n 23 map_dict = json.load(map_json); # not \"loads\" it is not a string\r\n 24 \r\n\r\nFileNotFoundError: [Errno 2] No such file or directory: 'temp_json_file.json'\r\n```\r\n\r\ni created a temp_json_file.json in the same directory with an empty object, and then got this error as a result:\r\n```py\r\nNumber of filtered maps: 146\r\n---------------------------------------------------------------------------\r\nKeyError Traceback (most recent call last)\r\n<ipython-input-6-7e5bd69e56b2> in <module>\r\n 45 # try:\r\n 46 start = time.time()\r\n---> 47 read_and_save_osu_file(mname.strip(), filename=os.path.join(mapdata_path, str(k)), divisor=divisor);\r\n 48 end = time.time()\r\n 49 print(\"Map data #\" + str(k) + \" saved! time = \" + str(end - start) + \" secs\");\r\n\r\nA:\\Users\\oykxf\\Documents\\osumapper\\ipynb\\osureader.py in read_and_save_osu_file(path, filename, divisor)\r\n 327 #\r\n 328 def read_and_save_osu_file(path, filename = \"saved\", divisor=4):\r\n--> 329 osu_dict, wav_file = read_osu_file(path, convert = True);\r\n 330 data, flow_data = get_map_notes(osu_dict, divisor=divisor);\r\n 331 timestamps = [c[1] for c in data];\r\n\r\nA:\\Users\\oykxf\\Documents\\osumapper\\ipynb\\osureader.py in read_osu_file(path, convert, wav_name, json_name)\r\n 24 \r\n 25 if convert:\r\n---> 26 mp3_file = os.path.join(file_dir, map_dict[\"general\"][\"AudioFilename\"]);\r\n 27 subprocess.call([GLOBAL_VARS[\"ffmpeg_path\"], \"-y\", \"-i\", mp3_file, wav_name]);\r\n 28 \r\n\r\nKeyError: 'general'\r\n```\r\n\r\nAny idea as to what I should do?",
"title": "Issue with step 1",
"type": "issue"
},
{
"action": "created",
"author": "VINXIS",
"comment_id": 483076018,
"datetime": 1555290414000,
"masked_author": "username_0",
"text": "nvm i completely forgot to install dependencies for node!!!! Sorry for small brain issue",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "VINXIS",
"comment_id": null,
"datetime": 1555290414000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 3 | 3,013 | false | false | 3,013 | false |
conveyal/analysis-ui | conveyal | 368,062,704 | 778 | null | [
{
"action": "opened",
"author": "trevorgerhardt",
"comment_id": null,
"datetime": 1539067482000,
"masked_author": "username_0",
"text": "Mainly used in the Report components",
"title": "Remove all usage of PropTypes internally",
"type": "issue"
},
{
"action": "closed",
"author": "trevorgerhardt",
"comment_id": null,
"datetime": 1555575000000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "trevorgerhardt",
"comment_id": 511203031,
"datetime": 1563111002000,
"masked_author": "username_0",
"text": ":tada: This issue has been resolved in version 4.8.0 :tada:\n\nThe release is available on:\n- [npm package (@latest dist-tag)](https://www.npmjs.com/package/@conveyal/analysis-ui)\n- [GitHub release](https://github.com/conveyal/analysis-ui/releases/tag/v4.8.0)\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:",
"title": null,
"type": "comment"
}
] | 1 | 3 | 398 | false | false | 398 | false |
Codeception/Codeception | Codeception | 58,974,225 | 1,744 | {
"number": 1744,
"repo": "Codeception",
"user_login": "Codeception"
} | [
{
"action": "opened",
"author": "lukyer",
"comment_id": null,
"datetime": 1424900320000,
"masked_author": "username_0",
"text": "Wrong export parameters. Probably outdated or colliding.",
"title": "Update 11-Codecoverage.md",
"type": "issue"
},
{
"action": "created",
"author": "samdark",
"comment_id": 76078367,
"datetime": 1424904559000,
"masked_author": "username_1",
"text": "Thanks!",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "samdark",
"comment_id": 76078412,
"datetime": 1424904579000,
"masked_author": "username_1",
"text": "@DavertMik is 2.0 correct branch for docs?",
"title": null,
"type": "comment"
}
] | 2 | 3 | 105 | false | false | 105 | false |
sumityadav/omnipay-paytm | null | 368,206,140 | 3 | null | [
{
"action": "opened",
"author": "ridislam",
"comment_id": null,
"datetime": 1539091120000,
"masked_author": "username_0",
"text": "Hello author, im using omnipay in my codeigntier project, and i need this gateway to be integrated, but do you have any sample controller and view code or project for this repo",
"title": "Any sample code or project using this package?",
"type": "issue"
},
{
"action": "closed",
"author": "sumityadav",
"comment_id": null,
"datetime": 1539158776000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "sumityadav",
"comment_id": 428477683,
"datetime": 1539158776000,
"masked_author": "username_1",
"text": "I would suggest not to use the package at its current state. \r\n\r\n1. PayTM have released updates and need additional verification steps that the package has not implemented.\r\n1. I have not had time to update since I created. That's the reason the package is not 1.0 yet.\r\n1. This was built with version 2.x of omnipay and everyone is moving to v3.\r\n\r\nIf the question is specific to integrating Omnipay with CodeIgnitor then I found the following [videos](https://www.youtube.com/results?search_query=CodeIgniter+Omnipay).",
"title": null,
"type": "comment"
}
] | 2 | 3 | 696 | false | false | 696 | false |
turenar/mayfes2018-pikyou | null | 322,732,909 | 148 | {
"number": 148,
"repo": "mayfes2018-pikyou",
"user_login": "turenar"
} | [
{
"action": "opened",
"author": "turenar",
"comment_id": null,
"datetime": 1526289252000,
"masked_author": "username_0",
"text": "fixes #132",
"title": "include PixelMplus10 font",
"type": "issue"
}
] | 2 | 2 | 82 | false | true | 10 | false |
devinit/D-Portal | devinit | 483,959,238 | 527 | null | [
{
"action": "opened",
"author": "bill-anderson",
"comment_id": null,
"datetime": 1566476243000,
"masked_author": "username_0",
"text": "1. Selected a filter - Sector = 11110. Returned 9069 active projects\r\n2. Viewed by [recipient countries]( http://d-portal.org/ctrack.html?sector_code=11110#view=countries)\r\n3. Clicked on Nigeria / IATI Spend 2017 cell\r\n4. 16036 projects [returned](http://d-portal.org/ctrack.html?sector_code=11110#view=list_transactions&year=2017&country_code=NG)",
"title": "Drill-down error",
"type": "issue"
},
{
"action": "created",
"author": "notshi",
"comment_id": 523982766,
"datetime": 1566491958000,
"masked_author": "username_1",
"text": "Thanks, @username_0 - that page is listing all projects for Nigeria, regardless of their activity status (active, planned, ended etc).\r\n\r\nWe should, however, add a column to specify their status so that's more obvious.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "bill-anderson",
"comment_id": 523994266,
"datetime": 1566493869000,
"masked_author": "username_0",
"text": "I think it is listing all sector 11110 projects irrespective of country. First in list is for Argentina.\r\nah, It's the #view \r\n\r\nThis works ...\r\nhttp://d-portal.org/ctrack.html?sector_code=11110&year=2017&country_code=NG#view=main\r\n\r\nrather than \r\nhttp://d-portal.org/ctrack.html?sector_code=11110&year=2017&country_code=NG#view=list_transactions",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "notshi",
"comment_id": 615869387,
"datetime": 1587215821000,
"masked_author": "username_1",
"text": "Thanks, Bill.\r\nThis should now be fixed.",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "notshi",
"comment_id": null,
"datetime": 1587215821000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 5 | 954 | false | false | 954 | true |
thekalinga/bootstrap4-vscode | null | 262,135,577 | 15 | {
"number": 15,
"repo": "bootstrap4-vscode",
"user_login": "thekalinga"
} | [
{
"action": "opened",
"author": "yamenarahman",
"comment_id": null,
"datetime": 1506960000000,
"masked_author": "username_0",
"text": "",
"title": "fix modal title",
"type": "issue"
},
{
"action": "created",
"author": "thekalinga",
"comment_id": 440172471,
"datetime": 1542699191000,
"masked_author": "username_1",
"text": "Fixed in version 5.0.0. Please check & let me know if there are any issues",
"title": null,
"type": "comment"
}
] | 2 | 2 | 74 | false | false | 74 | false |
void-linux/void-packages | void-linux | 397,445,995 | 6,848 | {
"number": 6848,
"repo": "void-packages",
"user_login": "void-linux"
} | [
{
"action": "opened",
"author": "Kistelini",
"comment_id": null,
"datetime": 1547050695000,
"masked_author": "username_0",
"text": "",
"title": "cyrus-sasl: update to 2.1.27.",
"type": "issue"
},
{
"action": "created",
"author": "maxice8",
"comment_id": 453926893,
"datetime": 1547453811000,
"masked_author": "username_1",
"text": "one commit for each package updated",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "Kistelini",
"comment_id": 454075433,
"datetime": 1547484513000,
"masked_author": "username_0",
"text": "Fixed",
"title": null,
"type": "comment"
}
] | 2 | 3 | 40 | false | false | 40 | false |
OpenMined/PyGrid | OpenMined | 507,550,224 | 364 | {
"number": 364,
"repo": "PyGrid",
"user_login": "OpenMined"
} | [
{
"action": "opened",
"author": "Benardi",
"comment_id": null,
"datetime": 1571186265000,
"masked_author": "username_0",
"text": "# Add Pull Request Template\r\n\r\n## Description\r\nAdd a Pull Request template to root directory to facilitate future contributions.\r\n\r\nFixes #363\r\n\r\n## Type of change\r\n\r\nPlease delete options that are not relevant.\r\n\r\n- [x] New feature (non-breaking change which adds functionality)\r\n\r\n## How Has This Been Tested?\r\n\r\n- [x] Forked repository reproduced existing CI tests\r\n\r\n## Checklist:\r\n\r\n- [x] My code follows the style guidelines of this project\r\n- [x] I have performed a self-review of my own code\r\n- [x] I have commented my code, particularly in hard-to-understand areas\r\n- [x] I have made corresponding changes to the documentation\r\n- [x] My changes generate no new warnings\r\n- [x] I have added tests that prove my fix is effective or that my feature works\r\n- [x] New and existing unit tests pass locally with my changes\r\n- [x] Any dependent changes have been merged and published in downstream modules",
"title": "Add Pull Request template",
"type": "issue"
},
{
"action": "created",
"author": "Benardi",
"comment_id": 542662561,
"datetime": 1571226611000,
"masked_author": "username_0",
"text": "Thanks, mate.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "tallalj",
"comment_id": 542663961,
"datetime": 1571226871000,
"masked_author": "username_1",
"text": "@username_0 kindly modify the readme.md and link this in Start Contributing section.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "IonesioJunior",
"comment_id": 543186340,
"datetime": 1571320519000,
"masked_author": "username_2",
"text": "Hello @username_1, do you have another request for this PR?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "tallalj",
"comment_id": 543194714,
"datetime": 1571321670000,
"masked_author": "username_1",
"text": "looks awesome to me @username_2 :)",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "IonesioJunior",
"comment_id": 543247139,
"datetime": 1571328451000,
"masked_author": "username_2",
"text": "Awesome! Thanks, @username_1, @hericlesme, and @username_0 for this amazing contribution! : rocket:",
"title": null,
"type": "comment"
}
] | 3 | 6 | 1,188 | false | false | 1,188 | true |
g-truc/glm | g-truc | 328,011,267 | 771 | null | [
{
"action": "opened",
"author": "thechosenone124",
"comment_id": null,
"datetime": 1527748560000,
"masked_author": "username_0",
"text": "The current quaternion::intermediate function has some math errors\r\n\r\n```\r\ntquat<T, Q> invQuat = inverse(curr);\r\nreturn exp((log(next + invQuat) + log(prev + invQuat)) / static_cast<T>(-4)) * curr;\r\n```\r\n\r\nYou shouldn't be adding the next and prev to the invQuat, that should be a multiplication (based on http://web.mit.edu/2.998/www/QuaternionReport1.pdf)",
"title": "Quaternion Intermediate Function error",
"type": "issue"
},
{
"action": "closed",
"author": "thechosenone124",
"comment_id": null,
"datetime": 1527748573000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 2 | 357 | false | false | 357 | false |
Roave/Signature | Roave | 295,324,035 | 13 | {
"number": 13,
"repo": "Signature",
"user_login": "Roave"
} | [
{
"action": "opened",
"author": "malukenho",
"comment_id": null,
"datetime": 1518044206000,
"masked_author": "username_0",
"text": "",
"title": "Enable mutation tests ๐",
"type": "issue"
},
{
"action": "created",
"author": "Ocramius",
"comment_id": 364410974,
"datetime": 1518176251000,
"masked_author": "username_1",
"text": ":ship:",
"title": null,
"type": "comment"
}
] | 2 | 2 | 6 | false | false | 6 | false |
jasoncartwright/recruiterdomains | null | 266,812,033 | 17 | {
"number": 17,
"repo": "recruiterdomains",
"user_login": "jasoncartwright"
} | [
{
"action": "opened",
"author": "blongden",
"comment_id": null,
"datetime": 1508413119000,
"masked_author": "username_0",
"text": "",
"title": "Add transition-partners.co.uk",
"type": "issue"
},
{
"action": "created",
"author": "jasoncartwright",
"comment_id": 338200316,
"datetime": 1508504641000,
"masked_author": "username_1",
"text": "Thanks @username_0!",
"title": null,
"type": "comment"
}
] | 2 | 2 | 17 | false | false | 17 | true |
spacchetti/spago | spacchetti | 502,453,763 | 439 | {
"number": 439,
"repo": "spago",
"user_login": "spacchetti"
} | [
{
"action": "opened",
"author": "jhrcek",
"comment_id": null,
"datetime": 1570170551000,
"masked_author": "username_0",
"text": "### Description of the change\r\n\r\nFix for https://github.com/spacchetti/spago/issues/436\r\n\r\n### Checklist:\r\n\r\n- [x] Added the change to the \"Unreleased\" section of the changelog\r\n- [ ] Added some example of the new feature to the `README`\r\n- [x] Added a test for the contribution (if applicable)",
"title": "Improve confusing warning when installing aleady added deps",
"type": "issue"
},
{
"action": "created",
"author": "jhrcek",
"comment_id": 538264107,
"datetime": 1570171379000,
"masked_author": "username_0",
"text": "Tests failed on AppVeyor due to github rate limit. Not sure if I should rerun the tests (rate limit will probably be still in place at the moment)..",
"title": null,
"type": "comment"
}
] | 1 | 2 | 442 | false | false | 442 | false |
zkSNACKs/WalletWasabi | zkSNACKs | 457,042,497 | 1,581 | {
"number": 1581,
"repo": "WalletWasabi",
"user_login": "zkSNACKs"
} | [
{
"action": "opened",
"author": "benthecarman",
"comment_id": null,
"datetime": 1560790882000,
"masked_author": "username_0",
"text": "There isn't a real reason for a `.vscode` folder or a `.editorconfig` to be in the repo. If you want to be excluded from something like `git add -A` then you can follow [this guide](https://github.com/bitcoin/bitcoin/blob/master/doc/developer-notes.md#ignoring-ideeditor-files) to exclude desired files/folders.",
"title": "Remove IDE/Editor folders and files",
"type": "issue"
},
{
"action": "created",
"author": "lontivero",
"comment_id": 502790794,
"datetime": 1560794794000,
"masked_author": "username_1",
"text": "ACK. There is no reason for having `.vscode` folder.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "nopara73",
"comment_id": 503020887,
"datetime": 1560849433000,
"masked_author": "username_2",
"text": "`.editorconfig` is needed. @username_1 Are you sure about `.settings.json`?\r\n\r\nThis looks reasonable, but not exactly sure what it does:\r\n\r\n```\r\n{\t\r\n\t\"editor.detectIndentation\": false,\t\r\n\t\"editor.insertSpaces\": false\t\r\n}\r\n```\r\n\r\nMaybe we should improve it instead of removing it. I suspect `.vscode` doesn't pick up on `.editorconfig`, right?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "benthecarman",
"comment_id": 503220852,
"datetime": 1560876835000,
"masked_author": "username_0",
"text": "I don't think either are needed, they are both just IDE config files. These should just be saved locally and don't have anything to do with running/building Wasabi",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "nopara73",
"comment_id": 503223247,
"datetime": 1560877218000,
"masked_author": "username_2",
"text": "`.editorconfig` is needed to enforce coding style. I would love if it'd work on vscode, too. In fact, @username_1 can you take a look at this? https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "benthecarman",
"comment_id": 503229051,
"datetime": 1560878189000,
"masked_author": "username_0",
"text": "If you want to keep the `.editorconfig` to enforce coding style, then [https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig) looks like a good idea and we could remove the `.vscode` folder then.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "lontivero",
"comment_id": 503246847,
"datetime": 1560880980000,
"masked_author": "username_1",
"text": "`.editorconfig` is required, what can be removed is the `.vscode` folder because it was added because some random guy wanted to make my life miserable but we already reverted that change and the folder shouldn't be uploaded.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "benthecarman",
"comment_id": 503251270,
"datetime": 1560881699000,
"masked_author": "username_0",
"text": "Okay I'll undo the commit that removes `.editorconfig`",
"title": null,
"type": "comment"
}
] | 3 | 8 | 1,664 | false | false | 1,664 | true |
korthout/Cantis | null | 476,650,905 | 60 | {
"number": 60,
"repo": "Cantis",
"user_login": "korthout"
} | [
{
"action": "created",
"author": "korthout",
"comment_id": 543831895,
"datetime": 1571417309000,
"masked_author": "username_0",
"text": "@dependabot rebase",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "korthout",
"comment_id": 543838212,
"datetime": 1571418264000,
"masked_author": "username_0",
"text": "@dependabot merge",
"title": null,
"type": "comment"
}
] | 3 | 5 | 4,424 | false | true | 35 | false |
hrkfdn/ncspot | null | 480,199,768 | 87 | null | [
{
"action": "opened",
"author": "medwards",
"comment_id": null,
"datetime": 1565707609000,
"masked_author": "username_0",
"text": "Not sure if its just my setup or not since CI seems to be passing but I I am unable to compile `ncspot` anymore in nightly or stable:\r\n\r\n```\r\nusername_0@jesuit:~/forks/ncspot$ cargo run\r\n Compiling ncspot v0.1.0 (/home/username_0/forks/ncspot)\r\nerror[E0658]: attributes on expressions are experimental\r\n --> src/ui/contextmenu.rs:50:17\r\n |\r\n50 | #[cfg(feature = \"share_clipboard\")]\r\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n |\r\n = note: for more information, see https://github.com/rust-lang/rust/issues/15701\r\n\r\nerror: removing an expression is not supported in this position\r\n --> src/ui/contextmenu.rs:50:17\r\n |\r\n50 | #[cfg(feature = \"share_clipboard\")]\r\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n\r\nerror: aborting due to 2 previous errors\r\n\r\nFor more information about this error, try `rustc --explain E0658`.\r\nerror: Could not compile `ncspot`.\r\n\r\nTo learn more, run the command again with --verbose.\r\n```",
"title": "Unable to compile",
"type": "issue"
},
{
"action": "closed",
"author": "hrkfdn",
"comment_id": null,
"datetime": 1565708069000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "hrkfdn",
"comment_id": 520869888,
"datetime": 1565708089000,
"masked_author": "username_1",
"text": "Damn, you're right. This appears to be a bug in rustfmt. I have disabled rustfmt in the CI for now.",
"title": null,
"type": "comment"
}
] | 2 | 3 | 1,082 | false | false | 1,082 | true |
darkreader/darkreader | darkreader | 344,332,206 | 637 | null | [
{
"action": "opened",
"author": "robsmith11",
"comment_id": null,
"datetime": 1532505215000,
"masked_author": "username_0",
"text": "With Android, the settings allows one to set a toggle key, but it doesn't work.\r\n\r\nThis would be very useful when using a tablet/bluetooth keyboad.",
"title": "Toggle extension hotkey not working on Firefox Android",
"type": "issue"
},
{
"action": "created",
"author": "jordanhui19",
"comment_id": 535976083,
"datetime": 1569596361000,
"masked_author": "username_1",
"text": "Can I work on this one?",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "Gusted",
"comment_id": null,
"datetime": 1607250937000,
"masked_author": "username_2",
"text": "",
"title": null,
"type": "issue"
},
{
"action": "created",
"author": "Gusted",
"comment_id": 739483900,
"datetime": 1607250937000,
"masked_author": "username_2",
"text": "Firefox for Android doesn't have `shortcuts` implemented.",
"title": null,
"type": "comment"
}
] | 3 | 4 | 227 | false | false | 227 | false |
HackCU/HackCU | HackCU | 301,833,134 | 70 | {
"number": 70,
"repo": "HackCU",
"user_login": "HackCU"
} | [
{
"action": "opened",
"author": "AparaV",
"comment_id": null,
"datetime": 1520009593000,
"masked_author": "username_0",
"text": "## What this PR does / why we need it\r\nUpdates the website with event statistics; removes apply buttons, etc.\r\n\r\n## Some questions\r\n- [x] I have read the contributing guidelines\r\n- [x] I abide by this repository Code of Conduct\r\n\r\n## Special notes for your reviewer\r\n\r\n@username_1 can I get some statistics from the backend that I can here - like gender ratio, hacker map, etc.?",
"title": "Updates from event",
"type": "issue"
},
{
"action": "created",
"author": "AparaV",
"comment_id": 372537656,
"datetime": 1520912870000,
"masked_author": "username_0",
"text": "I added some stats that I could get from the admin dashboard. Is there more that I missed?\r\nAlso, can we embed the map you created - [the map](https://username_1.carto.com/builder/ba982832-ebd7-470a-b0d3-357203c83630/embed?state=%7B%22map%22%3A%7B%22ne%22%3A%5B-67.63599365800934%2C-246.16404533386233%5D%2C%22sw%22%3A%5B82.93167840138106%2C268.52345466613775%5D%2C%22center%22%3A%5B31.593498925980057%2C11.179704666137697%5D%2C%22zoom%22%3A2%7D%7D)?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "casassg",
"comment_id": 372668316,
"datetime": 1520948435000,
"masked_author": "username_1",
"text": "Yes, go for it ๐",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "casassg",
"comment_id": 372672050,
"datetime": 1520949132000,
"masked_author": "username_1",
"text": "",
"title": null,
"type": "comment"
}
] | 2 | 4 | 990 | false | false | 990 | true |
nhnent/karma-webdriver-launcher | nhnent | 251,875,620 | 1 | null | [
{
"action": "opened",
"author": "junghwan-park",
"comment_id": null,
"datetime": 1503390250000,
"masked_author": "username_0",
"text": "To use Selenium grid 3.5.0, karma-webdriver-launcher should send capability's version type to String not a number.\r\n\r\nWhen it is passed Selenium grid to number type, selenium server convert passed version `9` to `9.0`. And capability match fail occurs.",
"title": "bug: Selenium node capability version type issue",
"type": "issue"
},
{
"action": "closed",
"author": "junghwan-park",
"comment_id": null,
"datetime": 1503390654000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 1 | 2 | 252 | false | false | 252 | false |
facebook/react-native | facebook | 460,832,603 | 25,401 | null | [
{
"action": "opened",
"author": "lackdaz",
"comment_id": null,
"datetime": 1561537822000,
"masked_author": "username_0",
"text": "<!--\r\n```\r\ninfo Incorrect hash:\r\n\r\ninfo 61067502c5f9769d111ea1ee3f74e6ddf0a5f9cc ?/Users/seth/Library/Caches/com.facebook.ReactNativeBuild/glog-0.3.5.tar.gz\r\n\r\ninfo Retrying...\r\n\r\ninfo Failed to successfully download 'glog-0.3.5.tar.gz'. Debug info:\r\n\r\ninfo -rw-r--r-- 1 seth staff 532275 Jun 26 14:17 /Users/user/Library/Caches/com.facebook.ReactNativeBuild/glog-0.3.5.tar.gz\r\n\r\ninfo 61067502c5f9769d111ea1ee3f74e6ddf0a5f9cc /Users/user/Library/Caches/com.facebook.ReactNativeBuild/glog-0.3.5.tar.gz\r\n\r\ninfo Command PhaseScriptExecution failed with a nonzero exit code\r\n```\r\n-->\r\n\r\nReact Native version:\r\n<!--\r\n React Native Environment Info:\r\n System:\r\n OS: macOS 10.14.5\r\n CPU: (4) x64 Intel(R) Core(TM) i5-7267U CPU @ 3.10GHz\r\n Memory: 110.84 MB / 16.00 GB\r\n Shell: 3.2.57 - /bin/bash\r\n Binaries:\r\n Node: 10.16.0 - /usr/local/bin/node\r\n Yarn: 1.17.0 - /usr/local/bin/yarn\r\n npm: 6.9.0 - /usr/local/bin/npm\r\n Watchman: 4.9.0 - /usr/local/bin/watchman\r\n SDKs:\r\n iOS SDK:\r\n Platforms: iOS 12.2, macOS 10.14, tvOS 12.2, watchOS 5.2\r\n IDEs:\r\n Android Studio: 2.3 AI-162.4069837\r\n Xcode: 10.2.1/10E1001 - /usr/bin/xcodebuild\r\n npmPackages:\r\n react: 16.8.3 => 16.8.3 \r\n react-native: 0.59.9 => 0.59.9 \r\n npmGlobalPackages:\r\n react-native-cli: 2.0.1\r\n-->\r\n\r\n## Steps To Reproduce\r\n\r\n1. npm install -g react-native-cli\r\n2. react-native init MyProject\r\n3. cd MyProject\r\n4. react-native run-ios\r\n\r\nDescribe what you expected to happen:\r\nI just got back into react-native. Was previously using expo-cli and decided I wanted to handwire a bit so I tried out react-native-cli. I expected run-ios to launch the simulator and dev environment as stated in the getting-started tutorial. Tried clearing cache to no avail. What is going on here?",
"title": "xcode build exits with error 65: Incorrect hash?",
"type": "issue"
},
{
"action": "created",
"author": "uni-zheng",
"comment_id": 505810351,
"datetime": 1561543592000,
"masked_author": "username_1",
"text": "+1 \r\nI tried run a totally new project and throw same info",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "lackdaz",
"comment_id": 505814473,
"datetime": 1561544327000,
"masked_author": "username_0",
"text": "I followed a breadcrumb trail that led here:\r\nhttps://stackoverflow.com/questions/54725742/why-am-i-unable-to-use-glog-due-to-incorrect-hash\r\n\r\nIs this something to do with the ```libreadline.7.dylib```? not being referenced?",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "lackdaz",
"comment_id": 505824613,
"datetime": 1561546324000,
"masked_author": "username_0",
"text": "Following on the stack overflow advice. You could create a symlink to your version 8 readline library.\r\n\r\n```ln -s /usr/local/opt/readline/lib/libreadline.8.dylib /usr/local/opt/readline/lib/libreadline.7.dylib```\r\n\r\nI've looked at brew but getting previous of `readline` looks hairy. While not elegant, this looks to be the only way till this gets addressed. Again, I'm not an expert at sysadmin stuff, but at least I got the build successful for now. I think its something to do with the Mojave upgrade.",
"title": null,
"type": "comment"
},
{
"action": "created",
"author": "lackdaz",
"comment_id": 505840239,
"datetime": 1561549588000,
"masked_author": "username_0",
"text": "After a little digging, I found the problem to be `gawk`\r\n\r\nFor macOSX: `brew upgrade gawk`. So no need for symlinks!",
"title": null,
"type": "comment"
},
{
"action": "closed",
"author": "lackdaz",
"comment_id": null,
"datetime": 1561576930000,
"masked_author": "username_0",
"text": "",
"title": null,
"type": "issue"
}
] | 2 | 6 | 2,734 | false | false | 2,734 | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.