This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
| # Tutorial here: https://medium.com/@harmittaa/travis-ci-android-example-357f6e632fc4 | |
| language: android | |
| sudo: required | |
| jdk: oraclejdk8 | |
| before_cache: | |
| - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock | |
| - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ |
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
Last updated: April 2021
Also known as itag or format codes and way back they could be specified with the fmt parameter (e.g. &fmt=22).
Depending on the age and/or popularity of the video, not all formats will be available.
| Resolution | AV1 HFR High | AV1 HFR | AV1 | VP9.2 HDR HFR | VP9 HFR | VP9 | H.264 HFR | H.264 |
|---|---|---|---|---|---|---|---|---|
| MP4 | MP4 | MP4 | WebM | WebM | WebM | MP4 | MP4 |
| OBS: O var_number_int é a varável que recebera o valor a ser convertido em DP | |
| (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, var_number_int, getResources().getDisplayMetrics()) | |
| ##KOTLIN | |
| val Int.dp: Int | |
| get() = (this * Resources.getSystem().displayMetrics.density + 0.5f).toInt() | |
| val Float.dp: Int |
You know the pain, you cloned a repo over HTTPS, and now Git asks you for your password each time you want to push or pull.
Chances are you already have the git credential-osxkeychain command installed.
If not, just install Git with brew: brew install git.
Once installed, just tell Git to use the KeyChain to store your credentials:
git config --global credential.helper osxkeychain
The sony bravia has a HTTP API interacted with using a Pre-Shared key. There's a more complex auth flow but I've not described it here.
There wasn't any documentation, so I've written some. If you're a TV integrator don't read this, you'll laugh. I'm probably just getting confused by UPnP.
Disclaimer: I've only tested this on my TV, which is a KDL-50W829B. Your TV might not have all of the services; see Available services section for how to discover what your TV supports.
| Hi All! | |
| I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
| Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
| One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
| Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
| App Description: | |
| ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |
| # Generate a new pgp key: (better to use gpg2 instead of gpg in all below commands) | |
| gpg --gen-key | |
| # maybe you need some random work in your OS to generate a key. so run this command: `find ./* /home/username -type d | xargs grep some_random_string > /dev/null` | |
| # check current keys: | |
| gpg --list-secret-keys --keyid-format LONG | |
| # See your gpg public key: | |
| gpg --armor --export YOUR_KEY_ID | |
| # YOUR_KEY_ID is the hash in front of `sec` in previous command. (for example sec 4096R/234FAA343232333 => key id is: 234FAA343232333) |
$surrogate_pair = json_encode(🌊);
print $surrogate_pair; //"\ud83c\udf0a"
$emojis_to_words variable is an array you need to include in your project.
| // https://developers.cloudflare.com/workers/about/ | |
| // https://tutorial.cloudflareworkers.com | |
| // | |
| // A Service Worker which adds Security Headers. | |
| // Checks: | |
| // https://securityheaders.io/ | |
| // https://observatory.mozilla.org/ | |
| // https://csp-evaluator.withgoogle.com/ | |
| // https://hstspreload.org/ | |
| // https://www.ssllabs.com/ssltest/ |