Open Source
Open source is a term denoting that a product includes permission to use its source code, design documents, or content. It most commonly refers to the open source model, in which open source software or other products are released under an open source license as part of the open source-software movement. Use of the term originated with software, but has expanded beyond the software sector to cover other open content and forms of open collaboration.
Here are 4,687 public repositories matching this topic...
Problem
I'd like to send many files in the same time but with different files metaData.
The combination of uppy.setMeta uppy.addFile doesn't wok because the upload is asynchronous, and when files finish to upload they will heritate the last uppy.setMeta configuration.
Moreover the uppy.setFileMeta method is quite impossible to use, because on uppy.addFile we can't declared an id
-
Updated
Mar 20, 2020 - Swift
Accessibility issues
🐛 Bug Report
Related to facebook/docusaurus#462
I've run an HTML and Accessibility check on 100 pages from https://v2.docusaurus.io/ - each page was checked using the latest version of W3C Validator for HTML issues, and Deque Axe-core 3.5.2 for Accessibility issues.
Here is the result report per page - the tabs allow to group the common issues on the site:
You can always make a suggestion as an issue tab for apps that are not on the list. I will personally check out the app and verify if it is working, properly mantained, safe to use (as a user not a security expert).
Translation is very much appreciated. You can either fork this and remake your own translation or use the same repo with me. I highly recommend translator to review the commit log e
Add unit tests
The seccomp filters are tailored for the Firecracker musl build. We should specify how to run Firecracker when building it with gnu as well.
Requested by @rbrasga in firecracker-microvm/firecracker#1515 (comment)
It looks like a lot of the translated files have incorrect links to other documents in the repository. The tools section isn't updated everywhere either.
I noticed issue #16789 but decided to make a new issue since this issue is focusing on translations of the README.md and possibly preventing these issues in the future.
The following links seem to be consistently broken acr
Update doc on BigInt
I was reading through the book and I found that it's been almost 1 or 2 years since the last substantial commit was done on this documentation on Number.
If I were to update the doc, I would add to things:
- Explanation on BigInt.
- Explanation on Numeric separators mainly designed for big integers.
Both
While I was solving task of search occurrences highlighting, inspired with existing SwifterSwift solution, I've created this String's extension
extension String {
/// Verify if string matches the regex pattern and return corresponding parts of string
///
/// - Parameter pattern: Pattern to verify.
/// - Returns: Matching pattern parts of string.
func matches(for
In normal data-tables i.e. when data is already available in table element in HTML the bootstrap layout works fine, like wrapping elements with "row", "col-md-6" etc works fine.
SEE THIS
When I try to populate the datatable using Ajax, bootstrap layouts are not used & things get mis-aligned.
SEE THIS
Please help with this issue.
-
Updated
Mar 21, 2020 - Java
Well, we need to check all the projects and remove outdated ones.
We declare this in the readme:
However, keep in mind that we don't accept mammoth's shit. Only active and interesting projects with good documentation are added. Dead and abandoned projects will be removed.
But, sadly at this moment, this project looks like a mammoth shit itself.
We really need to fix it. I think
-
Updated
Mar 19, 2020 - HTML
I am relatively new to GitHub and even newer to Wiki.js & struggled for several hours to properly configure port 80 and 443 proxying to get the wiki my colleague built for our company to automatically work with port 80 & 443 and automatically redirect to port 443 and have it work properly with the wiki node proxy.
I would like to suggest a quick addition of a full proper nginx config (example b
I am using MahApps.Metro, v1.6.5.
MetroWindow with mah:DialogParticipation.Register="{Binding}" doesn't get disposed after the ShowDialog() call.
Example usage: I have two windows - MainWindow and MyDialogView. Each has it's own view model - MainWindowViewModel and MyDialogViewModel.
MainWindowViewModel contains a OpenDialogCommand, which opens the dialog view.
MyDialogViewModel contain
It would be nice to include content on security & keeping your open source project secure.
Content could help answer questions like:
- How can you track your dependencies & patch vulnerabilities?
- What should you do if you or a security researcher finds a vulnerability in your project?
- What can you do ahead of time to be best prepared to respond to a new vulnerability in your project?
I came across this issue when I decided to profile my (in progress) game and discovered I was generating a ton of VertexBufferBinding[] arrays during the
-
Updated
Mar 16, 2020 - PHP
-
Updated
Mar 20, 2020 - C
-
Updated
Feb 20, 2020 - Rich Text Format
is:
`
{% if tags %}
{{ text_tags }}
{% for i in 0..tags|length %}
{% if i < (tags|length - 1) %}
{{ tags[i].tag }},
{% else %}
{{ tags[i].tag }}
{% endif %}
{% endfor %}
{% endif
The spacing between the lines in the credits screen does not match the official D2 client. The spacing needs to be adjusted to accurately match what the original client does.
It might be nice to point to the project in the readme.
You may also want to explore the [Personal Mycroft Backend](https://github.com/MycroftAI/personal-backend) project.
In #1016, @pabs3 pointed at that the documentation for Flask.run says:
Do not use run() in a production setting. It is not intended to meet security and performance requirements for a production server. Instead, see Deployment Options for WSGI server recommendations.
Right now, OnionShare uses run() to start the web server. It doesn't mention what the security issues are, but my guess
It'd be nice if we have a search type selector that restricts searches to code or content, similar to type:file and type:repo. We'd have to separate the logic and filter Zoekt results to do this, since we currently return both content and file results for a pattern. It'll take a bit of effort, but not crazy complex.
-
Updated
Mar 21, 2020 - C++

Godot version:
3.2
OS/device including version:
All versions
Issue description:
is_subsequence_of returns true is all characters from string A appear in string B, in the order in string A, but it doesn't care if characters not in A are interwoven. So:
"save5".is_subsequence_of("save35")
returns true.
This seemed like such an odd behaviour it feels like a bug? I suspec