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
""" | |
This little script can generate a valid .vcf (vCard). It will ask you to fill | |
in some details and write the vcf-file. | |
""" | |
def main(): | |
print('Please enter contact details:') | |
first_name = input(' - First name : ') | |
last_name = input(' - Last name : ') | |
email = input(' - E-mail address : ') |
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
# directory.cfg | |
<dir | |
dir.corp.address="ldap://domaincontroller" | |
dir.corp.attribute.1.filter="" | |
dir.corp.attribute.1.label="Last Name" | |
dir.corp.attribute.1.name="sn" | |
dir.corp.attribute.1.sticky="0" | |
dir.corp.attribute.1.type="last_name" | |
dir.corp.attribute.2.filter="" |
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
#! /bin/bash | |
# | |
# Diffusion youtube avec ffmpeg | |
# Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée. | |
VBR="2500k" # Bitrate de la vidéo en sortie | |
FPS="30" # FPS de la vidéo en sortie | |
QUAL="medium" # Preset de qualité FFMPEG | |
YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube |