Effective Date: January 31, 2026
Car Talky is a voice conversation app for Android Auto. This policy explains how the app handles your data.
| """ Small helper script to delete webhooks with specific keyword """ | |
| import requests | |
| # Replace 'your_access_token' with your actual GitLab access token | |
| GITLAB_TOKEN = '<adjust>' | |
| GITLAB_API_URL = 'https://gitlab.com/api/v4/' | |
| KEYWORD = 'bridgecrew' # Keyword to be searched for in Webhook URL | |
| # Headers for authentication |
| // Global debug setting | |
| const DEBUG = false; | |
| // Configuration for keywords and their corresponding colors, keywords must be lowercase | |
| const keywordColorMapping = { | |
| 'blockers': { | |
| keywords: ['dnb', 'blocker'], | |
| color: CalendarApp.EventColor.YELLOW | |
| }, | |
| 'travel': { |
| // Global debug setting | |
| const DEBUG = false; | |
| function prepostBlocker() { | |
| const pastDays = 1; | |
| const futureDays = 5; | |
| const now = new Date(); | |
| const startDate = new Date(now.setDate(now.getDate() - pastDays)); | |
| const endDate = new Date(now.setDate(now.getDate() + futureDays)); | |
| const myOrg = CalendarApp.getDefaultCalendar().getName().split("@")[1]; |
| // Original script: https://gist.github.com/leodevbro/2987e8874a18b2086ea6cc1aa3c494e8 | |
| // v2.5 | |
| // Google Apps Script is a coding language based on JavaScript. | |
| // This Apps Script code helps us to sort addresses by most threads. | |
| // A thread is a group of messages, as a conversation. | |
| const modes = { | |
| inbox: "inbox", // to analyze threads in the "Inbox" folder | |
| outbox: "outbox", // to analyze threads in the "Sent" folder |
| import React, { useEffect, useState } from "react"; | |
| import * as ethers from "ethers"; | |
| import './App.css'; | |
| import waveportal from './utils/WavePortal.json'; | |
| const App = () => { | |
| /* | |
| * State Property to store all waves | |
| */ |
| import React, { useEffect, useState } from "react"; | |
| import { ethers } from "ethers"; | |
| import './App.css'; | |
| import wavePortal from './utils/WavePortal.json'; | |
| const App = () => { | |
| const [currentAccount, setCurrentAccount] = useState(""); | |
| const [allWaves, setAllWaves] = useState([]); | |
| const contractAddress = "0xd5f08a0ae197482FA808cE84E00E97d940dBD26E"; |
| import pandas as pd | |
| import plotly.graph_objects as go | |
| data = [[6.96432, 50.93556, 'Cologne', 50]] # Deine Daten | |
| columns = ['lat', 'long', 'text', 'size'] | |
| df = pd.DataFrame(data, columns=columns) | |
| fig = go.Figure( | |
| ) |
| import typing | |
| import numpy as np | |
| def get_cell_assignment(data: typing.List[np.array]) -> np.array: | |
| """ | |
| Get cell assignment based on max value per multiple matrices. | |
| :param data: List of matrices (e.g. Received Power). | |
| :return: Cell assignment. | |
| """ |
| import numpy as np | |
| def outline_to_mask(line, x, y): | |
| """Create mask from outline contour | |
| Parameters | |
| ---------- | |
| line: array-like (N, 2) | |
| x, y: 1-D grid coordinates (input for meshgrid) |