-
Updated
Sep 21, 2021 - Go
aggregator
Here are 236 public repositories matching this topic...
-
Updated
Sep 16, 2021 - PHP
-
Updated
Sep 19, 2021 - Python
-
Updated
Sep 20, 2021 - C++
-
Updated
Nov 5, 2019 - Python
-
Updated
Jul 13, 2020 - Python
-
Updated
Jul 7, 2021 - PHP
-
Updated
Dec 2, 2019 - PHP
-
Updated
Apr 12, 2021 - Python
-
Updated
Apr 14, 2021 - C++
-
Updated
Aug 28, 2021 - Go
-
Updated
May 14, 2020 - Go
-
Updated
Jul 26, 2021 - C#
-
Updated
Jul 17, 2018 - Ruby
-
Updated
Apr 1, 2021 - C++
Is your feature request related to a problem? Please describe.
The defe CLI for now prompts the user to add an Index value to open the link in browser. We need something to reload the lookup without hitting Ctrl+c
Describe the solution you'd like
Ask the user
-
Updated
Apr 20, 2017 - Python
-
Updated
Sep 15, 2021 - Scala
-
Updated
Jan 28, 2021 - Scala
-
Updated
Sep 11, 2018 - Ruby
-
Updated
Jul 10, 2021 - PHP
I've had a look at eventbrite, it seems events classification is not fine-grained enough to alllow searching for tech events.
On the other hand, the crawler is already recognizing eventbrite links in facebook posts, and it would be trivial to retrieve event informations (description etc) through the Eventbrite API having the link.
It would suffice to add a `get_event_info_from_eventbrite(eve
-
Updated
Jul 14, 2018 - Go
Improve this page
Add a description, image, and links to the aggregator topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the aggregator topic, visit your repo's landing page and select "manage topics."
Keystore.put
callsfind_or_create_key_for_update
, which in turns use self.lock(true) that issues aFOR UPDATE
SQL query.FOR UPDATE
is only useful in transactions, butKeystore.put
does not use any transactions. Thus,