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
tell application "Contacts" | |
repeat with i in people of group "Recipients" # Replace with name of group | |
tell application "Contacts" to get the value of emails of i | |
set addr to the value of emails of i | |
# Salutation is stored in the "nickname" field | |
set salut to the nickname of i | |
# Language is stored in the "note" field - E = English | |
set english to the note of i | |
tell application "Mail" |
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
%{#include <stdio.h> | |
%} | |
%state INSOLUTION | |
%% | |
<INITIAL>@s { BEGIN(INSOLUTION); } | |
<INSOLUTION>@e { BEGIN(INITIAL); } |
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
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> | |
#define BASE 48 | |
#define STOP_BASE 35 | |
int main(void) { | |
char line[128]; | |
int factor; |