View createDomElement.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//universal Create Element function | |
function createElement(type, props, ...children) { | |
let dom = document.createElement(type); | |
if (props) Object.assign(dom, props); | |
for (let child of children) { | |
if (typeof child != "string" && typeof child != "number") | |
dom.appendChild(child); | |
else dom.appendChild(document.createTextNode(child)); | |
} | |
return dom; |
View Vektorgrafik Bäume und Berg.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View KlassengruppeExtender.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new bayern.asv.reports.api.groovy.ScriptExecutor("",/ | |
import bayern.asv.reports.api.st.austritt.AustrittEintrittHelper; | |
import bayern.asv.reports.api.kl.datasources.schuelerliste.SchuelerlisteDatasourceConverter; | |
import bayern.asv.reports.api.st.migration.Migration; | |
import bayern.asv.reports.api.tools.arraylistdatasource.ArrayListDataSource; | |
import de.isb.svp.domain.pojo.Klasse; | |
import de.isb.svp.domain.pojo.Klassengruppe; | |
import de.isb.svp.domain.pojo.SchuelerSchuljahr; | |
import de.isb.base.business.context.Context; | |
import java.util.Date; |
View default.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="entry-details"> | |
{% if object.website %} | |
<a href="{{ object.website }}"><span class="newsTitle">{{ object.title }}</span></a> | |
{% else %} | |
<span class="name">{{ object.title }}</span> | |
{% endif %} | |
<div class="newsInfo"> | |
{{ object.info }} |
View default.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="flex-objects"> | |
<div class="text-center"> | |
<input class="form-input search" type="text" placeholder="Durchsuche die News" /> | |
<button class="button button-primary sort asc" data-sort="name"> | |
Sort by Name | |
</button> | |
</div> | |
{% set data = flex_entries.getData().toArray()|sort_by_key(title) %} | |
View news.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title: News | |
description: News für die Startseite erstellen. | |
type: flex-objects | |
# Flex Configuration | |
config: | |
# Administration Configuration | |
admin: | |
# Admin router (optional) | |
router: |
View test.irplus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<irplus> | |
<device manufacturer="Manufacturer" model="Model" columns="3" format="PRONTO_HEX" > | |
<button label="POWER" labelColor="FF000000" labelSize="20.0" backgroundColor="FFFFFFFF">0000 006D 0010 0000 000C 0044 000C 001C 000C 001C 000C 001C 000C 001C 000C 001C 000C 0044 000C 0044 000C 001C 000C 0044 000C 001C 000C 001C 000C 001C 000C 0044 000C 001C 000C 12FF</button> | |
</device> | |
</irplus> |
View 1. import xxx.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import random module | |
import random | |
tempRandom = random.randint(0, 9) | |
print(tempRandom) | |
# lists all functions of the random module | |
print(dir(random)) |
View non-blockingTkinter.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# non blocking Tkinter code -> uses of .update_idletasks() | |
# | |
import time | |
from tkinter import * | |
# Function: with timeout | |
def mySleep(): | |
text.insert(INSERT, "start sleep\n") |
View non-blockingAppJar.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Multithread AppJar example | |
import threading, time | |
from appJar import gui | |
def btn_normal(btnName): | |
app.addLabel("l1", "Label 1") | |
#call sleep Function for Label 2 in main thread | |
sleepFunction(3) |
NewerOlder