- Jan 2021
-
docs.github.com docs.github.com
-
Types of GitHub Pages sites
Types of GitHub Pages sites
-
- Dec 2020
-
gohugo.io gohugo.io
-
Host on GitHub
Host hugo on github pages.
-
Deployment of Project Pages from /docs folder on main branch
Deployment of Project Pages from /docs folder on main branch.
-
-
97.83.185.97 97.83.185.97
-
OpenApiValidators
The guy who runs this repo is so nice, and I'm only a little big jealous that he's younger than me.
-
- Nov 2020
-
changelog.com changelog.com
-
I feel that with all that power that it’s gaining, instead of being a more approachable tool, that it’s actually being a tool that is continuously making people feel frustrated, to the point where I feel that whatever the next version control system is… (And it does not have to be something separate than Git. It should maybe be just a really powerful abstraction built on top of Git.) But I think whatever the next iteration of the people’s version control is… it should be something that is more reflective of how we think about what version control is for us.
-
-
www.whitesourcesoftware.com www.whitesourcesoftware.com
-
GitHub App
-
- Oct 2020
-
news.ycombinator.com news.ycombinator.com
-
Your weekly reminder that1. You should not have your development process on a centralized platform, at least not if you're doing anything that smells of copyright issues2. If you do host on a centralized platform, have regular, decentralized backups of code and issue tracking.3. Also, avoid US-centric hosting for this kind of thing. But really, refer to 1.
3 things to keep in mind while hosting your code
Tags
Annotators
URL
-
-
docs.github.com docs.github.com
-
You can invite users to become collaborators to your personal repository.
-
-
-
Lastly, I walked through Github Pages, and how using a separate branch, you can publish HTML, CSS, JavaScript and JSON for projects, turning Github into not just a code and content management platform, but also a publishing endpoint.
More information on how to use GitHub pages to build your website: https://indieweb.org/GitHub_Pages
-
- Sep 2020
-
github.com github.com
-
FreeOurKnowledge/discussion. (2020). Free Our Knowledge. https://github.com/FreeOurKnowledge/discussion (Original work published 2019)
-
-
github.com github.com
-
Codecheckers/covid-uk. (2020). [R]. CODECHECK. https://github.com/codecheckers/covid-uk (Original work published 2020)
-
-
github.com github.com
-
aaronpeikert. (2020). Aaronpeikert/reproducible-research [TeX]. https://github.com/aaronpeikert/reproducible-research (Original work published 2019)
-
-
github.com github.com
-
Viechtbauer, W. (2020). Wviechtb/forest_emojis [R]. https://github.com/wviechtb/forest_emojis (Original work published 2020)
-
-
kwokchain.com kwokchain.com
-
In many ways Figma’s Communities are a reflection of Github’s philosophy and intent, but built with design in mind. Duplicate a shared design, and a copy is instantly saved to your workspace and ready to be edited.
The idea of a click-to-fork-repository was brought to Figma in the form of communities.
Tags
Annotators
URL
-
- Aug 2020
-
medium.com medium.com
-
Don’t forget to tell Git who you are, add this cell so you don’t have to answer every time you commit during a new session!
Authenticate yourself with GitHub:
!git config --global user.email <YOUR EMAIL> !git config --global user.name <YOUR NAME>
-
This will allow you to grab both public and private repos without leaving your password exposed in the notebook.
Connecting your GitHub:
import os from getpass import getpass import urllib user = 'rbracco' password = getpass('Password: ') repo_name = 'fastai2_audio' # your password is converted into url format password = urllib.parse.quote(password) cmd_string = 'git clone https://{0}:{1}@github.com/{0}/{2}.git'.format(user, password, repo_name) os.system(cmd_string) cmd_string, password = "", "" # removing the password from the variable # Bad password fails silently so make sure the repo was copied assert os.path.exists(f"/content/{repo_name}"), "Incorrect Password or Repo Not Found, please try again"
-
-
stfalcon.com stfalcon.com
-
Germany went further and created an account of the German Bundestag — in 2012, citizens received access to the latest laws on Github. Since then, residents of Germany can not only monitor changes but also to do pull requests, however, to make the change take effect, it must be approved by the Bundestag.
-
-
ropensci.org ropensci.org
-
‘OSF: A Project Management Service Built for Research - ROpenSci - Open Tools for Open Science’. Accessed 10 August 2020. https://ropensci.org/blog/2020/08/04/osf/.
-
- Jul 2020
-
-
This commit does not belong to any branch on this repository.
How would I download this commit/changeset with a git client then?? Or is it simply the case that if someone ever deletes the source branch for a merge request and "orphans" those commits, that there is now no longer a way to download it via the usual git fetch methods and the only way now to view these commits is via the web interface?
Idea: Create a permanent tag for every version of every pull request that gets pushed up. (Which maybe the already do internally to prevent it from being GC'd?)
https://github.com/ruby/ruby/pull/1758
Ana06 deleted the Ana06:array-diff branch on Apr 30, 2019
-
- Jun 2020
-
www.savjee.be www.savjee.be
-
If you want a fast website without breaking the bank, go for GitHub Pages. It’s completely free and super fast. It does, however, require you to open source your site. If that’s not doable, CloudFront is a good alternative, but its price depends on how much bandwidth you push around. For most personal sites, CloudFront won’t cost more than a couple of dollars per month. The same thing goes for Google Cloud Storage.
Advice for a personal use regarding the static webhosting benchmark (2020 May)
-
The best all-around performer is AWS CloudFront, followed closely by GitHub Pages. Not only do they have the fastest response times (median), they’re also the most consistent. They are, however, closely followed by Google Cloud Storage. Interestingly, there is very little difference between a regional and multi-regional bucket. The only reason to pick a multi-regional bucket would be the additional uptime guarantee. Cloudflare didn’t perform as well I would’ve expected.
Results of static webhosting benchmark (2020 May):
- AWS CloudFront
- GitHub Pages
- Google Cloud Storage
-
- May 2020
-
github.com github.com
-
DataForScience/Epidemiology101. (2020). [Jupyter Notebook]. Data For Science. https://github.com/DataForScience/Epidemiology101 (Original work published 2020)
-
-
github.com github.com
-
Deepset-ai/haystack. (2020). [Python]. deepset. https://github.com/deepset-ai/haystack (Original work published 2019)
-
-
holwech.github.io holwech.github.io
-
Very useful
Tags
Annotators
URL
-
-
github.com github.com
-
EBM Data Lab - Risk Factors Research
-
-
stackoverflow.com stackoverflow.com
-
If you update your pages and push to github, people revisiting the pages who have already got cached copies will not get the new pages without actually cleaning their browser cache. How can a script running in a page determine that it is stale and force an update?
-
-
-
stackoverflow.com stackoverflow.com
-
for me it was because the browser use cached data(old styles) so i opend other brwser
-
-
webapps.stackexchange.com webapps.stackexchange.com
-
www.reddit.com www.reddit.com
-
r/BehSciMeta—Establishing an augmented online eco-system to foster the decentralized consolidation of behavioral science knowledge on COVID-19. (n.d.). Reddit. Retrieved April 16, 2020, from https://www.reddit.com/r/BehSciMeta/comments/fooqao/establishing_an_augmented_online_ecosystem_to/
-
-
threadreaderapp.com threadreaderapp.com
-
Thread by @STWorg: “Live” update of analysis of 2K UK respondents and their views on privacy-encroaching tracking policies: stephanlewandowsky.github.io/UKsoci…. (n.d.). Retrieved April 17, 2020, from https://threadreaderapp.com/thread/1245060279047794688.html
-
-
Local file Local file
-
Australian Reproducibility Network materials. (2020). https://doi.org/None
Tags
Annotators
-
-
github.com github.com
-
Matias, J. N. (2020). Natematias/covid-19-social-science-research. https://github.com/natematias/covid-19-social-science-research (Original work published 2020)
-
-
github.com github.com
-
McElreath, R. Statistical Rethinking: A Bayesian Course Using R and Stan Github.com. https://github.com/rmcelreath/statrethinking_winter2019
Entire course with materials online.
-
-
add0n.com add0n.com
-
Load requested features from GitHub
-
- Apr 2020
-
roadmap.sh roadmap.sh
-
I am not sure how but one kind soul somehow found the project, forked it, refactored it, "modernized" it, added linting, code sniffing, added CI and opened the pull request.
It's worth sharing your code, since someone can always find it and improve it, so that you can learn from it
Tags
Annotators
URL
-
-
github.com github.com
-
github.github.com github.github.com
-
simonwillison.net simonwillison.net
-
So I wrote a GitHub Actions workflow that automatically updates the README page in the repo every time a new TIL markdown file is added or updated!
You can use GitHub Actions to automatically rewrite your README.md
Tags
Annotators
URL
-
-
www.mdpi.com www.mdpi.com
-
In the near future, given the increase in the use and profile of preprint servers and alternative publishing platforms, such as F1000 Research, it will be necessary to identify how many relevant platforms exist, to describe their scientific scope (i.e., covered disciplines), and, similar to the way that researchers evaluate the aims and scope of journals, to compare their characteristics and policies.
Di sini kami memperlihatkan manfaat preprint dengan keleluasaanya (tanpa batasan format, ukuran, jenis berkas dll) akan memberikan dorongan bagi peneliti untuk mempublikasi data dan metode (misal kode program).
Ada banyak platform berbagi kode (seperti Github dan Gitlab yang membuka banyak pintu keterbatasan saat penulis ingin membagikan kode program.
Platform-platform ini juga mendukung proses berbagi dokumen dan data yang cari (fluid), karena semua orang dapat dengan mudah menggandakan (forking melalui perintah
git clone
) proyek seseorang untuk kemudian digunakan, dimodifikasi, dan pada akhirnya mungkin mereka meminta kreator orisinalnya untuk memasukkan modifikasi menjadi versi baru dari kode program.Hebatnya semua proses itu tercatat dengan hubungan antara repositori dan akun yang jelas terlihat.
Tags
Annotators
URL
-
-
eartharxiv.org eartharxiv.org
-
n the near future, given the increase in the use and profile of preprintservers, and alternative publishing platforms such as F1000 Researc
Di sini kami memperlihatkan manfaat preprint dengan keleluasaanya (tanpa batasan format, ukuran, jenis berkas dll) akan memberikan dorongan bagi peneliti untuk mempublikasi data dan metode (misal kode program).
Ada banyak platform berbagi kode (seperti Github dan Gitlab) yang membuka banyak pintu keterbatasan saat penulis ingin membagikan kode program.
Platform-platform ini juga mendukung proses berbagi dokumen dan data yang cari (fluid), karena semua orang dapat dengan mudah menggandakan (forking melalui perintah
git clone
) proyek seseorang untuk kemudian digunakan, dimodifikasi, dan pada akhirnya mungkin mereka meminta kreator orisinalnya untuk memasukkan modifikasi menjadi versi baru dari kode program.Hebatnya semua proses itu tercatat dengan hubungan antara repositori dan akun yang jelas terlihat.
Tags
Annotators
URL
-
-
johnpapa.net johnpapa.net
-
gh repo create hello-world -d "A react app for the web" --public
GitHub released a new CLI: gh with which you can do much more operations.
For example, you can create repo without going into your browser:
gh repo create hello-world -d "A react app for the web" --public
Generally, it will be great for CI/CD pipelines
Tags
Annotators
URL
-
- Dec 2019
-
rubydoc.tenderapp.com rubydoc.tenderapp.com
-
Rubydoc.info can automatically fetch and rebuild your docs from your github project everytime you commit! To add a post-receive (commit) hook to Github, simply select the official Rubydoc.info service hook from the list of service hooks in your project settings.
-
- Oct 2019
-
www.theregister.co.uk www.theregister.co.uk
-
Meanwhile at Microsoft's GitHub, employees at both companies have objected to GitHub's business with ICE, not to mention Microsoft's government contracts. Employees at Amazon have also urged the company not to sell its facial recognition technology to police and the military.
-
- Aug 2019
-
-
With now more than 3000 modules, there are huge gaps in the quality of things you find in the npm registry. But more often than not, it's easy to find a module that is really close to what you need, except if it wasn't for that one bug or missing feature.
-
- Jul 2019
-
git.dhimmel.com git.dhimmel.com
-
hetio
The
hetio
python package has been renamed tohetnetpy
and is now available at https://github.com/hetio/hetnetpy.
Tags
Annotators
URL
-
- Jun 2019
-
octolinker.now.sh octolinker.now.sh
-
- Apr 2019
-
chanind.github.io chanind.github.io
-
China’s tech sector is notorious for treating workers like machines, with extremely long working hours being the norm. The phrase 996 refers to 9am - 9pm, 6 days per week, and is an unspoken rule in a lot of Chinese tech companies. The CEO of Youzan, a large Chinese e-commerce company, seemingly didn’t get the memo about keeping 996 as an “unspoken” rule, and surprised his employees at their 2019 yearly company party by telling them Youzan is officially switching to 996.
-
- Mar 2019
-
github.com github.com
-
all kinds of text classification models and more with deep learning
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
- Oct 2018
-
www.gocd.org www.gocd.org
-
integrate github PR with gocd
Tags
Annotators
URL
-
-
lab.github.com lab.github.com
-
-
github.com github.com
-
- Sep 2018
-
hapgood.us hapgood.us
-
Github has taught a generation of programmers that copies are good, not bad, and as we noted, it’s copies that are essential to the Garden.
-
- Apr 2018
-
mybinder.org mybinder.orgbinder1
-
Turn a GitHub repo into a collection of interactive notebooks
Tags
Annotators
URL
-
- Mar 2018
-
github.com github.com
-
if (app.metadata && app.metadata.has('dc:title') && app.metadata.get('dc:title') !== 'Untitled') { title = app.metadata.get('dc:title'); }
the empty
dc:title
should also be considered asUntitled
-
- Dec 2017
-
blogs.tib.eu blogs.tib.eu
-
describe each dataset carefully and as completely as possible with metadata
set GitHub Topics
-
DOI
-
contains complementary information of another dataset, this must be specified in the (meta)data
for software: inclusion of external libraryies or dependencies is usually specified in header files, on top of code files, in DESCRIPTION (R package), by
import
or::
statements.Since source code can be indexed like text, does it have to be repeated in metadata? GitHub & other services seem to already do that: github.com/blog/2470
-
- Oct 2017
-
github.com github.com
- Aug 2017
-
help.github.com help.github.com
-
github search patterns
Tags
Annotators
URL
-
- May 2017
-
www.hackingwithreact.com www.hackingwithreact.com
-
commit.author ? commit.author.login :
Note the errors here. Rather than:
commit.author
It should be:
commit.commit.author
-
- Jan 2017
-
github.com github.com
-
Intuitively, an explanation is a local linear approximation of the model's behaviour
LIME and Explanation
Questions: Is LIME really resemble human's approach to understand black box of machine learning?
-
- Jun 2016
-
clintlalonde.net clintlalonde.net
-
My first pull request
-
-
mfeldstein.com mfeldstein.com
-
Sakai development is actually accelerating.
-
- Mar 2016
-
matrix.org matrix.org
-
Client<->Server API - defines how Matrix compatible clients communicate with Matrix homeservers. Server<->Server API - defines how Matrix homeservers exchange messages and synchronise history with each other.
Given the data model (which allows merges)
forkdb
could be a close candidate to substitute a Client <-> Client API (also called peer to peer).
Tags
Annotators
URL
-
-
github.com github.com
-
Example of a large open source project using:
- React
- CSS modules
- Webpack
Tags
Annotators
URL
-
- Sep 2015
-
classroom.github.com classroom.github.com
-
-
groups.google.com groups.google.com
Tags
Annotators
URL
-
- Aug 2015
-
hypothes.is hypothes.is
-
Check out the code on GitHub.
Notenotenote. Notenote. Cool.
-
- Jul 2015
-
news.ycombinator.com news.ycombinator.com
-
a chaotic way of managing a project as that project gets big
Don't let it get big? Maybe.
Tags
Annotators
URL
-
- Jun 2015
-
github.com github.com
-
Candela
Tags
Annotators
URL
-
- Apr 2015
-
thegrid.io thegrid.io
-
Do I own my content on The Grid? Yes, you own your content. The engine AutoDesigns your site, publishes it, and stores it on Github. Your source content will live in a Github repository that you can access and download anytime.
Is access private/public?
Tags
Annotators
URL
-
-
www.infoworld.com www.infoworld.com
-
The blog post in which Ben Balter proposes that term was unpublished when I read it. But since the blog is hosted on a public GitHub repository I could not only read the post in draft form but also follow the discussion with invited reviewers and observe how that discussion influenced the draft.
With Hypothesis this kind of thing becomes available for /any web page/.
-
- Mar 2015
-
stackoverflow.com stackoverflow.com
-
Alternative way to publish in github release
-
- Nov 2014
-
git-scm.com git-scm.com
-
Git Basics So, what is Git in a nutshell?
Getting started with Git
-
- Feb 2014
-
apievangelist.com apievangelist.com
-
Github As The Central Presence, Definition, Configuration, And Source Code For Your API Posted on 02-05-2014 It is easy to think of Github as a central repository for your open source code—most developers understand that. I have written before about the many ways to use Github as part of your API management strategy, but in the last few months I'm really seeing Github playing more of a central role in the overall lifecycle of an API.
-