notes
Here are 3,215 public repositories matching this topic...
-
Updated
Jul 10, 2020 - Shell
[转]Android如何关闭硬件加速
原文地址:http://developer.android.com/guide/topics/graphics/hardware-accel.html
译文地址:http://blog.chenming.info/blog/2012/09/18/android-hardware-accel/
硬件加速
Android 3.0 (API level 11), 开始支持
所有的View 的canvas都会使用GPU,但是硬件的加速会占有一定的RAM。
在API >= 14上,默认是开启的,如果你的应用只是标准的View和Drawable,全局都打开硬件加速,是不会有任何问题的。
然而,硬件加速并不支持所有的2D画图的操作,这时开着它,可能会影响到你的自定义控件或者绘画,出现异常等行为,
所以android对于硬件加速提供了可选性
如果你的应用执行了自定义的绘画,可以通
Environment info
- OS: Ubuntu 18.04.2 LTS
- App Version (
Command/Ctrl + ,): v1.8.0
Description of the problem / feature request / question:
I think that snippets be displayed as a collection of index cards may sometimes be more intuitive and productive, for example, to glance snippets with the same tag. Thanks for this wonderful tool.
-
Updated
Apr 19, 2019 - JavaScript
Right now, there's a "languages" feature implemented, which allows the user to define, in what kind of languages the documents he usually uploads are written in. Under "Settings", each Paperwork user can select the languages he'd like Paperwork to support for his account.
This was being implemented, so that tesseract can be called with the according language option, which helps OCR.
Now, thi
When installing the plugin $:/plugins/tiddlywiki/tw5.com-docs various macros do not work, rendering the documentation not usable. For example, look at WikiText - it appears truncated.
Our Getting Started page is nice but there are a variety of ways to install jrnl on various platforms, and sometimes there are "gotchas," common problems, or different methods that would be nice to address (perhaps in a more detailed installation page), such as:
- using pip vs pipx
- Windows installation issues
- avoiding path issues
- Windows Python vs W
Right now when we drag and drop a document into the sidebar, the default preview is a WIDE image which makes it hard to figure out where to drop it in the sidebar.
We should implement a better drag preview.
Sort of like this:
... this can be done via the onDrag event. I tried to
-
Updated
Jun 23, 2020
-
Updated
Mar 13, 2020 - C++
Problem
- I am unable to drag a note from trash to all notes. I feels like this should be allowed.
- Also I think it's a little strange that 'All notes' doesn't actually mean 'all' (does not contain trashed notes and scratchpad).
Solution
- Enable a note to be restored from trash by dragging it into 'All notes'
- Perhaps 'All notes' should be renamed to 'Notes'?
Notes
I'
-
Updated
Jun 15, 2020
Is your feature request related to a problem? Please describe.
I'm always frustrated when I am using xournal as a distance education tool scratch pad and I want to delete an entire page.
Describe the solution you'd like
I would like to be able to select all elements on a page so that I can delete them with a Ctrl+A Del.
**Describe alternatives you'v
-
Updated
Jun 10, 2020
Describe the bug
Text cut in the last line in no tags available message.
Context
Galaxy Nexus API 24
How to reproduce
Steps to reproduce the behavior:
- Have no Tags.
- Click on the Tags icon
Expected behavior
Text should not cut at the end.
Screenshots
If applicable, add screenshots to help explain your problem.
<img src="https://user-images.githubusercon
I use the default MacOS keyboard shortcut CMD+Backspace (clear text until start of line) to clear the search field. Problem: this also summons a dialog asking me to confirm if I want to delete the currently shown note.
When an input field has keyboard focus, I don't want such a dialog and I expect the OS's default behavior as described above.
As desired, this dialog is not shown when the no
-
Updated
Jul 7, 2019
Though it may be obvious that the android-sdk is a dependency for building orgzly, if it is not installed, then trying to run gradlew to build (as indicated in the README file) results in a cryptic error message:
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring project ':app'.
> kotlin.KotlinNullPointerException (no error message)
If one m
In case Imgur ever closes down their hosted service, it will be a sad day.
The script should simply go through all markdown files, go to all Imgur linked images and download them to a folder.
安装bash_completion
yum install bash_completion安装docker命令自动补全
sudo curl -L https://raw.githubusercontent.com/docker/docker/v$(docker version -f "{{.Client.Version}}")/contrib/completion/bash/docker -o /etc/bash_completion.d/docker安装docker-compose命令自动补全
sudo curl -L https://raw.githubusercontent.com/docker/compose/$(docker-compose veCurrent behavior
There is no button to see all notes from all storages combined. Currently this button only exists per storage.
Expected behavior
-
Updated
Jun 15, 2020
-
Updated
Jul 30, 2019
-
Updated
Feb 2, 2020 - Python
Improve this page
Add a description, image, and links to the notes topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the notes topic, visit your repo's landing page and select "manage topics."






explanation behind that says it's just coercion of one type plus another.
What is happening there is actually a code block and a unary + which coerces the array into 0.
({} + []) would get the same as ([] + {}) understandably.