Skip to content

Instantly share code, notes, and snippets.

// SPDX-License-Identifier: GPL-2.0-only
/dts-v1/;
#include "msm8916-samsung-gt5-common.dtsi"
/ {
model = "Samsung Galaxy Tab A 8.0 LTE (2015) (SM-T357W)";
compatible = "samsung,gt58ltebmc", "qcom,msm8916";
// SPDX-License-Identifier: GPL-2.0-only
#include "msm8916.dtsi"
#include "pm8916.dtsi"
#include "arm/qcom-msm8916-no-psci.dtsi"
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include <dt-bindings/interrupt-controller/irq.h>
#include <dt-bindings/sound/apq8016-lpass.h>
// SPDX-License-Identifier: GPL-2.0-only
/dts-v1/;
#include "msm8916.dtsi"
#include "pm8916.dtsi"
#include "arm/qcom-msm8916-no-psci.dtsi"
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include <dt-bindings/interrupt-controller/irq.h>
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd030]
[ 0.000000] Linux version 5.6.0-postmarketos-qcom-msm8916 (pmos@voyager) (gcc version 9.3.0 (Alpine 9.3.0)) #10 SMP PREEMPT Wed Apr 15 12:56:09 UTC 2020
[ 0.000000] Machine model: Samsung Galaxy Tab A 8.0 LTE (2015) (SM-T357W)
[ 0.000000] earlycon: msm_serial_dm0 at MMIO 0x00000000078b0000 (options '')
[ 0.000000] printk: bootconsole [msm_serial_dm0] enabled
[ 0.000000] cma: Reserved 32 MiB at 0x00000000fe000000
[ 0.000000] On node 0 totalpages: 505088
[ 0.000000] DMA zone: 3796 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 242944 pages, LIFO batch:63
// SPDX-License-Identifier: GPL-2.0-only
/dts-v1/;
#include "msm8916.dtsi"
#include "pm8916.dtsi"
#include "arm/qcom-msm8916-no-psci.dtsi"
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include <dt-bindings/interrupt-controller/irq.h>
@Armen138
Armen138 / thelouge_customstyle.css
Created September 13, 2019 17:43
Removing nonsense from recent versions of The Lounge
#windows .window {
box-shadow: none;
}
.window {
border-radius: 0;
box-shadow: none;
}
#viewport {
padding: 0;
}
@Armen138
Armen138 / privacy_policy.md
Created February 20, 2019 14:18
Galaxorz Privacy Policy

Privacy Policy

Armen Nieuwenhuizen built the Galaxorz app as an Ad Supported app. This SERVICE is provided by Armen Nieuwenhuizen 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 is accessible at Galaxorz unless otherwise defined in this Privacy Policy.

@Armen138
Armen138 / roulette.py
Last active August 17, 2018 13:23
simple roulette module for sopel bot
from sopel.module import commands, priority
import random
from datetime import datetime, timedelta
random.seed()
class Revolver:
def __init__(self):
self.reload()
self.stats = {}
@Armen138
Armen138 / .vimrc
Created August 2, 2013 14:13
vimrc
"plugins
"pathogen
"nerdtree
"nerdcommenter
"jshint
"tabular
set nocompatible
execute pathogen#infect()
autocmd BufNewFile *.rb 0put = '#!/usr/bin/env ruby' | normal G
@Armen138
Armen138 / nodearray.cpp
Created November 27, 2012 22:05
nodejs module test in c++
#include <v8.h>
#include <node.h>
#include <iostream>
#include <string>
using namespace node;
using namespace v8;
static Handle<Value> foo(const Arguments& args)
{