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 json | |
| import time | |
| import jwt # PyJWT library | |
| import requests # For making HTTP requests | |
| from cryptography.hazmat.primitives import serialization # For loading private key | |
| # --- Configuration --- | |
| # Replace with the actual path to your service account JSON key file | |
| SERVICE_ACCOUNT_FILE = 'Downloads/pcapi.json' | |
| # Replace with the desired scope(s) for your API access |
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
| version: "2" | |
| services: | |
| vpn: | |
| image: siomiz/softethervpn | |
| ports: | |
| - "1194:1194/udp" | |
| - "1701:1701" | |
| - "1701:1701/udp" | |
| - "4500:4500/udp" | |
| - "500:500/udp" |
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
| private val diffChronoUnits = arrayListOf( | |
| ChronoUnit.YEARS, | |
| ChronoUnit.MONTHS, | |
| ChronoUnit.WEEKS, | |
| ChronoUnit.DAYS, | |
| ChronoUnit.HOURS, | |
| ChronoUnit.MINUTES, | |
| ChronoUnit.SECONDS | |
| ) |
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
| def isCi = System.getenv().JOB_NAME != null | |
| buildscript { | |
| repositories { | |
| maven { url "https://plugins.gradle.org/m2/" } | |
| } | |
| dependencies { | |
| classpath "gradle.plugin.com.github.spotbugs:gradlePlugin:1.6.0" | |
| } | |
| } |
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
| To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/2.14.1/userguide/gradle_daemon.html. | |
| Configuration on demand is an incubating feature. | |
| Jack is disabled, but one of the plugins you are using supports Java 8 language features. | |
| Jack is disabled, but one of the plugins you are using supports Java 8 language features. | |
| :app:preBuild UP-TO-DATE | |
| :app:preDebugBuild UP-TO-DATE | |
| :app:checkDebugManifest | |
| :app:preReleaseBuild UP-TO-DATE | |
| :app:prepareComAndroidSupportAnimatedVectorDrawable2421Library UP-TO-DATE | |
| :app:prepareComAndroidSupportAppcompatV72421Library UP-TO-DATE |
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
| To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/2.14.1/userguide/gradle_daemon.html. | |
| Configuration on demand is an incubating feature. | |
| Jack is disabled, but one of the plugins you are using supports Java 8 language features. | |
| Jack is disabled, but one of the plugins you are using supports Java 8 language features. | |
| :app:preBuild UP-TO-DATE | |
| :app:preDebugBuild UP-TO-DATE | |
| :app:checkDebugManifest | |
| :app:preReleaseBuild UP-TO-DATE | |
| :app:prepareComAndroidSupportAnimatedVectorDrawable2421Library UP-TO-DATE | |
| :app:prepareComAndroidSupportAppcompatV72421Library UP-TO-DATE |
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
| /* | |
| * Copyright (C) 2011 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
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
| #include <stdio.h> | |
| #include <linux/rtc.h> | |
| #include <sys/ioctl.h> | |
| #include <fcntl.h> | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| #include <errno.h> | |
| #include <time.h> | |
| #include <sys/types.h> |
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
| commit 9856432a8d68aa0ae0610c255cd845cdac280d0c | |
| Author: Kyrylo Mikos <kiril.mik.os@gmail.com> | |
| Date: Wed Sep 26 16:43:51 2012 +0300 | |
| LatinIME: Add missing ukrainian letters. | |
| Change-Id: Ib6f18d3aeee33b8e5f1843781cebd81eec2928a7 | |
| diff --git a/java/res/xml/rowkeys_east_slavic1.xml b/java/res/xml/rowkeys_east_slavic1.xml | |
| index 00cb6a9..7dcee3f 100644 |
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
| diff --git a/base/core/java/android/text/Layout.java b/base2/core/java/android/text/Layout.java | |
| old mode 100644 | |
| new mode 100755 | |
| index 9695533..b5f32d4 | |
| --- a/base/core/java/android/text/Layout.java | |
| +++ b/base2/core/java/android/text/Layout.java | |
| @@ -61,6 +61,7 @@ public abstract class Layout { | |
| }; | |
| private RectF mEmojiRect; |
NewerOlder