Skip to content

Instantly share code, notes, and snippets.

View marianfoo's full-sized avatar

Marian Zeis marianfoo

View GitHub Profile

Contributor License Agreement

Thank you for your interest in contributing to the Spreadsheet Importer project. This Contributor License Agreement ("CLA") is designed to ensure that you have the necessary rights to contribute to the project and that we can properly manage and distribute the software.

Agreement

By signing this CLA, you agree to the following terms:

  1. Definitions
  • "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Marian Zeis.
├── .github
└── livedemodown-template.md
├── README.md
├── docs
├── index.md
└── pages
│ ├── APIReference.md
│ ├── Button.md
│ ├── CHANGELOGSPREADSHEETIMPORTER.md
│ ├── CentralDeployment.md
@marianfoo
marianfoo / ui5
Last active February 24, 2025 20:36
This file has been truncated, but you can view the full file.
Developer Guide | PUBLIC
Document Version: 1.132 – 2025-01-23
SAPUI5: UI Development Toolkit for HTML5
SAPUI5© 2025 SAP SE or an SAP affiliate company. All rights reserved.
THE BEST RUN  
Content
SAPUI5: UI Development Toolkit for HTML5 ........................................ 6
What's New in SAPUI5 .......................................................... 7
What's New in SAPUI5 1.132 ................................................... 7
// ==UserScript==
// @name SAP ExtLogin override
// @namespace http://tampermonkey.net/
// @version 2025-01-04
// @description Override the vs code link with cursor://
// @match https://*.applicationstudio.cloud.sap/remote-login.html*
// @grant none
// @run-at document-idle
// ==/UserScript==
This file has been truncated, but you can view the full file.
[
{
"id": "269298",
"quality_score": 5,
"post_time": "2023-06-30T10:20:56.721+02:00",
"type": "message",
"author": {
"type": "user",
"id": "149621"
},
@marianfoo
marianfoo / posts.sql
Created January 8, 2018 19:10
Get overachieving posts
WITH avg_subreddit AS
(SELECT avg(score) avg_score,
subreddit
FROM `fh-bigquery.reddit_posts.2017_10`
WHERE subreddit IS NOT NULL
GROUP BY subreddit),
max_subredit AS
(SELECT avg(score) max_score,
rpo.subreddit
FROM `fh-bigquery.reddit_posts.2017_10` AS rpo
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
import commands
import sys
import time
# starting script
print "start"
# connection to the current device, and return a MonkeyDevice object
device = MonkeyRunner.waitForConnection()
public class Aufg71 {
public static double bildeMittelwert(double feld[]){
double temp = 0;
for (int i=0; i<feld.length; i++ ){
temp = temp + feld[i];
}
temp = temp / feld.length;
return temp;
}