
Paper 

High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies.
Support and Project Discussion:
How To (Server Admins)
Paperclip is a jar file that you can download and run just like a normal jar file.
Download Paper from our downloads page.
Run the Paperclip jar directly from your server. Just like old times
How To (Plugin Developers)
- See our API patches here
- See upcoming, pending, and recently added API here
- Paper API javadocs here: papermc.io/javadocs
- Maven Repo (for paper-api):
Or alternatively, with Gradle:
How To (Compiling Jar From Source)
To compile Paper, you need JDK 16 and an internet connection.
Clone this repo, run , then from your terminal. You can find the compiled jar in the directory.
To get a full list of tasks, run .
How To (Pull Request)
See Contributing
Special Thanks To:
YourKit, makers of the outstanding java profiler, support open source projects of all kinds with their full featured Java and .NET application profilers. We thank them for granting Paper an OSS license so that we can make our software the best it can be.
JetBrains, creators of the IntelliJ IDEA, supports Paper with one of their Open Source Licenses. IntelliJ IDEA is the recommended IDE for working with Paper, and most of the Paper team uses it.
PaperLib
PaperLib is a plugin library for interfacing with Paper specific APIs (such as async chunk loading), with graceful fallbacks maintaining compatibility with both the Bukkit and Spigot API's.
API
All API calls can be found as static util methods in the class.
getChunkAtAsync
On Paper, loads (or generates on 1.13.1+) the chunk asynchronously if it is not loaded yet, then completes the returned future. Chunk will load synchronous on Spigot.
teleportAsync
Uses the Async Chunk Load API, and if possible, loads/generates the chunk asynchronously before teleporting. Will load synchronous on Spigot.
On 1.15+, this has an added improvement of also loading neighbor chunks to avoid collision checks loading chunks too.
isChunkGenerated
Returns whether or not the chunk is generated. Only Supported in Paper 1.12+ and Spigot 1.13.1+
getBlockState
Allows you to optionally avoid taking a snapshot of a TileEntity in a BlockState. Versions prior to 1.12 will always be false for the snapshot. In versions 1.12+ on Spigot, the snapshot will always be true. In Paper 1.12+, the snapshot will be whether or not you requested one in the API call.
suggestPaper
Helps inform users who run your plugin on Spigot that your plugin will behave better on Paper! Calling this method will print out an informational message in the logs that they should switch to Paper, and will help users discover our software. We would appreciate it if you call this method, but it is optional.
Example Plugin
Build Script Setup
Add the Paper repository and the PaperLib dependency, then shade and relocate it to your own package. Relocation helps avoid version conflicts with other plugins using PaperLib.
Gradle
Repo:
Dependency:
Shadow Jar and Relocate:
Maven
Repo:
Dependency:
Shade & Relocate:
License
PaperLib is licensed under the MIT license
Material design for React Native.
reactnativepaper.com
Features
Currently supported React Native version:
Try it out
Run the example app with Expo to see it in action.
The source code for the examples are under the /example folder.
Getting Started
Refer to the getting started guide for instructions.
Documentation
Check the components and their usage in our documentation.
Contributing
Read the contribution guidelines before contributing.
Figma and Sketch component kits
Use official component kits provided by Material Design.
Made with at Callstack
is an open source project and will always remain free to use. If you think it's cool, please star it . Callstack is a group of React and React Native geeks, contact us at [email protected] if you need any help with these or just want to say hi!
Like the project? Join the team who does amazing stuff for clients and drives React Native Open Source!
Contributors
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
Paper
Paper's aim is to provide a simple yet fast object storage option for Android. It allows to use Java/Kotlin classes as is: without annotations, factory methods, mandatory class extensions etc. Moreover adding or removing fields to data classes is no longer a pain – all data structure changes are handled automatically.
Migration to Maven Central
Library has been moved to Maven Central since service ends for JCenter. Note that group id has been changed to . See the updated section below.
Add dependency
RxJava wrapper for Paper is available as a separate lib RxPaper2. Thanks @pakoito for it!
Initialize Paper
Should be initialized once in :
Threading
- should be called in UI thread;
- All other APIs (, etc.) are thread-safe and obviously must be called outside of UI thread. Reading/writing for different s can be done in parallel.
Save
Save any object, Map, List, HashMap etc. including all internal objects. Use your existing data classes as is. Note that key is used as file name to store the data and so cannot contain symbols like .
Read
Read data objects is as easy as
the instantiated class is exactly the one used to save data. Limited changes to the class structure are handled automatically. See Handle data class changes.
Use default values if object doesn't exist in the storage.
Delete
Delete data for one key.
Remove all keys for the given Book. must be called prior calling .
Use custom book
You can create custom Book with separate storage using
Each book is located in a separate file folder.
Get all keys
Returns all keys for objects in the book.
Handle data structure changes
You can add or remove fields to the class. Then on next read attempt of a new class:
- Newly added fields will have their default values.
- Removed field will be ignored.
Note: field type changes are not supported.
For example, if you have following data class saved in Paper storage:
And then you realized you need to change the class like:
the isActive field will be ignored on next read and new location field will have its default value as null.
Exclude fields
Use transient keyword for fields which you want to exclude from saving process.
Set storage location for Book instances
By default, all the Paper data files are located with all files belonging to your app, at . To save data on SDCard or at any other location you can use new API:
- or to create custom book.
Export/Import
- Use to get path for a folder containing all *.pt files for a given book.
- Use to get path for a particular *.pt file containing saved object for a given key. Feel free to copy/rewrite those files for export/import purposes. It's your responsibility to finalize file's export/import operations prior accessing data over Paper API.
Proguard config
- Keep your data classes from modification by Proguard:
also you can implement Serializable for all your data classes and keep all of them using:
How it works
Paper is based on the following assumptions:
- Datasets on mobile devices are small and usually don't have relations in between;
- Random file access on flash storage is very fast;
Paper saves each object for given key in a separate file and every write/read operations write/read the whole file.
The Kryo is used for object graph serialization and to provide data compatibility support.
Benchmark results
Running Benchmark on Nexus 4, in ms:
Benchmark | Paper | Hawk |
---|---|---|
Read/write 500 contacts | 187 | 447 |
Write 500 contacts | 108 | 221 |
Read 500 contacts | 79 | 155 |
Limitations
- Circular references are not supported
Apps using Paper
- AppDialer – Paper initially has been developed as internal lib to reduce start up time for AppDialer. Currently AppDialer has the best start up time in its class. And simple no-sql-pain data storage layer like a bonus.
- Busmap - This application provide all things you need for travelling by bus in Ho Chi Minh city, Vietnam. While the source code is not opened, it is found that the application use Paper internally to manange the bus stop data, route data, time data,... and more.
License
Paper github
Repositories
- axcell Public
Tools for extracting tables and results from Machine Learning papers
Python 298 Apache-2.0 44 0 0 Updated
- model-index Public
Create a source of truth for ML model results and browse it on Papers with Code
Python 11 MIT 3 0 0 Updated
- releasing-research-code Public
Tips for releasing research code in Machine Learning (with official NeurIPS 2020 recommendations)
1,784 MIT 523 0 0 Updated
- sotabench-eval Public
Easily evaluate machine learning models on public benchmarks
Python 162 Apache-2.0 26 1 1 Updated
- torchbench Public
Easily benchmark machine learning models in PyTorch
Python 129 Apache-2.0 17 2 1 Updated
- sotabench-api Public
Easily benchmark Machine Learning models on selected tasks and datasets
Python 14 Apache-2.0 4 11 0 Updated
People
This organization has no public members. You must be a member to see who’s a part of this organization.
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.
Papers We Love (PWL) is a community built around reading, discussing and learning more about academic computer science papers. This repository serves as a directory of some of the best papers the community can find, bringing together documents scattered across the web. You can also visit the Papers We Love site for more info.
Due to licenses we cannot always host the papers themselves (when we do, you will see a emoji next to its title in the directory README) but we can provide links to their locations.
If you enjoy the papers, perhaps stop by a local chapter meetup and join in on the vibrant discussions around them. You can also discuss PWL events, the content in this repository, and/or anything related to PWL on our Slack, after signing-up to join it, or on our #paperswelove IRC channel on freenode.
Chapters
Here are our official chapters. Let us know if you are interested in starting one in your city!
All of our meetups follow our Code of Conduct.
Past Presentations
Check out our YouTube and MixCloud (audio-only format) channels.
Info
Similar news:
- Python pandas github
- Cdl manual download
- Crib cushion bumper
- Speakeasy asheville nc
- Modern diy fence
- Whiskey accessories amazon
- Cursive stencils michaels
- Dawn butler facebook
- Wood resin diy
- Retrosound new york
- Catherine bonilla
- Storm master eso
- Hero high zelda
papeR
papeR provides a toolbox for writing knitr, Sweave or other LaTeX- or markdown-based papers and reports and to prettify the output of various estimated models.
Installation:
- Current version (from CRAN):
- Latest development version from GitHub:
- To be able to use the command, one needs to install first:
Using papeR
Tutorials on how to use papeR can be found on CRAN:
or within R via