Skip to content

Instantly share code, notes, and snippets.

View dgleba's full-sized avatar
😁
.

dgleba dgleba

😁
.
View GitHub Profile
// /ap/code/androidrom/lineage410/frameworks/base/packages/SystemUI/src/com/android/keyguard/KeyguardClockSwitch.java
package com.android.keyguard;
import static com.android.keyguard.KeyguardStatusAreaView.TRANSLATE_X_CLOCK_DESIGN;
import static com.android.keyguard.KeyguardStatusAreaView.TRANSLATE_Y_CLOCK_DESIGN;
import static com.android.keyguard.KeyguardStatusAreaView.TRANSLATE_Y_CLOCK_SIZE;
import static com.android.systemui.shared.recents.utilities.Utilities.isLargeScreen;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
# 410a-lineageOS 22.1 redfin
following: build yourself, and installation on: https://wiki.lineageos.org/devices/redfin/
------------
# plan..
sync repo
add themuppets muppets.yml. repo sync vendor/google/redfin
@dgleba
dgleba / lineageOS 22.1 build notes 2.md
Last active April 13, 2025 10:59
trying to build lineage OS - 2025-04-09

Thanks for your ideas @ luk.

I did the git stashes as you mentioned.

I visited : https://luk1337.github.io/muppets and made the manifest, rm, and repo sync per the below.

user@host:~/lineage-22.1$ cat .repo/local_manifests/muppets.xml
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
    <project name="TheMuppets/proprietary_vendor_google_redfin" path="vendor/google/redfin" remote="github"/>
@dgleba
dgleba / commands.txt.sh
Last active April 9, 2025 00:15
building LineageOS 22.1 errors.
```
#################################################################
#@
#@ Build lineageOS 22.1 redfin with no changes.
#@
#################################### 2025-04-06[Apr-Sun]10-34AM
------------
plan..
sync repo
add themuppets redfin
@dgleba
dgleba / index.html
Created February 26, 2023 19:06
VueJS CRUD (VueJS Version 2)
<div class="container">
<h1>Vue JS CRUD (Based on Vue JS version 2)</h1>
<main id="app">
<router-view></router-view>
</main>
</div>
<template id="product">
<div>
<h2>{{ product.name }}</h2>
@dgleba
dgleba / nextcloud-caddy-docker.md
Created January 22, 2023 01:06 — forked from tmo1/nextcloud-caddy-docker.md
Nextcloud behind Caddy as a reverse proxy, using Docker

Introduction

This is a guide to deploying Nextcloud behind a Caddy reverse proxy, both running in Docker containers (an official Nextcloud one and a caddy-docker-proxy one), with the goal of implementing as much as possible via docker-compose files. This is much more difficult than it should be, for a variety of reasons:

  • As with Docker versions of software in general, documentation of the software does not always apply to the Docker versions, and the Docker documentation does not always include the Docker equivalent ways of doing things.

  • Docker images do not always expose the desired configuration knobs of the underlying software.

  • Nextcloud requires special configuration to run correctly behind a reverse proxy (and again, some of the instructions for this configuration requires modification for

@dgleba
dgleba / index.html
Created January 2, 2022 17:00
Login Form | Vue
<div id="app">
<div class="login-page">
<transition name="fade">
<div v-if="!registerActive" class="wallpaper-login"></div>
</transition>
<div class="wallpaper-register"></div>
<div class="container">
<div class="row">
@dgleba
dgleba / filterable-table-with-vue-js.markdown
Created January 17, 2021 16:44
Filterable Table With Vue.js
// ==UserScript==
// @name gheil Google Bookmarks fix
// @match https://www.google.com/bookmarks/*
// @grant none
// @require https://code.jquery.com/jquery-1.12.4.min.js
// @require https://code.jquery.com/ui/1.12.1/jquery-ui.js
// ==/UserScript==
// greg heil(cc-by-sa)18/07/09
var DONE = 0;
var MAX_SUGGESTIONS=108;
@dgleba
dgleba / index.html
Created March 23, 2019 17:50
Vuetify Template
<div id="app">
<v-app>
<v-content>
<v-container grid-list-xl>
<!-- -->
</v-container>
</v-content>
</v-app>
</div>