If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /***************** | |
| * cellBlockA.js * | |
| ***************** | |
| * | |
| * Good morning, Dr. Eval. | |
| * | |
| * It wasn't easy, but I've managed to get your computer down | |
| * to you. This system might be unfamiliar, but the underlying | |
| * code is still JavaScript. Just like we predicted. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import pandas as pd | |
| number_of_pages = 100 | |
| #number_of_ads = number_of_pages * per_page | |
| job_title = ["'Data Analyst' and 'data scientist'"] | |
| for job in job_title: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ANDROID_COMPILE_SDK=29 | |
| ANDROID_BUILD_TOOLS=29.0.2 | |
| ANDROID_SDK_TOOLS=4333796 | |
| FLUTTER_CHANNEL=master | |
| INSTALL_DIR=$HOME | |
| # Update | |
| # NOTE : openjdk-8-jdk n'est plus en LTS | |
| sudo apt update || exit 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/xuningjack/RequestPermission.git | |
| https://github.com/msilb/coursera-cryptocurrency.git | |
| https://github.com/qhm123/POI-Android.git | |
| https://github.com/hexiangnan/sigir16-eals.git | |
| https://github.com/EspoirX/NiceMusic.git | |
| https://github.com/uestccokey/EZFilter.git | |
| https://github.com/TechPrimers/jwt-security-example.git | |
| https://github.com/chuanzh/emp.git | |
| https://github.com/FabianTerhorst/ApiClient.git | |
| https://github.com/googlesamples/android-DirectShare.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| NODESAPI=/api/v1/nodes | |
| function getNodes() { | |
| kubectl get --raw $NODESAPI | jq -r '.items[].metadata.name' | |
| } | |
| function getPVCs() { | |
| jq -s '[flatten | .[].pods[].volume[]? | select(has("pvcRef")) | '\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is a GitLab CI configuration to build the project as a docker image | |
| # The file is generic enough to be dropped in a project containing a working Dockerfile | |
| # Author: Florent CHAUVEAU <[email protected]> | |
| # Mentioned here: https://blog.callr.tech/building-docker-images-with-gitlab-ci-best-practices/ | |
| # do not use "latest" here, if you want this to work in the future | |
| image: docker:20 | |
| stages: | |
| - build |
This should always be your first step. More than likely, your question has already been answered...multiple times
If you make a post stating a problem without any logs, nobody can help you and will likely ignore it (at least I will)
- Get a full logcat. If using adb, use
adb logcat -d > log.txt- This should be taken after attempting to open the app
- Get an audio dumpsys:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //(js -> php) code. letter by letter | |
| global $n, $i, $id; | |
| $n = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMN0PQRSTUVWXYZO123456789+/="; | |
| $id = 12345; //YOUR USER ID | |
| $i = [ | |
| 'v' => function($e) { | |
| return strrev($e); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| image: ubuntu:22.04 | |
| variables: | |
| ANDROID_COMPILE_SDK: "33" | |
| ANDROID_BUILD_TOOLS: "33.0.2" | |
| EMULATOR_IMAGE: "24" | |
| SDK_TOOLS: "9477386" # from https://developer.android.com/studio/#command-tools | |
| before_script: |
