extract
Here are 545 public repositories matching this topic...
Reversing Google's 3D satellite mode
-
Updated
Nov 8, 2020 - C
This extension is now maintained in the Microsoft fork.
-
Updated
Nov 10, 2020 - TypeScript
Converts a pdf file into a text file while keeping the layout of the original pdf. Useful to extract the content from a table in a pdf file for instance. This is a subclass of PDFTextStripper class (from the Apache PDFBox library).
-
Updated
Aug 4, 2020 - Java
Blocked By: wix/vscode-glean#97
Example:
class Foo extends Component {
render() {
return (<div>
{this.props.foo.map((bar) => <div>{bar.x}</div>)}
</div>)
}
}
Current:
const Foo = props => {
const foo = useRef();
const x = useRef();
return <div>
{foo.current.map(bar => <div>{x.current}</div>)}
Update FAQ?
With questions that come up for first time users.
-
Updated
May 28, 2020 - Python
Preview extractor for news, articles and full-texts in Swift
-
Updated
Dec 30, 2019 - Swift
Parse and output TODOs and FIXMEs from comments in your files
-
Updated
Oct 31, 2020 - TypeScript
Portable mode
Hi, the program creates a file on:
C:\Users\USERNAME\AppData\Local\LessMsi\lessmsi-gui.exe_Url_2f40pggqe2qwc3oufnjnqq0l3gqel3k3\1.6.91.0\user.config
It would awesome if it were created only on the same folder where the executable is, so that it can be used as portable on a USB pendrive, and without leave traces.
Cheers.
Reversing Apple's 3D satellite mode
-
Updated
Oct 25, 2020 - Go
-
Updated
Jun 1, 2019 - Python
PhpZip is a php-library for extended work with ZIP-archives.
-
Updated
Jul 11, 2020 - PHP
webpack loader to extract HTML and CSS from the bundle
-
Updated
Nov 1, 2020 - JavaScript
Read basic info about an application from .apk file.
-
Updated
Oct 15, 2020 - PHP
Improve codecov
Currently the code coverage is around 70%. Need help to write tests so as to obtain a code coverage above 90%
Better analyze information, in all its forms
-
Updated
Nov 13, 2020 - Java
tmux clipboard copy and output completions
-
Updated
Nov 9, 2020 - Shell
Data interchange and engine re-implementation for games by Retro Studios | Mirror
-
Updated
Nov 8, 2020 - C++
A serverless architecture for orchestrating ETL jobs in arbitrarily-complex workflows using AWS Step Functions and AWS Lambda.
-
Updated
Dec 28, 2019 - Python
Parse and extract URL meta information (images, description, title, etc.)
-
Updated
Oct 30, 2020 - TypeScript
Extract structured variables from sass files
-
Updated
Dec 20, 2019 - JavaScript
Improve this page
Add a description, image, and links to the extract topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the extract topic, visit your repo's landing page and select "manage topics."


I was able to confirm that
os.Create()will happily follow symlinks.Although standard tools like
tarwill not likely allow you to add two files with the same name to an archive file, it's certainly easy enough to do in code. This means that we need to add an additional check before writing to a destination to make sure that it's not a symlink outside of the destination.The vulnerab