Install these if not already available:
sudo apt install curl xz-utils
<!DOCTYPE html> | |
<html lang="uk"> | |
<head> | |
<meta charset="UTF-8"> | |
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400&family=Caveat:wght@400;700&display=swap" | |
rel="stylesheet"> | |
<title>Анімації</title> | |
<style> | |
body { |
diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/JSONNotificationContentBuilder.java b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/JSONNotificationContentBuilder.java | |
index 0af7fe0..d7c0946 100644 | |
--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/JSONNotificationContentBuilder.java | |
+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/JSONNotificationContentBuilder.java | |
@@ -16,6 +16,10 @@ import expo.modules.notifications.notifications.model.NotificationContent; | |
public class JSONNotificationContentBuilder extends NotificationContent.Builder { | |
private static final String TITLE_KEY = "title"; | |
private static final String TEXT_KEY = "message"; | |
+ | |
+ private static final String TITLE_PINPOINT_KEY = "pinpoint.notification.title"; |
. | |
.. | |
........ | |
@ | |
* | |
*.* | |
*.*.* | |
🎠|
So you've cloned somebody's repo from github, but now you want to fork it and contribute back. Never fear! | |
Technically, when you fork "origin" should be your fork and "upstream" should be the project you forked; however, if you're willing to break this convention then it's easy. | |
* Off the top of my head * | |
1. Fork their repo on Github | |
2. In your local, add a new remote to your fork; then fetch it, and push your changes up to it | |
git remote add my-fork git@github...my-fork.git |
import shlex | |
import subprocess | |
import sys | |
def run_cmd(cmd, callback=None, watch=False): | |
"""Runs the given command and gathers the output. | |
If a callback is provided, then the output is sent to it, otherwise it | |
is just returned. |
GRUB_INIT_TUNE="1000 334 1 334 1 0 1 334 1 0 1 261 1 334 1 0 1 392 2 0 4 196 2"
function removeParamAndRefresh(paramToRemove) { | |
const url = new URL(window.location.href); | |
if (url.searchParams.has(paramToRemove)) { | |
url.searchParams.delete(paramToRemove); | |
// Update the URL in the address bar without reloading | |
window.history.pushState({}, '', url); | |
// Now, reload the page | |
window.location.reload(); | |
} | |
} |