This article describes some of the limits that apply to Yammer.
Feature | Maximum limit |
---|---|
Number of users per Office 365 Group | 100,000 |
#!/bin/bash | |
# Create directory structure | |
echo "Creating project directories..." | |
# Replaced nginx with traefik, added traefik config dir | |
mkdir -p otel-kafka-clickhouse-stack/{traefik/conf,otel-collector,clickhouse-init,kafka-data,clickhouse-data} | |
cd otel-kafka-clickhouse-stack || exit 1 # Exit if cd fails | |
# Create .env file for secrets and configs |
#!/usr/bin/env python3 | |
import argparse | |
import logging | |
import numpy as np | |
import pandas as pd | |
import pyarrow.parquet as pq | |
from pathlib import Path | |
from typing import Union | |
import random |
COMPANY=Fiddler AI | |
ROLE=Product Manager | |
You are a deep research reasoning model with the ability to access relevant and | |
up-to-date information from the web. Please produce a structured report for a | |
"{{ROLE}}" about the company named "{{COMPANY}}". | |
The report must include the following sections and details: | |
1. Company Overview |
import argparse | |
import json | |
import re | |
import sys | |
import threading | |
import time | |
from concurrent.futures import ThreadPoolExecutor, as_completed | |
from datetime import datetime | |
import requests |
usage: yt-transcript-downloader.py [-h] [-k KEY] [-v VIDEO] [-c CHANNEL] [-p PLAYLIST] [-s SEARCH] [-o {relevance,date,rating,views}] [-m MAX_SIZE] [-a AGE] | |
Download YouTube transcripts and metadata in YAML format, | |
with an optional max YAML file size limit. | |
options: | |
-h, --help show this help message and exit | |
-k KEY, --key KEY YouTube API Key to use. Overrides YOUTUBE_API_KEY env variable if not set. | |
-v VIDEO, --video VIDEO | |
YouTube Video ID or URL |
#!/usr/bin/env python3 | |
import argparse | |
import io | |
import os | |
import sys | |
import mutagen | |
from mutagen.id3 import ID3, ID3NoHeaderError | |
from mutagen.id3 import error as ID3Error | |
from mutagen.mp3 import MP3 |
// macvolumes is a tool to classify macOS volumes by their physical connectivity | |
// and whether they are permanently installed or removable. It distinguishes between: | |
// - System volumes (the macOS boot volume) | |
// - Fixed volumes (built-in or permanently installed drives) | |
// - Removable volumes (external drives that can be disconnected) | |
// | |
// The tool uses macOS's standardized disk management structures to ensure | |
// consistent behavior across different Mac models. | |
package main |
#!/bin/bash | |
IFS=$'\n' | |
FOLDERS=$(find ./ -type d | grep _\(WAVs\)_) | |
for FOLDER in ${FOLDERS}; do | |
MV_FOLDER=${FOLDER//_\(WAVs\)_} | |
MV_FOLDER=${MV_FOLDER//_/ } | |
echo "mv ${FOLDER} ${MV_FOLDER} " |