Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework Research section #1306

Closed
logankilpatrick opened this issue Jun 25, 2021 · 10 comments
Closed

Rework Research section #1306

logankilpatrick opened this issue Jun 25, 2021 · 10 comments
Assignees

Comments

@logankilpatrick
Copy link
Member

We should still prominently link the research but right now, it is just a list of papers and awards which is helpful but less valuable than some of the other areas.

@ViralBShah
Copy link
Member

The awards and prizes are valuable and should not be buried. The publications could be spun out into a separate page since they are simply not easy to maintain any more. Some refactoring is probably required.

@ViralBShah
Copy link
Member

Contribute could be a new section, or even be a major theme of the Community page. This is discussed in #1328. I would actually like to improve the Research page, not drop it.

@ChrisRackauckas
Copy link
Member

Publications should just be generated from Google Scholar, and it should say that if you want to be featured on the page you should cite the Julia paper.

@ViralBShah
Copy link
Member

How do you generate from Google Scholar? We can just link to it - but it would be nice if we can generate a list for our own page.

@ViralBShah ViralBShah changed the title Remove "Research" from the top nav bar in favor of "Contribute" Rework Research section Dec 6, 2021
@ViralBShah ViralBShah reopened this Dec 6, 2021
@timholy
Copy link
Member

timholy commented Dec 6, 2021

if you want to be featured on the page you should cite the Julia paper.

Good for going forward but perhaps not retrospectively.

@ChrisRackauckas
Copy link
Member

https://serpapi.com/google-scholar-api can scrape it. I think we need to go to scraping because it's thousands at this point, or just link to Google Scholar.

@ViralBShah
Copy link
Member

I think we can stop accepting new papers. In fact people have stopped submitting anyways. So we can archive, not accept new submissions, and just link to the google scholar (which we already do).

@ChrisRackauckas
Copy link
Member

Agreed, stop accepting new ones and link to the Google Scholar. Sooner or later we may want to delete the archive, and it's getting close to soon.

@ViralBShah
Copy link
Member

ViralBShah commented Jul 17, 2022

I got the scraper written, but hit maximum requests

using HTTP, JSON, ProgressMeter, JLD

const article = "SS8DU0MzuasJ"
const api_key = "" 
const num_pages = 180

function get_citations()
    cites = []
    @showprogress 1 "Fetching... " for i in 1:180
        q = HTTP.get("https://serpapi.com/search.json?engine=google_scholar&cites=$article&api_key=$api_key&start=$i&num=20")
        push!(cites, JSON.parse(IOBuffer(HTTP.payload(q))))
    end
    return cites
end

The free plan only gives you 100 searches per month, which is too little for getting all the citations.

@ViralBShah
Copy link
Member

The simplest thing is to just link to google scholar rather than trying to put all the citations here (even though that would be kind of nice to have all of them listed on 1 page).

ViralBShah added a commit that referenced this issue Jul 17, 2022
ViralBShah added a commit that referenced this issue Jul 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants