Skip to content

Instantly share code, notes, and snippets.

View PDDStudio's full-sized avatar

Patrick Jung PDDStudio

View GitHub Profile
@PDDStudio
PDDStudio / Hexadecimal.md
Created July 24, 2019 15:03 — forked from lopspower/README.md
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

All hex value from 100% to 0% alpha:

@PDDStudio
PDDStudio / hex-transparency-table.md
Last active August 21, 2018 00:38
Alpha channel values (100%-0%) in hexadecimal.

Transparency Table

All possible values for AA in AARRGGBB.

Listed in their hexadecimal representation below:

100% — FF
99% — FC
98% — FA
{
"presets": [
"env"
]
}

Keybase proof

I hereby claim:

  • I am pddstudio on github.
  • I am pddstudio (https://keybase.io/pddstudio) on keybase.
  • I have a public key ASARy10fPDz7ObirOC2liYfbcclouuCcjKTEDKBa3-W6ZQo

To claim this, I am signing this object:

<!DOCTYPE html>
<html>
<head>
<title>A Minimalist App</title>
<script defer src="main.dart.js"></script>
</head>
<body>
<p id="RipVanWinkle">
RipVanWinkle paragraph.
@PDDStudio
PDDStudio / android_configure.sh
Created March 29, 2017 13:49 — forked from nddrylliog/android_configure.sh
Cross-compile autotools library for Android / arm-linux-androideabi I stick that in ~/bin/, chmod +x, and then run it in place of "./configure" in my project. Then a make and make install later, the prefix contains libraries built for android. Neato eh?
#!/bin/sh
# I put all my dev stuff in here
export DEV_PREFIX=$HOME/Dev/
# Don't forget to adjust this to your NDK path
export ANDROID_NDK=${DEV_PREFIX}/android-ndk-r8d/
export CROSS_COMPILE=arm-linux-androideabi
/***************************************************************************************************
* Copyright (c) 2015 Rüdiger Herrmann
* All rights reserved. This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Rüdiger Herrmann - initial API and implementation
**************************************************************************************************/
package com.codeaffine.jgit.example;
@PDDStudio
PDDStudio / screenrecord.sh
Created January 9, 2017 15:13 — forked from tasomaniac/screenrecord.sh
Screen Record for Android
#!/bin/sh
set -e
if [ -z "$1" ]; then
shot_path=$(date +%Y-%m-%d-%H-%M-%S).mp4
else
shot_path="$*"
fi
@PDDStudio
PDDStudio / CustomViewPager.java
Created January 20, 2016 09:07
Viewpager with possibillity to disable swiping
public class CustomViewPager extends ViewPager {
private boolean isPagingEnabled = true;
public CustomViewPager(Context context) {
super(context);
}
public CustomViewPager(Context context, AttributeSet attrs) {
super(context, attrs);
@PDDStudio
PDDStudio / TakeScreenshot.java
Created January 20, 2016 07:41
Take a screenshot programatically in Android
public static Bitmap takeScreenshot(Activity activity) {
ViewGroup decor = (ViewGroup) activity.getWindow().getDecorView();
ViewGroup decorChild = (ViewGroup) decor.getChildAt(0);
decorChild.setDrawingCacheEnabled(true);
decorChild.buildDrawingCache();
Bitmap drawingCache = decorChild.getDrawingCache(true);
Bitmap bitmap = Bitmap.createBitmap(drawingCache);
decorChild.setDrawingCacheEnabled(false);
return bitmap;
}