Skip to content

Instantly share code, notes, and snippets.

View 000panther's full-sized avatar

Paul Weber 000panther

View GitHub Profile
@000panther
000panther / gist:be7d826bc5dc89c468eab9d76084d2cf
Created October 23, 2019 12:58
not working facebook profiles
michael.landau.94
pagesMichael-Haneke/108489515838115
jgudenus
clemens.aigner.skispringen
josef.geisler.3
bounnhang.vorachith.9
Dieter-Chmelar-104118469625935
gzeiler
dr.georg.dornauer
searchtop/
@000panther
000panther / layouttree
Created July 31, 2019 12:46
Layout Tree
com.android.internal.policy.DecorView@88a42b8
android.widget.LinearLayout@9376583
android.view.ViewStub@2145df5
android.widget.FrameLayout@506e256
android.support.v7.widget.FitWindowsLinearLayout@71756ad
android.support.v7.widget.ViewStubCompat@a0cb573
android.support.v7.widget.ContentFrameLayout@ffb0a9
org.nativescript.widgets.ContentLayout@fef33d
org.nativescript.widgets.GridLayout@7e5274e
org.nativescript.widgets.GridLayout@af06a5a
apiVersion: v1
kind: Pod
metadata:
name: updatemi-summarization
spec:
containers:
- name: updatemi-summarization
image: updatemi/summarization
imagePullSecrets:
- name: dockerhub
@000panther
000panther / apollo-ai-products-cube.markdown
Created September 6, 2018 08:03
Apollo.ai Products Cube
Union Pacific is investing approximately $57 million in infrastructure in Nebraska this year. Projects funded by Union Pacific benefit Nebraska's overall transportation infrastructure without taxpayer funds. Union Pacific's investment plan funds a range of initiatives: $53 million to maintain railroad track and $721,000 to maintain bridges in the state. Alley Poyner Macchietto Architecture (APMA) has been recognized with the 2017 American Institute of Architects (AIA) Housing Award in the category of Specialized Housing. The 56-person architecture and interior design firm won for its design of Heartland Family Service's— Heartland Family Works building in Omaha. The project — in collaboration with J Development — involved the adaptive reuse of a mid century apartment building into a residential rehabilitation facility for pregnant women and mothers with children. APMA was one of 14 recipients in four categories. The Durham Museum has partnered with the Omaha Police Department for a new exhibit entitled, "
@000panther
000panther / imagedownload.js
Last active August 29, 2015 14:23
A binary file download script that also works on android 4.1 - 4.3 devices (without XMLHttpRequest blob support)
function getImageFile(path, callback) {
path = path.replace('https://', 'http://'); // android is very picky with https certificates and does not give an error
console.info("Requesting Image File for Splashscreen: " + path);
if(path == null) {
// handle empty urls by passing on the null value
callback(null);
return deferred.promise;
}
@000panther
000panther / gist:6172254
Last active December 20, 2015 17:58
The reporting view.
Column Name Type Size Description
user_id varchar 32 Talenthouse Frontend user id, 32 char hash
first_name varchar 64 from TH User
last_name varchar 64 from TH User
email varchar 128 from TH User
language varchar 2 from TH User
create_date date from TH User, date the user signed up
th_supporter_count int from TH User, current amount of users supporting this user
facebook_id varchar 32 from TH User
nickname varchar 200 from TH User, internal nickname, can be used for login, was once customizeable, now generated
@000panther
000panther / GratisZeug.md
Last active October 4, 2015 19:48
Gratis Zeug! Alles was bei mir in der Wohnung rumkugelt und einen neuen Besitzer sucht

Gratis Zeug!

Ich ziehe um und aufgrund dessen fällt einiges an was in der neuen Wohnung keine verwendung mehr hat.


Schau mal unten in der Liste ob was für dich dabei ist und dann melde dich einfach bei mir. Du kannst es dann gerne bei mir in Linz abholen.

  • Hasendraht: 3 Stücke zu 0,5 x 1 m, 1 Stück zu 0,5 x ~ 3m, waren als Katzengitter im Einsatz. Hexagonal, 2cm löcher
  • 3 massive Eisenstangen ca 2m lang, fingerdick
  • ein alter Alibert
@000panther
000panther / largest-mysql-tables.sql
Created April 10, 2012 15:47
Finding out largest tables on MySQL Server
SELECT CONCAT(table_schema, '.', table_name),
CONCAT(ROUND(table_rows / 1000000, 2), 'M') rows,
CONCAT(ROUND(data_length / ( 1024 * 1024 * 1024 ), 2), 'G') DATA,
CONCAT(ROUND(index_length / ( 1024 * 1024 * 1024 ), 2), 'G') idx,
CONCAT(ROUND(( data_length + index_length ) / ( 1024 * 1024 * 1024 ), 2), 'G') total_size,
ROUND(index_length / data_length, 2) idxfrac
FROM information_schema.TABLES
ORDER BY data_length + index_length DESC
LIMIT 10;