This file contains hidden or 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
(function() { | |
const whitelistedIndexes = [0, 10, 12, 14, 16, 18, 20, 22, 24]; | |
const getCsvLine = row => row.join(';'); | |
const removeRedundancy = value => value.replace('Darlehensbetrag ', ''); | |
const getValue = element => `"${element.innerHTML}"`; | |
const isWhitelisted = (element, index) => whitelistedIndexes.includes(index); |
This file contains hidden or 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
# This is a Apple Script; use AppleScript Editor to run this | |
# It will disable autodiscover feature of Mac Outlook for your account | |
# Adjust the variables "accountName" and "serverUrl" according to your needs | |
set accountName to "NameOfYourAccount" | |
set serverUrl to "https://your.domain.org/your/subpath/Exchange.asmx" | |
tell application "Microsoft Outlook" | |
set server of every other users folder account of exchange account accountName to serverUrl | |
set background autodiscover of every other users folder account of exchange account accountName to false |
This file contains hidden or 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
<link rel="import" href="../topeka-elements/category-images.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |