Skip to content

Instantly share code, notes, and snippets.

View androidovshchik's full-sized avatar
😺

Vlad androidovshchik

😺
View GitHub Profile
@androidovshchik
androidovshchik / .conf
Last active January 29, 2024 23:57
Ubuntu 18.04 setup
# Needed to support websocket connections
# See: https://nginx.org/en/docs/http/websocket.html
# Instead of "close" as stated in the above link we send an empty value.
# Else all keepalive connections will not work.
map $http_upgrade $connection_upgrade {
default upgrade;
'' "";
}
# Redirect HTTP to HTTPS

Privacy Policy

built the Poker app as a Free app. This SERVICE is provided by at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Poker unless otherwise defined in this Privacy Policy.

[{
"title": "Dynamic",
"image": "https://github.com/androidovshchik/AutoTurnOff/raw/main/a01b445fb7929937fcab2552cce7276e.gif",
"timings": [2.5, 3, 3.5, 2, 2.5, 3.5]
}, {
"title": "Retro",
"image": "https://github.com/androidovshchik/AutoTurnOff/raw/main/84f01147ef7ae48c82c4978c612992a7.gif",
"timings": [2.5, 3, 3.5, 2, 2.5, 3.5]
}, {
"title": "Relax",
package com.girlapp
import android.app.DownloadManager
import android.content.BroadcastReceiver
import android.content.Context
import android.content.Intent
import android.content.IntentFilter
import android.database.ContentObserver
import android.net.Uri
import android.os.Build
package pro.biochemica
import android.content.Intent
import android.graphics.Bitmap
import android.os.Bundle
import android.view.ViewGroup
import android.webkit.CookieManager
import com.google.firebase.iid.FirebaseInstanceId
import im.delight.android.webview.AdvancedWebView
import kotlinx.coroutines.launch
SET "JAVA_HOME=C:\Program Files\Android\Android Studio\jre"
call gradlew.bat clean
md %~dp0\app\keystore
del %~dp0\app\keystore\release.jks
"C:\Program Files\Android\Android Studio\jre\bin\keytool" -genkey -noprompt -keystore %~dp0\app\keystore\release.jks -alias ChatRoulette -storepass ChatRoulette -keypass ChatRoulette -dname c=RU -keyalg RSA -keysize 2048 -validity 10000
call gradlew.bat assembleChatRouletteRelease -Pandroid.injected.signing.store.file=%~dp0\app\keystore\release.jks^
-Pandroid.injected.signing.store.password=ChatRoulette^
-Pandroid.injected.signing.key.alias=ChatRoulette^
-Pandroid.injected.signing.key.password=ChatRoulette
del %~dp0\app\keystore\release.jks
// ==UserScript==
// @name FL
// @namespace http://androidovshchik.ru/
// @version 0.1
// @description Как вам такое, мошенники?
// @author Vlad
// @match https://fl.ru/*
// @match https://www.fl.ru/*
// @grant none
// @require https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.min.js
#!/bin/bash
ps aux | grep proexpert | awk '{print $2}' | xargs /bin/kill
@androidovshchik
androidovshchik / fl.js
Created December 3, 2019 13:00
FL autocomplete
// ==UserScript==
// @name FL
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://fl.ru/*
// @match https://www.fl.ru/*
// @grant none
// ==/UserScript==
#include <jni.h>
#include <cerrno>
#include "Colfer.h"
colfer_text main_text(JNIEnv *env, jobject obj, jfieldID id1) {
colfer_text text;
auto string = (jstring) env->GetObjectField(obj, id1);
const char *chars = env->GetStringUTFChars(string, nullptr);
text.utf8 = chars;
text.len = strlen(chars);