testing slug find in filename

This commit is contained in:
Tykayn 2024-11-06 00:19:50 +01:00 committed by tykayn
parent a3ba26528b
commit 01e90048c1
1167 changed files with 4415 additions and 251760 deletions

Binary file not shown.

View File

@ -18,39 +18,43 @@ TITRE_INDEX = f" # {args.title} - Articles"
source_files_extension="org"
# Expression régulière pour extraire la date et le slug du nom de fichier org
regex = r"^(\d{4}(-\d{2}){2}|\d{8})(-[a-zA-Z0-9_-]+)\.gmi$"
regex = r"^(\d{4}(-?\d{2}){2}|\d{8})(-[a-zA-Z0-9_-]+)\.gmi$"
regex_orgroam = r"^(\d{14})_([a-zA-Z0-9_-]+)\.gmi$"
def find_year_and_slug(fichier):
fichier = fichier.replace('..','.')
print(f"find in {fichier} -------------")
match = re.match(regex_orgroam, fichier)
if match:
date_str = match.group(1)
annee = date_str[:4]
slug = match.group(2)
match = re.match(regex, fichier)
if match:
date_str = match.group(1)
# Convertir la date en objet datetime
if "-" in date_str:
date = datetime.datetime.strptime(date_str, "%Y-%m-%d")
else:
date = datetime.datetime.strptime(date_str, "%Y%m%d%H%M%S")
date_string_replaced = str(date).replace(' 00:00:00','')
slug = fichier.replace('.gmi','')
slug = slug.replace(date_string_replaced,'')
slug = enlever_premier_tiret_ou_underscore(slug)
annee = str(date.year).replace(' 00:00:00','')
else:
print('ERREUR aucun slug trouvé')
return [None,None,None]
print(f"//////////////////////////////////")
print(f"///////////////// /////////////////")
print(f"Fichier: {fichier}")
print(f"année: {annee}")
print(f"str(date): {str(date)}")
print(f"slug: {slug}")
print(f"chemin: {annee}/{slug}/")
return [date_str, annee,slug]
return [None,None,None]
def enlever_premier_tiret_ou_underscore(chaîne):

70
find_info_in_org.py Normal file
View File

@ -0,0 +1,70 @@
import os
import argparse
import re
import datetime
import shutil
def enlever_premier_tiret_ou_underscore(chaîne):
if chaîne.startswith('-') or chaîne.startswith('_'):
chaîne = chaîne[1:]
return chaîne
# Expression régulière pour extraire la date et le slug du nom de fichier org
regex = r"^(\d{4}(-?\d{2}){2}|\d{8})(-[a-zA-Z0-9_-]+)\.gmi$"
regex_orgroam = r"^(\d{14})_([a-zA-Z0-9_-]+)\.gmi$"
def find_year_and_slug(nom_de_fichier):
nom_de_fichier = nom_de_fichier.replace('..','.')
annee = ''
annee_presumed = nom_de_fichier[:4]
print(f"///////////////// /////////////////")
print(f"nom_de_fichier: {nom_de_fichier}")
if int(annee_presumed) >1970 and len(annee_presumed) == 4:
annee = str(annee_presumed)
print(f"année: {annee}")
match = re.match(regex_orgroam, nom_de_fichier)
if match:
date_str = match.group(1)
# annee = date_str[:4]
slug = match.group(2)
match = re.match(regex, nom_de_fichier)
if match:
date_str = match.group(1)
# Convertir la date en objet datetime
if "-" in date_str:
date = datetime.datetime.strptime(date_str, "%Y-%m-%d")
else:
date = datetime.datetime.strptime(date_str, "%Y%m%d%H%M%S")
date_string_replaced = str(date).replace(' 00:00:00','')
slug = nom_de_fichier.replace('.gmi','')
slug = slug.replace(date_string_replaced,'')
slug = enlever_premier_tiret_ou_underscore(slug)
annee = str(date.year).replace(' 00:00:00','')
else:
print('find_year_and_slug : ERREUR aucun slug trouvé')
return [None,annee,None]
print(f"str(date): {str(date)}")
print(f"slug: {slug}")
print(f"chemin: {annee}/{slug}/")
return [date_str, annee,slug]
def test_find_year_and_slug_short_date():
date_string, année, slug = find_year_and_slug("2024-10-12-machin_truc-chose.gmi")
assert slug == "machin_truc-chose"
assert année == "2024"
assert date_string == "2024-10-12"
def test_find_year_and_slug_orgroam_date():
date_string, année, slug = find_year_and_slug("20060925105123_tkblog_879_by-the-wall-intersubkey.gmi")
# assert slug == "by-the-wall-intersubkey"
assert année == "2006"
# assert date_string == "20060925"
test_find_year_and_slug_short_date()
test_find_year_and_slug_orgroam_date()

View File

@ -1,33 +0,0 @@
# cil_gometz - Articles
- - - - - - - - - - - - - - - - - - - - - - - -
# Navigation
-------------------------
# Articles en Français
-------------------------
=> 20211213135552_blog_cil_gometz_21_livres-numeriques-calibre-et-liseuses..gmi
=> 20211021114042_blog_cil_gometz_20_creation-graphique-au-cil..gmi
=> 20211021113826_blog_cil_gometz_19_facebook-est-mort-vive-la-decentralisation..gmi
=> 20211021113339_blog_cil_gometz_18_article-dans-le-castelgometzien-n264..gmi
=> 20210909190502_blog_cil_gometz_17_disponibilites-pour-la-rentree-du-cil..gmi
=> 20210617115715_blog_cil_gometz_16_article-pour-le-journal-de-gometz-juin-2021..gmi
=> 20210112160009_blog_cil_gometz_15_presentation-pour-creer-ses-propres-ebooks-a-partir-de-textes-en-markdown..gmi
=> 20200911154512_blog_cil_gometz_14_inscrivez-vous-pour-les-reunions-de-septembre..gmi
=> 20200909152039_blog_cil_gometz_12_panel-dactivites-de-la-rentree-post-covid19..gmi
=> 20200902174116_blog_cil_gometz_13_forum-des-assos-2020-dimanche-6-septembre..gmi
=> 20200803124344_blog_cil_gometz_11_ecrire-une-comptine-en-python-bonjour-le-jour..gmi
=> 20200712124742_blog_cil_gometz_10_70..gmi
=> 20200712121229_blog_cil_gometz_9_pacte-du-logiciel-libre-de-lapril-pour-les-elections..gmi
=> 20200518182500_blog_cil_gometz_8_codage-dans-%e2%84%a4-p%e2%84%a4..gmi
=> 20200518182215_blog_cil_gometz_7_activites-en-cours..gmi
=> 20200518181947_blog_cil_gometz_6_notre-liste-de-diffusion-framaliste..gmi
=> 20200518181634_blog_cil_gometz_4_cours-de-python..gmi
=> 20200518181618_blog_cil_gometz_5_les-amis-du-club..gmi
=> 20200518181355_blog_cil_gometz_3_libre-en-fete-2019..gmi
=> 20200518172243_blog_cil_gometz_2_installation-de-linux-version-ubuntu..gmi
=> 20200513215141_blog_cil_gometz_1_a-propos-du-cil-de-gometz-la-ville..gmi
# Articles in English
-------------------------

View File

@ -1,11 +0,0 @@
# dragonfeu_blog - Articles
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Navigation
-------------------------
=> index..gmi
# Articles en Français
-------------------------
=> 2024-11-02-coucou-gemini..gmi

View File

@ -1,15 +0,0 @@
# dragonfeu_blog - Articles
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Navigation
-------------------------
=> index..gmi
# Articles en Français
-------------------------
=> 2024-11-02-coucou-gemini..gmi
=> 2024-09-08-strategie-mitigation-accident-fusion-coeur-epr2..gmi
=> 2024-05-15-l-aventure-superphenix..gmi
=> 2023-06-10-recap-centrale-zaporijia..gmi
=> 2023-06-09-recapitulatif-contenu-threads..gmi

View File

@ -1,532 +0,0 @@
# tykayn_blog - Articles
- - - - - - - - - - - - - - - - - - - - - - - - -
# Navigation
-------------------------
# Articles en Français
-------------------------
=> 20200718145450_tkblog_997_..gmi
=> 20160726085509_tkblog_3_pitanime-2013..gmi
=> 20160724144354_tkblog_4_formule-de-compta..gmi
=> 20160716133439_tkblog_5_bossez-avec-de-la-haute-dfinition..gmi
=> 20151210091715_tkblog_6_pas-pas-de-l-illu-de-sapin-qzine..gmi
=> 20151204140259_tkblog_7_la-dcouverte-du-clitoris-en-couleur..gmi
=> 20151122204254_tkblog_8_une-rousse-une-langue..gmi
=> 20151118120933_tkblog_9_banana-woman..gmi
=> 20151118110014_tkblog_10_amazone-de-confort..gmi
=> 20151030111905_tkblog_11_yuri-et-boobies..gmi
=> 20151029103735_tkblog_12_sculptons-la-pierre..gmi
=> 20151024080403_tkblog_13_yuri-la-fentre..gmi
=> 20151022202008_tkblog_14_elle-dcouvre-une-chose-simple-pour-mettre-de-la-joie-dans-son-quotidien-dcouvrez-comment..gmi
=> 20151022194732_tkblog_15_omnomnomnom-du-15e..gmi
=> 20151013210406_tkblog_16_inktober-5..gmi
=> 20151013193532_tkblog_17_inktober-4..gmi
=> 20150808174137_tkblog_18_retour-de-venise..gmi
=> 20150712100548_tkblog_19_coucou-les-ptis-lapin..gmi
=> 20150502171226_tkblog_20_1er-mai-muguet..gmi
=> 20150302175724_tkblog_22_une-nana-qui-n-a-pas-froid..gmi
=> 20150211115823_tkblog_23_des-strips-pour-whatznext..gmi
=> 20141226110134_tkblog_24_l-expo-25-ans-de-ghibli-au-muse-art-ludique..gmi
=> 20141219125646_tkblog_25_histoire-de-l-art..gmi
=> 20141219120507_tkblog_26_quelques-conneries-2..gmi
=> 20141219120250_tkblog_27_recrutement-au-remix-job-days..gmi
=> 20141219085427_tkblog_28_un-bgaiement..gmi
=> 20141218172824_tkblog_29_chapin-de-noel..gmi
=> 20141125194227_tkblog_30_les-conventions-bruyantes..gmi
=> 20141105165643_tkblog_31_oh-je-suis-dsol..gmi
=> 20141011110752_tkblog_32_talon-d-achile..gmi
=> 20140922102307_tkblog_33_rose-au-coeur..gmi
=> 20140919145739_tkblog_34_salet-de-standards-esthtiques..gmi
=> 20140919143810_tkblog_35_27-ans-de-folies..gmi
=> 20140919133751_tkblog_36_tropique-noir..gmi
=> 20140919132156_tkblog_37_des-rves-et-des-tiroirs..gmi
=> 20140919130802_tkblog_38_la-rvolution-des-cheveux..gmi
=> 20140919130237_tkblog_39_pinces-d-affiche..gmi
=> 20140813121719_tkblog_40_philo-gears..gmi
=> 20140729143004_tkblog_41_rsultats-de-sondages-sur-la-masturbation..gmi
=> 20140729142000_tkblog_42_fornication-avec-une-carpette..gmi
=> 20140729141900_tkblog_43_le-mariage-geisha..gmi
=> 20140729141743_tkblog_44_celle-qui-aimait-la-fourrure..gmi
=> 20140729141624_tkblog_45_un-yuri-de-bisou-sur-l-paule..gmi
=> 20140729141454_tkblog_46_l-rotisme-est-dans-l-oeil-du-lecteur..gmi
=> 20140729140638_tkblog_47_les-vibrations-d-une-machine-laver..gmi
=> 20140713223105_tkblog_48_interlude-post-japan-expo..gmi
=> 20140607200826_tkblog_49_portal-2-fanart..gmi
=> 20140426172525_tkblog_50_le-binaire..gmi
=> 20140420112236_tkblog_51_supportez-le-tykayn-blog..gmi
=> 20140419190300_tkblog_52_compte-rendu-du-festival-siana..gmi
=> 20140419185646_tkblog_53_fanart-intouchables..gmi
=> 20140411210234_tkblog_54_une-ddicace-udoduf..gmi
=> 20140328232124_tkblog_55_tous-poil..gmi
=> 20140327212800_tkblog_56_recherche-de-visuels-graphique-pour-le-droit-de-vote..gmi
=> 20140313133936_tkblog_57_je-serai-au-salon-du-blog-siana-d-evry-le-12-avril-2014..gmi
=> 20140303150039_tkblog_58_concours-affiche-pitanime-2014..gmi
=> 20140216160127_tkblog_59_dessiner-sous-linux-avec-la-pression-de-la-tablette..gmi
=> 20140131110928_tkblog_60_freebies-sur-portfolio..gmi
=> 20140128182936_tkblog_61_24-h-de-la-bd-2014..gmi
=> 20140114164130_tkblog_62_commission-game-of-thrones..gmi
=> 20131128151107_tkblog_63_derp-du-bengale..gmi
=> 20131128150915_tkblog_64_neko-land-suite-suite-suite-dit-le-cochon-d-inde..gmi
=> 20131128150419_tkblog_65_sextoys-fanarts..gmi
=> 20131128150212_tkblog_66_par-la-barbichette..gmi
=> 20131128145809_tkblog_67_faolan-tu-veux..gmi
=> 20131128145141_tkblog_68_chatte-sur-un-toit-brulant-en-flammes..gmi
=> 20131128144713_tkblog_69_aprs-les-boobs-les-fesses..gmi
=> 20131108145019_tkblog_70_yaoi-yuri-conv-sketches..gmi
=> 20131108144707_tkblog_71_couple-yuri..gmi
=> 20131108143847_tkblog_72_dora-l-exploratrice-version-adulte..gmi
=> 20131108142942_tkblog_73_hommage-antoine-daniel..gmi
=> 20131108142406_tkblog_74_yaoi-bob-l-ponge..gmi
=> 20131025163711_tkblog_75_a-donne-faim..gmi
=> 20131020162456_tkblog_76_bouchon-de-cochons-d-inde..gmi
=> 20130930102054_tkblog_77_festiblog-2013..gmi
=> 20130916152054_tkblog_78_un-recueil-papier-du-tykayn-blog-vortex-chats..gmi
=> 20130916151400_tkblog_79_anticipation-de-youtube..gmi
=> 20130823142433_tkblog_80_joyeux-21-ans-de-hadh..gmi
=> 20130822204456_tkblog_81_projet-omg-chapitre-1-lisible-en-ligne..gmi
=> 20130815101426_tkblog_82_100-likes-sur-facebook..gmi
=> 20130811123758_tkblog_83_dessin-du-sud..gmi
=> 20130731120329_tkblog_84_coucou-le-pain-et-ma-main-dans-ta-gueule..gmi
=> 20130717202714_tkblog_85_sport-d-t..gmi
=> 20130626175216_tkblog_251_mtro-con-vivial..gmi
=> 20130611184556_tkblog_366_caricatures-fugu-chaulnes..gmi
=> 20130424201802_tkblog_86_quelques-dessins..gmi
=> 20130228202537_tkblog_120_rvolution..gmi
=> 20130222210947_tkblog_126_pas-pas-illustration-de-sduction..gmi
=> 20130214182736_tkblog_107_y-avait-long..gmi
=> 20130122224329_tkblog_138_japan-nantes..gmi
=> 20121226031016_tkblog_153_gnrateur-de-phrases-de-sduction-de-haut-niveau..gmi
=> 20121226030127_tkblog_145_bonnes-ftes..gmi
=> 20121201175359_tkblog_149_anim-est-2012..gmi
=> 20121119201605_tkblog_156_harajuku-2012..gmi
=> 20121112223320_tkblog_165_et-dans-100-ans..gmi
=> 20121105210008_tkblog_250_quai-des-bulles-2012-saint-malo..gmi
=> 20121020081814_tkblog_210_votez-sur-facebook-pour-mon-illu-de-concours-ma-bulle-pliiiize..gmi
=> 20121013145858_tkblog_152_art-to-play-concours-ma-bulle..gmi
=> 20121007195401_tkblog_128_zelda-rap-by-smoosh..gmi
=> 20121002225545_tkblog_183_keanu-parano-sur-le-vote..gmi
=> 20120928174528_tkblog_186_gros-cherche-une-nouvelle-maison..gmi
=> 20120924032603_tkblog_130_by-the-wall-en-statue..gmi
=> 20120921204647_tkblog_189_appli-pomes-et-potes..gmi
=> 20120917123104_tkblog_241_procs-apple..gmi
=> 20120907010930_tkblog_246_anniv-20-ans-de-hadh..gmi
=> 20120903141946_tkblog_176_1-an-de-ptit-chat..gmi
=> 20120903123543_tkblog_89_3615-usul-et-le-t-shirt-metal-gear..gmi
=> 20120830181831_tkblog_190_fin-d-aout..gmi
=> 20120821181723_tkblog_191_comment-faire-des-conomies..gmi
=> 20120808224754_tkblog_90_voldemort-sa-carte-d-identit..gmi
=> 20120808220030_tkblog_192_closeups-d-travers-le-tissu..gmi
=> 20120726144351_tkblog_197_truc-6-tl-connecte..gmi
=> 20120726142833_tkblog_219_trucs-5-comment-s-amliorer-en-dessin..gmi
=> 20120725194624_tkblog_199_truc-4-pouvoir-de-non-achat..gmi
=> 20120715204728_tkblog_198_japan-expo-2012..gmi
=> 20120627205528_tkblog_220_geek-faeries-compte-rendu..gmi
=> 20120619194540_tkblog_225_allez-voir-l-bas-si-j-y-suis..gmi
=> 20120613012252_tkblog_207_projet-17-mai..gmi
=> 20120613005404_tkblog_232_du-desu..gmi
=> 20120607210254_tkblog_234_amiens-festival-bd-compte-rendu..gmi
=> 20120530152430_tkblog_319_pitanime-2012..gmi
=> 20120516141854_tkblog_206_corbeil-essonnes-festival-de-bd..gmi
=> 20120501082733_tkblog_217_rangement-et-photos-de-lyce..gmi
=> 20120429174217_tkblog_143_concours-illustration-projet-omg..gmi
=> 20120405235234_tkblog_227_scandale..gmi
=> 20120401173256_tkblog_224_mars-fini..gmi
=> 20120319173933_tkblog_226_29-ans-de-poulpe..gmi
=> 20120313131653_tkblog_233_dessins-du-weekend..gmi
=> 20120313130957_tkblog_203_sketches-comme-a..gmi
=> 20120313130036_tkblog_238_bon-apptit-sign-mariposa..gmi
=> 20120313125712_tkblog_248_dessin-anim-awesome..gmi
=> 20120313125224_tkblog_240_fruit-ninja-version-micanou..gmi
=> 20120305161852_tkblog_239_un-blog-un-arbre..gmi
=> 20120229225156_tkblog_242_la-moindre-des-choses..gmi
=> 20120227181428_tkblog_243_visite-mdicale-of-doom..gmi
=> 20120221222528_tkblog_244_talons-hauts..gmi
=> 20120213224805_tkblog_245_what-is-st-valentin..gmi
=> 20120207214951_tkblog_249_epic-sketchcrawl-paris..gmi
=> 20120204143457_tkblog_252_test-android..gmi
=> 20120131151039_tkblog_300_24-heures-de-la-bande-dessine-parse-it-complet..gmi
=> 20120125143406_tkblog_301_24-heures-de-la-bande-dessine-parse-it..gmi
=> 20120120015259_tkblog_304_blackout-day-l-lyse..gmi
=> 20120120011320_tkblog_303_truc-3-typo-complot..gmi
=> 20120114173057_tkblog_305_bon-2012-joie-et-flood-sur-vous..gmi
=> 20120107135134_tkblog_306_feuille-test-imprimeur..gmi
=> 20111231013304_tkblog_307_bye-bye-2011..gmi
=> 20111231011901_tkblog_309_les-samourais-du-quai-branly..gmi
=> 20111231011835_tkblog_308_des-fesses-satanas-et-diabolo..gmi
=> 20111231011701_tkblog_310_dessins-du-louvre..gmi
=> 20111229224403_tkblog_311_noel-power..gmi
=> 20111219212747_tkblog_254_rsultats-concours-q..gmi
=> 20111217210336_tkblog_295_fin-du-concours-de-couverture-q-5..gmi
=> 20111213173759_tkblog_318_l-arnaque-du-mois..gmi
=> 20111210111349_tkblog_313_kit-de-survie-en-cole-d-art..gmi
=> 20111206063307_tkblog_312_l-importance-du-sketching..gmi
=> 20111203040605_tkblog_315_truc-2-l-esclavagisme-des-machines..gmi
=> 20111201195907_tkblog_314_truc-1-les-intersticiels-linguistiques..gmi
=> 20111130175657_tkblog_316_l-arbre-et-l-innocent-1-page-bd..gmi
=> 20111129231854_tkblog_253_3-autres-blogs-miam-informageek-et-ailleurs..gmi
=> 20111127212359_tkblog_236_tandem-jeunesse-9-a-c-est-fait..gmi
=> 20111123225433_tkblog_320_tandem-jeunesse-9-bientt-fini..gmi
=> 20111123223706_tkblog_235_trois-poques-de-la-vie..gmi
=> 20111120211743_tkblog_321_journaux-consternants..gmi
=> 20111116163945_tkblog_322_dessins-d-anim-est..gmi
=> 20111114212506_tkblog_325_anim-est-2011-compte-rendu..gmi
=> 20111109012947_tkblog_360_steampunk-halloween-et-tribale-fusion..gmi
=> 20111107141419_tkblog_135_tk-tabs-menu-en-onglets-facile-utiliser..gmi
=> 20111103174651_tkblog_336_jserai-anim-est-2011..gmi
=> 20111103121312_tkblog_334_une-illu-porn-de-plus-chez-les-carnets-pornographiques..gmi
=> 20111102110215_tkblog_337_ddicace-aux-rcents-parents..gmi
=> 20111101184735_tkblog_338_comment-dire-internet-explorer-qu-il-est-trop-vieux..gmi
=> 20111028121416_tkblog_335_thunderbird-dbloquer-les-images-distantes..gmi
=> 20111026173424_tkblog_340_canal-reportage-sketchcrawl-la-villette..gmi
=> 20111023175023_tkblog_201_mmo-typo-caractres-spciaux..gmi
=> 20111023141706_tkblog_202_clopeurs-post-classe..gmi
=> 20111023085821_tkblog_342_gnrateur-de-personnages..gmi
=> 20111023085135_tkblog_344_kamasutra-au-hasard..gmi
=> 20111021170323_tkblog_343_darwin-chez-interpol..gmi
=> 20111017111125_tkblog_339_photomontages-pourris..gmi
=> 20111017100005_tkblog_290_33e-sketchcrawl-paris-au-parc-de-la-villette..gmi
=> 20111010181736_tkblog_350_du-neuf-et-des-dessins..gmi
=> 20111010175301_tkblog_349_freddy-mercury-veut-faire-du-vlo..gmi
=> 20111010174832_tkblog_371_diffrence-entre-pq-et-sopalin..gmi
=> 20111003114921_tkblog_161_studio-aardman-et-bercy..gmi
=> 20110929180107_tkblog_354_aquarelles-de-festiblog-2011..gmi
=> 20110927205329_tkblog_352_jesus-rocks-the-metric..gmi
=> 20110927205024_tkblog_356_apprendre-la-politesse..gmi
=> 20110923051951_tkblog_195_css-joke..gmi
=> 20110922092712_tkblog_160_festiblog-zach-weiner..gmi
=> 20110922075711_tkblog_355_aujourdhui-je-suis-au-festiblog-en-squatteur-bien-sr-et-toi-pas..gmi
=> 20110922024255_tkblog_357_eola-du-projet-omg-et-le-hentai..gmi
=> 20110921213849_tkblog_358_tykayn-golden-blog-award..gmi
=> 20110920210511_tkblog_133_humour-prohib..gmi
=> 20110918165330_tkblog_359_un-nouveau-chat-dans-le-vortex..gmi
=> 20110916153857_tkblog_171_roux-pride..gmi
=> 20110914205802_tkblog_137_freddy-mercury-fait-la-vaisselle..gmi
=> 20110914205444_tkblog_364_dessins-d-after-harajuku..gmi
=> 20110912230904_tkblog_291_diplme-et-dessins-de-harajuku-2011..gmi
=> 20110904111328_tkblog_367_bientt-harajuku-2011..gmi
=> 20110829033115_tkblog_147_optimise-tes-relations..gmi
=> 20110824001501_tkblog_369_nouvelle-blogroll..gmi
=> 20110822131000_tkblog_370_vadrouille-au-parc-monceau..gmi
=> 20110817132156_tkblog_326_crdules-nous..gmi
=> 20110814101256_tkblog_159_hadh-anniv..gmi
=> 20110814053121_tkblog_173_back-return-to-the-future..gmi
=> 20110813145936_tkblog_379_blogroll..gmi
=> 20110810001017_tkblog_317_url-maker-tuto-vido..gmi
=> 20110808211413_tkblog_363_vanit-de-la-couette..gmi
=> 20110802182356_tkblog_361_les-larmes-de-miel-manolosanctis..gmi
=> 20110727051458_tkblog_247_bercy-village-dessins..gmi
=> 20110724231342_tkblog_174_sketchcrawl..gmi
=> 20110722092947_tkblog_330_projets-du-moment-2..gmi
=> 20110720152310_tkblog_157_nouvelles-bannires-et-mnagerie..gmi
=> 20110716110000_tkblog_296_recueil-anonyme-de-fantasmes..gmi
=> 20110707212956_tkblog_155_cosplays-de-japan-expo-2011..gmi
=> 20110707184119_tkblog_297_dessins-de-japan-expo-2011..gmi
=> 20110707183636_tkblog_353_un-appart-vide..gmi
=> 20110624120214_tkblog_255_ge.gmies-clooney-et-autres-conneries..gmi
=> 20110624103334_tkblog_177_vernissage-ds-18-heures-au-jacques-franck..gmi
=> 20110622073135_tkblog_230_feuille-de-repre-pour-bd..gmi
=> 20110617085041_tkblog_180_stase-dans-une-boite-teaser..gmi
=> 20110606164537_tkblog_257_geek-faeries-les-gens-du-rve..gmi
=> 20110602190404_tkblog_113_go-go-go-geek-faeries..gmi
=> 20110601201842_tkblog_178_aquarelles-et-portal-2..gmi
=> 20110523195432_tkblog_298_weekend-buttes-chaumont..gmi
=> 20110512040410_tkblog_151_eve-rest-histoire-courte..gmi
=> 20110511160843_tkblog_144_firefox-4-syncronisation-et-add-on..gmi
=> 20110508155132_tkblog_216_croquis-rapides-la-gare-du-midi..gmi
=> 20110502220132_tkblog_164_fouine-a-parl..gmi
=> 20110501031535_tkblog_200_demotivators-de-moscou..gmi
=> 20110501023804_tkblog_218_chine-mtro-et-signalisation..gmi
=> 20110501012153_tkblog_237_aquarelles-relles-relles..gmi
=> 20110426215400_tkblog_169_corps-plastins-de-l-ucl..gmi
=> 20110325082708_tkblog_231_vibromasseur-si-si..gmi
=> 20110325032322_tkblog_142_tuto-photo-stro-3d-avec-appareil-numrique-simple..gmi
=> 20110317012043_tkblog_256_portes-ouvertes-esa-saint-luc-et-made-in-asia..gmi
=> 20110315214801_tkblog_168_banquier-over-nine-thousand..gmi
=> 20110311221608_tkblog_347_leon-de-marketing-pour-devenir-riche-avec-son-magasin..gmi
=> 20110307164639_tkblog_348_bd-gauche-retouche-galerie-mieux..gmi
=> 20110307122509_tkblog_346_gille-sortant-des-vlams..gmi
=> 20110306015301_tkblog_182_catzilla-en-gravure-sur-mtal..gmi
=> 20110306014033_tkblog_362_jakadi..gmi
=> 20110226185509_tkblog_211_pour-draguer-une-femme-nue-ne-la-draguez-pas-merci..gmi
=> 20110217165952_tkblog_123_quelques-conneries..gmi
=> 20110217165525_tkblog_368_tykayn-et-la-grace..gmi
=> 20110217164731_tkblog_179_badminton-punishement..gmi
=> 20110213051713_tkblog_332_conseils-relationnels..gmi
=> 20110212185515_tkblog_166_butt-man-pacman..gmi
=> 20110208171829_tkblog_114_nus-de-femmes-nues..gmi
=> 20110131194029_tkblog_209_j-ai-rien-me-mettre-dit-la-femme..gmi
=> 20110118232724_tkblog_158_oubapo-reprise..gmi
=> 20110104125825_tkblog_154_hacking-de-frigo..gmi
=> 20110103212809_tkblog_175_repas-de-nouvel-an..gmi
=> 20110102111003_tkblog_345_le-syndrome-de-patou..gmi
=> 20101224013119_tkblog_103_photos-fin-d-anne-2010-en-belgique..gmi
=> 20101223002927_tkblog_341_les-pneus-sados-maso-bondage..gmi
=> 20101127200853_tkblog_185_a-cote-trs-trs-cher-de-couler-un-bronze..gmi
=> 20101127200646_tkblog_101_encore-des-femmes-poil-nues..gmi
=> 20101120175109_tkblog_129_demotivational-stuff..gmi
=> 20101113060618_tkblog_125_salon-des-arts-mnagers-2010-charleroi..gmi
=> 20101113054559_tkblog_134_bouteille-message-saint-luc..gmi
=> 20101110165542_tkblog_258_plusieurs-points-d-exclamation-sont-le-signe-d-une-me-drange..gmi
=> 20101026234131_tkblog_259_erreur-500..gmi
=> 20101016123750_tkblog_562_adieu-ppte-le-chat..gmi
=> 20101015211826_tkblog_561_squatt-chez-garga..gmi
=> 20101012230651_tkblog_559_i-whistle..gmi
=> 20101010164826_tkblog_560_innocente-jeunesse..gmi
=> 20101010160545_tkblog_554_10-oct-2010-sta-dire-42..gmi
=> 20101007183013_tkblog_551_bd3-splinter-la-bibliothque..gmi
=> 20101007175555_tkblog_550_famapoelle-pour-monsieur-to..gmi
=> 20101003230153_tkblog_548_love-story-entre-anne-lise-et-hadh..gmi
=> 20101003195851_tkblog_549_noob-user..gmi
=> 20101003140340_tkblog_547_rdaction-de-chapitre-pour-bd-avec-tableau-excel-open-office..gmi
=> 20101002123031_tkblog_546_optimise-ton-supermarch..gmi
=> 20100928195721_tkblog_545_mangasse-boulet..gmi
=> 20100927181955_tkblog_196_festiblog-2010..gmi
=> 20100924224049_tkblog_542_salut-mali-bercy..gmi
=> 20100922111437_tkblog_540_les-gaufres-dgueulasses..gmi
=> 20100920183815_tkblog_539_adage-de-programmeux..gmi
=> 20100919190829_tkblog_261_l-amour-c-est-pas-pour-les-enfants..gmi
=> 20100919011824_tkblog_543_pas-assez-de-billets-de-blog..gmi
=> 20100909000903_tkblog_536_sex-toys-du-peuple..gmi
=> 20100909000218_tkblog_535_signaltique-des-latrines..gmi
=> 20100908120515_tkblog_538_buttes-chaumont-2010..gmi
=> 20100907200756_tkblog_534_dans-le-futur..gmi
=> 20100906204035_tkblog_262_ddicaces-q-d-t..gmi
=> 20100902152422_tkblog_533_pourquoi-les-hommes-pissent-debout..gmi
=> 20100831193311_tkblog_532_tykayn-hadh-land..gmi
=> 20100824000809_tkblog_528_joyeux-18-ans-de-hadh..gmi
=> 20100821151902_tkblog_263_concours-q-fin-dans-10-jours..gmi
=> 20100821150858_tkblog_523_concours-couverture-q-4-fin-dans-3-semaines..gmi
=> 20100819214418_tkblog_530_confusion-pirate..gmi
=> 20100817192342_tkblog_531_proposition-incandescente..gmi
=> 20100816214604_tkblog_524_sexuelle..gmi
=> 20100816214302_tkblog_526_de-lekter-ses-pieds..gmi
=> 20100816213924_tkblog_522_ppte-le-chat-s-life-couverture-de-livre..gmi
=> 20100814221618_tkblog_520_vadrouille..gmi
=> 20100814221306_tkblog_519_une-nuit-pendant-la-japan-expo..gmi
=> 20100811211039_tkblog_181_la-maison-du-biscuit-normandie..gmi
=> 20100811205821_tkblog_468_forest-adventure-normandie..gmi
=> 20100807205823_tkblog_516_conseil-relationnel-du-jour..gmi
=> 20100730211514_tkblog_517_est-ce-que-les-oiseaux-ont-le-vertige..gmi
=> 20100724154833_tkblog_514_hadh-m-a-fait-une-ddicace..gmi
=> 20100715002723_tkblog_511_scrabble..gmi
=> 20100714124043_tkblog_512_je-collectionne-les-canards..gmi
=> 20100713212511_tkblog_515_mots-cls-de-l-t..gmi
=> 20100629153927_tkblog_265_badges-q..gmi
=> 20100628232811_tkblog_558_lon-le-tueur-qui-boit-du-lait..gmi
=> 20100626040746_tkblog_508_icones-todojsc-youpi..gmi
=> 20100624233034_tkblog_266_how-i-met-cobie-smulders..gmi
=> 20100622181630_tkblog_267_tweet-tweet-et-q3-imprim..gmi
=> 20100617235342_tkblog_505_surfusion-bd-jury-fin-d-anne-2010..gmi
=> 20100616195404_tkblog_499_confiotte..gmi
=> 20100609230248_tkblog_93_cours-du-soir..gmi
=> 20100609005106_tkblog_500_pourquoi-rflchir..gmi
=> 20100606142229_tkblog_501_nus-du-soir..gmi
=> 20100601155427_tkblog_498_sous-vtements-intelligents..gmi
=> 20100527143438_tkblog_496_exposition-abcdaire-de-l-italie..gmi
=> 20100525203918_tkblog_556_le-mythe-de-la-maman-et-de-la-putain..gmi
=> 20100523021200_tkblog_268_q-badges..gmi
=> 20100520024455_tkblog_490_tykayn-par-hadh..gmi
=> 20100505180249_tkblog_489_hadh-dans-le-vortex-chatte..gmi
=> 20100502194153_tkblog_488_tykayn-dans-l-quipe-de-what-z-next..gmi
=> 20100502182014_tkblog_477_acide-dsoxyribonuclique..gmi
=> 20100501001817_tkblog_476_tykayn-violence-ou-calme..gmi
=> 20100501000341_tkblog_213_vacamente..gmi
=> 20100430235753_tkblog_486_on-est-tous-des-imbciles..gmi
=> 20100430234735_tkblog_503_karam-s-en-bat-les-quenouilles..gmi
=> 20100430191746_tkblog_479_ditions-du-puits..gmi
=> 20100430184533_tkblog_109_truc-de-ouf..gmi
=> 20100430174434_tkblog_525_.gmiie-chez-les-erasmus..gmi
=> 20100426153517_tkblog_472_fanart-candy-trash..gmi
=> 20100426003955_tkblog_116_paintchat-ice-cream..gmi
=> 20100424150034_tkblog_208_how-i-met-your-mother-vf..gmi
=> 20100424145733_tkblog_284_q-est-un-ensemble-naturel..gmi
=> 20100424145233_tkblog_487_vaisselle-des-lamentations..gmi
=> 20100424144949_tkblog_537_plus-l-infini-et-au-del..gmi
=> 20100424144606_tkblog_459_vampires..gmi
=> 20100424144401_tkblog_482_draguer-une-mathmaticienne..gmi
=> 20100424141355_tkblog_457_embauche-et-en-finesse..gmi
=> 20100420192842_tkblog_456_salut-patrick-xkcd-style..gmi
=> 20100420192423_tkblog_460_trailer-bd-omg-chap3..gmi
=> 20100420192210_tkblog_458_steam-punk..gmi
=> 20100420000747_tkblog_455_tea-for-two..gmi
=> 20100418094918_tkblog_271_chapitre-3-omg-wouala..gmi
=> 20100413204240_tkblog_454_ppte-voyage-au-printemps..gmi
=> 20100409121634_tkblog_187_le-bleu-est-une-couleur-chaude..gmi
=> 20100405003841_tkblog_450_caf-cadeau..gmi
=> 20100405003055_tkblog_448_1er-avril..gmi
=> 20100403220946_tkblog_449_maintenant-commence-l-avenir..gmi
=> 20100401190657_tkblog_447_dcoupage-lisible..gmi
=> 20100401184236_tkblog_445_bd-finie-les-larmes-de-miel..gmi
=> 20100325142139_tkblog_446_tiramisu-tk-land..gmi
=> 20100324010955_tkblog_444_arcadi-s-art..gmi
=> 20100324010739_tkblog_443_a-spasse-comme-a-en-bd2..gmi
=> 20100322214720_tkblog_439_culture-tl..gmi
=> 20100318205545_tkblog_436_rome-et-ses-conneries..gmi
=> 20100318204936_tkblog_438_marbres-de-rome..gmi
=> 20100310181108_tkblog_435_pluuuuuuus-de-dessins..gmi
=> 20100310180308_tkblog_510_un-soir-au-maman-lambic-de-saint-gilles..gmi
=> 20100310180107_tkblog_433_mine-de-plomb-youpi..gmi
=> 20100309003208_tkblog_434_speed-writing-et-painting..gmi
=> 20100304193059_tkblog_431_rteau..gmi
=> 20100304192849_tkblog_432_muse-des-instruments-de-musique..gmi
=> 20100304191943_tkblog_430_nus-de-jsus..gmi
=> 20100304191558_tkblog_429_pinceau-japonais-cartouche-d-encre-communiste..gmi
=> 20100301214744_tkblog_276_filles-chattes-chapitre-3-coming-soon..gmi
=> 20100225163110_tkblog_426_micro-onde..gmi
=> 20100225152419_tkblog_427_janvier-et-fvrier-2010-en-images..gmi
=> 20100223160542_tkblog_428_anniv-lauwenmark..gmi
=> 20100216110841_tkblog_464_i-am-haunted-by-dreamses..gmi
=> 20100214033124_tkblog_424_vraie-note-de-blog-bd..gmi
=> 20100213171501_tkblog_423_soire-communiste..gmi
=> 20100211014611_tkblog_422_apperu-bd-les-larmes-de-miel..gmi
=> 20100208235259_tkblog_421_apperu-projet-omg-pour-fanzine-q-3..gmi
=> 20100130163330_tkblog_420_les-dbuts-de-scnario-d-un-best-seller..gmi
=> 20100129213918_tkblog_222_muse-horta-2010..gmi
=> 20100129154243_tkblog_272_koan-koan-dit-le-canard..gmi
=> 20100127123635_tkblog_377_l-nigme-des-trois-maisons..gmi
=> 20100127123134_tkblog_269_au-bar-avec-pacotine-aka-angie..gmi
=> 20100121200030_tkblog_376_bouddha-c-est-le-crocodile-qui-ne-se-lche-pas-le-dos..gmi
=> 20100121195905_tkblog_451_l-argent-du-beurre-et-le-sourire-du-modle-de-nu..gmi
=> 20100121194049_tkblog_372_concept-art-tichaud..gmi
=> 20100121191809_tkblog_375_pdagogie-chinoise-il-parait..gmi
=> 20100111200905_tkblog_373_j-demande-l-avis-du-public..gmi
=> 20100109202638_tkblog_378_aber-nol-milliardaire-gnreux..gmi
=> 20100109201552_tkblog_380_tram-stop..gmi
=> 20100108015021_tkblog_381_illumination-inutile..gmi
=> 20091229184724_tkblog_270_appel-tmoins-homosexuels-bisexuels-et-tout-le-reste..gmi
=> 20091228112148_tkblog_383_woot-movies..gmi
=> 20091212050254_tkblog_385_andrea-boceli-et-aber-le-miliardaire..gmi
=> 20091212045626_tkblog_384_i-pod-by-tk..gmi
=> 20091210232148_tkblog_140_schma-sociologique..gmi
=> 20091210172230_tkblog_386_anatomie-et-nus-nov-dec09..gmi
=> 20091208013829_tkblog_388_scientifiquement-prouv..gmi
=> 20091208011919_tkblog_387_ils-pourraient-tre-les-oiseaux-de-daria..gmi
=> 20091206175501_tkblog_389_oh-une-bad-girl..gmi
=> 20091130172626_tkblog_273_stairway-to-heaven..gmi
=> 20091126151455_tkblog_394_gteau-chocolat-framboises-spcial-tk..gmi
=> 20091123180715_tkblog_395_mr-morality-l-homme-sage..gmi
=> 20091118190507_tkblog_397_la-boucherie-d-anderlecht-bd-en-couleurs..gmi
=> 20091118134053_tkblog_139_tuto-perspective-par-mesure..gmi
=> 20091118133313_tkblog_392_un-peu-de-mmoria..gmi
=> 20091118132407_tkblog_398_les-fleurs-du-cmal..gmi
=> 20091118132136_tkblog_396_fanart-yugioh..gmi
=> 20091118131417_tkblog_399_vous-tes-pris-de-suivre-les-cours..gmi
=> 20091118131049_tkblog_205_la-vache-qui-rira-moins-avec-une-bille-dans-le-fromage..gmi
=> 20091118130713_tkblog_401_aber-chez-les-anglais..gmi
=> 20091118125652_tkblog_400_bientt-nol..gmi
=> 20091118125446_tkblog_393_toi-aussi-retrouve-aber-n-importe-o..gmi
=> 20091118125157_tkblog_403_tout-est-relatif-selon-aber..gmi
=> 20091118125053_tkblog_104_fte-aber..gmi
=> 20091118124651_tkblog_402_l-heure-du-th-pour-aber..gmi
=> 20091116084059_tkblog_404_alchimie-boulangerie..gmi
=> 20091115045829_tkblog_162_dessins-de-tous..gmi
=> 20091111044122_tkblog_406_la-vrit-sur-les-anglais..gmi
=> 20091111043602_tkblog_407_aber-contre-le-samourai..gmi
=> 20091102041714_tkblog_409_nano-07-voyages-en-khelens-livre-1-version2..gmi
=> 20091030220402_tkblog_411_vis-ticket..gmi
=> 20091027200039_tkblog_410_aber-dans-un-nourriture-rapide..gmi
=> 20091025005406_tkblog_412_sweets-lineless..gmi
=> 20091024214344_tkblog_414_halouwine-de-merde..gmi
=> 20091022130953_tkblog_416_comme-a-se-prononce..gmi
=> 20091017174707_tkblog_415_aber-le-philosophe-miliardaire..gmi
=> 20091015144049_tkblog_413_aber-le-milliardaire-qui-aide-les-pauvres..gmi
=> 20091015134429_tkblog_418_simples-souvenirs-de-lyce..gmi
=> 20091012201813_tkblog_419_aquarelles-bonsoir..gmi
=> 20091009195102_tkblog_105_tuto-comment-dessiner-un-espace-reflet..gmi
=> 20091009120623_tkblog_425_mets-du-punk-dans-tes-cours-de-philo..gmi
=> 20091006204124_tkblog_437_i-dizayne-your-mum..gmi
=> 20091005212419_tkblog_111_anatomie-dtails-de-visage..gmi
=> 20091001031255_tkblog_452_critiquer-storyboard-boucherie..gmi
=> 20090930231510_tkblog_453_douzime-prcepte-les-jolies-filles-mettent-moins-de-parfum..gmi
=> 20090928233232_tkblog_465_pinceau-d-exclamation..gmi
=> 20090927041207_tkblog_504_aquarelle-nabaztag..gmi
=> 20090927012103_tkblog_461_critiquer-nano07-livre1-couverture..gmi
=> 20090925233828_tkblog_470_de-la-boucherie..gmi
=> 20090925015326_tkblog_328_une-grosse-connerie-heu-boucherie..gmi
=> 20090924184037_tkblog_473_bd2-v2-exercice-1..gmi
=> 20090922223243_tkblog_274_se-sentir-femme-des-annes-80..gmi
=> 20090914014757_tkblog_474_aber-le-milliardaire-2..gmi
=> 20090912232119_tkblog_480_portfolio-en-ligne..gmi
=> 20090904145443_tkblog_483_hypocras-sernik-et-nonettes..gmi
=> 20090904140532_tkblog_485_pour-toi-public-une-photo-de-ma-douce..gmi
=> 20090902140606_tkblog_481_petit-bois-belge..gmi
=> 20090902135918_tkblog_204_le-jeu-du-mur-avec-un-ballon..gmi
=> 20090902133357_tkblog_484_canadaenne-qui-parwle..gmi
=> 20090827122719_tkblog_491_dieppe-les-ch-tis-savent-pourquoi..gmi
=> 20090821164902_tkblog_493_prsenter-un-projet-bd-de-faon-pro-un-diteur..gmi
=> 20090819150322_tkblog_117_dbarquement-de-dieppe-v-2009..gmi
=> 20090816202118_tkblog_506_tablette-ressucite..gmi
=> 20090811173508_tkblog_502_jm-en-pte-une-chaise-de-louis-15..gmi
=> 20090808170024_tkblog_518_maturit-selon-docteur-poulpe..gmi
=> 20090806142143_tkblog_527_estuans-imterius-ira-vehementi..gmi
=> 20090805203741_tkblog_275_c-est-trop-dur-la-vie..gmi
=> 20090801203759_tkblog_541_a-s-passe-comme-a-au-square-du-canada..gmi
=> 20090731171914_tkblog_170_le-journal-de-la-sant-d-aurlie-spcial-clitoris..gmi
=> 20090728023714_tkblog_277_les-recherches-q-c-est-nimp..gmi
=> 20090728015924_tkblog_285_see-it-all..gmi
=> 20090720171848_tkblog_553_ponsoir-la-soire-va-tre-rasoir..gmi
=> 20090716125836_tkblog_555_badminton-de-nuit..gmi
=> 20090618130645_tkblog_333_moloko-sing-it-back..gmi
=> 20090614183627_tkblog_91_amnagement-de-printemps..gmi
=> 20090613225207_tkblog_279_a-pwal-le-paintchat..gmi
=> 20090607132101_tkblog_141_cocktails-d-atelier-q..gmi
=> 20090607130050_tkblog_121_la-ferme-d-cancourt-c-est-kawaiiiiiii..gmi
=> 20090523003625_tkblog_280_c-est-la-fte-au-village..gmi
=> 20090509132540_tkblog_118_keanu-reeves-tout-nu-pastels-gras-l-essence-de-trbenthine..gmi
=> 20090425171826_tkblog_148_don-t-smoke-cigarette-don-t-take-any-drugs-don-t-go-out-at-night-just-fuck..gmi
=> 20090423205603_tkblog_278_ho-un-atelier-cocci-0..gmi
=> 20090403173322_tkblog_475_vovo-fiction-encore-un-tag..gmi
=> 20090326022013_tkblog_122_myologie-des-jambes-et-des-cuisses..gmi
=> 20090323191822_tkblog_98_nul-n-est-jamais-assez-fort-pour-rsoudre-ce-calcul..gmi
=> 20090321150550_tkblog_286_hotline-vos-questions-pour-les-fanzines-q-3-et-q-4..gmi
=> 20090320205037_tkblog_119_saint-luc-portes-ouvertes-2009..gmi
=> 20090307171428_tkblog_469_tre-une-femme-sexuellement-correcte..gmi
=> 20090301055554_tkblog_212_tykayn-nu-c-est-pour-pour-les-fans..gmi
=> 20090301050845_tkblog_172_soubrettes-d-atelier-q..gmi
=> 20090227055152_tkblog_193_job-d-t-la-brioche-dore-de-caluire..gmi
=> 20090130225340_tkblog_94_exams-cole-gobelins-paris-et-pivaut-nantes..gmi
=> 20090124124103_tkblog_127_anatomie-myologie-des-fesses-du-ku..gmi
=> 20090120130419_tkblog_663_quotes-irc-e-kaki-ms-q..gmi
=> 20090103155150_tkblog_288_illustrer-le-kamasutra-version-tk..gmi
=> 20081213145447_tkblog_289_projet-omg-matou-rigolo-3..gmi
=> 20081208021659_tkblog_287_how-i-met-your-mother-fanart..gmi
=> 20081207050819_tkblog_467_pas-pas-l-aire-de-repos-aprs-l-amour..gmi
=> 20081129115114_tkblog_228_anatomie-myologie-du-bras-et-du-visage..gmi
=> 20081129101842_tkblog_323_bd2-exercice-2-page1..gmi
=> 20081121233401_tkblog_292_l-oekaki-board-de-q-est-ne-0..gmi
=> 20081109163209_tkblog_88_concert-haloween-paris-gare-du-nord..gmi
=> 20081025122846_tkblog_97_ingvar-kamprad-elmtaryd-agunnaryd-c-est-plus-fort-que-toi..gmi
=> 20081022113924_tkblog_96_tuto-comment-trouver-un-point-de-fuite..gmi
=> 20081018215905_tkblog_329_gteau-polonais..gmi
=> 20081006142404_tkblog_293_les-affaires-reprennent..gmi
=> 20080722153435_tkblog_146_c-est-quoi-troller..gmi
=> 20080629140013_tkblog_441_s-les-vacances..gmi
=> 20080603211245_tkblog_95_tuto-perspective-un-point-de-fuite-et-dcroissance-des-intervalles..gmi
=> 20080512221301_tkblog_294_pour-motive..gmi
=> 20080409174039_tkblog_115_tuto-cours-d-antomie..gmi
=> 20080222193547_tkblog_466_sondage-sur-l-homosexualit..gmi
=> 20080212003559_tkblog_557_j-vous-prsente-le-poulpe..gmi
=> 20080204202806_tkblog_462_culture-arte..gmi
=> 20080113213617_tkblog_390_no-hll-2007..gmi
=> 20071209223357_tkblog_513_juju-la-jujunkee-drogue..gmi
=> 20071002183541_tkblog_108_ma-premire-tablette-graphique-q..gmi
=> 20070919165250_tkblog_302_saint-luc-bd..gmi
=> 20070904013545_tkblog_327_kot-life-start..gmi
=> 20070811162400_tkblog_417_le-blog-cach-d-aber..gmi
=> 20070726202107_tkblog_167_joriverssaire-et-youkoull..gmi
=> 20070724063230_tkblog_87_l-avis-de-pansai..gmi
=> 20070630000855_tkblog_299_la-q-hotline..gmi
=> 20070601181939_tkblog_281_entre-deux..gmi
=> 20070523034830_tkblog_282_la-dame-juive..gmi
=> 20070509234806_tkblog_132_tuto-d-une-page-de-bd..gmi
=> 20070501135741_tkblog_405_aber-tu-sors..gmi
=> 20070202210558_tkblog_463_du-neuf-du-pognon-duku-tout-va-bien..gmi
=> 20061206214450_tkblog_124_plan-loose-lol-et-crpes-par-t-i-e-s..gmi
=> 20061128150123_tkblog_331_atelier-cocci-fin-novembre..gmi
=> 20061121202916_tkblog_106_anim-est-2006-y-a-t-il-une-vie-aprs-hardgay..gmi
=> 20060930150215_tkblog_100_foto-trip-et-drunken-pen..gmi
# Articles in English
-------------------------

View File

@ -1,4 +0,0 @@
<html><head><title>cil_gometz</title></head><body> # cil_gometz - Articles
- - - - - - - - - - - - - - - - - - - - - - - -
<h1> Navigation</h1><h1></h1> Articles en Français</h1><br><a href=/lang_fr/20211213135552_blog_cil_gometz_21_livres-numeriques-calibre-et-liseuses.html>20211213135552_blog_cil_gometz_21_livres-numeriques-calibre-et-liseuses.html</a><br><a href=/lang_fr/20211021114042_blog_cil_gometz_20_creation-graphique-au-cil.html>20211021114042_blog_cil_gometz_20_creation-graphique-au-cil.html</a><br><a href=/lang_fr/20211021113826_blog_cil_gometz_19_facebook-est-mort-vive-la-decentralisation.html>20211021113826_blog_cil_gometz_19_facebook-est-mort-vive-la-decentralisation.html</a><br><a href=/lang_fr/20211021113339_blog_cil_gometz_18_article-dans-le-castelgometzien-n264.html>20211021113339_blog_cil_gometz_18_article-dans-le-castelgometzien-n264.html</a><br><a href=/lang_fr/20210909190502_blog_cil_gometz_17_disponibilites-pour-la-rentree-du-cil.html>20210909190502_blog_cil_gometz_17_disponibilites-pour-la-rentree-du-cil.html</a><br><a href=/lang_fr/20210617115715_blog_cil_gometz_16_article-pour-le-journal-de-gometz-juin-2021.html>20210617115715_blog_cil_gometz_16_article-pour-le-journal-de-gometz-juin-2021.html</a><br><a href=/lang_fr/20210112160009_blog_cil_gometz_15_presentation-pour-creer-ses-propres-ebooks-a-partir-de-textes-en-markdown.html>20210112160009_blog_cil_gometz_15_presentation-pour-creer-ses-propres-ebooks-a-partir-de-textes-en-markdown.html</a><br><a href=/lang_fr/20200911154512_blog_cil_gometz_14_inscrivez-vous-pour-les-reunions-de-septembre.html>20200911154512_blog_cil_gometz_14_inscrivez-vous-pour-les-reunions-de-septembre.html</a><br><a href=/lang_fr/20200909152039_blog_cil_gometz_12_panel-dactivites-de-la-rentree-post-covid19.html>20200909152039_blog_cil_gometz_12_panel-dactivites-de-la-rentree-post-covid19.html</a><br><a href=/lang_fr/20200902174116_blog_cil_gometz_13_forum-des-assos-2020-dimanche-6-septembre.html>20200902174116_blog_cil_gometz_13_forum-des-assos-2020-dimanche-6-septembre.html</a><br><a href=/lang_fr/20200803124344_blog_cil_gometz_11_ecrire-une-comptine-en-python-bonjour-le-jour.html>20200803124344_blog_cil_gometz_11_ecrire-une-comptine-en-python-bonjour-le-jour.html</a><br><a href=/lang_fr/20200712124742_blog_cil_gometz_10_70.html>20200712124742_blog_cil_gometz_10_70.html</a><br><a href=/lang_fr/20200712121229_blog_cil_gometz_9_pacte-du-logiciel-libre-de-lapril-pour-les-elections.html>20200712121229_blog_cil_gometz_9_pacte-du-logiciel-libre-de-lapril-pour-les-elections.html</a><br><a href=/lang_fr/20200518182500_blog_cil_gometz_8_codage-dans-%e2%84%a4-p%e2%84%a4.html>20200518182500_blog_cil_gometz_8_codage-dans-%e2%84%a4-p%e2%84%a4.html</a><br><a href=/lang_fr/20200518182215_blog_cil_gometz_7_activites-en-cours.html>20200518182215_blog_cil_gometz_7_activites-en-cours.html</a><br><a href=/lang_fr/20200518181947_blog_cil_gometz_6_notre-liste-de-diffusion-framaliste.html>20200518181947_blog_cil_gometz_6_notre-liste-de-diffusion-framaliste.html</a><br><a href=/lang_fr/20200518181634_blog_cil_gometz_4_cours-de-python.html>20200518181634_blog_cil_gometz_4_cours-de-python.html</a><br><a href=/lang_fr/20200518181618_blog_cil_gometz_5_les-amis-du-club.html>20200518181618_blog_cil_gometz_5_les-amis-du-club.html</a><br><a href=/lang_fr/20200518181355_blog_cil_gometz_3_libre-en-fete-2019.html>20200518181355_blog_cil_gometz_3_libre-en-fete-2019.html</a><br><a href=/lang_fr/20200518172243_blog_cil_gometz_2_installation-de-linux-version-ubuntu.html>20200518172243_blog_cil_gometz_2_installation-de-linux-version-ubuntu.html</a><br><a href=/lang_fr/20200513215141_blog_cil_gometz_1_a-propos-du-cil-de-gometz-la-ville.html>20200513215141_blog_cil_gometz_1_a-propos-du-cil-de-gometz-la-ville.html</a><h1> Articles in English</h1></article></body></html>

View File

@ -0,0 +1,888 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>dragonfeu_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>dragonfeu_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">dragonfeu_blog</h1>
</header>
<p>Prenons un peu de recul sur ce quil se passe à Zaporijia. Il est
important de préciser certains éléments.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:660/0*9Iq86VpPQj9dzymu.jpg" /></p>
<p>La centrale nucléaire de Zaporijia en Ukraine, et ses six
VVER-1000/320</p>
<p>La centrale nucléaire de Zaporijia (ZNPP) est dotée de six 6
réacteurs, des VVER-1000 modèle V-320, léquivalent soviétique de nos
Réacteurs à Eau sous Pression (REP en français). Ce sont des réacteurs
de 3000MW thermiques et de 960MW électriques nets. Cest la filière qui
a été déployée après les réacteurs RBMK (comme le réacteur responsable
de laccident de Tchernobyl). Pour bien comprendre tout cela, on va
commencer par quelques bases de sûreté nucléaire, ensuite il faudra
regarder quels sont les besoins actuels de la centrale et quelles
évolutions sont possibles avec tous ces éléments de contexte. Je précise
que je vais souvent me restreindre à la situation actuelle à la ZNPP, et
que souvent, par manque dinformations sur les VVER, il faudra faire des
analogies avec nos REP français.</p>
<h1 id="bases-de-sûreté-nucléaire">Bases de sûreté nucléaire</h1>
<h2 id="la-sûreté-nucléaire">La sûreté nucléaire</h2>
<p>Que signifie sûreté nucléaire ? Il existe une définition, utilisée
par toute lindustrie nucléaire française.</p>
<blockquote>
<p>La sûreté nucléaire recouvre lensemble des dispositions techniques
et les mesures dorganisation prises en vue de prévenir les accidents ou
den limiter les effets. Elles concernent la conception, la
construction, le fonctionnement, larrêt et le démantèlement des
installations nucléaires de base, ainsi que le transport des substances
radioactives. la sûreté nucléaire est une composante de la sécurité
nucléaire qui comprend, en outre, la radioprotection, la prévention et
la lutte contre les actions de malveillance, ainsi que les actions de
sécurité civile en cas daccident. Il sagit donc à la fois :</p>
<p>\-Dassurer des conditions de fonctionnement normal de linstallation
sans exposition excessive des travailleurs aux rayonnements ionisants,
et sans rejets excessifs de radioactivité dans lenvironnement ;</p>
<p>\-De prévenir les incidents et accidents ;</p>
<p>\-En cas dincidents ou daccidents, de limiter les effets sur les
travailleurs, les populations et lenvironnement.</p>
</blockquote>
<h2 id="les-trois-fonctions-de-sûreté">Les trois fonctions de
sûreté</h2>
<p>Il faut en permanence surveiller les paramètres physiques du
réacteur. On les appelle les « fonctions de sûreté ». Il y en a trois
:</p>
<ul>
<li>Contrôler la réaction nucléaire, éviter lemballement de la réaction
nucléaire et larrêter au plus vite quand cela est nécessaire,</li>
<li>Contrôle de la température du combustible nucléaire (évacuation de
la puissance résiduelle), pour éviter une fusion du combustible,</li>
<li>Confiner les matières radioactives, grâce aux trois barrières de
confinement</li>
</ul>
<p><a
href="https://miro.medium.com/v2/resize:fit:700/0*FUAWsQ1MS0sVmsi4">https://miro.medium.com/v2/resize:fit:700/0*FUAWsQ1MS0sVmsi4</a></p>
<p><a
href="https://twitter.com/Draagonfire2/status/1622176366555693056">Issu
du thread sur les réacteurs à sels fondus</a></p>
<h2 id="la-défense-en-profondeur">La défense en profondeur</h2>
<p>Le principe de la défense en profondeur est une méthode qui consiste
à établir des barrières pour éviter le passage à létape suivante. Si
létape 1 échoue, on passe à la 2, et ainsi de suite. Cest une norme
internationale, les VVER-1000 comme les REPs occidentaux appliquent ce
principe.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*Dlsj72YFDe2fcInjPmft7w.png" /></p>
<p>Regardons chaque point succinctement.</p>
<ol>
<li><em>Prévention.</em></li>
</ol>
<p>La conception des réacteurs est pensée de façon à limiter la
probabilité daccident grave (typiquement une fusion du cœur), les
opérateurs sont formés longtemps, évalués très fréquemment. La
conception définie les matériels nécessaires au maintien des fonctions
de sûreté. Sur lEPR, on a par exemple 3 branches dinjection de
sécurité indépendantes et redondantes pouvant chacune assurer leur
fonction de sûreté à 100% (il y en a aussi une quatrième quon suppose
en maintenance). Les matériels sont également testés. Certains matériels
ne seront probablement jamais utilisés en fonctionnement normal sur tout
la vie de la centrale, mais malgré cela il est important de tester
chaque composant pour vérifier que dans une situation accidentelle
éventuelle, le système associé serait apte à remplir sa fonction de
sûreté. Concrètement on teste des pompes dinjection de sécurité, on
fait des épreuves hydrauliques pour tester la résistance du circuit
primaire à une pression 1.3 fois supérieure à la pression en
fonctionnement normal, on entraine les opérateurs sur des situations
incidentelles, etc</p>
<p><em>2\. Détection et maitrise des accidents.</em></p>
<p>La détection passe par de multiples capteurs (pression, température,
niveau deau, niveau de radioactivité…). Cela implique également
beaucoup dautomatismes (très présents sur les EPR&amp;EPR2) pour
limiter les erreurs humaines et assurer une réponse plus rapide. A titre
dexemple, le système darrêt automatique réacteur (AAR) est présent sur
tous les réacteurs, même les plus anciens.</p>
<p><em>3\. Maitrise des situations accidentelles.</em></p>
<p>Maitriser une situation incidentelle qui pourrait mener à une
situation accidentelle. Cela passe concrètement par une formation
spécifique en accidentel pour les agents EDF. Les accidents sont classés
en plusieurs familles, typiquement la perte de réfrigérant primaire
(APRP), une rupture tube dans un générateur de vapeur (RTGV), perte
électrique totale (PTEA), perte totale deau alimentaire (PTAE), rupture
dune tuyauterie deau ou de vapeur (RTE/RTV). Plus dinformations sur
les APRP et les RTGV sur cet <a
href="https://www.irsn.fr/savoir-comprendre/surete/quest-ce-quun-accident-nucleaire-sur-reacteur-eau-sous-pression">article</a>
de lIRSN de 2013.</p>
<p><em>4\. Gestion des accidents graves.</em></p>
<p>Pour en arriver là, il faut quon ait raté toutes les étapes
précédentes, donc on passe en situation de gestion de laccident pour en
limiter les conséquences, pour éviter toute contamination à lextérieur.
Concrètement, cela passe par des systèmes passifs de captation du
dihydrogène (un gaz inflammable qui est responsable des explosions des
réacteurs 1,2,4 de Fukushima). Sur EPR, cest un récupérateur de corium
(une sorte de magma de combustible, dacier de cuve et autres produits
divers quon ne veut pas voir sur le gazon). Au niveau humain, cela
passe par un plan national de gestion des accidents graves, et au niveau
local par lintervention de la FARN (on y reviendra).</p>
<p><em>5\. Protection des populations.</em></p>
<p>La dernière étape, en cas de rejets prévus ou ayant déjà eu lieu, il
faut évacuer les personnes les plus proches du site nucléaire accidenté,
pour limiter les conséquences sanitaires. Lexemple le plus connu est la
distribution de pastille diodes. liode contenu dans ces pastilles se
fixe sur la thyroïde pour la saturer et éviter que liode radioactif
(qui vient directement du coeur) ne vienne sy fixer. Il existe aussi
des plans dévacuation dans un rayon décidé par la préfecture sur la
base des informations techniques données par EDF avec lappui technique
de lIRSN.</p>
<blockquote>
<p><strong>Sur Zaporijia, on se situe à la limite entre les points 2 et
3, la situation pouvant évoluer assez rapidement. Pour linstant, tout
est au point 2, mais cela nécessite le maintien dune alimentation
électrique externe stable.</strong></p>
</blockquote>
<h2 id="les-3-barrières-de-confinement">Les 3 barrières de
confinement</h2>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/0*CJlt3vjn1Phi7eHu.png" /></p>
<p>Si on parle de confinement, cest celui des matières radioactives.
Elles sont présentes dans le cœur, là où on met le combustible qui va
chauffer le fluide primaire. Lobjectif est déviter tout rejet
incontrôlé dans lenvironnement extérieur. Ce confinement est assuré par
trois barrières successives.</p>
<p>La première barrière se situe sur les assemblages de combustible (là
où est luranium enrichi), une gaine en zirconium qui permet déviter de
disoler les produits de fission de leau du circuit primaire.</p>
<p>La seconde barrière est le “circuit primaire fermé”, fermé car cest
une boucle, les générateurs de vapeur constituent une interface
déchange thermique (pas déchange de matière) qui empêche les éléments
radioactifs de sortir. Si on a une rupture de gaine, les éléments
radioactifs sont maintenus dans le fluide primaire, ce nest pas une
situation normale, mais au moins on ne rejette rien.</p>
<p>La troisième est lenceinte du Bâtiment Réacteur (BR), qui assure le
confinement si les deux barrières précédentes ont échoué. Imaginez quon
ait des ruptures de gaine de combustible et une fuite dans le circuit
primaire, alors tout doit rester confiné à lintérieur de la structure.
Cette barrière a été brisée lors des deux accidents nucléaires majeurs,
à savoir Tchernobyl puis Fukushima-Daichii (classés niveau 7 de
léchelle INES).</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*MvkT4pn60pQ-L4EIXabEaA.jpeg" /></p>
<p>Echelle INES, <a
href="https://lenergeek.com/2017/11/09/echelle-ines-surete-nucleaire/">Sûreté
nucléaire : quest-ce que léchelle INES ? (lenergeek.com)</a></p>
<h2 id="larrêt-automatique-réacteur">Larrêt automatique réacteur</h2>
<p>Un point également sur la rapidité darrêt de la réaction nucléaire,
cela a lieu en quelques secondes ou minutes. On utilise les barres de
contrôle, constituées de matériaux neutrophages, cela permet darrêter
la réaction au niveau neutronique (à noter que la baisse de température
augmente la réactivité il faut donc injecter du bore dans le fluide
primaire pour éviter une reprise de la réaction).</p>
<p>Les réacteurs VVER-1000/320 comme tous les REP exploités par EDF
disposent dun dispositif dArrêt Automatique Réacteur (AAR) qui
consiste en une chute automatique des barres de contrôle . Un arrêt à
chaud est la phase qui suit un AAR, «chaud» car le fluide primaire et le
combustible (ainsi que linertie thermique des structures et la
puissance des pompes primaires) ont besoin de temps pour refroidir. A
Zaporijia, tous les réacteurs ont donc passé létape de lAAR.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:394/1*JsgPbKuNdTeEFKl7DCUPAw.jpeg" /></p>
<p>Les barres de contrôle permettent de stopper la réaction nucléaire.
Source: <a href="https://info.nucleaire.free.fr/mots.htm">Les mots
(free.fr)</a></p>
<h2 id="les-différents-états-dun-réacteur-nucléaire">Les différents
états dun réacteur nucléaire</h2>
<ul>
<li>Fonctionnement en puissance ou marche de puissance intermédiaire, le
réacteur produit beaucoup de chaleur, et de lélectricité, circuit
primaire à plus de 300°C et 150 bars (petite barre grise en haut du
graphe ci-dessous),</li>
<li>Arrêt à chaud, la réaction nucléaire est à larrêt mais le circuit
primaire est encore chaud, le pressuriseur est diphasique (vapeur et
liquide),</li>
<li>Arrêt à froid, la réaction nucléaire est à larrêt. La température
du circuit primaire a été abaissée à quelques dizaines de degrés et il
est à pression atmosphérique, le pressuriseur est monophasique liquide.
Passer en arrêt froid nécessite une puissance résiduelle du combustible
suffisamment faible (les échangeurs de chaleur sont moins efficaces à
mesure que la température primaire baisse).</li>
<li>Cœur déchargé: le réacteur ne produit plus de chaleur, il ny a plus
de combustible dans la cuve.</li>
</ul>
<p>Pourquoi cest important ici ? Car la situation darrêt détermine les
besoins de refroidissement du circuit primaire, et donc le temps pour
atteindre une situation stabilisée. Petite précision, ici la puissance
résiduelle est au premier ordre liée à la chaleur résiduelle produite
par les produtis de fission des assemblages, et pas à la température de
leau du primaire.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:635/1*HTnHOwrGDmE80R7Fc0RLEA.png" /></p>
<p>Sachez quil existe une classification officielle, que je nutilise
pas ici à des fins de simplification. Il existe 6 états nommés de A à F
(<a
href="https://www.irsn.fr/sites/default/files/documents/larecherche/publications-documentation/collection-ouvrages-irsn/Elements sûreté REP chapitre 8.pdf">IRSN,
p.259260</a>).</p>
<h2 id="la-piscine-dentreposage-de-combustible-usé">La piscine
dentreposage de combustible usé</h2>
<p>Cest une piscine, avec une source de chaleur interne qui vient des
assemblages combustibles, on regarde à quel point elle est remplie.
Cest important car les assemblages usés sont encore chauds
(décroissance radioactive des produits de fission) et doivent aussi être
refroidis. Il y a donc un besoin électrique pour faire circuler leau de
refroidissement.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*5r2cf_LwOOSBpkX9Gf37gg.jpeg" /></p>
<p>Piscine de la centrale nucléaire de Gravelines</p>
<h1
id="situations-accidentelles-causées-par-des-agressions-externes">Situations
accidentelles causées par des agressions externes</h1>
<p>Que ce soit en cas de conflit armé, ou de phénomène naturels comme
des inondations ou des séismes, il est important de regarder les points
suivants.</p>
<ol>
<li>Etat darrêt de chaque réacteur (chaud ou froid), pour évaluer quel
est le besoin énergétique pour le refroidissement du cœur. Le temps est
le meilleur allié face à la puissance résiduelle. Actuellement, sur le
site de ZNPP, 5 réacteurs sur 6 sont en arrêt à froid, et depuis
plusieurs semaines, voire plusieurs mois. Il reste donc environ 4MWth de
puissance résiduelle par cœur en arrêt à froid. Pour le détail des
calculs, allez lire cette <a
href="https://www.scirp.org/journal/paperinformation.aspx?paperid=123255">étude</a>.
Un réacteur est encore en arrêt à chaud pour la production de chaleur
des villes autour. Cest le réacteur n°6, qui est surveillé de très près
par lAIEA car cest celui qui nécessite le plus délectricité pour son
refroidissement.</li>
</ol>
<p><img
src="https://miro.medium.com/v2/resize:fit:459/1*HKcYhBOiCDYCy0BPjKVQhw.jpeg" /></p>
<p><em>Evolution de la puissance résiduelle dun cœur de 3 000 MWth de
puissance nominale après un arrêt en fin de cycle. (</em> <a
href="https://www.sfen.org/rgn/zaporijia-quelle-est-la-situation-des-six-reacteurs-en-arrets-a-froid/"><em>SFEN</em></a>
<em>)</em></p>
<ol>
<li>Alimentation électrique externe (lignes 330 &amp; 750kV, 20 groupes
électrogènes de secours de 6,6 kV chacun), pour alimenter les circuits
de refroidissement. LIRSN a dailleurs soulevé un point important sur
les VVER-1000, la source de refroidissement ultime ne dispose pas dune
autonomie suffisante en accidentel, doù lintérêt de garder
lalimentation externe. Il est important de noter que depuis peu de
temps, deux groupes électrogènes bunkerisés et donc protégés contre les
actes de malveillance, sont installés à la ZNPP. Depuis laccident de
Fukushima, les centrales se sont adaptées en cas de situation de perte
totale dalimentation électrique, et disposent de moyens mobiles
dappoint en eau et en électricité. Concrètement, un camion avec une
pompe thermique (à eau) est capable dalimenter les générateurs de
vapeur en eau froide, à partir dune source froide à distance
raisonnable du réacteur, pendant 3 jours. Cela peut savérer utile pour
le réacteur en arrêt à chaud. Il existe aussi un groupe électrogène
mobile, monté lui aussi sur un camion (3 jours dautonomie).</li>
</ol>
<p>Sur les REP français, comme sur les VVER, lalimentation électrique
externe est essentielle à la sûreté et le système présente de nombreuses
voies indépendantes et redondantes. Comme les 6 réacteurs de Zaporijia
sont en situation darrêt, il nest pas nécessaire détudier le <a
href="https://www.linkedin.com/pulse/lilotage-dune-tranche-nucléaire-cest-quoi-florian-saulais/?originalSubdomain=fr">transitoire
dîlotage</a> (capacité dun réacteur à sisoler du réseau électrique
tout en passant en fonctionnement autonome à puissance réduite).</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/0*l63k1rdtNPegVUZA.jpg" /></p>
<p><em>Principe de lalimentation électrique dune centrale française de
type REP (</em> <a
href="https://www.irsn.fr/savoir-comprendre/surete/alimentations-electriques-sur-centrale-nucleaire-francaise"><em>IRSN</em></a>
<em>)</em></p>
<ol>
<li><p>Remplissage du cœur, pour savoir sil reste une chaleur
résiduelle à évacuer. Ce point est très lié au point 1, puisquil sagit
de savoir quels sont les besoins en refroidissement pour le circuit
primaire. Il serait pertinent de vider les cœurs de leurs assemblages,
ainsi que les piscines, pour éviter tout risque radiologique. Cest
évidemment très compliqué dans un contexte de guerre. Surtout que cela
représente un volume de combustible très important, et une logistique
complexe. Et certains assemblages sont trop chauds pour être évacués.
Dailleurs, si vous connaissez bien laccident de Fukushima-Daiichi,
vous pouvez rétorquer que le réacteur 4 avait pourtant un cœur vide, et
a explosé malgré tout. Mais cest parce que lhydrogène du réacteur 3
sest infiltré dans le 4 via une conduite commune.</p></li>
<li><p>Remplissage des piscines du combustible usé, pour évaluer quel
est le besoin énergétique pour le refroidissement de la piscine. (<a
href="https://theconversation.com/cold-shutdown-reduces-risk-of-disaster-at-zaporizhzhia-nuclear-plant-but-combat-around-spent-fuel-still-poses-a-threat-190516">Article
à ce propos</a>). Cest un point souvent négligé, voire oublié. Or les
matières radioactives du bâtiment combustible ont elles aussi besoin
dêtre refroidies après un cycle dans le cœur, les produits de fission
dégagent encore une chaleur résiduelle quil faut évacuer, sous peine
dévaporer leau des piscines, ce qui mènerait à une fusion des
assemblages combustibles. A Fukushima-Daiichi, il y avait 1300
assemblages dans la piscine (environ 3 cœurs) du réacteur n°4. Or
lenceinte de confinement, qui contient le bâtiment combustible, était
endommagée. Et une fusion de ces assemblages aurait incontestablement
mené à un dégagement très important de radionucléides dans
lenvironnement. Un <a
href="https://laradioactivite.com/energie_nucleaire/fukushima_piscines">article</a>
qui détaille la situation à Fukushima. Ces évènements ont mené à la
création de la Force dAction Rapide Nucléaire (FARN), pour assurer des
appoints en eau, air et en électricité (elle a dautres rôles détaillés
<a
href="https://www.irsn.fr/sites/default/files/documents/connaissances/nucleaire_et_societe/expertise-pluraliste/irsn-anccli/4_presentation_FARN_P-Renoux_19juin2013.pdf">ici</a>
). Quelle est la situation des piscines de la ZNPP? Il semblerait quil
y ait près de 3400 assemblages combustibles entreposés sur site (<a
href="https://www.reuters.com/world/europe/vast-nuclear-plant-eye-war-ukraine-2022-08-08/">article
de Reuters</a>). Cest beaucoup, et une perte deau de refroidissement
des piscines pourrait mener à des rejets importants.</p></li>
</ol>
<blockquote>
<p>« Selon une communication de lUkraine à lAIEA en 2017, il y avait 3
354 assemblages de combustible usé dans linstallation de combustible
usé sec et environ 1 984 assemblages de combustible usé dans les
piscines. »</p>
</blockquote>
<p>Jajoute quil y a également des stockages «à sec» sur le site, on ne
le fait pas en France, mais ailleurs dans le monde cela est pratiqué.
Lavantage de ces conteneurs est labsence de besoin en refroidissement
par eau (pas besoin de pompe ni deau). En revanche, une explosion qui
viendrait endommager pourrait conduire à des rejets de radionucléides.
Je ne connais pas la résistance de ces conteneurs, je ne prononcerai pas
sur leur comportement à proximité dexplosion. En revanche la nature des
déchets nucléaires stockés à lintérieur permet destimer quune
explosion causerait une dispersion sur un rayon limité, une centaine de
mètre environ daprès Olivier Dubois adjoint du directeur de lexpertise
de sûreté de lIRSN, dans cette <a
href="https://www.youtube.com/watch?v=DOCx3dBHX5w&amp;t=19s&amp;ab_channel=L&#39;Express">vidéo</a>
de lExpress. Toujours depuis Fukushima, le site de ZNPP dispose dune
pompe thermique mobile autonome (<a
href="https://www.irsn.fr/actualites/ukraine-dispositions-prevues-cas-perte-totale-alimentations-electriques-externes">autonomie
de 3 jours</a>), montée sur un camion, assurant un appoint en eau dans
la piscine combustible pour compenser les pertes deau par vaporisation.
Ci-dessous, lintervention qui a «inspiré» les ingénieurs en sûreté
nucléaire pour cette solution dappoint pour la piscine. Cétait à
Fukushima, sur lunité n°4, pour les piscines combustibles.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:500/1*NDjZ0EONbc6QbikN0Su4MA.jpeg" /></p>
<p>Remettre de leau dans les piscines grâce aux lances des pompiers,
assez original comme système de refroidissement, mais dans ce genre de
situation, on fait avec ce quon peut.</p>
<ol>
<li>Intégrité du circuit primaire et du bâtiment réacteur, pour prévoir
déventuels rejets extérieurs. On peut imaginer un endommagement du
bâtiment réacteur par des missiles (ils va en falloir des costauds),
est-ce problématique ? Oui, en situation accidentelle, car cet impact
pourrait fragiliser la structure. Maintenant si on imagine (scénario
très improbable) que le missile arrive à traverser lenceinte du BR,
alors il faut voir quel est létat des pièces à lintérieur. On parle
dun missile capable de transpercer 2.4m de béton armé, disposer dune
telle <a href="https://fr.wikipedia.org/wiki/Bunker_buster">arme</a> est
peu courant. Il faut vraiment le faire exprès. On peut aussi dire que
étant donné la taille des BR, il est peu probable dendommager toutes
les structures de sauvegarde, et lavantage du VVER-1000 est quil
présente une triple redondance des systèmes de sauvegarde (comme lEPR),
on peut donc imaginer un scénario où on aurait 2 systèmes de sauvegarde
indisponibles, le dernier prendrait alors le relai.</li>
</ol>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*eRktyRKxSxC2U71zmUkGqA.jpeg" /></p>
<p>Enceinte du bâtiment réacteur n°4 après une frappe, novembre 2022 (<a
href="https://en.wikipedia.org/wiki/Zaporizhzhia_Nuclear_Power_Plant#/media/File:ZNPP_unit_4_reactor_building_shell_damage.jpg">Wikipedia</a>)</p>
<p>Il est également important de préciser que les <a
href="https://snriu.gov.ua/en/news/russian-occupants-located-military-equipment-and-explosives-in-the-turbine-room-of-znpp-unit-4">Russes
ont stocké du matériel militaire dans le bâtiment de la turbine</a>
(circuit secondaire, sans risque radiologique). Ce sont des explosifs de
combat, pas des anti-bunkers, une explosion dans cette zone causerait
des dégâts irréversibles au secondaire, mais le risque radiologique
serait très faible. Et lendommagement du bâtiment réacteur serait très
limité également.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/0*XlRV4AjiiIH_9PK1.jpg" /></p>
<p>Le bâtiment secondaire est séparé du BR, et nest pas renforcé en
béton armé.</p>
<h2 id="les-stress-tests-sur-les-vver">Les “stress tests” sur les
VVER</h2>
<p>Il est également important de préciser que la sûreté saméliore avec
le temps, et la centrale nucléaire de Zaporijia ne fait pas exception.
Pour les plus curieux, vous trouverez la liste des “stress test”
auxquels elle a été soumise (<a
href="https://www.ensreg.eu/sites/default/files/attachments/stress_test_nacp_ukraine_2021.pdf">ВСТУП</a>).
Cest le retour dexpérience des trois précédents accidents nucléaires
(Three Miles Island, Tchernobyl et Fukushima-Daichii) qui est utilisé
principalement pour déterminer ces résistances.</p>
<h1 id="les-besoins-actuels-des-réacteurs-de-zaporijia">Les besoins
actuels des réacteurs de Zaporijia</h1>
<p>Le besoin principal qui focalise lattention de tous les techniciens
et ingénieurs sur place est lalimentation électrique externe. Cest le
point dintérêt de lAIEA le plus critique. Dans son <a
href="https://www.irsn.fr/actualites/ukraine-situation-centrale-zaporizhzhya-15-mai-2023">point
de situation</a> du 15/05/2023 lIRSN explique :</p>
<blockquote>
<p>« Une seule ligne dalimentation électrique de 750 kV est
actuellement opérante pour assurer le fonctionnement des systèmes de
refroidissement des assemblages combustibles. En cas de défaillance de
cette alimentation électrique, 20 groupes électrogènes de secours sont
disponibles pour prendre le relai et assurer lalimentation électrique
de la centrale. »</p>
</blockquote>
<p>La centrale possède 4 lignes dalimentation externe de 750kV, daprès
les informations disponibles à lheure actuelle, une seule fonctionne
parfaitement. Concernant les groupes électrogènes de secours, la ZNPP a
besoin de personnel pour la maintenance, de pièces détachées, et
évidemment, de combustible pour les alimenter. Précisons également que
lapprovisionnement en combustible serait plus aisé par louest, la zone
étant sous contrôle ukrainien, mais le site demeure encore sous contrôle
russe.</p>
<p><a
href="https://miro.medium.com/v2/resize:fit:700/0*3Y6Lp42vHwGOoOcs">https://miro.medium.com/v2/resize:fit:700/0*3Y6Lp42vHwGOoOcs</a></p>
<p><a href="https://twitter.com/War_Mapper">Situation au
31/05/2023</a></p>
<p>La centrale a également besoin dune source froide pour évacuer la
puissance résiduelle, la <a
href="https://twitter.com/Podolyak_M/status/1665954154567593984">récente
attaque</a> du barrage de Kakhovka montre que la source froide
habituelle est menacée, le niveau deau baisse denviron 5cm par heure.
Le site de Zaporijia est conçu en temps normal pour utiliser le
réservoir “cooling pond” comme réservoir tampon pour saffranchir des
variations de débit du fleuve Dniepr. Les réacteurs étant à larrêt on
utilise un système dévacuation de la chaleur par air, où leau est
projetée via des “sprinklers”. Il faut compenser cette perte deau par
évaporation par un appoint en eau, et cet appoint en eau peut suffire
quelques semaines selon lIRSN (<a
href="https://www.irsn.fr/actualites/ukraine-consequences-lendommagement-barrage-kakhovka-sur-centrale-nucleaire-zaporizhzhya">point
de situation du 7 juin 2023</a>), voire mois selon lAIEA (<a
href="https://twitter.com/rafaelmgrossi/status/1666009625869549574">Déclaration
du directeur général de lAIEA</a>).</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*nXE-nC_qjOUxvBrAg6byfw.png" /></p>
<h2 id="quelle-temporalité">Quelle temporalité ?</h2>
<ul>
<li>Les lignes haute tension peuvent être réparées en une dizaine
dheures (retour dexpérience depuis le début de la guerre).</li>
<li>Les réacteurs en arrêt à froid comme en arrêt à chaud étant à
larrêt dun point de vue neutronique, la chaleur résiduelle et la
température du primaire sont les deux paramètres à surveiller. Le
réacteur n°5, en AAC a besoin de plus de refroidissement, sous peine de
voir la température de son primaire monter, donc sa pression, jusquà un
seuil hors des limites usuelles dexploitation du cœur.</li>
<li>Les générateurs diesel de secours permettent de tenir environ 15
jours avec les besoins actuels du site, limite en terme de combustible.
Les générateurs ne sont pas conçus pour fonctionner plusieurs semaines
non plus, il y aura des maintenance à réaliser. (S<a
href="https://world-nuclear-news.org/Articles/Emergency-generators-in-use-as-Zaporizhzhia-loses">ource</a>)</li>
<li>La fusion du cœur pourrait ensuite intervenir sous 10 jours à
compter de larrêt de tous les générateurs diesel de secours (<a
href="https://www.irsn.fr/actualites/ukraine-situation-centrale-zaporizhzhya-15-mai-2023">Source</a>)</li>
<li>Cela laisse donc 25 jours maximum pour anticiper la situation.
Sachant que la situation commencera à se dégrader dès le 15e jour (faute
dapprovisionnement suffisant en carburant), où les groupes électrogènes
de secours seront à sec. Cest donc en réalité moins. Mais ce délai est
bienvenu malgré tout, il permet une éventuelle intervention durgence.
Le temps est le pire ennemi quand on a un réacteur en arrêt chaud. Pour
prendre un cas similaire, ce qui sest passé à Fukushima peut se résumer
assez simplement, larrêt automatique réacteur qui a immédiatement suivi
la détection du séisme sest déroulé comme il le fallait, le problème a
été dévacuer la puissance résiduelle. Les opérateurs nont pas réussi
cette mission.</li>
<li>Passé ce délai, une fusion du cœur des réacteurs est possible, sur 6
réacteurs en simultané. Ces fusions mèneraient incontestablement à des
rejets massifs. La présence de recombineur à hydrogène passifs (qui
nont pas besoin délectricité) est plutôt rassurante pour éviter un
endommagement de la troisième barrière (ce qui nétait pas le cas à
Fukushima).</li>
<li>Quelques temps après la fusion des cœurs de réacteurs va aussi se
poser la question des piscines de combustible usé. Elles ont aussi
besoin dêtre refroidies.</li>
<li>Le VVER-1000 ne dispose pas dun récupérateur à corium contrairement
au VVER-1200 (critère de sûreté de la 3e génération, comme sur lEPR),
ce qui rend le risque de contamination externe plus important. Au delà
dévacuer le corium dans un endroit pour le refroidir, lintérêt du
<em>core catcher</em> est déviter l explosion de vapeur (forte chaleur
et eau liquide…), donc cela participe à une préservation de la structure
du BR.</li>
</ul>
<p>Un besoin essentiel est également celui davoir du personnel qualifié
sur place, et le contexte de guerre naide pas. Une centrale sûre sans
humains nexiste pas, et le stress constant auquel sont soumises les
équipes ne favorise pas un environnement sain pour travailler dans une
centrale nucléaire.</p>
<p>Ce délai de 25 jours (grand maximum) est crucial, car si les
autorités mondiales savent, grâce aux informations de lAIEA, que la
centrale de Zaporijjia a absolument besoin délectricité, cela laisse du
temps pour réfléchir à un plan daction urgent. Et donc toute forme
dopposition à une aide technique internationale serait considérée comme
criminelle. Dautant que les alimentations électriques ont toujours été
réparées, au prix de nombreuses vies, dans des délais records.</p>
<h2 id="quels-rejets">Quels rejets ?</h2>
<p>Les réacteurs étant tous à larrêt, la décroissance radioactive a
fait son effet sur le combustible. La décroissance radioactive est un
phénomène naturel qui caractérise la baisse du nombre de noyaux
instables dans un échantillon de matière. LIRSN explique :</p>
<blockquote>
<p>« Compte tenu des délais importants depuis larrêt du dernier
réacteur, les rejets en iode notamment, bien quimportants, seraient
bien plus faibles que pour un réacteur en fonctionnement, du fait de la
décroissance radioactive. La fusion du combustible entreposé dans la
piscine, située dans lenceinte de confinement du réacteur,
interviendrait ensuite, entraînant des rejets supplémentaires. »</p>
</blockquote>
<p>Pour comprendre de phénomène de décroissance, une courbe sur
laccident de Fukushima. On voit quil suffit dune quarantaine de jours
à lIode-131 pour diviser son activité par 10, ce qui est la situation
des cinq réacteurs de ZNPP en arrêt à froid. Donc si un accident devait
se produire sur un des réacteurs en arrêt à froid, les comprimés diode
distribués en cas daccident ne serviraient strictement à rien.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:500/1*rWPD0bnchgenFflQWBStVw.jpeg" /></p>
<p><a
href="https://laradioactivite.com/le-phenomene/liode131">LIode-131 —
laradioactivite.com</a></p>
<p>Il est impossible (à lheure actuelle) de faire une modélisation
fidèle à la réalité, des rejets de radionucléides, cela dépend de la
sévérité de laccident, de la durée des rejets et de la météo (selon les
vents dominants et les pluies).</p>
<p>Panache radioactif de Tchernobyl.</p>
<p>Il existe une <a
href="https://www.pravda.com.ua/eng/news/2022/08/18/7363806/">modélisation</a>
déjà assez ancienne, elle est intéressante pour expliquer la dispersion
du nuage, mais cest simplement pour donner une idée. Maintenant, si la
situation devait empirer, une modélisation des rejets sera établie par
les experts en peu de temps, sur la base des informations
météorologiques disponibles.</p>
<h1 id="conclusion">Conclusion</h1>
<p>Ce ne sont pas les tirs de missiles sur le bâtiment réacteur quil
faut craindre, mais la perte totale dalimentation électrique externe.
Les explosifs sont bien plus susceptibles de venir endommager les
conteneurs de déchets radioactifs secs et les piscines combustibles. La
situation est stable tant que cette ligne de 750kV est connectée aux 6
réacteurs, et les diesels de secours sont prêts à prendre le relai, à
condition davoir un approvisionnement suffisant en carburant, et ce
nest pas une solution durable sur le temps long.</p>
<p>La situation est unique, mais na rien dun accident nucléaire, cela
dépend de beaucoup de facteurs encore incertains. Depuis 15 mois la
centrale est au cœur dun conflit intense et les équipes sur place ont
toujours maitrisé les situations incidentelles en des temps records.</p>
<p>De plus, la présence permanente déquipes de lAIEA sur place permet
davoir des informations fiables en temps réel, et ces informations sont
communiquées à lensemble des experts techniques de la sûreté nucléaire
du monde entier. Ces informations sont précieuses.</p>
<p>Quelques derniers rappels avant de terminer :</p>
<ul>
<li>Utiliser une centrale nucléaire pour stocker des armes est
irresponsable, sen servir de bouclier lest tout autant.</li>
<li>Une centrale nucléaire nest pas ni une cible, ni une arme. Se
référer à <a
href="https://www.ohchr.org/fr/instruments-mechanisms/instruments/protocol-additional-geneva-conventions-12-august-1949-and">larticle
56 du protocole additionnel aux Conventions de Genève du 12 août 1949
relatif à la protection des victimes des conflits armés internationaux
(Protocole I)</a> : «Les ouvrages dart ou installations contenant des
forces dangereuses, à savoir les barrages, les digues et les centrales
nucléaires de production dénergie électrique, ne seront pas lobjet
dattaques, même sils constituent des objectifs militaires».</li>
<li>Dans un conflit armé, lennemi vise dabord le réseau, bien plus
simple à détruire car plus fragile. Prendre le contrôle du site de
Zaporijia est stratégique pour déstabiliser lUkraine. Cest en tant
quinstallation électrique de grande puissance que cette centrale fait
lobjet de tant dattention, pas en tant quobjet nucléaire. Un article
à ce propos. <a
href="https://geopoliticalfutures.com/ukraines-vulnerable-power-grid/">Ukraines
Vulnerable Power Grid — Geopolitical Futures</a>.</li>
<li>Cétait assez exhaustif, à dessein, je ne peux pas faire à la fois
trop technique et accessible, il faut nécessairement trouver un juste
milieu.</li>
</ul>
<p>Je tiens à conclure cet article en rendant hommage aux travailleurs
et travailleuses du site de Zaporijia, qui ont pour beaucoup déjà
sacrifié leur vie pour rétablir cette liaison électrique, ils se battent
au quotidien pour protéger lEurope.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*fxm46ADoTLqfpafYBLDC-A.jpeg" /></p>
<p>Publié en Juin 2023.</p>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -2,139 +2,7 @@
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<title>dragonfeu_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
@ -268,7 +136,7 @@ li {
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<title>dragonfeu_blog</title>
<style>
html {
color: #1a1a1a;
@ -430,33 +298,45 @@ li {
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
<h1 class="title">dragonfeu_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 190</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2011-09-16 15:38:57&gt;</li>
<li>modifié: &lt;2011-09-16 15:38:57&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="roux-pride-1">roux pride</h2>
<p><br />
le ptit chat que j'ai recueilli est roux. C'est sans doute pour ça qu'il
a été abandonné. Toi aussi, chaton, participe à la roux pride.</p>
<h1 id="récapitulatif-de-mon-contenu-twitter">Récapitulatif de mon
contenu twitter</h1>
<p>Jun 9, 2023</p>
<p><img
src="https://static.mcetv.fr/img/2011/09/roux-pride-au-pays-bas.jpg" /></p>
<h1 id="liens">Liens</h1>
src="https://miro.medium.com/v2/resize:fit:700/1*YZR7U4s767ZMQfrxi0EhYA.jpeg" /></p>
<p><a href="https://fr.wikipedia.org/wiki/Superphénix">RNR-Na
Superphénix, France.</a></p>
<p>Thread des réacteurs à sels fondus 1/3 : <a
href="https://twitter.com/Draagonfire2/status/1619795919045550080"><span>https://twitter.com/Draagonfire2/status/1619795919045550080</span></a></p>
<p>Thread des réacteurs à sels fondus 2/3 : <a
href="https://twitter.com/Draagonfire2/status/1622176144647770114"><span>https://twitter.com/Draagonfire2/status/1622176144647770114</span></a></p>
<p>Thread des réacteurs à sels fondus 3/3 : <a
href="https://twitter.com/Draagonfire2/status/1627367034504839170"><span>https://twitter.com/Draagonfire2/status/1627367034504839170</span></a></p>
<p>Thread sur le réacteur Stellaria: <a
href="https://twitter.com/Draagonfire2/status/1676216176157020160"><span>https://twitter.com/Draagonfire2/status/1676216176157020160</span></a></p>
<p>Thread récapitulatif sur la Commission denquête visant à établir les
raisons de la perte de souveraineté et dindépendance énergétique de la
France: <a
href="https://twitter.com/Draagonfire2/status/1642231133738872835"><span>https://twitter.com/Draagonfire2/status/1642231133738872835</span></a></p>
<p>Thread Brennilis: <a
href="https://twitter.com/Draagonfire2/status/1599406535796350977"><span>https://twitter.com/Draagonfire2/status/1599406535796350977</span></a></p>
<p>Thread Osiris : <a
href="https://twitter.com/Draagonfire2/status/1600173316790050819"><span>https://twitter.com/Draagonfire2/status/1600173316790050819</span></a></p>
<p>Thread GIEC et nucléaire: <a
href="https://twitter.com/Draagonfire2/status/1511484306639708166"><span>https://twitter.com/Draagonfire2/status/1511484306639708166</span></a></p>
<p>Article sur Zaporijia: <a
href="https://medium.com/@caraibe35/point-de-situation-sur-la-centrale-nucléaire-de-zaporijia-94cfc28a84fd"><span>https://medium.com/@caraibe35/point-de-situation-sur-la-centrale-nucl%C3%A9aire-de-zaporijia-94cfc28a84fd</span></a></p>
<p>La grenouille des ratios, à utiliser comme vous voulez:</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:755/1*RIkCt_i9wqD3ou6-IvEq0g.png" /></p>
<p><img
src="https://miro.medium.com/v2/resize:fit:751/1*YIqQ2mfZgptSfhTRL4_gsA.png" /></p>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
<li>Dragonfeu</li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,788 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>dragonfeu_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>dragonfeu_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">dragonfeu_blog</h1>
</header>
<h1
id="stratégie-de-mitigation-de-laccident-de-fusion-du-cœur-sur-lepr.">Stratégie
de mitigation de laccident de fusion du cœur sur lEPR.</h1>
<p>Jimagine si vous avez cliqué sur cet article, vous savez que lEPR
de Flamanville vient de “diverger” ( <em>nota: article écrit en
septembre 2024</em> ). Autrement dit la réaction en chaîne a été, et
pour la première fois dans son cœur, auto-entretenue, permettant un
équilibre neutronique.</p>
<p>Ce fameux EPR présente de grandes avancées en sûreté nucléaire,
toujours afin de limiter les rejets dans lenvironnement en cas
daccident. Alors aujourdhui, laccident grave! <strong>On va parler de
<em>corium</em> , de récupérateur à corium ( <em>core catcher</em> ), de
stratégie de mitigation et de codes de calcul.</strong> Ce que je
souhaite faire avec cet article cest vous expliquer en premier lieu la
physique dune fusion du cœur et ensuite la modélisation qui y est
associée.</p>
<p><strong>Mais alors, comment les ingénieurs en sûreté nucléaire
ont-ils réussi à gérer une substance bien pire que la lave ?</strong> Le
corium, un magma à faire pâlir Hadès, autochauffant, ultra corrosif, à
très haute température, ne laissant aucune chance à la plupart des
matériaux quil rencontre. Possiblement la pire substance artificielle
jamais fabriquée sur cette Terre (avec les agents neurotoxiques)…</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*J0BNk7bnCfDUgRr3K6y_bw.png" /></p>
<p>La lave est une substance similaire au corium sur beaucoup daspects,
mais le corium est… encore pire.</p>
<p>Les réacteurs de génération III, comme lEPR (ou lEPR2), prennent en
compte la gestion des accidents graves dès la conception. Je vais donc
vous expliquer comment la stratégie de mitigation des accidents graves
est conçue sur le réacteur EPR (notez que ce sera vraisemblablement la
même sur EPR2, qui est une optimisation de lEPR).</p>
<p>Laccident grave de référence sur un réacteur à eau, est la fusion du
cœur. Un évènement (une brèche par exemple), a pour conséquence directe
un combustible qui nest plus sous eau, donc plus refroidit, et il
commence à chauffer, jusquà fondre. Cest ce qui sest passé à <a
href="https://www.irsn.fr/savoir-comprendre/crise/accident-fukushima-daiichi-japon-2011"><em>Fukushima</em></a>
et <a
href="https://www.irsn.fr/savoir-comprendre/surete/deroulement-laccident-0"><em>Three
Miles Island</em></a> (fusion partielle), occasionnant des rejets dans
lenvironnement.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:490/0*R7R5WF5O-tznduZZ.jpg" /></p>
<p>EPR de Flamanville. Crédit: <a
href="https://www.framatome.com/fr/clients/nucleaire/flamanville-3/">Framatome</a></p>
<p>Avant de commencer, un rappel sur les trois barrières de confinement.
Dans la suite de larticle, la 1ère et la 2ème barrière vont céder, et
lobjectif sera de préserver la troisième, afin déviter des rejets à
lextérieur.</p>
<p><a
href="https://miro.medium.com/v2/resize:fit:692/0*hJdTyHIMSxkzowlX">https://miro.medium.com/v2/resize:fit:692/0*hJdTyHIMSxkzowlX</a></p>
<p>Crédit: <a
href="https://www.cli-gravelines.fr/la-centrale-de-gravelines/presentation-de-la-centrale/">EDF</a></p>
<h1 id="i-phénoménologie-dun-accident-grave-sur-epr">I/ Phénoménologie
dun accident grave sur EPR</h1>
<h1 id="i.1-dégradation-du-cœur">I.1/ Dégradation du cœur</h1>
<p>Le soleil se lève sur le site de Flamanville. <em>Le vent souffle sur
les plaines de la Bretag</em> .. euh de la Normandie. Le réacteur EPR de
Flamanville est à pleine puissance (1600MWe, ça envoie). Une bien belle
journée. Et là, une énorme brèche sur le circuit primaire! On appelle ça
un APRP ( <em>Accident de Perte du Réfrigérant Primaire</em>). Rien ne
marche, ni refroidissement, ni électricité, le primaire se vide
inexorablement. Il y a de moins en moins deau autour des crayons
combustible, cf. (2) du schéma ci-dessous. Les gaines du combustible
commencent à soxyder. Cest très exothermique, donc le combustible
chauffe fort (oxydation zirconium + hafnium principalement), on produit
de la vapeur deau et du dihydrogène. Le combustible et sa gaine
fondent, alors que le niveau deau continue à baisser. Cette mixture
infernale, au-delà des 2400°C, contenant le combustible, la gaine,
lacier des structures et autres joyeusetés, est appelée un
<strong><em>corium</em></strong> .</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*xcZjQK8hEfk0OGoyvuVLjA.png" /></p>
<p>Conditions initiales [1], cœur dénoyé partiellement [2], cœur dénoyé
fusion en cours [3]. Crédit: IRSN</p>
<p>Bon, je vais aller vite. Maintenant le cœur a fondu intégralement et
il est dans le fond de cuve. Commence alors une série de phénomènes dans
le corium qui vont venir attaquer lacier de la cuve (pour les curieux,
la cuve est en acier 16MND5, un acier de compétition, merci le RCC-M).
La brèche a mis de leau dans lenceinte et on a produit du dihydrogène
pendant laccident.</p>
<p>Maintenant on va se donner <strong>trois contraintes supplémentaires,
pour préserver lenceinte de confinement,</strong> et garder toutes les
saletés à lintérieur, parce quon ne veut pas de rejets atmosphériques
!</p>
<ol>
<li><strong>On veut contrôler léchauffement dans
lenceinte.</strong></li>
</ol>
<p>Pour ne pas chauffer lenceinte il y a deux choses. Déjà, on ne veut
pas que la cuve perce à haute pression, sinon le corium est étalé façon
spray (sans rire), et vient attaquer lenceinte. Et pour éviter une
percée de la cuve à haute pression (supérieure à 15 bar), il faut
dépressuriser la cuve, avec une soupape ultime (comme sur votre cocotte
minute). Vous constaterez que la vanne dédiée à la gestion en AG est
redondée, ce qui permet de diminuer la probabilité de défaillance de
cette ligne de dépressurisation.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:468/1*BkefLhWFwOfYhjaQr_ZFng.png" /></p>
<p>Crédit: IRSN</p>
<p>Ensuite il faut contrôler la puissance thermique dans lenceinte,
cest le système EVU (Evacuation Ultime de la puissance dans
lenceinte). Cela consiste simplement à asperger de leau froide à
lintérieur de lenceinte. Une douche pour réacteur nucléaire. Cela sert
aussi à faire retomber les radionucléides volatils dans lenceinte.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/0*52odtp_1Boboejuf.png" /></p>
<p>Crédit: EDF</p>
<p><strong>2\. On ne veut pas dexplosion hydrogène (type Fukushima)
dans lenceinte.</strong></p>
<p>Dans lenceinte il y a de lair, de la vapeur deau, et maintenant de
lH2. Pour éviter lexplosion hydrogène, il faut consommer lH2, afin de
sortir des zones colorées du diagramme de Saphiro (ci-dessous). Cest le
principe des recombineurs autocatalytiques passifs à hydrogène, qui
comme leur nom lindique, nont pas besoin délectricité pour
fonctionner.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:453/1*bCstNg4HvBtiWtcP18vLTg.png" /></p>
<p>Recombineur autocatalytique passif à dihydrogène.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:373/1*ho1R4dJ41jGxMxCHd2sJQg.png" /></p>
<p>Diagramme de Saphiro</p>
<p><strong>3\. On ne veut pas dexplosion de vapeur dans
lenceinte.</strong></p>
<p>Leau liquide dans lenceinte ne doit pas toucher le corium, sous
peine dune explosion de vapeur. Pour ça, cest simple il faut séparer
les deux.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:476/1*yqJzEOmRI3KTX-ZPYGakvw.png" /></p>
<p>Séparation de leau et du core catcher.</p>
<p><strong>Maintenant quon a nos systèmes pour protéger lenceinte, il
est temps de péter la cuve.</strong> Je ne vais pas détailler les
phénomènes favorables qui permettent de maintenir la tenue mécanique de
la cuve. On postule que sous leffet des contraintes mécaniques
(déformation) et des flux thermiques du corium (fluage), la cuve finit
par se briser. Je dis « on postule » car ce nest pas systématiquement
lapproche retenue.</p>
<p>Il y a plusieurs configurations possibles du corium en fond de cuve.
Ce quon observe est une stratification du corium entre la couche
doxyde et celle de métal léger. Lintuition amène à penser que la haute
température du corium vient ablater la cuve. Cela est vrai au-delà de
2700°C, mais en dessous une croûte se forme en paroi, limitant les
échanges thermiques. En revanche, la couche de métal léger très chaude
reçoit de lénergie de la couche doxyde, et transmet lénergie à la
face interne de la cuve, sur une faible surface relative “ <em>focusing
effect”</em> . Elle est, daprès les expériences, la couche responsable
de la rupture de la cuve.</p>
<p>Je précise que cest lapproche pénalisante retenue, la façon dont
cela arrive nous intéresse assez peu ici car on part du principe que la
cuve va rompre. Létude des corium comporte son lot dincertitudes et
les expériences représentatives sont complexes à réaliser.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:636/1*FDxHkbBZIKEy8tsZwPS5Bg.png" /></p>
<p>Stratification du corium en fond de cuve possible.</p>
<p>Dautres pays estiment quils peuvent maintenir le corium dans la
cuve. On ne distingue finalement que deux approches :</p>
<ul>
<li>Rétention du corium en cuve ( <em>In Vessel Retention</em>, IVR)
associé à des moyens de réfrigération externe de la cuve (type
<em>External Reactor Vessel Cooling</em> , ERVC). Retenue sur AP1000 et
APR1400.</li>
<li>Rétention du corium hors cuve. <strong>Retenue sur EPR/EPR2</strong>
, et les VVER-1200 récents.</li>
</ul>
<h1 id="i.2-linteraction-corium-béton">I.2/ Linteraction corium
béton</h1>
<p>On a désormais notre corium chaud qui tombe dans le fond du bâtiment
réacteur. On arrive bientôt au <em>core catcher</em> , patience !</p>
<p>Une fois tombé, il arrive sur un béton dit « sacrificiel ». Ce béton
a vocation à être abalté par le corium pour modifier les propriétés
physico-chimiques du corium. Durant cette phase, le corium érode ce
béton sur environ 50 cm dépaisseur avant de couler dans le canal de
décharge qui relie le puits de cuve à « la chambre détalement ». Les
mouvements convectifs au sein du corium mélangent le béton et le corium,
le rendant plus fluide, plus homogène et moins visqueux afin de
faciliter son écoulement par la suite. Si plusieurs coulées successives
de corium surviennent, elles convergent toutes dans ce béton de manière
à obtenir un corium homogène et un seul écoulement vers la chambre
détalement. On appelle ça linteration corium béton (ICB).</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*a9BqPHsyV-bAo0C79Szwkw.png" /></p>
<p>Crédit: IRSN</p>
<p>ICB.</p>
<p>Une fois que le corium a ablaté sur toute une épaisseur, il faut
maintenir la structure de lenceinte en état, et on installe donc sous
cette couche de béton sacrificiel des matériaux réfractaires (qui
résistent à des très hautes températures avec une faible déformation
relative). Cette couche est appelée la zircone (ZETTRAL-95GR), et mesure
de 10 à 14 cm dépaisseur.</p>
<p>Une fois que le béton est ablaté complètement dans le sens vertical,
le corium arrive sur un bouchon de métal, cest un composant dont le
rôle est celui dun fusible. Il est la dernière étape avant le canal de
décharge. Ce fusible est conçu pour se rompre relativement rapidement au
contact du corium en assurant une section de passage suffisamment large
pour permettre une coulée rapide de la totalité du corium vers la
chambre détalement.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*T0TfHrMQoXXXwzbCrjhosw.png" /></p>
<p>Schéma complet du core catcher. Crédit: IRSN.</p>
<p><strong>La composition chimique du béton est très importante</strong>
car lablation va générer des gaz incondensables qui peuvent faire
monter la pression dans lenceinte. Cest le cas du CO2 issu de la
calcination du calcaire, par exemple. Ainsi sur EPR, la <a
href="https://www.irsn.fr/savoir-comprendre/surete/6-ans-apres-laccident-suivi-regulier-modifications-programme-experimental#:~:text=la procédure U5%2C qui a,procédant à des rejets filtrés.">procédure
U5</a> a été abandonnée grâce à une fiabilisation de lICB. Sur le parc,
cette procédure permet de dépressuriser lenceinte en expulsant à
latmosphère une partie des gaz préalablement nettoyés dans un filtre
sable.</p>
<p>Note: En principe, les chargements mécaniques de lenceinte sont
limités par conception. Mais il est possible quil y ait des rejets très
minimes malgré tout sur EPR.</p>
<h1 id="i.3-interaction-corium-zircone">I.3/ Interaction corium
zircone</h1>
<p>Cette partie sera assez simple, puisque lobjectif est de faire
interagir le moins longtemps possible le corium avec la zircone. La
zircone est ce quon appelle un <a
href="https://fr.wikipedia.org/wiki/Matériau_réfractaire"><strong>matériau
réfractaire</strong></a> <strong>à la chaleur</strong> . Cest-à-dire
quil ne fond pas, et se déforme relativement peu, même à des hautes
températures (inférieures à environ 1700°C, tout dépend du
matériau).</p>
<p>Une fois que le bouchon fusible a rompu, il faut emmener le corium
jusque dans la chambre détalement <strong>le plus vite
possible</strong> . A noter, la zircone a une forte inertie thermique,
ce qui nous arrange pour ne pas dégrader outre mesure le bâtiment
réacteur par contact prolongé, même si ce nest pas censé arriver
(toujours prendre des marges). Ainsi, une conduite entièrement tapissé
en briques de zircone remplit ce rôle dévacuation rapide du corium.
Cest un tuyau dévacuation pour corium.</p>
<h1 id="i.4-corium-dans-la-chambre-détalement">I.4/ Corium dans la
chambre détalement</h1>
<p>Cette étape, la dernière, consiste à neutraliser le corium une bonne
fois pour toute.</p>
<ul>
<li>une géométrie empêchant le retour en criticité (déjà rendu complexe
par la dilution dans le béton sacrificiel),</li>
<li>un système pour refroidir le corium par-dessous et par-dessus.</li>
</ul>
<p>Le corium arrive dans la chambre détalement qui a une surface
denviron 170 m2. Le corium chaud, en coulant dans la conduite
dévacuation va couper un fil, ce qui déclenche louverture dune trappe
ouvrant une arrivée deau gravitaire deau provenant du réservoir IRWST
( <em>In containment Refueling Water System Tank</em> ). Ce système est
intégralement passif, ni électricité, ni intervention humaine
nécessaire. Cette eau commence par remplir les canaux horizontaux situés
sous la chambre détalement. Les éléments du plancher contiennent des
canaux de refroidissement horizontaux de sections rectangulaires.
Lintérieur de la chambre détalement est recouvert dune couche de
béton sacrificiel qui a la même fonction que le béton du puits de cuve,
mais cette fois-ci il sert aussi à protéger temporairement la couche
protectrice.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:518/1*2KwlGcw32GEjG8HRp2f2Yw.png" /></p>
<p>Chambre détalement. Crédit: IRSN.</p>
<p>Le corium va sétaler dans cette chambre. Cest de la physique
complexe (que je ne vais pas détailler ici). Cet étalement est piloté
par la compétition entre les forces hydrodynamiques et les changements
de viscosité du corium (rhéologie) dus à son refroidissement. La
géométrie de cette chambre détalement est conçue pour optimiser
létalement, et ainsi limiter lépaisseur du corium, le rendant
sous-critique et le préparant au renoyage en surface par-dessus.</p>
<p>Leau, froide donc, arrivant gravitairement de lIRWST, vient noyer
le corium très chaud, donc il y a création de vapeur (beaucoup de
vapeur) sur les premiers instants du noyage. Cette vapeur est
recondensée par le système EVU (la Force dAction Rapide Nucléaire
-FARN- est capable dalimenter ce circuit depuis quelle est prévenue de
laccident grave).</p>
<p>Une fois que la croûte se forme en surface du corium, il y a une
vaporisation très limitée, et une fois le niveau deau atteint
suffisant, le corium est définitivement stabilisé.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*V3ByLTUdt8YT_oUs2Wse0Q.png" /></p>
<p>Schéma dun angle de la chambre détalement du corium. Crédit:
IRSN.</p>
<p>Pour conclure cette partie, une vidéo de présentation du <em>core
catcher</em> de lEPR de Flamanville.</p>
<p>Présentation de la construction du <em>core catcher</em> par EDF.</p>
<p><a
href="https://miro.medium.com/v2/resize:fit:700/0*-BaP_aooe3kpbSY7">https://miro.medium.com/v2/resize:fit:700/0*-BaP_aooe3kpbSY7</a></p>
<p>Chambre détalement terminée sur lEPR FA3. Crédit: <a
href="https://x.com/EDFEPR/status/1488165234510602245">EDF-EPR sur
X</a>.</p>
<h1 id="ii-modélisation-dun-accident-grave"><strong>II/ Modélisation
dun accident grave</strong></h1>
<p>On ne peut pas faire une expérience avec les mêmes conditions quun
réacteur nucléaire, pour des raisons économiques, techniques et
réglementaires. Alors on simule ça dans des codes de calcul. Un code de
calcul ce sont des choix de modélisations, des incertitudes et donc
<strong>ça se valide</strong> , sinon ça ne vaut pas grand-chose.</p>
<p>Et ça se valide avec des expériences ! Les ingénieurs ne sont pas
toujours derrière un ordinateur, lapproche empirique est
<strong>indispensable</strong> ! Mais tu viens de dire quon ne faisait
pas dexpériences réalistes ? Et oui, car on étudie chaque phase dun
accident grave <strong>séparément</strong>. Voyez ça comme des images
quon imbrique entre elles. A la fin, lensemble des images forment un
film, qui modélise un accident grave intégralement, ce qui permet <em>in
fine</em> de contourner lobstacle que représente limpossibilité dune
expérience réaliste. Et comment on réalise ce film ? Avec un code de
calcul intégral !</p>
<p><strong>Présentation dASTEC</strong></p>
<p>ASTEC, pour <em>Accident Source Term Evaluation Code</em> , est
développé par l <em>Institut de Radioprotection de de Sûreté
Nucléaire,</em> lIRSN. Cest un code dit « intégral» cest-à-dire quil
simule toutes les étapes dun accident grave. Cela comprend:</p>
<ul>
<li>La thermohydraulique du circuit : module CESAR, proche du code de
référence en thermohydraulique <a
href="https://cathare.cea.fr/">CATHARE</a>, développé par le
<em>Comissarait à lEnergie Atomique et aux Energies Alternatives</em>
(CEA) ;</li>
<li>La dégradation du cœur : module ICARE ;</li>
<li>Linteraction corium béton : module MEDICIS ;</li>
<li>La chimie, la physique, le transport des gaz, aérosols et des
produits de fission dans lenceinte : modules SOPHAEROS, ISODOP, COVI
;</li>
<li>Les systèmes de sureté : module SYSINT ;</li>
<li>La thermohydraulique de lenceinte : module CPA ;</li>
<li>Le comportement des produits de fission : module ELSA ;</li>
<li>Lévaluation des doses : module DOSE.</li>
</ul>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*RLIofjCDlaOG4KpqdHri1A.png" /></p>
<p>Les différents modules dASTEC. Crédit: IRSN.</p>
<p>Vous trouverez plus dinfos sur : <a
href="https://www.irsn.fr/recherche/systeme-logiciels-astec"><span>https://www.irsn.fr/recherche/systeme-logiciels-astec</span></a>.
Voici également une courte présentation vidéo du code ASTEC, qui est
désormais <strong>un code de référence en Europe sur les accidents
graves des REP.</strong></p>
<p><strong>Présentation vidéo dASTEC</strong></p>
<p>Un code intégral doit répondre aux exigences suivantes :</p>
<p>\- Calculer de façon exhaustive les phénomènes physiques intervenant
lors dun accident de fusion du cœur, en maintenant un compromis temps
de calcul/précision ;</p>
<p>\- simuler le comportement des principaux systèmes de sûreté du
réacteur, afin de se placer dans des conditions similaires à celles dun
réacteur en accidentel, et tester différents scénarios de disponibilités
des systèmes ;</p>
<p>\- traiter complètement les couplages entre phénomènes, par exemple
le refroidissement du corium dans le puits de cuve, en cours
dinteraction corium-béton, par rayonnement et par convection dans
lenceinte de confinement ;</p>
<p>\- être découpé en module indépendant, pour faciliter notamment les
comparaisons avec des résultats expérimentaux et ainsi valider les
modules ;</p>
<p>\- Etre rapide malgré sa grande taille (de 400 000 à 500 000
instructions et 1 000 à 1 500 sous-programmes). Cest très important
quil puisse pouvoir calculer plus vite que le temps réel, afin de
tester un grand nombre de scénarios.</p>
<p><strong>Fonctionnement dASTEC</strong></p>
<p>Pour expliquer (très) rapidement, le logiciel ASTEC a besoin de
données dentrée, cest-à-dire les géométries, les matériaux et les
conditions physico-chimiques initiales de lensemble du réacteur. Ces
données sont fournies par lingénieur détude en accident grave.</p>
<p>A chaque pas de temps, ASTEC calcule lévolution des paramètres
physiques et chimiques. Dans un code intégral, il y a une articulation
de tous les modules, avec un ordre dexécution. On peut activer ou
désactiver certains, selon le besoin, sachant que le nombre de modules
impliqués augmente le temps de calcul !</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:529/1*eTmPXUnYlkBha3CUkd9zcA.png" /></p>
<p>Comment fonctionne ASTEC à chaque pas de temps du calcul. Crédit:
IRSN.</p>
<p>/In fine, c/e qui intéresse lingénieur en sûreté nucléaire, ce sont
les post-traitements des variables suivies ! Ci-dessous, un exemple de
visualisation du cœur dun REP-900MWe dEDF. Ce que vous voyez est un
post-traitement selon le temps des champs de température. Ce quil se
passe dans cette séquence est une dégradation du cœur, vous voyez le
niveau deau baisser progressivement jusquà être remplacé par le corium
en fond de cuve. Vous constaterez que sur la 3ème image, la cuve a cassé
au niveau de la couche de métal léger, à cause du <em>focusing
effect</em> expliqué en partie I !</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*zF9mCPNrdduBhtW5o3B_lg.png" /></p>
<p>Crédit: IRSN.</p>
<p><strong>Validation dASTEC</strong></p>
<p>Comme expliqué plus tôt, un code est une tentative de représentation
du réel, il est donc nécessaire de le valider par comparaison avec… et
bien le réel. Notez quon peut aussi valider un code en le comparant à
des codes déjà validés. Par exemple le module thermohydraulique dASTEC,
CESAR, est validé par comparaison avec le logiciel de référence <a
href="https://cadarache.cea.fr/cad/Documents/Entreprises/Valorisation/Rencontres-CEA-Industrie/11eme/42-FM-f-CATHARE V 06 11 17.pdf">CATHARE</a>.
Je ne vais pas mattarder dessus.</p>
<p>Le principe dune validation empirique cest de faire une expérience,
de la modéliser dans le code de calcul le plus fidèlement possible, et
de comparer les résultats issus des observations et des capteurs avec la
simulation numérique. On constate souvent des écarts, lobjectif cest
de les réduire le plus possible tout en étant capable de dire pourquoi
il y a des écarts et combien ils valent. ASTEC (en V2) est validé par un
panel dexpériences assez immense, depuis 1990 et sans arrêt depuis.
Cette validation sappuie sur plus de 160 essais dans le monde entier,
en particulier sur les essais Phébus, cf. <a
href="https://www.irsn.fr/savoir-comprendre/surete/programme-recherche-phebus-pf-0"><span>https://www.irsn.fr/savoir-comprendre/surete/programme-recherche-phebus-pf-0</span></a>.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:635/1*7I4QJzUPnNG044i98XIMWw.png" /></p>
<p>Exemple de comparaison.</p>
<p>Les essais Phébus constituent une grande base de validation des
modules <a
href="https://www.irsn.fr/sites/default/files/documents/larecherche/outils-scientifiques/codes-de-calcul/icare.pdf">CESAR
&amp; ICARE</a> (thermohydraulique et dynamique de dégradation) et <a
href="https://www.irsn.fr/page/fission-product-transport-modelling-astec-integral-code-sophaeros-module">SOPHAEROS</a>
(comportement des produits de fission).</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*Czs5OR9nKXm4WCbxkOlgDw.png" /></p>
<p>Liste des essais Phébus.</p>
<p>Il y a eu plein dautres validations et lobjectif nest pas de
toutes les lister. Vous trouverez une liste des expériences menées sur
ce lien: <a
href="https://www.irsn.fr/recherche/systeme-logiciels-astec#validation"><span>https://www.irsn.fr/recherche/systeme-logiciels-astec#validation</span></a></p>
<h2 id="autre-code-utilisé-en-accident-grave"><strong>Autre code utilisé
en accident grave</strong></h2>
<p>ASTEC ne modélise pas la phase finale dans la chambre détalement de
lEPR. Pour cela, des programmes spécifiques ont été menés à
linternational, avec des expériences passionnantes. Lobjectif étant
davoir une compréhension fine du phénomène détalement du corium, de
son refroidissement, puis de son noyage. Les logiciels français sont
respectivement THEMA (code CEA) qui calcule la cinétique de
solidification du corium (en masse et en croûtes) ainsi que lérosion du
substrat. Et CROCO (code IRSN) qui permet une modélisation détaillée de
la convection dans lécoulement. Un grand nombre dessais ont été menés,
le plus impressionnant étant lessai VULCANO, comme montré
ci-dessous.</p>
<p><img
src="https://miro.medium.com/v2/resize:fit:700/1*6YGczfyC8-4kDQXoWoIkQw.png" /></p>
<p>Crédit: IRSN.</p>
<p>Il est ressorti de lensemble de ces programmes de R&amp;D que
létalement à sec du corium de REP permet son refroidissement ultérieur
car lépaisseur de corium atteinte est suffisamment faible. Ainsi,
lapproche retenue sur EPR est validée expérimentalement. Des
incertitudes subsistent sur la capacité dune nappe de corium à sétaler
sous eau, cest pour cela que lEPR fait le choix détaler le corium à
sec en séparant physiquement eau et corium.</p>
<h1 id="conclusion">Conclusion</h1>
<p>Voilà comment on gère un accident grave sur lEPR. Jai
volontairement éclipsé beaucoup de sujets sur le comportent des produits
de fissions dans lenceinte, sur les différentes possibilités de
stratification du corium. Jai aussi fait le choix de focaliser sur
lEPR alors quil existe aussi dautres stratégies sur les autres
réacteurs du parc de génération II (Les CP, P4/P4 et N4). Jai
également restreint aux REP français, sans analyser les autres
stratégies équivalentes sur <a
href="https://fr.wikipedia.org/wiki/Réacteur_VVER">VVER</a>, <a
href="https://fr.wikipedia.org/wiki/Réacteur_AP1000">AP1000</a>, ou <a
href="https://fr.wikipedia.org/wiki/APR-1400">APR1400</a>. Je nai pas
non plus parlé des filières à eau lourde (<a
href="https://fr.wikipedia.org/wiki/Réacteur_CANDU">CANDU</a>),
bouillantes (<a
href="https://fr.wikipedia.org/wiki/Réacteur_à_eau_bouillante">BWR</a>,
<a href="https://fr.wikipedia.org/wiki/Réacteur_ABWR">ABWR</a>), rapides
(<a href="https://fr.wikipedia.org/wiki/Superphénix">SPX</a>) ou encore
des filières thermiques (HTR &amp; <a
href="https://fr.wikipedia.org/wiki/Réacteur_nucléaire_à_très_haute_température">VHTR</a>)
et à sels fondus (<a
href="https://fr.wikipedia.org/wiki/Réacteur_nucléaire_à_sels_fondus">MSFR</a>).
Chaque technologie, présente une stratégie adaptée. <strong>Tous les
futurs réacteurs devront quoiquil en soit prendre en compte les
accidents graves en compte</strong> .</p>
<p>Je vous donne mes sources sur <a href="https://we.tl/t-Ubd7Pil4Np">ce
lien</a> (attention il nest valable que 7 jours). Tout est public et
trouvable sur le site de lASN et/ou de lIRSN.</p>
<h1 id="annexe"><strong>Annexe</strong></h1>
<p><img
src="https://miro.medium.com/v2/resize:fit:629/1*1Iepu71t1QQjOppTrNy7OQ.png" /></p>
<p>[[<a
href="https://medium.com/tag/nuclear?source=post_page-----f82c1d15ed58--------------------------------">https://medium.com/tag/nuclear?source=post_page-----f82c1d15ed58--------------------------------</a>][</p>
<p>Nuclear</p>
<p>]]</p>
<p>[[<a
href="https://medium.com/tag/accident?source=post_page-----f82c1d15ed58--------------------------------">https://medium.com/tag/accident?source=post_page-----f82c1d15ed58--------------------------------</a>][</p>
<p>Accident</p>
<p>]]</p>
<p>[[<a
href="https://medium.com/tag/epr?source=post_page-----f82c1d15ed58--------------------------------">https://medium.com/tag/epr?source=post_page-----f82c1d15ed58--------------------------------</a>][</p>
<p>Epr</p>
<p>]]</p>
<p>[[<a
href="https://medium.com/tag/astec?source=post_page-----f82c1d15ed58--------------------------------">https://medium.com/tag/astec?source=post_page-----f82c1d15ed58--------------------------------</a>][</p>
<p>Astec</p>
<p>]]</p>
<p>[[<a
href="https://medium.com/tag/fukushima?source=post_page-----f82c1d15ed58--------------------------------">https://medium.com/tag/fukushima?source=post_page-----f82c1d15ed58--------------------------------</a>][</p>
<p>Fukushima</p>
<p>]]</p>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -133,6 +133,6 @@ li {
<a href='/'>Retour à l'Accueil</a><hr/><html><head><title>dragonfeu_blog</title></head><body> # dragonfeu_blog - Articles
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
<h1>Navigation</h1><br><a href=/index.html>index.html</a><h1>Articles en Français</h1><br><a href=/2024/coucou-gemini>2024 coucou gemini</a></article></body></html>
<h1>Navigation</h1><br><a href=/index.html>index.html</a><h1>Articles en Français</h1><br><a href=/2024/coucou-gemini>2024 coucou gemini</a><br><a href=/2024/strategie-mitigation-accident-fusion-coeur-epr2>2024 strategie mitigation accident fusion coeur epr2</a><br><a href=/2024/l-aventure-superphenix>2024 l aventure superphenix</a><br><a href=/2023/recap-centrale-zaporijia>2023 recap centrale zaporijia</a><br><a href=/2023/recapitulatif-contenu-threads>2023 recapitulatif contenu threads</a></article></body></html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -194,45 +194,45 @@ actuellement au 5eme.</p>
href="https://tykay.free.fr/index.php/post/2011/11/14/Anim-Est-2011-compte-rendu">Anim
Est - Novembre 2011</a></p>
<p>-<a
href="http://tykay.free.fr/index.php/post/2011/11/16/Dessins-d-anim-est">Dessins</a></p>
href="https://tykayn.fr/2011/11/16/Dessins-d-anim-est">Dessins</a></p>
<p><a
href="http://tykay.free.fr/index.php/post/2011/09/14/photos-d-Harajuku-2011">Harajuku
href="https://tykayn.fr/2011/09/14/photos-d-Harajuku-2011">Harajuku
Bercy  - Septembre 2011</a></p>
<p>-<a
href="http://tykay.free.fr/index.php/post/2011/09/13/Dipl%C3%B4me-et-Dessins-de-harajuku-2011">Dessins</a></p>
href="https://tykayn.fr/2011/09/13/Dipl%C3%B4me-et-Dessins-de-harajuku-2011">Dessins</a></p>
<p><a
href="http://tykay.free.fr/index.php/post/2011/07/09/Japan-Expo-2011-compte-rendu-imag%C3%A9">Japan
href="https://tykayn.fr/2011/07/09/Japan-Expo-2011-compte-rendu-imag%C3%A9">Japan
Expo - Juillet 2011</a></p>
<p>-<a
href="http://tykay.free.fr/index.php/post/2011/07/07/Cosplays-de-Japan-Expo-2011">Cosplays</a></p>
href="https://tykayn.fr/2011/07/07/Cosplays-de-Japan-Expo-2011">Cosplays</a></p>
<p>-<a
href="http://tykay.free.fr/index.php/post/2011/07/07/Dessins-de-Japan-Expo-2011">Dessins</a></p>
href="https://tykayn.fr/2011/07/07/Dessins-de-Japan-Expo-2011">Dessins</a></p>
<p>Geek Faeries - Juin 2011</p>
<p><a
href="http://tykay.free.fr/index.php/post/2011/03/22/Made-in-asia-compte-rendu">Made
href="https://tykayn.fr/2011/03/22/Made-in-asia-compte-rendu">Made
in Asia Bruxelles - Mars 2011</a></p>
<p><a
href="http://tykay.free.fr/index.php/post/2010/09/27/Harajuku-festival-2010">Harajuku
href="https://tykayn.fr/2010/09/27/Harajuku-festival-2010">Harajuku
Bercy  - Septembre 2010</a></p>
<p><a
href="http://tykay.free.fr/index.php/post/2010/07/12/Photos-de-japan-expo-2010">Japan
href="https://tykayn.fr/2010/07/12/Photos-de-japan-expo-2010">Japan
Expo - Juillet 2010</a></p>
<p>-<a
href="http://tykay.free.fr/index.php/post/2010/07/11/Dessins-de-japan-expo-2010">Dessins</a></p>
href="https://tykayn.fr/2010/07/11/Dessins-de-japan-expo-2010">Dessins</a></p>
<p>Manga Expo 2007</p>
<p><a
href="http://tykay.free.fr/index.php/post/2007/07/11/Japan-Expo2007">[[<span>http://tykay.free.fr/dotclear2/public/3.0/JE2007/2/.DSC06356_s.jpg</span></a>]]</p>
href="https://tykayn.fr/2007/07/11/Japan-Expo2007">[[<span>http://tykay.free.fr/dotclear2/public/3.0/JE2007/2/.DSC06356_s.jpg</span></a>]]</p>
<p><a
href="http://tykay.free.fr/index.php/post/2007/07/11/Japan-Expo2007">Japan
href="https://tykayn.fr/2007/07/11/Japan-Expo2007">Japan
Expo 2007</a></p>
<p><a
href="http://tykay.free.fr/index.php/post/2006/11/21/Anim-Est-2006-Y-a-t-il-une-vie-apres-HardGay">Anim'Est
href="https://tykayn.fr/2006/11/21/Anim-Est-2006-Y-a-t-il-une-vie-apres-HardGay">Anim'Est
2006</a></p>
<p><a
href="http://tykay.free.fr/index.php/post/2006/10/29/Manga-Expo">[[<span>http://membres.lycos.fr/tkbl/animest2006/img/DSC00887.JPG</span></a><img
href="https://tykayn.fr/2006/10/29/Manga-Expo">[[<span>http://membres.lycos.fr/tkbl/animest2006/img/DSC00887.JPG</span></a><img
src="http://tykay.free.fr/dotclear2/public/me/2/02.JPG" />]]</p>
<p><a
href="http://tykay.free.fr/index.php/post/2006/10/29/Manga-Expo">Manga
href="https://tykayn.fr/2006/10/29/Manga-Expo">Manga
Expo 2006</a></p>
<h1 id="liens">Liens</h1>
<ul>

File diff suppressed because one or more lines are too long

View File

@ -1,653 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 366</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2006-11-28 15:01:23&gt;</li>
<li>modifié: &lt;2006-11-28 15:01:23&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="atelier-cocci-fin-novembre-1">Atelier cocci fin Novembre</h2>
<p><a
href="https://membres.lycos.fr/tkbl/berg%C3%A8re_mouton_c.png">[[<span>https://membres.lycos.fr/tkbl/atelier/bmt.jpg</span></a>]]</p>
<p>Le thème du Webzine numéro 2 d'e-kaki est "les moutons", vla donc mon
illustration couleur de participation <sup>o</sup>^</p>
<p>————-dessins de l'atelier cocci du <strong>Dimanche.</strong></p>
<p> <img
src="https://tykay.free.fr/dotclear2/public/atelier/01.jpg" /><br />
histoire presque vraie :D<br />
<br />
New Page 1</p>
<p> <br />
<img src="https://tykayn.fr/wp-content/uploads/atelier/02.jpg" /></p>
<p>Jori nous montre son début de version 3 d'e-kaki. Et y'a que des
liens vers "e-xpert" en apperçu.<br />
<img src="https://tykayn.fr/wp-content/uploads/atelier/03.jpg" /></p>
<p>coccyx que ça s'écrit è__<sub>é</sub><br />
<img src="https://tykayn.fr/wp-content/uploads/atelier/04.jpg" /><br />
<img src="https://tykayn.fr/wp-content/uploads/atelier/05.jpg" /><br />
<img src="https://tykayn.fr/wp-content/uploads/atelier/06.jpg" /><br />
<img src="https://tykayn.fr/wp-content/uploads/atelier/07.jpg" /><br />
<img src="https://tykayn.fr/wp-content/uploads/atelier/08.jpg" /></p>
<p> </p>
<p> </p>
<p>———— <strong><em>photos story</em></strong></p>
<p><strong>Samedi 25 Novembre</strong> 2006</p>
<p>Sparti pour une heure et demie de transports! Avant d'arriver à
Parisse y'a un gros feu en direction du sud ouest de Parisse. Pi avec
tous ces travaux y'avait que des trains pour mon porn ass.</p>
<p><img src="https://membres.lycos.fr/tkbl/atelier/DSC00989.JPG" /></p>
<p>un plan lapin plus tard, me voici donc à Joriland.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC00994.JPG" /></p>
<p>Pendant que Jori est le seul à bosser (presque à moitié cul nu), le
reste de la troupe ne s'active pas à l'aider v_______<sub>v</sub><br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC00995.JPG" /></p>
<p>Neiba, Reg, Monocéroze01, TH2 méditent sur les agrapheuses de
Mono.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC00998.JPG" /></p>
<p>Ho un mur rouge qui réfléCHIt la lumière *0*<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01002.JPG" /></p>
<p>Rangeons cette jolie bache en plastoc, qu'on a bien salopé de
peinture. (wah, notez comme la superposition des sacs de voyage permet
une meilleure organisation.)<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01006.JPG" /></p>
<p>Allons chercher Puchi à 20h20, heure où on aurait dû arriver, iksdé.
Dans le métro les gens savent vraiment pas raccrocher le téléphonne,
laule.</p>
<p>Jori: " tu prends vraiment n'importe quoi en photo"<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01009.JPG" /></p>
<p>Wah on a retrouvé Puchi qui était partie se cacher du côté
"pyramides" de l'Opéra (la boîte à musique de Paris)<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01010.JPG" /></p>
<p>Une demie heure d'attente plus tard pour avoir LA table à 6 personnes
de tout le resto on arrive dans je sais pu quel resto où les cuistots
Japonais ont destisheurs avec marqué dessus "Free tibet".</p>
<p>Puchi: "han c'est des rebelles ici, t'as vu leur t-shirts?"<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01014.JPG" /></p>
<p>!bière, et 14€ de repas.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01016.JPG" /></p>
<p>Neiba ne s'était pas transformé en sac en fait, ouf.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01024.JPG" /><br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01027.JPG" /></p>
<p>Wah on dirait une seule et même image <strong>0</strong></p>
<p>Enfin, Puchi malade d'avoir bu 33cl de BIERE Kirin s'endormit dans le
métro du retour.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01028.JPG" /></p>
<p>Ce qui fit bien loler Neiba et Roog, bien finis de fatigue eux aussi.
(on se demande vraiment pourquoi, ils ont même pazs peinturé, j'vous
jure les jeunes! v_<sub>v</sub>)<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01029.JPG" /></p>
<p>un G33ktime plus tard, on retourne chez Jori pour bouffer le
<strong>Dimanche</strong> midi. (Pauvre midi)<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01032.JPG" /></p>
<p>Mono a le style de Solid Snake avec son nappareil foto cado.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01034.JPG" /></p>
<p>mwahaha ils marchent pareil.</p>
<p>Puchi: " Ouais mais Jori il a un jogging, franchement c'est pas la
classe"</p>
<p>:D</p>
<p><br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01036.JPG" /></p>
<p>Formation deux par deux, main dans la main. (on cherchait un grec
dans Gambetta)<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01037.JPG" /></p>
<p>whoua du sport!<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01040.JPG" /></p>
<p>remettage de lacet avant de me sauter dessus.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01042.JPG" /></p>
<p>Que de violence. Technique de la corde à linge PAR DERRIÈRE! (Mono
est apparemment spécialisé dans les trucs par derrière, Jori vous le
confirmera.)<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01043.JPG" /></p>
<p>Attention voitures méchantes. (Personne, pas même elle, ne sait ce
que tentait de faire Puchi avec son bras droit sur cette photo)<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01044.JPG" /></p>
<p>youpi on a trouvé un gryos!<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01045.JPG" /><br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01046.JPG" /></p>
<p>cherchez les différences, laule.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01052.JPG" /></p>
<p>Hop, lieu de rendez vous, la mairie de Gambetta. (s' magnifique,
plusieurs mairie pour la seule ville de Babylone)</p>
<p>Vla donc Momorya et Elileami aka Jourouj. ø/<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01056.JPG" /></p>
<p>Reg appelle avec des Tickets.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01058.JPG" /></p>
<p>Qui diable the fuck est cette personne qui a tenté de taper l'incrust
dans notre secte coccinellesque?<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01063.JPG" /></p>
<p>Hop, on n'y croyait pas mais on est tous rentrés dans l'appart de
Jori.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01068.JPG" /></p>
<p>Bon, dessinons pour ce fucking wouébzine!<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01070.JPG" /></p>
<p>Mono dessine les gens.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01072.JPG" /></p>
<p>Oups j'ai failli marcher sur ton pécé.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01078.JPG" /></p>
<p>Reg: "mwahaha c'est nimp!" (on dirait un sample)</p>
<p><br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01080.JPG" /></p>
<p>On se fait passer nos conneries pendant que Puchi fait rie… met des
musik bizarres o.o</p>
<p><img src="https://membres.lycos.fr/tkbl/atelier/DSC01090.JPG" /></p>
<p>Trois feuilles de dessins plus tard (pour ma part),
Eliléloulillaaaaahiyooohiyaaami et Ghimmlit s'en vont.<br />
<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01092.JPG" /></p>
<p>Comme c'est triste, mono fucke un coup Morya.</p>
<p><br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01101.JPG" /></p>
<p>Puis repart direct DLC du PC de Jori, pour flooder le forum secret
d'e-kaki, où tout se décide sans l'avis des moutons du net et tant mieux
=)<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01118.JPG" /></p>
<p>Repeignons cette fucking fenêtre de cuisine qui filtre la
lumière.</p>
<p>Tiens d'ailleurs comme Jori prévoit de mettre son lit dans cet espace
rouge ça va être la joie des odeurs de cuisine dans le lit quand il en
aura un, iksdé. :D<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01129.JPG" /></p>
<p>Le vrai Mono o<sub>o</sub><br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01130.JPG" /></p>
<p>Il s'est envolé.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01133.JPG" /></p>
<p>Un film porno chic: la toilette du pinceau.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01135.JPG" /></p>
<p>Bien, passons aux choses sérieuses!</p>
<p>Jori lit Venezzia. Reg lit Natoru, Puchi met des clips. Mono g33k
01.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01138.JPG" /></p>
<p>Je trouve un dessin de neiba dans le carnet de Reg.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01140.JPG" /></p>
<p>Bon en fait, cours d'anat.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01142.JPG" /></p>
<p>Et pidzza land Ø//////// on va tester tous les restos du
monnnnnnnde!<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01143.JPG" /></p>
<p>miam<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01144.JPG" /></p>
<p>Salade Venise: un cake aux carottes, fromage, saumon, salade, woot,
omg.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01148.JPG" /></p>
<p>*Q*<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01149.JPG" /></p>
<p>12.50€ de repas ø/ payons par carte bleue. Mais comme ils acceptent
que au delà de 15€ on a dû payer.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01155.JPG" /></p>
<p>ça c'est un vent :D<br />
Que voulez vous, on ne peut interférer les discussions d'un couple qui
n'a pas dormi v_<sub>v</sub><br />
Tiens au fait y'a un concours de pub yaoi yuri en ce moment sur
e-kaki</p>
<p><br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01157.JPG" /></p>
<p>Allons récupérer les morceaux de ce PC déglingué avant e
repartiiir.<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01163.JPG" /></p>
<p>Dans le métrooooo ø/<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01170.JPG" /></p>
<p>Espace geek.(vous devinerez jamais où c'est)…<br />
<img src="https://membres.lycos.fr/tkbl/atelier/DSC01171.JPG" /><br />
<br />
Mais nourriture véritable *0*<br />
Et c'est ainsi qu'en repartant chez moua Lundaille, je découvris que je
m'étais fait un wouikènd à 40 €<br />
rien que ça<br />
 n___<sub>n</sub></p>
<p> <br />
<strong>VIDEOS:</strong></p>
<p>[[<a
href="https://www.youtube.com/watch?v=fZp6YcuhFXE">https://www.youtube.com/watch?v=fZp6YcuhFXE</a>][Temeeee.avi<br />
]]</p>
<p>[[<a
href="https://www.youtube.com/watch?v=5tUH6-CZdNc">https://www.youtube.com/watch?v=5tUH6-CZdNc</a>][Atelier
cocci.avi<br />
]]</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,622 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 135</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2006-12-06 21:44:50&gt;</li>
<li>modifié: &lt;2006-12-06 21:44:50&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="plan-loose-lol-et-crêpes-parties">Plan loose-lol et crêpes
Par(t)i(e)s</h2>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01180.JPG" /></p>
<p>Yeeeh c'est parti pour le plan louz!</p>
<p><br />
New Page 1</p>
<p> </p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01184.JPG" /></p>
<p>S'moi, Mister Shit, Micanou, Débo.</p>
<p>On était partis pour Cergy Prefecture, après une dure tentative de
squatt de moyen de transport du frère de Mister Shit. en quête d'un
quelconque bar à squtter, mais ils étaient tous pleins et/ou
trocher.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01192.JPG" /></p>
<p>Comme ça sukssait on est allé voir le distrib de la gare
ø////////</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01201.JPG" /></p>
<p>Hoo le joli drapeau du golfe de Vauvau!</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01202.JPG" /></p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01211.JPG" /></p>
<p>Voilà, ça c'est fait…</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01212.JPG" /></p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01213.JPG" /></p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01214.JPG" /></p>
<p>Trofort! z'avez vu comme ils rotationnent pendant le trajet
<strong>o</strong></p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01215.JPG" /></p>
<p>Retour au point de départ. Sauf qu'on a eu une super soirée! (thumbs
up)</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01216.JPG" /></p>
<p>L'endroit a changé, mais décidément ils gardent les mêmes
dispositions. On fait nos adieux à Débo, et c'est parti pour l'after DVD
crêpes chez Mister Shit.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01218.JPG" /></p>
<p>On prévoit les crêpes du marché, avec nutella coca et chocolat chaud
(pas tout sur la crêpe hein) devant le DVD "Photo Obsession", un
thriller avec dans le rôle principal Robin Williams. saké bien.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01219.JPG" /></p>
<p>Dans ce film, le héros nous raconte que les gens ne prennent pas de
photos des choses dont ils ne shouaitent pas se rappeler; pourtant j'ai
pris des photos de cette soirée o<sub>o</sub></p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01220.JPG" /></p>
<p>Bouddha fume des roulées! Mister Shit fait du vélo de salon et s'en
mord les… ø/</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/1/DSC01222.JPG" /></p>
<p>Maxime, Mister shit ou bien Pansai ( ="avoir envie de chier" en
chinois) nous fout ensuite à la porte. Il est 3heures du mat, c'est
ainsi que commence le Samedi 2 Décembre..</p>
<p> </p>
<p>(Roque)Fort bien, passons au wouikènd.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01224.JPG" /></p>
<p>Pépète le chat fait son aguicheuse et hop!</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01235.JPG" /></p>
<p>Direct je me retrouve en face d'un cosplayeur d'Armstrong.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01237.JPG" /></p>
<p>Ce soir c'est aussi plan crêpes chez Reg. Donc Pupu se ramen! (omg
jeu de mots)</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01238.JPG" /></p>
<p>Y'a pas de sucre chez Reg. Donc la pâte n'en contient pas. Hop,
bouillage de chocolat noir fluo ø</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01245.JPG" /></p>
<p>Crêpes salées, jambonnées, gruyèrées, retournées à la main par Jiji,
qui a payé son !Q.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01247.JPG" /></p>
<p>Hé non, on ne mange pas le crêpes avec des pailles makdo.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01257.JPG" /></p>
<p>Une bataille de tubules plus tard, Puchi entamme le ragoût de
licorne, honneur aux dames, égale dé.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01266.JPG" /></p>
<p>Heu, merde je crois que j'ai dû foirer mes notes de compte rendu
parce que Reg n'avait pas de licorne chez lui.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01277.JPG" /></p>
<p>Tampi pour la cohérence de toute façon.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01281.JPG" /></p>
<p>avant</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01288.JPG" /></p>
<p>après (y'a des gens frileux ici)</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01291.JPG" /></p>
<p>OMG! Regslip!</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01294.JPG" /></p>
<p>Y'a pas de sucre, que des figolus.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01298.JPG" /></p>
<p>Ben c'était trop fun, dodo!</p>
<p> </p>
<p>Dimanche 3 Décembre</p>
<p> </p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01307.JPG" /></p>
<p>repas du midi: Tartiflette d'invitation dans le Nord Est de
Parisse.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01314.JPG" /></p>
<p>Kokeshi cado d'aéroport du Japon.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01315.JPG" /></p>
<p>Puchi: "Y'a un truc que j'aime bien faie avec les hamsters Russes,
c'est les prendre entre mes mains et leur faire sortir les yeux de la
tête <strong>o</strong> "</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01321.JPG" /></p>
<p>Apprenons aux bestioles à faire le ménage dans les assiettes. Non, on
est pas du tout maniaques. =D</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01334.JPG" /></p>
<p>omg mais c'est ma chemise again. séance de retapage de maquillage
avant de rejoindre les glandus à Chatelet.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01335.JPG" /></p>
<p>Woot! Ferra Ø/ Bon heuu, keskon fait maintenant?</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01336.JPG" /></p>
<p>Allons dans le café le plus paumé du coin des Halles pour réfléchir à
ça.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01337.JPG" /></p>
<p>Hummm chocolat viennois <strong>Q</strong></p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01340.JPG" /></p>
<p>Jiyoné, rien à voir avec la conversation.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01344.JPG" /></p>
<p>Bon, pour décider de qui sait ce qu'on fait ce soir on prend dédé
(par derrière)</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01345.JPG" /></p>
<p>Jori: "ha les gamers!"</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01348.JPG" /></p>
<p>Bon, on a trouvé! on se fait un Mac Do à Gambetta! ø/ L'heure du
Puchi concert de Merry approche.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01355.JPG" /></p>
<p>Et elle y alla…</p>
<p>Ouah y'a un monsieur qui veut revendre son billet.</p>
<p>Reg: " il veut le revendre au noir :D"</p>
<p>Jori: " En fait il s'est fait larguer par sa copine avec qui il
devait y aller alors voilà :D "</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01357.JPG" /></p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01358.JPG" /></p>
<p>Les futons de Jori c'est comme les toasters. S'pour se la dorer des
deux côtés. Admirez ce skill de la vautre.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01367.JPG" /></p>
<p>Super on a trouvé notre plan du soir: aller au cinoche voir
<strong>Souris City</strong> Ø/////////</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01370.JPG" /></p>
<p>Y'a que nous dans la salle wouehhhhh ø/////////</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01371.JPG" /></p>
<p>une sale salle.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01374.JPG" /></p>
<p>On est revenus de la séance bien contents paskeu c'était chouette
n__<sub>n</sub></p>
<p>Pupu nous attendait au makdo (omg point de rendévou).</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01375.JPG" /></p>
<p>DraCULa était avec nous. Allons récupérer els affaires de tout le
monde chez Joripelle.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01380.JPG" /></p>
<p>"un métro plus BEAU…"</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01381.JPG" /></p>
<p>Enfin une foto où on voit pas que le cul des gens…</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01384.JPG" /></p>
<p>et ça c'est le pied!</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01386.JPG" /></p>
<p>ho ho ho</p>
<p><img
src="https://membres.lycos.fr/tkbl/ferra/2/DSC01387.JPG" /><br />
Juste une foto pour montrer qu'avec mes nouvelles pompes j'ai des pieds
tout petits.</p>
<p><img src="https://membres.lycos.fr/tkbl/ferra/2/DSC01389.JPG" /></p>
<p>youpi, ceci n'est pas un cours de persp.<br />
Aujourd'hui Mercredi 6 Decembre sort le dernier <strong>Satoshi
Kon</strong> <strong>o</strong> (Tôkyô Godfathers, Paranoïa Agent,
Millenium Actress):</p>
<p><img
src="https://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/63/09/32/18678955.jpg" />
<strong>Paprika</strong>.<br />
Et ça sort au cincohe en France plusieurs mois avant le Japon
n__<sub>n</sub><br />
Et on va aller le voir avecla compagnie des glandus Parisiens swouikènd
youpi!  <strong>0</strong></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,520 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1430</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-02-02 21:05:58&gt;</li>
<li>modifié: &lt;2007-02-02 21:05:58&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="du-neuf-du-pognon-duku-tout-va-bien-1">Du neuf du pognon duku
tout va bien (?)</h2>
<p><br />
<img
src="https://membres.lycos.fr/tikachu/truc/59-back_noir_pti.png" /><br />
(J'aime la dentelle <strong>3</strong>)<br />
Les affaires reprennent</p>
<p>pour les ratons laveurs. Je vais me faire 100€ avec ce que j'ai
envoyé mais c'est pas tout, je gagne aussi d'autres contrats mieux
rémunérés ø/ Les affaires marchent donc.<br />
<img
src="https://membres.lycos.fr/tikachu/truc/raton_savon_pti.jpg" /><br />
J'ai même commencé mes cours du CNED, les notes arriveront bientôt. Et
selon mes calCULs je dois faire 2 à trois devoirs par semaine jusqu'à la
semaine 22 pour être fin prêt le jour du bac et avoir tout révisé
ø/<br />
<img
src="https://membres.lycos.fr/tikachu/truc/ratons_machine_pti.jpg" /><br />
J'en profite pour clamer haut et fort que Venetian Snares et Susume
Hirasawa (compositeur des ziks des films de Satoshi Kon comme dans
Millenium Actress, Paranoia Agent ou Paprika) sont des génies de la
composition musicale et que la Qatsi trilogy ça déchire Tadaa!<br />
<img src="https://membres.lycos.fr/tikachu/truc/choc1.jpg" /><br />
omg shocking! Du spoil pour !Q numéro 2.<br />
<img
src="https://tykayn.fr/wp-content/uploads/s/icon_redface.gif" /><br />
Ayant eu plusieurs retours du zine !Q numéro 1 j'ai décidé de moins
arnaquer les gens dans le prochain numéro en mettant plus de dessins de
ku plus ou moins explicites. Ces messieurs ET ces mesdammes en auront
pour leur argent avec ce numéro qui s'annonce plus ordonné et plus
hard.<br />
On pouvait pas faire moins avec seulement quatre nichons sur 52 pages
dont une paire en couleur joliment illustrée <strong>3</strong> par
Puchi-ko en quatrième de couverture (même que pendant <a
href="file:///index.php/post/2006/10/29/Manga-Expo">Manga Expo</a>, Reg,
l'elfe moins prude que ne le pensait son piercing, retournait les
couvertures du côté peu commercial, celui où il y a Desmond Lewelyn,
l'agent Q de James Blonde, et qu'on devait du coup les re-retourner si
on voulait trouver des acheteurs, laule o<sub>o</sub>).<br />
<br />
<img src="https://membres.lycos.fr/tikachu/truc/95_heart.jpg" /><br />
Y'a pu qu'a convaincre Regulus qu'<strong>offrir un ou deux préservatifs
à nos acheteurs de <em>fanzine culturel</em></strong> ne serait pas une
"incitation à la débauche" pire que tout ce qu'ils trouveront dans le
zine lui même. (ça fait bien rire notre mee2 national) Je suis sûr que
ce serait une bonne idée, en plus Choob et Yue proposaient aussi des
strings chics :D<br />
Voilà, tous avec moi, faites le savoir ici, signez le pacte Q de Nicolas
Hulo… heu non, <strong>faites le savoir ici dans vos
commentaires</strong>! <sup>o</sup>^<br />
<br />
Voilà, il semblerait que tout aille bien dans ma vie car ma carrière
s'annonce lancée, eh bien détrompez vous. Ne soyons sûrs de rien et
restons patients.<br />
Comme je suis presque sûr de ne pas revenir en vie du voyage que je vais
faire dans moins de trois semaines jevais en profiter pour faire plein
de choses que j'aurais dû faire, passer ce temps auprès de gens que
j'apprécie et qui ont su remplir mes journées de bonheur.<br />
<img
src="https://tykayn.fr/wp-content/uploads/s/icon_redface.gif" /><br />
à la prochaine mes chéries <img
src="https://e.deviantart.com/emoticons/h/heart.gif" /> *o*<br />
<img src="https://e.deviantart.com/emoticons/h/hug.gif" /><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,495 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1194</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-05-01 13:57:41&gt;</li>
<li>modifié: &lt;2021-04-07 14:02:45&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="aber-tu-sors-1">Aber tu sors</h2>
<p><br />
Déclaration a Ber%%% <a
href="https://tykayn.fr/index.php/tag/aber">Aber</a> est un gros gamer
qui ne sort plus de chez lui depuis qu'il a découvert internet et qu'il
passe ses journées sur Ragnarok Online, au détriment de sa scolarité, de
son épanouissement personnel et de sa vie sociale auparavant rythmée de
sorties prudes mais très conviviales. Notre ambition du Samedi 28 Avril
2007 était de le faire sortir de chez lui. Ce qu'il faut savoir c'est
qu'aber n'est pas du tout au courant de la jolie déclaration à la poésie
travaillée en une terentaine de minutes que nous lui avons spécialement
préparé. Et que si on a fait ça c'est aussi parce qu'il nous manque le
Aber, malgré son attitude qui en a fait fuir plus d'un. Et tel un
boomerang, notre bienveillance nous revient en pleine gueuleVoici le
Making of serti de zik de devinez où: tout de même, plus tard dans la
soirée, avec l'aide de copines (quel être corruptible ce Ber :D) nous
avons réussi à le faire sortir jusque dans notre demeure festive (à 100
mètres de chez lui, heureusement) même si c'était avec ses tapis de
Dance-Dance-Revolution et que ça s'est enchaîné sur Tales of Destiny où
il a fait le gamer comme si on était pas là. ø/////// <img
src="file:///dotclear2/public/3.0/abertusors/DSC04446.JPG" /> On passera
le détail que Débo (la fille sur les vidéos ici) avait pas mal bu, ce
qui n'a pas rassuré Ber… et que <a
href="file:///index.php/tag/pansai">mister shit</a> (la merde sur les
vidéos ici) m'avait volé mon demi-pantalon comme un fétishiste qu'il est
(mais je l'avais retrouvé avant qu'Aber n'arrive). En étant optimiste on
dira que c'est un pas dans l'avancée sociale de bébér et que peut être
maintenant il voudra bien dire bonjour quand on le croise dans la rue.
En l'étant moins on dira qu'il s'est laissé prendre au piège et qu'il a
conclu que débo était une alcoolique finie et que plus jamais on le
reprendra à venir voir des gens qui passent moins de. Encore une soirée
où on m'aura dit que j'étais celui qui a le moins bu, que j'étais le
moins bourré. Ce qui explique sans doute pourquoi le reste de la troupe
était aussi fait :D Hah j'les ai bien eu! Et pour finir comme de
coutume, une photo de pépète le chat sur le toit. (wah, c'est la
première fois que je cause d'un seul sujet à la fois <strong>o</strong>)
<img src="file:///dotclear2/public/3.0/abertusors/DSC04621.JPG" />
Moralité: les jeux en ligne cémal, surtout ragnarok qui en plus d'être
un MMORPG est hyper moche.    </p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,691 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 143</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-05-09 23:48:06&gt;</li>
<li>modifié: &lt;2007-05-09 23:48:06&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="tuto-dune-page-de-bd">Tuto dune page de BD</h2>
<p>((<a
href="https://tykay.free.fr/dotclear2/public/3.0/tuto3/.03__m.jpg">https://tykay.free.fr/dotclear2/public/3.0/tuto3/.03__m.jpg</a>||C))%%%
Pour une page d'[ISK|<a href="tag:Inter">tag:Inter</a> Sub Key]
(troisième page du chapitre 2, ça sera dans le zine [Mangastyl|<a
href="https://mangastyl.free.fr%7Cfr">https://mangastyl.free.fr|fr</a>]
4) %%%%%%%%%<br />
</p>
<h3 id="les-outils">Les outils :<br />
<span class="tag" data-tag-name="PROPERTIES"><span
class="smallcaps">PROPERTIES</span></span></h3>
<p>:CUSTOM<sub>ID</sub>: les-outils</p>
<div class="END drawer">
<p><img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04661.JPG" /><br />
Une *table et une chaise, un bol une ptite cuiller, du thé aux fruits
rouges, sucré.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04681.JPG" /><br />
</p>
<ul>
<li>Une règle de 30 cm, et une règle de 10 cm (un rapporteur).<br />
</li>
<li>Taille crayon,<br />
</li>
<li>Marqueur à CD bleu made in Japan,<br />
</li>
<li>Un crayon 2B,<br />
</li>
<li>Mon critérium 0.5mm Rotring fétiche cadeau,<br />
</li>
<li>une gomme fine pour les détails et une gomme pas fine pour les pas
détails.<br />
</li>
<li>Un tas de feuilles blanches unies pour support<br />
</li>
<li>Une feuille de repères.<br />
</li>
</ul>
<p><img
src="https://tykayn.fr/wp-content/uploads/Ms/tutoBD/repere.jpg" /><br />
<br />
Une idée plus ou moins précise de la page (ce dessin fait 4cm de
haut).<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/03-crob.jpg" /><br />
<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04824.JPG" /><br />
Un juke-box, de la musique qui ne fait pas réfléchir, ou qu'on aurait
pas envie de zapper toutes les minutes comme sur winamp. Spour ça qu'ici
j'ai pris une cassette audio <strong>o</strong> y'a juste à retourner au
bout de 45 minutes, donc s'bien. et de l'électricité.<br />
<br />
</p>
</div>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04662.JPG" /><br />
à gauche les croquis de toutes les pages du chapitre,<br />
et à droite parce que je suis droitier, la feuille sur laquelle je vais
faire la planche 03.<br />
Déjà je trace très légèrement les marges de ma page par transparence
avec le repère en dessous de la feuille blanche.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04663.JPG" /><br />
Voici donc tous les contours de cases tracés finement au critérium
0,5mm.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04664.JPG" /><br />
Avec la gomme fine j'efface les inter cases pour ne pas me tromper quand
je les repasserai au crayon épais 2B plus tard.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04665.JPG" /><br />
On vire les crottes de gomme au swiffer parce que ça fait classe et que
ça évite de baver sur sa page en soufflant (ça m'est jamais arrivé mais
bon…)<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04666.JPG" /><br />
Hop, remplissage des cases. Coloriage des zones de noir absolu avec le
crayon gras 2B.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04667.JPG" /><br />
Boire du thé avant qu'il soit gelé.<br />
Songer à allumer le chauffage de la pièce.<br />
Allumer le chauffage (et arrêter les conneries !!).<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04668.JPG" /><br />
Faie sortir le sachet de thé depuis les 20 minutes qu'il infuse. A ce
niveau là ça s'appelle plus une infusion mais une décoction, et
cémal.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04669.JPG" /><br />
étrangler le sachet de thé avec son fil autour de la petite cuiller.
(j'avoue que l'orthographe du mot cuiller m'a toujours dérangé
o<sub>o</sub> et que prendre cette photo avec l'autre main a été
périlleux)<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04670.JPG" /><br />
appuyer sur le sachet avec le carton au bout du fil.<br />
Faire sadiquement cracher le sachet jusqu'à sa dernière goutte de
thé,<br />
mouahahah !<br />
Cesser de péter un boulon, mettre le sachet dans une poubelle hermétique
très proprement, boire le they et songer à faire la case suivante.<br />
Commencer la case suivante.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04671.JPG" /><br />
Attention, ici je veux dessiner l'intérieur d'une salle de classe, avec
donc des bureaux en perspective, tout ça sur une seule feuille.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04672.JPG" /><br />
2tablir la hauteur de l'horizon, désigner le point de fuite sur cette
ligne d'horizon et placer la table la plus proche.<br />
Ebaucher les lignes de fuite pour les autres bureaux.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04673.JPG" />
User de la gomme de précision, vérifier que les tables à même distance
du point de vue aient la même longueur. Faire le fond en dernier.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04674.JPG" /><br />
remplir les autres cases.<br />
Tadam !<br />
</p>
<pre class="example"><code>
</code></pre>
<p>Les contours ne sont pas assez marqués, il va falloir les repasser
(en même temps que le linge) pour bien faire apparaître leur
contenu.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04676.JPG" /><br />
Le pré positionnement de la règle est le plus important pour ne pas
rater son contour.<br />
Se rappeler que le crayon ne dessine pas juste à la limite de la règle
mais infimement plus loin.<br />
Commencer par tracer tous les contours de cases verticaux de droite à
gauche pour que la règle ne traîne pas le gras du crayon à chaque
déplacement.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04677.JPG" /><br />
Voici toutes les verticales de faites.<br />
Passons aux horizontales. (on aurait pu tout aussi bien commencer par
les horizontales)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04678.JPG" /><br />
Tracer les horizontales nécessite un petit changement.<br />
Je tourne la feuille de 45° vers le bas, dans le sens indirect, de -pi/4
avec pour point de repère le haut gauche de la feuille, vvoyez.<br />
C'est pour ne pas être embêté par les disgracieux butés de crayon contre
les feuilles en dessous, tout en gardant la réponse douce desdites
feuilles.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/DSC04679.JPG" /><br />
Hop, du haut vers le bas.<br />
Tous les contours sont tracés, vérifier qu'il n'y a pas eu de
bavures.<br />
<br />
La planche est prête à être modifiée sur le PC<br />
<br />
<br />
</p>
<h3 id="traitement-informatique">Traitement informatique</h3>
<p>(cette partie nécessite un scanner, un PC fonctionnel et un logiciel
de traitement de l'image, ou plus précisément de Toshop, j'utilise la
version 7.0)<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/03.jpg" /><br />
Scannage de la page.<br />
<br />
Mise à niveaux des traits sur Photoshop en bidouillant la courbe
(ctrl+m) sur toshop (pour que les gens cessent de rejeter la faute sur
leur scanner)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/%2B/1.jpg" /><br />
avant c'est comme ça<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/%2B/2.JPG" /><br />
premier point, on repère jusqu'où on prend le gris pour du noir le plus
foncé qui soit.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/%2B/3.JPG" /><br />
</p>
<pre class="example"><code>ensuite on place un deuxième point pour changer les gris et traces de scannage moches en un blanc tout ce qu&#39;il y a de plus clair
</code></pre>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/%2B/4.JPG" /><br />
Et un dernier point pour les intermédiaires, que j'ai choisi ici
d'assombrir un peu pour montrer mes zupers dégradés que j'ai trop
l'habitude de faire.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/%2B/av.JPG" /><br />
Et vouala la différence<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/03-line.jpg" /><br />
<br />
Tramage, insertion d'images de références, de photos. (je vous épargne
les détails)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/03-trames.jpg" /><br />
<br />
Rajout des textes selon ce que j'avais prévu dans un fichier Word qui
corrige mes fautes. Vive le copier coller, avec quelques modifications
de dernière minute. Et voici la page finale, cliquez dessus pour
voir.<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/03_.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/3.0/tuto3/.03__s.jpg</span></a>]]<br />
<br />
</p>
<ul>
<li><p>Pour les textes dans les bulles y'a <a
href="https://tykayn.fr/index.php/post/2006/12/19/Kelkes-trucs-de-bede">ce
tutoriel</a></p></li>
<li><p>Et pour l'organisation générale d'un one shot ou d'un chapitre de
BD <a
href="https://tykayn.fr/index.php/post/2008/09/20/%5Btuto%5D-Organisation-BD">c'est
par là</a><br />
</p></li>
</ul>
<p><br />
Voilà, comme toujours ce tuto n'est pas absolu, c'est juste comme ça que
je fais et il y a sans doute mieux. J'espère que ça vous aura inspiré
pour vos projets, je tiens à être au courant ! ^^<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,560 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 314</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-05-23 03:48:30&gt;</li>
<li>modifié: &lt;2007-05-23 03:48:30&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="la-dame-juive-1">La Dame Juive</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/sondage/essai_26988.png" /><br />
Merci à tous ceux et celles qui ont bien voulu répondre à mon <a
href="https://tykayn.fr/index.php/post/2007/05/18/Sondage">sondage</a>
qui va me permettre de conquérir le monde <sup>o</sup>^ Je mettrai les
résultats dans assez longtemps donc si vous n'y avez pas encore répondu
c'est toujours possible. Et si vous aimez les sondages j'en ai préparé
un spécialement pour le numéro 2 de <a
href="file:///index.php/tag/%21Q">!Q</a>. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/pantoufle.jpg" /><br />
(sortie prévue pour Japan Expo, le 6 Juillet 2007) qui permettra
d'évaluer <strong>votre niveau de perversion</strong> en 30 nuances.
Pour indice, Reg l'elfe prude est au niveau 3/30,appelé "Bourgeoise en
tanga".</p>
<p>Bon, comme ça manque de <a
href="file:///index.php/tag/sketches">dessins</a> denrièrement je vais
vous raconter pourquoi on <del>me prend</del> croit que je suis une
dame, et que Borat n'est pas le seul à avoir des problèmes de juifs.</p>
<p>Paris, 4 Octobre 2006:<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/metro.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/.metro_s.jpg</span></a>]]<br />
<br />
Paris, station Opéra en Mars 2007 (dessiné par TH2):<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/Dame1.jpg" /><br />
(dessiné par Jori:)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/Dame2.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/Dame3.jpg" /><br />
<br />
Sans compter les fois où en 2005 sur <a
href="https://tykayn.deviantart.com">Deviantart</a> j'ai reçu des "salut
coupine vald'oisienne! <sup>o</sup>^" ; Soa avait toujours cru que
j'étais une fille jusqu'en mi 2006, Quand je bossais comme caissier en
Décembre les gens qui cherchaient des produits m'appellaient
"mademoiselle" et j'y avait droit à près de 4 fois par jour pendant un
mois.<br />
à Angoulême 2007 un gardien de salle de projection a voulu me prendre en
photo puis quand il s'est apperçu que j'étais un mâle il a rangé son
appareil. HOHOHOHOOH <img
src="https://tykayn.fr/wp-content/uploads/s/icon_twisted.gif" /><br />
Enfin voilà quoi, je ressemble pas du tout à une fille n'est-ce
pas.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/22_posons_devant.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/dukuTK.jpg" /><br />
Pi avec une vraie Kitsune sur les genoux (photo: 19 Mai 07) on peut
faire la différence non?<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/kistu.jpg" /><br />
<img src="https://tykayn.fr/wp-content/uploads/s/icon_mad.gif" /><br />
<br />
Ouais, ce monde est fait de révélations.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/revelation.jpg" /><br />
L'autre fois je vous avais parlé d'une série à voir, ben de révelations
elle en est pleine, elle s'appelle <strong>Colorful</strong>.<br />
<a
href="https://www.youtube.com/watch?v=A7NrzvOXey0">[[<span>https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/colorful.JPG</span></a>]]<br />
Que se passe-t-il sous les jupes des filles (et dans l'esprit des
garçons) ? 16 épisodes de 6 minutes, réalisé en 2000, "Colorful est une
série consacrée à l'érotisme des mangas, disponible gratuitement sur you
tube (toute la série <a
href="https://www.youtube.com/results?search_query=colorful+ep&amp;search=Search">ici</a>).
Son sujet ? L'effet qu'ont les culottes et les seins et les fesses des
femmes sur les hommes". Aussi drôle qu'Oruchuban Ebichu vous remarquerez
que Colorful est cependant une série soignée dotée d'une narration
tranchée et bien pensée, qui passe du coq à l'âne, un peu comme pour
Niea<sub>7</sub>. Bref une série comme je les aime. ^^<br />
<br />
Et voici <a href="https://www.youtube.com/watch?v=eB43oNJKK7o">comment
balancer un chat</a><br />
<a
href="https://www.youtube.com/watch?v=eB43oNJKK7o">[[<span>https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/drop.JPG</span></a>]].<br />
une <a href="file:///index.php/tag/vid%C3%A9os">vidéo</a> de la faute de
Mister Shit, qui me fait des déclarations choquantes sur le <a
href="https://pub23.bravenet.com/guestbook/1974240088">livre d'or</a>…¬¬
Citons le:<br />
" bah en plus je comprends pas, ils ont pas les yeux en face des trous,
t'as pas féminin comme mec :D "<br />
Et voici pour finir sur un bon moment, un rappel que les exams c'est
dans très peu de temps, moins de 20 jours.<br />
<a
href="https://tickers.doctissimo.fr/make2.php?who=&amp;button=perso&amp;fond_ticker=ruler_14_035.jpg&amp;tick_ticker=ico_14_033.png&amp;jour=11&amp;mois=6&amp;annee=2007&amp;tkr_type=privee&amp;inputtexte=le%20bac">https://tickers.doctissimo.fr/make2.php?who=&amp;button=perso&amp;fond_ticker=ruler_14_035.jpg&amp;tick_ticker=ico_14_033.png&amp;jour=11&amp;mois=6&amp;annee=2007&amp;tkr_type=privee&amp;inputtexte=le%20bac</a><br />
Mon appareil photo a besoin de réparations, en effet il arrive plus à
allonger l'objectif depuis il y a deux jours, ce qui le rend
inutilisable ¬¬<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/essai_27036.png" /><br />
les trois photos de groupe <strong>o</strong> que j'ai de l'<a
href="file:///index.php/tag/anniversaire">anniversaire</a> à l'arrach de
Reg du Lundi 21 Mai qui à désormais 17 ans + 10 ans:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/groupe1.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/groupe2.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/Dame%20Juive/groupe3.jpg" /><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,497 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 313</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-06-01 18:19:39&gt;</li>
<li>modifié: &lt;2007-06-01 18:19:39&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="entre-deux-1">Entre deux</h2>
<p><br />
Bon, comme il faut faire des pauses des fois, voici donc un peu de <a
href="file:///index.php/tag/strips">strips</a> et de propagande pour
fêter le salut d'une éclaircie passagère.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/nicolahulotte/essai_27412.png" /><br />
Et faire des koukiz entre deux révisions c'est toujours sympa
<sup>o</sup>^<br />
<br />
C'est toujours mieux que se poser des questions existencielles.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/nicolahulotte/115-jiji.jpg" /><br />
Ou d'essayer d'imaginer la tronche de Sheron. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/nicolahulotte/105.jpg" /><br />
<br />
Enrichissons donc notre culture d'un nouveau verbe:
<strong>Nicolahulotter</strong>.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/nicolahulotte/115-strip.jpg" /><br />
hah, ça me fait penser que je devrais rendre son stylo feutre 0.1 mm à
Coffe Frame/o%%% Voici un strip qui a reçu la mention coluche.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/nicolahulotte/115coluche.png" /><br />
<br />
Enfin, question culture de <a
href="file:///index.php/tag/%21Q">!Q</a><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/nicolahulotte/115-cartes.jpg" /><br />
<br />
L'équipe du fanzine culturel se propose d'offrir gratos des préservatifs
de qualité et/ou des strings en bonus à l'achat d'un zine !Q (3€uros en
tout)<br />
Avec bien sûr à l'intérieur du zine un mode d'emploi et des idées
d'applications.<br />
<br />
Alors, pour ou contre? :3<br />
Sur ce, je retourne à mes révisions, hohohoho…<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/nicolahulotte/essai_27411.png" /><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,483 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 331</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-06-30 00:08:55&gt;</li>
<li>modifié: &lt;2007-06-30 00:08:55&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="la-q-hotline-1">la !Q hotline</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/yersteday.jpg" /><br />
<br />
Posez ici vos questions auxquelles toute l'équipe de <a
href="file:///index.php/tag/%21Q">!Q</a> se démènera sang et eau pour y
répondre à la façon d'un courrier des lecteurs.<br />
<br />
Ont déjà été posées pour le N°2::<br />
<br />
</p>
<ul>
<li>Comment font les garçons pour corrir avec un tel bazar entre les
jambes ?</li>
<li>Et quand y'en a marre des capotes?</li>
<li>ça fait beaucoup 28 cm ?</li>
<li>Depuis que je suis en couple je ne masturbe plus, dois-je
m'inquiéter de la libido, serais-je devenue "coincée" ?</li>
<li>Le grand délire des japonais c'est que masser des seins les fait
grossir, c'est vrai ?</li>
</ul>
<p><br />
<br />
à vous de rallonger la liste, posez des questions sérieuses ou
non.<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,483 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 97</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-07-24 06:32:30&gt;</li>
<li>modifié: &lt;2021-04-07 14:00:05&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="lavis-de-pansai">L'avis de Pansai</h2>
<p>Suite à une demande de [Richan|<a
href="https://gnugirl.free.fr">https://gnugirl.free.fr</a>] dans la [!Q
hotline| <a
href="https://tykay.free.fr/index.php/post/2007/06/30/la-Q-hotline">https://tykay.free.fr/index.php/post/2007/06/30/la-Q-hotline</a>],
(où vous pouvez vous aussi poser vos questions), à propos de mangasses
d'un genre zarb, j'ai demandé son avis a mon ami [Mister shit|<a
href="tag:pansai">tag:pansai</a>], aussi connu sous l'appelation « loque
humaine », « clodo », « pourriture communiste », ou encore « [Pansai|<a
href="tag:pansai">tag:pansai</a>] », . %%% <u><u>Pansai</u></u>, ce qui
signifie « avoir envie de ch1er » (en chinois) est une merde humaine.
%%% Ce qui n'empêche qu'il va vous donner son avis, par [strip|tag
:strips], concernant les Mangas Y a o i, ((<a
href="https://tykay.free.fr/dotclear2/public/planches/shit-1.jpg">https://tykay.free.fr/dotclear2/public/planches/shit-1.jpg</a>||C))<br />
<a
href="https://tykayn.fr/wp-content/uploads/planches/shit-2_.jpg%20">https://tykayn.fr/wp-content/uploads/planches/shit-2_.jpg%20</a>
<a href="https://fr.wikipedia.org/wiki/Yaoi">Y a o i</a> est en fait
l'acronyme de [ヤマなし、オチなし、意味なし」, yama nashi, ochi nashi,
imi nashi (Pas de montagne (point culminant - jouissance), pas de chute,
pas d'histoire). La seconde définition est une version abrégée de Yamete
Oshiri ga Itai (Arrête j'ai mal au ku!). Personnellement, de Yaotruc je
n'ai lu que les 5 tomes de Zetsuai il y a quatre ans. (on m'a forcé /o\)
Et cété maaaaaal °Q°. Scénarisituqment Capilotracté, une histoire
tragique où on ne sait dire qui est l'homme, graphiquement
dégueulasse-moche, une histoire tragique, sortez les mouchoirs. Lol,
mdr, edf gdf. Les lectrices amatrices de JPC où de phallus turgescents
pourront vous confirmer combien cémal tout ça :D</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,559 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 186</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-07-26 20:21:07&gt;</li>
<li>modifié: &lt;2007-07-26 20:21:07&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="joriverssaire-et-youkoulélé">Joriverssaire et youkoulélé</h2>
<p>((<a
href="https://tykay.free.fr/dotclear2/public/3.0/joriverssaire/DSC06595.JPG">https://tykay.free.fr/dotclear2/public/3.0/joriverssaire/DSC06595.JPG</a>||C))
!!Vendredi 13 juillet 2007 ((<a
href="https://tykay.free.fr/dotclear2/public/3.0/joriverssaire/DSC06568.JPG">https://tykay.free.fr/dotclear2/public/3.0/joriverssaire/DSC06568.JPG</a>||C))
L'arrivée d'une batterie dans le salon et de sa métamorphose en salle de
répèt m'a fait fuir.%%% Faut dire, c'était ce jour là que [Jori|<a
href="https://e-jori.com/">https://e-jori.com/</a>], le boss
d'[e-kaki.net|<a href="https://e-kaki.net">https://e-kaki.net</a>]
fêtait son 29ème [anniversaire|<a
href="tag:anniversaire">tag:anniversaire</a>].%%%<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06571.JPG" />
Malgré un soleil timide, <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06572.JPG" />
une grosse bête peu encourageante à autre chose quela flemmardise, <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06575.JPG" />
Et de cahrmantes zinvitées <strong>o</strong> <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06579.JPG" />
Jme barre seul à travers la foret, <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06580.JPG" />
après une longue marrrche <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06581.JPG" />
en direction du REuRrr de Cergy pour Paris, et la maison de Regulus.
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06582.JPG" />
Où je trouve Shenen qui me montre son oeuvre et ses derniers jouets
lubriques. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06583.JPG" />
Rendons nous donc à l'autre bout de parisse en le temps record d'une
heure et demie. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06594.JPG" />
Une fois tout le monde arrivé, et Jori équipé de son t-shirt d'otaku
avec marqué en gros dessus "GTO", on a comencé à allumer les romantiques
bougies que le vent ne voulait décidément pas laisser fondre
paisiblement. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/lulueshenen.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06595.JPG" />
Entre une terrinne et les légumes, Coffe Frame nous montre ce que c'est
que de dessiner avec la bouche, sous le regard lolant de Neiba. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06596.JPG" />
Et alors que Reg dédicacait un fanzine <a
href="file:///index.php/tag/%21q">!Q</a> numéro 2 pour l'offrir à Jori,
il se passait des choses dans son dos o.o <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06600.JPG" />
Voici l'ensemble pti dej cadeau pour Jori, customisés et dessinés à la
peinture immortelle <strong>o</strong> <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06601.JPG" />
Dieu est omniprésent, et omniscient, il sait toujours quand on a envie
de s'acheter des fleurs alros qu'on bouffe dans un bon resto
_<sub>n</sub>/ <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06603.JPG" />
Wah, Jori a même reçu de la vraie littérature pas mangasse
<strong>o</strong> <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06604.JPG" />
Et après un pti métro on à fait à pied le voyage de radio france jusqu'a
porte de saint nuage à Boulogne bille en court. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06606.JPG" />
Avec désaltèrcation, bien sûr. Le lendemain, <strong>le 14
juillet</strong> y'avait la batterie de mon appareil foto était morte.
On a refait un pti tour au sacré coeur en passant par le café d'Amélie
Poulain (sans rien y prendre, avec des cafés de 5cl à 5euros, bof). Vous
ne verrez donc pas comme étaient jolis les feux d'artifesse lancés du
Trocadéro, bien cachés par les arbres juste en face de la tour eiffel.
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/qqch.jpg" />
Comme d'hab ils ferment beaucoup de ponts et de stations de métro.
Certains allumés se promènent en scooter à travers une foule dense,
d'autres se promènent avec leurs enfants en poussette juste à côté,
personne ne va dans le même sens, les pétards sont lancés sur les gens…
et ça seuk. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/lorem.jpg" />
Alors bon, une ptite promenade dans l'allée Georges 5 pour prendre le
RER et je reviens en vie, avec les bras de musclor pour avoir porté mes
affaires de couchage et de dessin pendant près de 10 kilomètres, trofor
hein. <strong>-</strong></p>
<p>Enfin, de retour chez moi c'est déjà l'anarchie.</p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06630.JPG" />
Un duel entre hommes s'offre en spectacle aux yeux de ces mesdames et de
pépète le chat choqué qui ne sait pas boire dans sa gamelle mais
uniquement au robinet cette bougresse. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06637.JPG" />
Alex nous montre combien les instruments à corde sont des symboles
phalliques. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06639.JPG" />
Vince le cyborg essaie une manière plus traditionnelle d'en jouer qu'en
le fourrant dans son calbutt. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06640.JPG" />
Et voici mica dont tout le monde parle dernièrement. Puis comme après <a
href="https://tykayn.fr/index.php/post/2007/01/30/Angouleme-festival-2007-N34">Angoulême</a>,
je suis pris d'une envie de ranger ma chambre :D <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06641.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06646.JPG" />
tadaam <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06643.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/joriverssaire/DSC06648.JPG" />
Wouaiii! Enfin, voilà, c'était bien sympa cete soirée de la haute
gastronomie pour l'anniv de Jori qui a bientôt 46 ans, ça nous change
des kébabs de Saint Michel. n_<sub>n</sub></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,476 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1352</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-08-11 16:24:00&gt;</li>
<li>modifié: &lt;2007-08-11 16:24:00&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="le-blog-caché-daber">Le blog caché d'Aber</h2>
<p>[((<a
href="https://tykay.free.fr/dotclear2/public/3.0/aberslife/1.jpg">https://tykay.free.fr/dotclear2/public/3.0/aberslife/1.jpg</a>||C))|<a
href="https://tykay.free.fr/index.php/post/2007/08/11/Le-blog-cache-dAber%5D\\">https://tykay.free.fr/index.php/post/2007/08/11/Le-blog-cache-dAber]\\</a></p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/3.0/aberslife/2.jpg" /> <img
src="https://mapage.noos.fr/r.ferreol/chine/rue_de_nankin.jpg" /> <img
src="https://flore-leval.9online.fr/nankin/Copy%20of%2006-2000-C-23.jpg" />
<img src="https://tykayn.fr/wp-content/uploads/i/3.0/aberslife/3.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/aberslife/4.jpg" /></p>
<p>Mis à part que Dorian n'est pas (complètement) une brioche…
<strong>ceci est une histoire vraie</strong>.<br />
Aber a refusé d'aller en chine (il n'y est jamais allé) en famille pour
un ou deux mois, sans payer le voyage ni les dépenses une fois là bas,
il a préféré jouer a Ragnarok (et <a
href="https://tykayn.fr/index.php/post/2007/05/01/Aber-tu-sors">on avait
vu que R.O. cémal</a>)seul chez lui…<br />
Slappons-le! <img
src="https://tykayn.fr/wp-content/uploads/s/icon_mad.gif" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,496 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 359</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-09-04 01:35:45&gt;</li>
<li>modifié: &lt;2007-09-04 01:35:45&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="kotlife-start">Kot<sub>life</sub> : start</h2>
<p>((<a
href="https://tykay.free.fr/dotclear2/public/s/icon_redface.gif">https://tykay.free.fr/dotclear2/public/s/icon_redface.gif</a>||G))
han! devinez où je suis! au pays de la frite! mais non pas chez Flucnh
bande de… ¬¬ %%% ((<a
href="https://tykay.free.fr/dotclear2/public/3.0/belgique/septembre07/DSC08666.JPG">https://tykay.free.fr/dotclear2/public/3.0/belgique/septembre07/DSC08666.JPG</a>||C))%%%
Jvous présente mon nouvel appartement, trobien, woute! *q*%%%<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/belgique/septembre07/DSC08669.JPG" /><br />
Wah, des zoulis bowls et ohashi pour bouffer des pat'<a
href="file:///index.php/tag/aber">aber</a> <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/belgique/septembre07/DSC08673.JPG" /><br />
Vue de mon vélux, je suis au troisième étage dans ma ptite chambre à
parties communes. Par là, le "<strong>centrum</strong>" de <a
href="file:///index.php/tag/belgique">Bruxelles</a>. <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/belgique/septembre07/DSC08674.JPG" /><br />
là bas, la tour de la gare du midi où y'a plein de TéGéVés *q*<br />
Avec tout ça vous devriez pouvoir situer où est-ce que je me positionne…
(les points de suspension ça fait toujours très… points de suspension
o<sub>o</sub>) <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/belgique/septembre07/DSC08675.JPG" /><br />
Ma plus récente photo auto portrait.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/belgique/septembre07/DSC08682.JPG" /><br />
"<strong>Oeno tk</strong>" qu'y a marqué, wah, après les sites en ".tk"
j'ai des restos à mon effigie! Ø/// <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/belgique/septembre07/DSC08647.JPG" /><br />
Enfin, ici aussi on est envahis par les coccis.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/belgique/septembre07/DSC08653.JPG" /><br />
y'en a dissimulées sur toutes les enseignes! <img
src="https://tykayn.fr/wp-content/uploads/i/3.0/belgique/septembre07/DSC08659.JPG" /><br />
Choisissez votre nappe pour la prochaine <a
href="https://tykayn.fr/index.php/category/Conventions">convention</a>
de Mangastyl Ø///<br />
Hah, les plus perspicaces d'entre vous auront noté qu'on ne voit pas de
photo de l'intérieur de ma chambre, hohoho. Vous en saurez plus une
prochaine fois ¬¬<br />
wah,quel cliffhanger…<br />
<img src="https://tykayn.fr/wp-content/uploads/s/icon_lol.gif" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,487 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 334</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-09-19 16:52:50&gt;</li>
<li>modifié: &lt;2007-09-19 16:52:50&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="saint-luc---bd">Saint Luc - BD</h2>
<p>!!!JE SUIS ADMIS EN BANDE DESSINÉE A SAINT LUC Ø/////// woueeeeh! %%%
Les cours ont commencé Lundi 17 Septembre.%%% Voici quelques
[sketches|<a href="tag:sketches">tag:sketches</a>] pour la peine! %%%
((<a
href="https://tykayn.fr/wp-content/uploads/i/septembre/cours/bataillage.jpg">https://tykayn.fr/wp-content/uploads/i/septembre/cours/bataillage.jpg</a>||C))<br />
Voici une ébauche du premier devoir qu'on a à rendre sur une feuille A3,
montrant une séquence de visite du <strong>musée de l'armée</strong> de
Bruxelles où l'on va se retrouver, ma classe et moi-même accompagnés de
deux proffeseurs de bédé, plusieurs fois la semaine pendant trois
semaines, jusqu'au 9 Octobre date de rendu de la planche propre en
couleurs.Ø/ <a
href="https://tykayn.fr/wp-content/uploads/i/septembre/cours/truc-cours-3-musee_c.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/septembre/cours/truc-cours-3-musee_pti.jpg</span></a>]]
(Click it!)<br />
<br />
Et entre les ateliers au musée y'a quelques cours.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/septembre/cours/manif_.jpg" />
Cours d'histoire de l'art. Hah pour un fois que ça dérange personne
qu'on soit inspiré par leurs cours <img
src="https://www.ailesse.com/~tykayn/forum//extensions/Smile/tango/face-smile.png" />
<img
src="https://tykayn.fr/wp-content/uploads/i/septembre/cours/truc-cours-2_.jpg" />
Cours de narration. <img
src="https://tykayn.fr/wp-content/uploads/i/septembre/cours/2filles.jpg" />
Cours de sémiologie. <img
src="https://tykayn.fr/wp-content/uploads/i/septembre/cours/arm%e9e-lol_.jpg" />
Dédicace aux éléphants dessinés par je ne sais plus quel auteur, repris
par <a href="https://naniweb.e-jori.com/">Kyo</a> dans le
<strong>fanzine 4 de Mangastyl</strong> qui sortira prochainement Ø/ "to
être continué…"</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,495 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 118</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-10-02 18:35:41&gt;</li>
<li>modifié: &lt;2007-10-02 18:35:41&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="ma-première-tablette-graphique-q">Ma première tablette graphique
<strong>Q</strong></h2>
<p>((<a
href="https://tykayn.fr/wp-content/uploads/i/septembre/tablette-tk.jpg">https://tykayn.fr/wp-content/uploads/i/septembre/tablette-tk.jpg</a>||C))%%%
((<a
href="https://tykayn.fr/wp-content/uploads/i/septembre/angie-xd.png">https://tykayn.fr/wp-content/uploads/i/septembre/angie-xd.png</a>||G))
Wouaiiii J'ai ma première tablette grafik cadeau d'[anniversaire|<a
href="tag:anniversaire">tag:anniversaire</a>] ! %%% Elle avait le même
prix que la bamboo qui est plus plate, mais sans range stylet, ce qui
m'a fait choisir cette <u><u>Graphire 4</u></u> de taille
<u><u>A6</u></u> à 99 euros (et 90 centimes pour le logiciel Manga
Studio début, que j'arrive pas a installer faute de place sur le disk C,
même si y'en a 300 gigas de libres sur un autre disk, windows cémal ¬¬)
%%% Et donc voilà, je vais pouvoir m'entraîner à la colo sans toujours
regommer une partie de mon trait pour qu'il ait une forme pointue.%%%
<u><u>Ské bien</u></u> avec une tablette c'est qu'elle ne réagit pas
comme une souris: le curseur peut apparaître à des points qui ne sont
pas proches, et <u><u>changer le diamètre du trait</u></u> en fonction
de la pression que l'on inflige à la tablette avec 512 nuances! ø/ %%%
(Oui, j'en connais qui ne savaient pas ça v.v) %%% %%% Pi aussi,
<u><u>ça ne fait pas de bruiiiiiit</u></u> pi la ptite lumière change de
couleur quand on clique c'est jouliiiiii!! <strong>o</strong> %%% ou
beaucoup moins que la souris. Du coup on peut faire des clik clik à la
foliiie sans que ça fasse clik clik ø/// %%% Y'a le click droit et le
double click <u><u>sur le stylet</u></u>, une roulette et deux boutons
de raccourci <u><u>sur la tabeltte</u></u> démontable, on peut lui
retirer le plastique. D'ailleurs si quelqu'un sait comment configurer
ces deux boutons ce serait chouette de me dire comment on fait. ^^%%%
%%% ça se prend très vite en main, trobien! *<sub>*</sub> %%% %%% Pour
la peine voici un [strip|<a href="tag:strips">tag:strips</a>] (dessiné
pendant les cours :D) qui raconte une histoire vraie <strong>q</strong>
Même que j'ai épié le cokpit du pilote de tramway le jour précédent
celui où [Angie|<a
href="https://angeloluha.free.fr">https://angeloluha.free.fr</a>] m'a
raconté cette histoire.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/septembre/angie-tramway.jpg" /></p>
<p>Héhéhéhéhé…. hem, pardon.<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,462 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1504</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2007-12-09 22:33:57&gt;</li>
<li>modifié: &lt;2007-12-09 22:33:57&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="juju-la-jujunkee-droguée">Juju la jujunkee droguée</h2>
<p>J'vous présente, juliette, fan du nain Doopey dans Blanche neige et
les 7 nabots, avec pansai. Enfin, dans la présentation, pas dans le film
de blanche nei… hum.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/decembre/jujunkee_.jpg" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,592 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 859</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-01-13 21:36:17&gt;</li>
<li>modifié: &lt;2008-01-13 21:36:17&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="no-hëll-2007">No hëll 2007</h2>
<p>_<sub>Finis</sub> les exams, youpi __ø/%%% à part l'histoire de
l'art, et l'histoire de la philo où je suis certain d'avoir raconté
n'importe quoi, mes examens se sont plutôt bien passés.%%% LE prof de
heuuuuuuuuuu… scénario (il dit tout le temps heuuuuu avant de planter
comme windows puis de redémarrer tout seul) a bien apprécié le travail
que je lui ai fourni.%%% %%%Et ô paroxysme de l'apothéose tralala: après
l'examen d'informatique le prof à corrigé tout de suite et je n'ai fait
que 2 fautes sur 20, donc j'aurai <u><u>18/20</u></u>, youpi Ø/%%% (vous
savez à quoi ça ressemble une prise Fire-wire vous? ¬¬)%%% Quel légèreté
<strong>o</strong>, maintenant le prochain truc à organiser c'est
[angoulême|<a href="tag:angouleme%5D%%%">tag:angouleme]%%%</a> %%% Voici
donc tous les cadeaux ou presque que j'ai gagné au mois de décembre et
de Janvier 2008, avec un rapide résumé du trajet Ø/ %%% ((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00209.JPG">https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00209.JPG</a>||C))%%%
C'est aussi noël aux urgences de Cergy-Pontoise.<br />
(stait pas pour moi les urgences) <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00237.JPG" /><br />
Pépète le chat *0*sur la poubelle végétale. <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00242.JPG" /><br />
Le ciel <strong>o</strong> <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00245.JPG" /><br />
On fait les courses pour la grande bouffe, sans prendre de truffes à
198€ les 100 grammes, faut pas déconner ¬¬ <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00260.JPG" /><br />
Sapin aussi à la maison. <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00262.JPG" /><br />
Puis en Normandaille. <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00267.JPG" /><br />
On a un nouveau fauve domestiqué là bas, il joue et saute partout, <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00270.JPG" /><br />
a trois mois il a des griffes et nous le fait savoir ;_;</p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00275.JPG" /><br />
On décide de vider les placards de tous les ingrédients périmés, le plus
vieux truc était ce paquet de sucre à café qui datait d'avant ma
naissance, wouaaah. Il se périmait en 1986 je crois bien. J'aime l'art.
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00278.JPG" /><br />
Sale bête qui m'attaquait dans le dos quand je bouffais, il paraitrait
que je lui aurais piqué sa chaise. <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00281.JPG" /><br />
Bo jardin de 80 x 20 mètres avec la maison en bois au milieu ø/
Profitons du soleil, y'en a que 6 heures par jour. <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00292.JPG" /><br />
Une ptite descende à Neuville-lès-Dieppe, <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00295.JPG" /><br />
puis à la plage de Dieppe pour profiter de l'énormité de la lune et du
vent qui sent krobon <strong>q</strong> <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00304.JPG" /><br />
repas de no hell, champomy et thé vert menthe (paskeu tout seul , le thé
vert cédégueu ø/) <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00310.JPG" /><br />
mes Cadooos ø/<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00312.JPG" /><br />
-Une groooooosse valise roulante où on peut se cahcer dedans et
s'asseoir dessus quand on est fatigué.<br />
-Le coffret de thés de Lipton<br />
-Une grosse boîte de chocolats Ivoria<br />
-Avec une orange, tout s'arrange<br />
-20 sacs poubelles de 130 litres sponsorisés par la ville de Dieppe :D
(toujours utile dans un kot)<br />
-un père noël en chocolat au lait milka *q*<br />
-Des soupes en sachet qu'on trouve pas à Bruxelles ø/<br />
- XXX €uros dupognon Ø/<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00324.JPG" /><br />
<img
src="https://www.weekendesk.fr/image_cache/foto_30397_100_18_vithalles3.jpg" />Autre
chose qu'on s'est offert avec Sandra Chan: une après midi de soins
thermaux à Paris. Piscine, Jacuzzi, Hamam et saunas (parfumés à
l'eucalyptus <strong>q</strong>) un après midi + un massage, le tout
pour 50 euros par personne.</p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00329.JPG" /><br />
Puis on a inauguré la crêperie du nouveau centre ville de chez moi, ici
une bonne salade à 9 euros composée de crevette, ananas, avocats,
tomates, maïs, pamplemousse ø////</p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00330.JPG" /><br />
Bonne crêpe bien bretonne. <strong>q</strong></p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00370.JPG" /><br />
On a fêté le nouvel an a 400 mètres de chez moi et <a
href="file:///index.php/tag/aber">aber</a> a bu de l'alcool pour la
deuxième fois de sa vie, et il a pas trouvé ça mauvais (même si il a
fait une drôle de tête sur cette photo :D) <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00435.JPG" /><br />
D'autres cadoooooos ø/<br />
-Un nouveau portable, et un nouveau forfait, je suis passé chez Orange
parkeu décidément SFR ça seuk. Là pour trois euros de plus par mois
(donc 22) j'ai trois numéros en illimités, youpi!<br />
-des nonettes fourrées à l'orange.<br />
-une bouilloire qui s'appelle Justine (ça rend jaloux Sandra chérie :D)
-des œufs kinder Ø///<br />
-XXX € de pognon ø/<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00437.JPG" /><br />
De Sandra chou:<br />
-Un coffret de ferrero rochers, coffee express, et mon chéri.<br />
-un coussin cœur &lt;3&lt;3&lt;3<br />
à l'occasion, on range ma chambre.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00439.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00440.JPG" /><br />
étoile ku étoile.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00447.JPG" /><br />
Je retrouve une pièce de 10 francs :D <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00476.JPG" /><br />
J'offre une robe à Sandra chou pour l'<a
href="file:///index.php/tag/anniversaire">anniversaire</a> déguisé de <a
href="file:///index.php/tag/juliette">juliette</a> <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00479.JPG" /><br />
Pépète le chat, toujours victime de son impuissance à ouvrir les portes…
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00488.JPG" /><br />
<a href="file:///index.php/tag/micanou">micanou</a> et lola ø/ <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00490.JPG" /><br />
Miss Vovo, reine de la soirée qui a fêté ses 20 ans le 23 Décembre 2007.
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00556.JPG" /><br />
Micanou, déguisé en CLint Eastwood, du moins c'est ce qu'il nous a dit.
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00571.JPG" /><br />
le diable en personne était là et la soirée s'est terminée à 6 heures du
mat par un trivial poursuite version difficile chiant shroender de la
mort qui tue. <img
src="https://tykayn.fr/wp-content/uploads/i/2008/janvier/DSC00577.JPG" /><br />
Enfin voilà, c'était jouli, chouette sympatouche tout ça. ça fait
plaisir de penser avec ses pieds, de lire des mangasses, de voir les
copains et de les dévergonder. de construire des projets ensemble, de
voir du pays *0*<br />
merci tout le monde <sup>o</sup>^</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,492 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1429</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-02-04 20:28:06&gt;</li>
<li>modifié: &lt;2008-02-04 20:28:06&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="culture-arte-1">Culture Arte</h2>
<p><br />
Voici un peu de <a href="file:///index.php/tag/%21Q">CULture</a>,
généreusement organisée par Arte (la seule chaine télé hertzienne qui
soit cébien) et retransmise par Dailymotion.<br />
<br />
Voici deux doCUmentaires, chacun regardable par un public qui aura, on
va die, plus de 16 ans. vous êtes prévenus.</p>
<p><u>"M la maudite"<strong>, ou bien</strong>"Pardon mais c'est trop
bon"_</u> un film d'Arte sur la masturbation, l'histoire d'un tabou, je
pense, surtout destiné à vous mesdammes "histoire d'une condamnation" et
témoignages, très instructifs. <a
href="https://static-07.dailymotion.com/dyn/preview/160x120/828120.jpg?20061012194435">https://static-07.dailymotion.com/dyn/preview/160x120/828120.jpg?20061012194435</a>
<a
href="https://www.dailymotion.com/relevance/search/pardon+mais+c%27est+trop+bon/video/xhp5r_pardon-mais-cest-trop-bon_creation">prélude</a><br />
<a
href="https://www.dailymotion.com/relevance/search/pardon+mais+c%27est+trop+bon/video/xlsyr_pardon-mais-cest-trop-bon-1_news">partie
1</a><br />
<a
href="https://www.dailymotion.com/relevance/search/pardon+mais+c%27est+trop+bon/video/xhp8t_pardon-mais-cest-trop-bon2_creation">partie
2</a><br />
<a
href="https://www.dailymotion.com/relevance/search/pardon+mais+c%27est+trop+bon/video/xltw7_pardon-mais-cest-trop-bon-3_news">partie
3</a><br />
<a
href="https://www.dailymotion.com/relevance/search/pardon+mais+c%27est+trop+bon/video/xhqzc_pardon-mais-cest-trop-bon-suite_creation">dernière
partie</a><br />
Surtout pour les messieurs à mon avis, qui s'y connaissent moins (et un
peu pour ces mesdammes aussi) voici <strong>"le clitoris ce cher
inconnu"</strong>:</p>
<p>j'en avais déjà fait la publicité ailleurs, un reportage qui en plus
d'être intéressant et bien réalisé sans tomber dans une médicalité
froide, dément certains à-prioris comme "être ou ne pas être
clitoridienne ou vaginale".<br />
Mais bon, il semble qu'il s'est fait censurer par daliymotion :D<br />
si vous les retrouvez faites moi signe o/</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,479 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1574</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-02-12 00:35:59&gt;</li>
<li>modifié: &lt;2008-02-12 00:35:59&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="jvous-présente-le-poulpe">J'vous présente le Poulpe</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/fevrier/poupe_presentation/poulpe_prelude.jpg" /><br />
Voici donc <a href="file:///index.php/tag/poulpe">Aurélie</a>, chanteuse
du groupe de mon frère, et poulpe malgré elle ø/<br />
J'avais déjà fait un <a href="file:///index.php/tag/strip">strip</a> <a
href="file:///index.php/post/2007/11/09/On-mappelle-lhomme-mesure">où
elle apparaissait</a>, en vla d'autres<br />
Cliquez là dessu pour voir la suite.<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/2008/fevrier/poupe_presentation/poulpe_story.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2008/fevrier/poupe_presentation/poulpe_th.jpg</span></a>]]<br />
Les dessins ont été faits en 2007, et les trucs qui y sont racontés se
sont passés entre Février 2007 et Octobre 2007. n<sub>n</sub><br />
Hum, ça ferait ptêtre pas plaisir à <a
href="file:///painsdepices.php/">Sandra chérie</a> tout ça :D<br />
<br />
Et puisque vous redemandez des dessins, je vous présente une partie de
moi-même,<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/fevrier/poupe_presentation/trucbleu.jpg" /><br />
que d'émotions! ;o;<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,521 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1434</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-02-22 19:35:47&gt;</li>
<li>modifié: &lt;2008-02-22 19:35:47&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="sondage-sur-lhomosexualité">sondage sur l'homosexualité</h2>
<p><a
href="id:1f8ab934-a4b6-4d47-a46e-720a9d78b4e3">id:1f8ab934-a4b6-4d47-a46e-720a9d78b4e3</a>
<a
href="id:28537391-2bab-434d-bb85-6be70f115f3d">un-homo-dans-la-ville</a>
<a href="id:c51d04f0-c94c-4904-95fd-c2115836a79e">sondage</a><br />
En ce moment sur <a href="https://q.ailesse.com">le forum !Q</a> est
posé un <a href="file:///index.php/tag/sondage">sondage</a> pour <a
href="https://www.ailesse.com/~tykayn/forum/comments.php?DiscussionID=38&amp;page=2#Item_17">savoir
ce que pensent le peuple de l'homosexualité</a> en une quinzaine de
questions (ci-dessous).<br />
Vous devez répondre <strong>1, 2, 3, , 4, ou 5</strong> aux questions,
<strong>0</strong> indiquant que vous n'êtes pas du tout d'accord, et
<strong>5</strong> que vous êtes complètement d'accord.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/bazar/illus/Qp%eache400.jpg" />
voici les questions:<br />
<br />
</p>
<blockquote>
les résultats seront utilisés pour la publication d'un fanzine dont le
thème sera : l'homosexualité. (aucune donnée ne sera traitée à titre
personnel, nous ne divulguerons aucune information de manière
individuelle.)<br />
Votre âge, Votre sexe<br />
<br />
A/"je suis homosexuel"<br />
B/"je connais des personnes homosexuelles"<br />
C/"j'ai déjà eu une relation homosexuelle"<br />
D/"je serais tenté par…"<br />
E/"je serais choqué si un ami m'apprenait qu'il est homo"<br />
F/"je serai gêné si j'ai un enfant qui m'apprend qu'il/elle est
homosexuel"<br />
G/"l'homosexualité est un trouble passager de l'adolescence"<br />
H/"les gays ont tous des manières de fille précieuse"<br />
I/"les lesbiennes sont toutes des garçons manqués"<br />
J/"je ne saurais pas dire dans une foule d'inconnus qui ou qui n'est pas
homo"<br />
K/"je pense qu'un jour il n'y aura plus d'homosexuels"<br />
L/""je pense qu'un jour tous les gens seront bi""<br />
M/"les garçons homos sont plus nombreux que les femmes homos"<br />
N/"je suis pour le mariage homosexuel"<br />
O/"je suis pour l'adoption par des couples homosexuels"<br />
P/"j'ai changé d'opinion à propos des homosexuels depuis que j'en
connais"<br />
Q/"j'aimerais que le monde soit composé exclusivement d'hétéros"<br />
R/"l'homosexualité me dérange"<br />
<br />
(si l'interviewé est homosexuel:)<br />
1. combien de fois avez vous déjà eu des relations hétéros ?<br />
2. à quel âge avez vous compris que vous étiez homosexuel ?<br />
3. a quel âge avez-vous fait votre coming-out ?<br />
4. Qu'en ont pensé votre famille lorsqu'ils ont découvert votre
orientation sexuelle ?<br />
5. Préférez vous cacher à vos proches votre homosexualité ?<br />
6. Pensez vous qu'un jour vous passerez à une autre orientation ?<br />
7. Auriez vous un message à faire passer aux hétéros ?<br />
</blockquote>
<p><br />
Le fanzine <a href="file:///index.php/tag/%21q">!Q</a> numéro 3 spécial
homosexualité sortira en Juillet 2008, grâce à toi lecteur, merci !
merci! ø/<br />
vous pouvez répondre ici dans les commentaires.<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,527 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 126</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-04-09 17:40:39&gt;</li>
<li>modifié: &lt;2008-04-09 17:40:39&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="tuto-cours-dantomie">[tuto] Cours d'Antomie</h2>
<p><u><u>Parce que c'est pas le tout d'avoir un style mangasse ou que
sais-je, il faut avoir des bases faites sur du RÉEL</u></u>
è<sub>é</sub>%%% (et aussi parce qu les exams sont dans moins d'un mois,
hiii ça passe vite!)%%%%%% Voici les scans des [cours|<a
href="tag:cours">tag:cours</a>] d'anatomie en BD1 à l'école saint luc de
Bruxelles, axé uniquement sur l'<u><u>ostéologie</u></u>, l'année de BD2
concernera la myologie (les muscles).%%%%%% ((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a002.jpg">https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a002.jpg</a>||C))%%%%%%
Vous allez y voir tous les os du squelette humain, leurs proportions,
des scémas simplifiés, un vrai cours de dessin <strong>o</strong> (sauf
que je commenterai pas plus que ça les schémas, faudra vous débrouiller
pour les comprendre.)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a001.jpg" /></p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a003.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a004.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a005.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a006.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a007.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a008.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a009.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a010.jpg" /></p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a011.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a012.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a013.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a014.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a015.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a016.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a017.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a018.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a019.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a020.jpg" /></p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a021.jpg" />
<a
href="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a022jpg">https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a022jpg</a>
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a023.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a024.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/a025.jpg" /></p>
<p>Si vous voulez en savoir plus, il y a wikipedia (<a
href="https://fr.wikipedia.org/wiki/Squelette_humain">Squelette
humain</a>) , et je vous offre les scans de A4 en 150 dpi dans cette
archive:</p>
<p><a
href="https://tykayn.fr/wp-content/uploads/i/2008/avril/09_anatomie/anatomie.zip">[[<span>https://tykayn.fr/dotclear2/admin/images/media/folder.png</span></a>]]
( anatomie.zip ; 4.4 Mo)<br />
<br />
Enjoy! J'espère que ça vous servira et que vous ferez des dessins encore
mieux après avoir étudié toues ces théories <strong>0</strong></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,465 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 326</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-05-12 22:13:01&gt;</li>
<li>modifié: &lt;2008-05-12 22:13:01&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="pour-motive-1">Pour Motive</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/bazar/painsdepices/oekaki_36866.png" /><br />
Joyeux 33 ans <a href="https://da-Motive.deviantart.com">Motive</a>,
tiens, vla une bougie à souffler :3<br />
Hum, y'a plein d'<a
href="file:///index.php/tag/annversaire">annversaires</a> en Mai, c'est
dingue! o<sub>o</sub></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,618 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 105</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-06-03 21:12:45&gt;</li>
<li>modifié: &lt;2008-06-03 21:12:45&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2
id="tuto-perspective---un-point-de-fuite-et-décroissance-des-intervalles">Tuto
Perspective - un point de fuite et décroissance des intervalles</h2>
<p>Commencons par le début: %%% %%% !!!un seul point de fuite à
considérer.%%% ((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC01331.JPG">https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC01331.JPG</a>))%%%
((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC013312.JPG">https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC013312.JPG</a>))%%%
Avec l'invention de [la photographie|<a
href="https://fr.wikipedia.org/wiki/Photographie">https://fr.wikipedia.org/wiki/Photographie</a>]
vers 1800 , on a commencé à apprivoiser au mieux la perspective et ses
points de fuite.%%% %%% <u><u>Un point de fuite c'est quoi?</u></u>
%%%<br />
Un point vers lequel des lignes imaginaires convergent <strong>à
l'infini</strong>.<br />
Ces lignes droites sont les extrêmités d'objets. Ce sont les bords d'un
immeuble, d'une table, d'un rail… etc.<br />
Ce sont des lignes imaginaires tracées par le dessinateur pour délimiter
les objets.<br />
<strong>Dans la réalité ces lignes n'existent pas</strong>, prenons
quelques photos et traçons les lignes des bords pour trouver comment
convergent ces lignes.<br />
<br />
Gare de Part-dieu à Lyon:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC09207.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC092072.JPG" /><br />
Gare du Nord à Paris:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC00757.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC007572.jpg" /><br />
On remarque ici que les points de fuite dépendent de notre
position:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/hotel.gif" /><br />
<br />
Décomposons:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC091802.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC091812.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC091822.jpg" /><br />
<br />
En marquant les lignes ont s'apperçoit qu'elles <strong>convergent au
zénith de l'observateur</strong> (dans le cas où les objets observés
sont bien <strong>verticaux</strong>, c'est à dire perpendiculaires à la
surface du sol)<br />
Quand on se place entre les deux drapaux et qu'on regarde en l'air, leur
lignes convergent juste au dessus de nous.<br />
*Il en est de même lorsque l'on ne se trouve pas au milieu des objets
verticaux.*<br />
<br />
<br />
ils se trouvent <strong>à notre hauteur dans l'horizon</strong>, ou à
notre <strong>zénith / nadir</strong> si on regarde <strong>en l'air /
vers le sol</strong>.<br />
en regardant droit devant soi, Si on traçait une tangente au sol qui
part de notre <strong>point de vue</strong> (voir <a
href="https://tykayn.fr/index.php/post/2008/04/19/Perspective%3A-introduction-et-vocabulaire">l'introduction
à la perspective</a>) à la surface du sol dans la direction de notre
regard, on trouve le point de fuite.<br />
Si on s'accroupit, ou si on se couche en regardant toujours au loin
devant soi, ce point de fuite descend, il se rapproche du sol, comme on
le fait, et les lignes de fuite le suivent.<br />
Du coup, on peut savoir si un objet observé est: plus haut que nous, ou
plus bas. Quand on dessine des décors, tracer l'horizon de notre hauteur
permet de ne pas se tromper en plaçant un objet qu'on verrait par
exemple de dessus, alors qu'il est au dessus de cet horizon.<br />
<br />
C'est une bonne leçon de philosophie ça:<br />
</p>
<pre class="example"><code>Ce qu&#39;on voit nous apparaît en fonction de notre point de vue
</code></pre>
<p>On pourrait même s'en servir pour parler de physique quantique, mais
bon, revenons fouetter nos moutons!<br />
<br />
<br />
Voilà pour ce qui était de la perspective à <strong>un seul</strong>
point de fuite, mais spa fini pour ce chapitre.<br />
Ça donne des images statiques, centrées sur le sujet, et c'est peu
fréquent dans notre réalité.<br />
Notre vision humaine se rapprocherait plutôt d'une conception à 6 points
de fuite (6 points définissant les extrémités des axes pour faire 3
dimensions), voire 12 (6 pour chaque oeil), mais nous allons voir ça au
fur et à mesure.<br />
Voyons plutôt la propriété pour savoir comment rétrécir exactement vos
objets lorsqu'ils se rapprochent de l'horizon.<br />
<br />
</p>
<h3 id="décroissance-des-objets-avec-la-distance">Décroissance des
objets avec la distance</h3>
<p><br />
Admettons que vous vouliez dessiner une rangée de poteaux
électriques.<br />
Comment les placer en perspective correctement?<br />
Là j'ai pas de photo mais ça semble harmonieux, et tous mes cours de
perspective m'ont raconté ça:<br />
<br />
Plante ton premier poteau, trace ton horizon, choisis un point de fuite
(les Belges ont une drôle de prononciation sur les U, ils les disent OU,
mondieu hiiii!):<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/poteaux6.jpg" /><br />
<br />
Plante ton deuxième poteau qui va décider de la place des
suivants.<br />
Cette théorie de la décroissance des objets en perspective ne fonctionne
que si les objets doivent être espacés d'une même distance entre
eux.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/poteaux7.jpg" /><br />
<br />
Trace une ligne qui part du <strong>milieu de la hauteur</strong> du
poteau 1 vers le point de fuite.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/poteaux8.jpg" /><br />
<br />
Trace en rouge la ligne qui part du haut du poteau 1 et qui passe par le
milieu du poteau 2.<br />
Tu peux maintenant planter ton 3e poteau là où la ligne rouge rencontre
la ligne fuyante indiquant le bas de tous les poteaux.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/poteaux9.jpg" /><br />
<br />
Et ainsi de swouite :D<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/poteaux10.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juin/persp1/DSC01331.JPG" /><br />
Notez que le point qui ne va pas vous servir à grand chose est sur la
perpendiculaire à l'horizon, du côté sous-sol.<br />
En effet, il ne va pas vous servir à grand chose, malheur ! vous venez
d'apprendre un truc qui ne va pas vous servir.<br />
<br />
Ça peut être une bonne <del>question d'examen</del> leçon de
philosophie.<br />
</p>
<pre class="example"><code>On en apprend tous les jours.
</code></pre>
<p><br />
<br />
Vous pouvez jouer avec le <strong><a
href="https://fr.wikipedia.org/wiki/Th%C3%A9or%C3%A8me_de_thal%C3%A8s">théorème
de thales</a></strong>: Si vous mesurez la longueur (un segment non
courbé) entre votre oeil et le bout de votre main qui tient une règle à
la verticale, vous pouvez savoir:<br />
La distance qui vous sépare d'un monument dont vous connaissez la vraie
hauteur,<br />
la hauteur d'un monument dont vous connaissez la distance qui vous en
sépare ø/<br />
<br />
<a href="https://tykayn.fr/index.php/category/Tuto">Tuto</a> sur la <a
href="file:///index.php/tag/perspective">persp'</a> <strong>à
suivre</strong>, avec encore plusse de points de fwouitte.<br />
En attendant, je ne saurais que trop vous conseiller d'observer la
VraieVie.<br />
On apprend beaucoup de choses en prenant le train et en regardant
partout.<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,488 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1396</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-06-29 14:00:13&gt;</li>
<li>modifié: &lt;2008-06-29 14:00:13&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="sles-vacances">S'les vacances</h2>
<p>((<a
href="https://i22.photobucket.com/albums/b301/tykayn/oekaki_38184.png">https://i22.photobucket.com/albums/b301/tykayn/oekaki_38184.png</a>||C))%%%%%%
Demain le 30 Juin: <u><u>résultats de mon année de BD1, priez pour
moi!!!</u></u> <strong>0</strong> ;o; *-*%%%<br />
appel de mon employeur qui va me dire si je travillerai pour lui ou pas
pour Juillet et Aout dans le centre commercial de Caluire à côté de
Lyon.<br />
La Japan Expo c'est dans 4 jours, wéééé, mais si je bosse dans le centre
commercial j'y serai pas du tout, positivons, ça me fera économiser
dupognon, et si je veux un nouveau pécé + écran va falloir économiser
ø/<br />
<br />
Bon, et question métaphysique du jour:<br />
partout, lorsqu'il s'agit de lecture de romans, de bande dessinée,
d'histoires illustrées, de dessins animés, de films, on parle
d'*identification.*<br />
Or voilà, l'autre jour j'étais bien content de tomber sur un post du
blog de boulet où il raconte que lui non plus n'avait jamais imaginé que
dans les histoires qu'il lisait il se prenait pour un ou des personnages
dont il voyait l'histoire se dérouler.<br />
J'ai toujours su mettre une distance entre ce que je vois à la télé, ce
que je lis dans des livres, dans des BD, dans ce que je dessine, et le
monde réel.<br />
Jamais je ne me suis imaginé être à la place d'un personnage
fictif.<br />
Hier je parlais de ça avec <a
href="https://tykayn.fr/painsdepices.php/">ma chérie</a> et elle m'avait
dit que elle, au contraire, avait toujours imaginé qu'elle était (ou
qu'elle pouvait être) le personnage qu'elle voyait.</p>
<p>Et vous lecteurs de blague, <strong>où en êtes vous dans
l'identification?</strong></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,497 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 165</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-07-22 15:34:35&gt;</li>
<li>modifié: &lt;2008-07-22 15:34:35&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="cest-quoi-troller">C'est quoi "Troller" ?</h2>
<p><br />
Qu'est-ce que c'est que "troller", ou faire un troll ?<br />
vous le pratiquez peut être déjà sans le savoir :)<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/juillet/22_plein_trucs/troll.jpg" /><br />
On pense bien sûr aux besioles fantastiques qu'on a vu dans le seingeur
des anneaux (il doit <a href="">sentir les bagues</a> lui, hohoho), et
ce seraient plutôt des Orques que des Trolls d'ailleurs, mais ici il
s'agit d'une façon de discourir.<br />
Un troll c'est une besiole stupide mais imposante, qui déboite la tête à
tout ce qui ne lui plait pas avec un panache monstrueux et gratuit. un
Troll (celui qui trolle), discute avec cet état d'esprit, il
trolle.<br />
Le but du troll est d'éveiller les passions de son ou ses
interlocuteurs, de le faire réagir ou bien considérer un problème ou une
situation d'un autre point de vue.<br />
Ce qui caractérise le troll c'est qu'il fait preuve d'une
<strong>mauvaise foi</strong> déconcertante, provoquante.<br />
<br />
Pratiquer et comprendre le troll demande des choses cruciales:<br />
*ne pas se borner aux mots que l'on entend, ne pas se fier aux
apparences.*<br />
*ne pas être gêné d'être seul contre tous,*<br />
*ne pas avoir peur des mots,*<br />
*dire des choses que l'on ne pense pas ou qui vont à l'encontre de notre
opinion.*<br />
<br />
De la même manière que l'ironie, le troll permet une interprétation
libre, et la liberté est une chose précieuse qui permet l'enrichissement
d'un dialogue.<br />
Maintenant vous savez, vous êtes prêts à troller le monde *<sub>*</sub>
vos amis, vous même, vos proches, votre boss, votre voisin, votre chien,
vos slips, mais gardez à l'esprit que, comme disait Coluche…<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/3.0/nicolahulotte/115coluche.png" /><br />
<br />
<br />
Troller c'est trop laid, ceux qui trollent pas sont tous des cons !
n<sub>n</sub></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,487 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 325</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-10-06 14:24:04&gt;</li>
<li>modifié: &lt;2008-10-06 14:24:04&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="les-affaires-reprennent-1">Les affaires reprennent</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/septembre/q_piwai.jpg" /><br />
Ce matin ,+un lapin…+ j'ai présenté à quelques zélèves de ma classe de
BD2 de Saint Luc le fanzine <a href="file:///index.php/tag/%21q">!Q</a>
<a
href="https://www.ailesse.com/~tykayn/forum/comments.php?DiscussionID=9&amp;page=1#Item_2">Numéro
2</a> et à ma grande surprise un élève l'a acheté. Ci-dessus, sa
dédicASS réalisée aujourd'hui même.ø/<br />
Cette semaine donc,<br />
j'ai moins bloggué parce que j'apprenais le php grâce aux (supers
<strong>o</strong>) <a href="https://www.siteduzero.com">tutoriels du
site du Zér0</a> afin de pouvoir faire plein de sondages sans demander
au public de copier coller les questions pour y répondre et ensuite
exploiter les données sur excel.<br />
<br />
Je vous ai donc préparé moi-même, cher public, un rapide sondage<br />
Il suffit de cliquer sur les choix pour répondre. ça contribuera à faire
votre bonne action du jour et à ensuite publier des statistiques dans le
zine !Q N°4 qui parlera de sextoys et de masturbation.<br />
<strong>C'est totalement anonyme</strong> et je publierai des graphiques
de statistiques quand j'aurai pris un programme spécialement pour.<br />
<br />
</p>
<pre class="example"><code>participer au sondage
</code></pre>
<p>J'espère que vous serez nombreux à participer :)<br />
Si vous avez des suggestions ou des questions demandez les dans les
commantaires de ce billet ;)<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,552 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 361</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-10-18 21:59:05&gt;</li>
<li>modifié: &lt;2008-10-18 21:59:05&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="gâteau-polonais">Gâteau polonais</h2>
<p>((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02875.JPG">https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02875.JPG</a>||C))%%%%%%
%%%Que d'aventures cet après midi. [Wanda|<a
href="https://dalvia.blogspot.com/%7Cfr">https://dalvia.blogspot.com/|fr</a>]
la polonaise de ma classe de BD débarque chez moi pour préparer des
gâteaux en vue du repas de demain. %%% Le nom du gâteau m'échappe
(Vanndah si tu passes par ici je veux bien le nom du gato :D) %%% Voici
donc la recette toute en image (j'en profite pour faire voir mon superbe
appart' trop petit pour faire une pendaison de crèmerie). %%%<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02860.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02861.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02862.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02863.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02864.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02865.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02866.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02867.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02868.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02869.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02870.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02871.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02872.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02873.JPG" /><br />
notez la fougue dans le remuage de pâte avec le mouvement des cheveux.
Quand on fait un gateau à la polonaise il faut danser la polka en même
temps. (heu…)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02874.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02875.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02876.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02877.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02878.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02879.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02880.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02881.JPG" /><br />
Un doubleuvé comme Ouanda ø/<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02882.JPG" /><br />
Un huit comme heu… un B ø/<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02883.JPG" /><br />
Un té comme téka ø/<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02884.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02885.JPG" /><br />
Har, nettoyons le plat. spoon fighting.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02886.JPG" /><br />
Keskonsamuz pendant l'heure que ça cuit. <img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02887.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02889.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02890.JPG" /><br />
PC addict.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02891.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02892.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02893.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02894.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02895.JPG" /><br />
Et voilàààà, des beaux gâteaux tout chauds pour aller avec mes
tomates/tym/menthe/basilic du balcon Ø/<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/18-wanda/DSC02888.JPG" /><br />
Strobon tout ça, je vous ferai un compte rendu du reste du repas demain
tiens! *q*<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,583 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 106</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-10-22 11:39:24&gt;</li>
<li>modifié: &lt;2008-10-22 11:39:24&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="tuto-comment-trouver-un-point-de-fuite-1">Tuto: Comment trouver
un point de fuite?</h2>
<p>%%% Si vous voulez dessiner des décors ça peut vous servir.%%% %%%
((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/02.jpg">https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/02.jpg</a>||C))%%%
Comme [toujours|<a
href="https://tykay.free.fr/index.php/category/Tuto">https://tykay.free.fr/index.php/category/Tuto</a>],
les points de fuite dépendent de votre propre position d'observation.
Peu importe où vous regardez, les points de fuite se trouvent en
fonction de la position spatiale du point entre vos deux yeux. ((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/05.jpg">https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/05.jpg</a>||C))%%%
Donc voilà le truc: %%% vous voulez dessiner la pièce dans laquelle vous
êtes assis par terre avec votre carnet à dessin et votre
crayon.%%%<br />
<br />
Pour trouver le point de fuite qui se trouve quelque part devant
vous,<br />
mettez vous face au plan du mur qui vous fait face, vous devez être
aussi vertical que la surface que vous observez si vous voulez trouver
une fuite cohérente.<br />
Si votre salle a une structure rectangulaire (côtés parallèles deux à
deux), les murs sur les côtés du schéma verront leur lignes de plafond
et de sol dirigées vers un point <strong>EXACTEMENT en face de vos yeux,
ET sur la ligne d'horizon</strong>.<br />
Imaginez vous voir dans la même position assis au plus près du
mur.<br />
Vous vous souvenez du point entre vos deux yeux? Eh bien les fuyantes de
la salle se dirigeront vers ce point, c'est le point de fuite que vous
cherchez.<br />
Si vous êtes à 50 cm du sol il se trouvera à 50 cm sur le mur dans votre
dessin.<br />
<br />
Et ces bêtes là, c'est comme la lune, ça donne l'impression que vous
êtes suivi :D<br />
Alors rappelons tout de même que les points, les lignes et tout ça ça
n'existe que dans notre imaginaire collectif, rassurez vous, personne ne
vous suit.<br />
mouahah.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/06.jpg" /><br />
Une technique simple pour trouver où se trouve le point correspondant à
votre point de vue sur le mur, <strong>servez vous de votre
crayon</strong> (si il est droit) en tendant votre bras au maximum (pour
être régulier dans vos mesures) et suivez les lignes des murs sur les
côtés.<br />
Votre dessin gagnera en cohérence si vous trouvez les bons points de
fuite, et si vos lignes convergent exactement vers ces points. Faites
donc attention aux intervalles de taille pour dessiner les surfaces de
vos objets en série.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/01.jpg" /><br />
Si vos objets en série sont sensés être tous de même taille dans
l'espace, en perspective ce n'est plus pareil:<br />
Plus votre objet, ici le cube, sera éloigné du point de fuite, plus la
taille de la même surface rapetissera.<br />
Donc si dans votre dessin vous voyez un cube dans le ciel qui a une face
du dessous plus petite que celle d'un cube juste au dessus de l'horizon
c'est qu'il y a quelque chose qui cloche.<br />
<br />
<br />
on ne voit pas le dessous d'un objet posé au sol, et on ne voit pas le
dessus d'un objet au dessus de nous.<br />
Si votre horizon est plutôt dans le haut de votre dessin, c'est que vous
regardez par terre.<br />
<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/07.jpg" /><br />
Si vous êtes au dessus des immeubles que vous voulez dessiner, rappelez
vous que les points de fuite se trouvent toujours sur l'horizon (ou le
vertizon, <a
href="https://tykayn.fr/index.php/post/2008/04/19/Perspective%3A-introduction-et-vocabulaire">voir
le vocabulaire</a>)<br />
Savoir que ce qu'on dessine sera vu de dessus ou de dessous en fonction
de notre position permet de garder une cohérence dans son dessin, à
condition que vous respectez <a
href="https://tykayn.fr/index.php/post/2008/06/03/Tuto-Perspective-un-point-de-fuite-et-decroissance-des-intervalles">la
décroissance des intervalles</a><br />
En l'occurrence, sur ces immeubles en schéma, une fenêtre plus basse
qu'une autre sous l'horizon, ou plus haute qu'une autre au dessus de
l'horizon sera toujours plus petite que la précédente.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/03.jpg" /><br />
J'étais à Cergy, à un endroit qui s'appelle "les 12 colonnes" et je
voulais savoir si je me trouvais plus haut que la tour Eiffel se
trouvant à une trentaine de kilomètres de là. (ouais j'ai des curiosités
comme ça :D)<br />
C'est alors que je me suis armé de mon appareil photo et ai zoomé sur
l'édifice.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/04.jpg" /><br />
Ceci est un haut de tour eiffel (oui bon, ayez un peu
d'imagination!).<br />
J'ai alors remarqué qu'une partie du haut de la tour étaie légèrement
vue de dessous, et que le reste du bas était vu de dessus. Je me
trouvais donc à la hauteur où les barres de métal de la tour étaient de
face.<br />
(entre le 2e et le 3e étage, à plus de 200mètres de haut donc).<br />
Si vous êtes CUrieux et que vous connaissez le théorème de Thalès ou
bien gout-gueule vous pouvez trouver la hauteur à laquelle j'étais, la
vraie distance séparant les deux édifices (de sa mère! hohoho jeu de
mot!) et même l'âge du capitaine.<br />
voilà, maintenant vous savez.<br />
Des questions?<br />
Pourquoi quand je dessine une porte ouverte elle a une gueule bizarre
par rapport au mur? ;_;<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/08.jpg" /><br />
*Il ne faut prendre un point de fuite commun pour des plans que si ils
sont parallèles.*<br />
Une porte, quand elle est fermée a le plan de sa surface parallèle au
mur.<br />
Ensuite, quand on l'ouvre les fuyantes du haut et du bas de la porte se
dirigent vers un point qui se déplace sur la ligne d'horizon.<br />
Quand la porte est fermée, ce point est derrière l'observateur, plus on
l'ouvre, plus le point de fuite migre vers l'avant comme le montre ce
schéma:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/21tutopersp/09.jpg" /><br />
<br />
Voilà pour l'étude de un point de fuite, j'espère que vous dessinerez de
beaux décors et que la persp' ne vous fera plus peur :3<br />
Bon courage pour vos projets, qu'ils arrivent à terme et faites moi les
voir dans les commentaires! ø/<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,490 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 107</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-10-25 12:28:46&gt;</li>
<li>modifié: &lt;2008-10-25 12:28:46&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="ingvar-kamprad-elmtaryd-agunnaryd-cest-plus-fort-que-toi">Ingvar
Kamprad Elmtaryd Agunnaryd c'est plus fort que toi!</h2>
<p>Oué donc IKEA c'est plus fort que toi (vous savez bien, le magasin de
mobilier et de vaisselle le plus 2.0 du monde).%%% Le genre d'endroit où
il ne faut aller que quand on est PAS pauvre :D %%% donc voilà, on a un
nouveau canap/lit/vautre<sub>land</sub> futonné Ø/ En plus on a tout le
plaisir de voir qu'avec peu de choses intelligemment agencées on peut
faire des meubles krobien, (quand on a les bons outils, sinon ça sux un
peu quand même) en plus d'avoir l'impression de les faire nous même
<strong>-</strong> %%% On a fait une folie pour NONANTE euros, de quoi
larver encore plusse à la maison, notre ancien canapé était vraiment
trop petit et on pouvait pas dormir dedans. :3 %%% Avant c'était COUMME
ça:%%% ((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/octobre/25-ikea/1.JPG">https://tykayn.fr/wp-content/uploads/i/2008/octobre/25-ikea/1.JPG</a>||C))%%%<br />
Et hop, une requête <a href="https://fr.wikipedia.org/wiki/SQL">SQL</a>
de <em>DROP CANAP</em> plus tard, (stune blague pour <a
href="file:///index.php/tag/geek">geek</a>, n'ayez pas peur ¬_¬)et grâce
à l'aide de notre voisin de pallier (merci a lui, fok je lui rende son
marteau tiens) on peut s'attaquer au montage du clikclak.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/25-ikea/dehors.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/25-ikea/2.JPG" /><br />
Un montage de lampe plus tard…<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/25-ikea/3.JPG" /><br />
Plein de BOM BOIM BOM BOHM plus tard, voualaaaa! <img
src="https://tykayn.fr/wp-content/uploads/i/2008/octobre/25-ikea/4.JPG" /><br />
à nous la glande devant le home cinema pour les <a
href="https://fr.wikipedia.org/wiki/How_I_met_your_mother">How I met
your mother</a> de 22 pouces 16/10e. n<sub>n</sub><br />
<br />
Bonnes vacances à vous! :)<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,754 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 98</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-11-09 16:32:09&gt;</li>
<li>modifié: &lt;2008-11-09 16:32:09&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="concert-haloween-paris-gare-du-nord-1">Concert Haloween Paris
gare du Nord</h2>
<p>((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03286.JPG">https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03286.JPG</a>||C))
Halowwen [2008|/index.php/archive|fr], concert dans un café en face de
la gare du nord de Paris tenu par Gainsbourg2. Y ont participé les
groupes: * __[Serial|<a
href="https://www.myspace.com/serialgroupe%7Cfr%5D__">https://www.myspace.com/serialgroupe|fr]__</a>
avec [djo|<a href="tag:djo">tag:djo</a>] et le [poulpe|<a
href="tag:poulpe">tag:poulpe</a>]. * __[Anselme|<a
href="https://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendID=196540400%7Cfr%5D__">https://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendID=196540400|fr]__</a>
ceci n'est pas lex lutor. * et __[Shiver</p>
<table>
<tbody>
<tr class="odd">
<td><a
href="https://www.myspace.com/shiverfr%7Cfr%5D__">https://www.myspace.com/shiverfr|fr]__</a>
avec [micanou</td>
<td><a href="tag:micanou">tag:micanou</a>].</td>
</tr>
</tbody>
</table>
<p>((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03290.JPG">https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03290.JPG</a>||C))<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03274.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03275.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03276.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03277.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03278.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03279.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03280.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03281.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03282.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03283.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03284.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03285.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03286.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03287.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03288.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03289.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03290.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03291.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03292.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03293.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03294.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03295.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03296.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03297.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03298.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03299.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03300.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03301.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03302.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03303.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03304.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03305.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03306.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03307.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03308.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03309.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03310.JPG" />
"il souuuuuuuuuuuuuule l'olivier" lui dédicace la chanson.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03311.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03312.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03313.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03314.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03315.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03316.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03317.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03318.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03319.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03320.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03321.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03322.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03323.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03324.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03325.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03326.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03327.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03328.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03329.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03330.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03331.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03332.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03333.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03334.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03335.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03336.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03337.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03338.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03339.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03340.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03341.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03342.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03343.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03344.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03345.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03346.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03347.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03348.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03349.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03350.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03351.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03352.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03353.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03354.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03355.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03356.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03357.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03358.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03359.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03360.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03361.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03362.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03363.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03364.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03365.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03366.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03367.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03368.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03369.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03370.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03371.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03372.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03373.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03374.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03375.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03376.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03377.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03378.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03379.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03380.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03381.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03382.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03383.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03384.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03385.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03386.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03387.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03388.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03389.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03390.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03391.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03392.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03393.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03394.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03395.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03396.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03397.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03398.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03399.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03400.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03401.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03402.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03403.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03404.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03405.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03406.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03407.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/concert_djomikanou/DSC03408.JPG" />
Et c'était bien chouette, j'ai passé une chuper bonne soirée.
*<sub>*</sub><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,486 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 324</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-11-21 23:34:01&gt;</li>
<li>modifié: &lt;2008-11-21 23:34:01&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="l-oekaki-board-de-q-est-née-0">L' oekaki board de !Q est née
<strong>0</strong></h2>
<p><br />
<a
href="https://www.ailesse.com/%7Etykayn/forum/oekaki/">[[<span>https://www.ailesse.com/%7Etykayn/forum/oekaki/templates/img/printview.jpg</span></a>]]<br />
<br />
ô peuple partisants de la CULture réjouissez vous, j'ai réussi à
installer <a href="https://www.ailesse.com/%7Etykayn/forum/oekaki/">une
oekaki board personnelle</a> (pour public perverti/averti) au <a
href="https://www.ailesse.com/%7Etykayn/forum/">forum</a> <a
href="file:///index.php/tag/%21q">!Q</a> ça vous donne une idée de ce
qu'il est permis d'y mettre.<br />
Si vous ne connaissez pas les oekakis (du japonais "<em>é wo kaku</em>"
= dessiner un dessin ) ce sont des dessins réalisés par les utilisateurs
(vous) à l'intérieur même d'une page web grâce à un logiciel java facile
à maîtriser. Ensuite votre oekaki est posté sur une page regroupant tous
les dessins, et vous pouvez laissez des commentaires, retoucher votre
dessin, , casser du sucre dans le dos des autres, échanger des conseils,
et progresser.<br />
<br />
La board bénéficie de plusieurs appelets dont Chibipaint, l'appelet
réalisé par notre cher Suisse Codexus. (Ouais jme la joue parce que je
connais une star de la programmation)<br />
<br />
Enfin, tout ceci va donner un joyeuse communauté créatrice de dessineux
plus ou moins amateurs et le liens vers la board est aussi en bannière
dans le menu du blog, à droite.</p>
<p><a
href="https://www.ailesse.com/%7Etykayn/forum/oekaki/">[[<span>https://www.ailesse.com/%7Etykayn/forum/extensions/Sidepanel/ban-oekaki.jpg</span></a>]]<br />
Viendez vous inscrire! <sup>o</sup>^/</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,477 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 355</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-11-29 10:18:42&gt;</li>
<li>modifié: &lt;2008-11-29 10:18:42&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="bd2---exercice-2---page1">BD2 - Exercice 2 - page1</h2>
<p><br />
Crayons aquarelle power ø/<br />
Sur feuille A3 180g/mee2 (appareil photo featured)<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/ex2bd2page1.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2008/novembre/ex2bd2page1_.jpg</span></a>]]<br />
Faudrait que je mette moins de couleurs à la fois et que je fasse des
zones de couleur plusse unies. J'ai encore 5 autres pages à faire avant
d'en avoir fini avec ce projet que je devrai rendre pour le 16 Décembre
(peut être).<br />
Si je mets aussi 3 heures par planche j'en ai pour… un certain temps par
jour. S'facile de faire les décors quand on a pris des photos
spécialement pour les plans de notre bédé. Chers bédéistes ne négligez
pas la prise de documents sur étude du Monde Réel *0*<br />
On verra bien ce que ça donne.<br />
<br />
Les lecteurs assidus auront remarqué le changement de thème sur ce
blog,<br />
sparce que j'ai récupéré le css customisable maintenant que Sandra chou
a pris le thème de base pour <a href="file:///painsdepices.php">le blog
painsdépices</a> (qui est devenu le sien).</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,485 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 256</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-11-29 11:51:14&gt;</li>
<li>modifié: &lt;2008-11-29 11:51:14&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="anatomie---myologie-du-bras-et-du-visage">Anatomie - myologie du
bras et du visage</h2>
<p>L'anatomie c'est trop fun. Allez, apprenez moi tous ces muscles, et
sur quelle partie des os ils se fixent, vous m'en direz des
nouvelles.%%% [((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b177_.jpg">https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b177_.jpg</a>||C))|<a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b177.jpg%5D\\">https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b177.jpg]\\</a></p>
<p><a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b178.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b178_.jpg</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b179.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b179_.jpg</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b170.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b170_.jpg</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b176.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b176_.jpg</span></a>]]</p>
<pre class="example"><code>Grimacer pour retenir les muscles du visage s&#39;bien.
</code></pre>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b137.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b138.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b139.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b145.jpg" /></p>
<p>Quelques dessins d'après des platres grandeur plusse que
nature:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/novembre/anatomie_bras/b147.jpg" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,495 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1435</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-12-07 05:08:19&gt;</li>
<li>modifié: &lt;2008-12-07 05:08:19&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="pas-à-pas-laire-de-repos-après-lamour">[pas à pas] (l'aire de
)repos après l'amour</h2>
<p>((<a
href="https://tykayn.fr/wp-content/uploads/i/2008/decembre/repos.jpg">https://tykayn.fr/wp-content/uploads/i/2008/decembre/repos.jpg</a>||C))%%%
Un des thèmes de l'atelier [!Q|<a href="tag:!Q">tag:!Q</a>] MSN de ce
week end était "<u><u>le repos après l'amour</u></u>", j'en ai donc
profité pour essayer mes crayons aquarelles, mon feutre noir fin pour CD
et mon pinceau à réservoir d'eau.%%% Donc voici un pas z'a pas
rapide:<br />
</p>
<h3 id="e-étape">1e étape:</h3>
<p>ébauche des personnages avec un crayon clair pour pouvoir rectifier
facilement et placer les lumièrs pour mettre en forme les volumes. <img
src="https://tykayn.fr/wp-content/uploads/i/2008/decembre/1.jpg" /><br />
<br />
</p>
<h3 id="e-étape-1">2e étape:</h3>
<p>fondu des couleurs par pinceau plein de flotte.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/decembre/2.jpg" /><br />
<br />
</p>
<h3 id="e-étape-2">3e étape:</h3>
<p>mise en valeurs par noir absolu. (javou tavu, j'en avais déjà mis
avant) mais là spartout<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/decembre/3.jpg" /><br />
<br />
</p>
<h3 id="et-voualaaaa">Et voualaaaa!<br />
<span class="tag" data-tag-name="PROPERTIES"><span
class="smallcaps">PROPERTIES</span></span></h3>
<p>:CUSTOM<sub>ID</sub>: et-voualaaaa</p>
<p>:END:</p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2008/decembre/repos.jpg" /><br />
Les enfants, ne faites pas de cochonsetés au volant, c'est dangereux, ça
tue les animaux mignons et ça roule les r comme les grands mères!<br />
Sur ce, bon Dimanche!</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,467 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 319</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-12-08 02:16:59&gt;</li>
<li>modifié: &lt;2008-12-08 02:16:59&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="how-i-met-your-mother-fanart-1">How i met your mother
fanart</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/decembre/surprendre1.jpg" />
Bon ok, mon fanart ressemble pas aux persos XD<br />
<strong>How I met your mother</strong> est une série du genre sitcom
américine trop fun que je vous conseille de zieuter, en plus les
scénarios des épizodes sont super bien faits, et les personnages
vraiment uniques! ø/<br />
Enjoy! :)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,471 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 321</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2008-12-13 14:54:47&gt;</li>
<li>modifié: &lt;2008-12-13 14:54:47&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="projet-omg---matou-rigolo-3">Projet OMG - matou rigolo 3</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2008/decembre/omg/omg_sm.jpg" /><br />
Hoho! ça c'est du trailer!<br />
Enfin rassurez vous, (ou soyez tristes) ce n'est pas une BD qui parle de
sado masochixsme.<br />
Enfin, stait juste pour dire qu'avec Reg on est sur le chapitre 3 du
Projet O.M.G , qui sortira dans le fanzine !Q n°3 (dont le thème est:
l'homosexualité et plus si <del>f(x)=ax+b</del> affinités ) quelque part
en 2009 :D<br />
Si vous voulez y participer, rendez vous sur le forum !q Ø/<br />
<a
href="https://www.ailesse.com/~tykayn/forum/">[[<span>https://tykayn.fr/wp-content/uploads/i/2008/juillet/22_plein_trucs/ban_q.jpg</span></a>]]<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,477 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 320</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-01-03 15:51:50&gt;</li>
<li>modifié: &lt;2009-01-03 15:51:50&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="illustrer-le-kamasutra-version-tk-1">Illustrer le Kamasutra
(version tk)</h2>
<p><br />
<img
src="https://th08.deviantart.com/fs39/150/f/2008/337/b/3/Elle_et_Lui__de_nuit_by_TyKayn.jpg" />Bonjour
à tous et bonne année, bonne santé, prosperité youpla boum!<br />
à l'occasion de la nouvelle année je lance un projet d'illustration de
100 positions d'un kamasutra que j'ai décrit moi même.<br />
<br />
Je fais appel à votre âme de dessinateur <strong>de tous les
niveaux</strong> <strong>o</strong> prêt à chauffer l'hiver.<br />
Le principe est simple: vous me demandez un ou plusieurs numéros de 1 à
100, je vous réponds les positions correspondantes avec une bonne
description et vous me donnez le lien de vos illustrations Ø/ (pour
mettre vos images sur internet, <a
href="https://www.photobucket.com">https://www.photobucket.com</a> est
votre ami gratuit et sans pub) ou bien vous les envoyez par mail à
tykayn @@ gmail.com Je rassemblerai dans ce post les illustrations de
tout le monde par auteur. :)<br />
Enjoy!<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,856 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1755</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-01-20 13:04:19&gt;</li>
<li>modifié: &lt;2009-01-20 13:04:19&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="quotes-irc-e-kaki-ms-q-1">Quotes IRC : e-kaki, ms, !q</h2>
<p>kay hein… mais ouieuhhh tout le monde danse bien |&lt; Yue has left
irc.fantasya.org (Ping timeout)</p>
<blockquote>
<p><strong>11 September 2005</strong></p>
<p>[11-09-05 - 02:02] ah, joli sous vetements [11-09-05 - 02:02] XD
[11-09-05 - 02:02] * Jori vient de remarqué la culotte [11-09-05 -
02:02] XDD [11-09-05 - 02:03] * Reg aussi ^_^° [11-09-05 - 02:03] * Jori
va ptet lancer une ligne de lingerie [11-09-05 - 02:03] portez du jori,
c'est confortable [11-09-05 - 02:03] oui, ça a l'air confortable
[11-09-05 - 02:03] choob [11-09-05 - 02:03] tu vas le dentelliser ?
[11-09-05 - 02:04] parce que la c'est presque aussi sexy que les soutif
coeur croisé bonnet F special grandes tailles [11-09-05 - 02:04]
v<sub>v</sub> [11-09-05 - 02:05] * Yue is now known as YueFaitDodo
[11-09-05 - 02:05] moi j'aime bien cette culotte [11-09-05 - 02:06] Yue
[11-09-05 - 02:06] la dentelle cémal [11-09-05 - 02:06] * Chobido aime
la lingerie sport [11-09-05 - 02:07] la c'est plus sport c'est mémé
[11-09-05 - 02:07] ou alors faut pas mettre les coutures [11-09-05 -
02:07] si [11-09-05 - 02:08] [02:03] * Jori va ptet lancer une ligne de
lingerie &lt;&lt; je veux !! <sup>0</sup>^ [11-09-05 - 02:08] ah oki,
faut que je fasse en noir alors, mori ;) [11-09-05 - 02:08] loool
[11-09-05 - 02:08] rouge c'est bien aussi, diabolique ^^ (quel bande de
pervs, quand même)</p>
</blockquote>
<blockquote>
<p><strong>8 September 2005</strong></p>
<p>&gt;| loli (~loli@Fantasya-280485D4.teledisnet.be) has joined
#mangastyl aloha |&lt; loli has left irc.fantasya.org
(<strong>*</strong> java da only h4x0rz applet GET IT NOW !!!11!) &gt;|
loli (~loli@Fantasya-280485D4.teledisnet.be) has joined #mangastyl
|&lt; loli has left irc.fantasya.org (loli) essaies encore la petite
croix</p>
</blockquote>
<blockquote>
<p><strong>7 September 2005</strong></p>
<p>[22:56] * Tykayn tate la connection [22:56] ouhou ça marche! [22:57]
gros pervers… [22:58] pervers oui gros non [22:58] keuman tu lsais ? °o°
[22:58] lol [22:58] y t'espionne [22:58] dans ta douche [22:59]
www.tksousladouche.com [22:59] tu connais pas le site de voyeurisme
TyKu.org</p>
</blockquote>
<blockquote>
<p><strong>2 September 2005</strong></p>
<p>*cupidon monte mono *cupidon monte sur mono</p>
</blockquote>
<blockquote>
<p><strong>1 September 2005</strong></p>
<p>[19:01] attention les yeux [19:02] <strong>*</strong> Jiyone is now
known as Jiji|doudouche [19:04] gheeeuhaaarghh! XoX [19:04]
&lt;Jiji|doudouche&gt; j'vous avais prévenu xD</p>
</blockquote>
<blockquote>
<p><strong>24 August 2005</strong></p>
<ul>
<li>retiré quelques passages * [04:33] hey …. sans joke Jori avec
quoi</li>
</ul>
<p>me propose tu pour fair mes ombre sur un dessin?!?! [04:34] avec la
main droite et ton pécé o<sub>o</sub> [04:34]
&lt;mono01[dead<sub>foraweek</sub>]&gt; PieL &gt; avec ta main
o<sub>o</sub> [04:34] Piel&gt; avec de la bonne volonté pour commencer
:) [04:34] main gauche si t'es gaucher o<sub>o</sub> [04:34] non mais
sur toshop!!! [04:34] mono » ahaha, on a de trop bonnes feintes
o<sub>o</sub> [04:34] &lt;mono01[dead<sub>foraweek</sub>]&gt; Jori &gt;
on veut po de détails &gt;_&lt; [04:34] c'est pareil sur toshop la bonne
volonté [04:34] &lt;mono01[dead<sub>foraweek</sub>]&gt; Jori &gt; o/o
[04:34] et la main aussi [04:34] ok salut XXX [04:34] <strong>*</strong>
PieL quit ( ) [04:38] <strong>*</strong> PieL
(~user@Fantasya-B478FACD.clta.globetrotter.net) joined [04:38] comment
tu veut que je fasse un ombre quand ya pas de couleur dans toshop?!?!
[04:39] o<sub>o</sub> [04:39] &lt;_&lt;; [04:39] O<sub>o</sub> [04:39]
pas de couleur dans toshop ? c'est à dire ? [04:39] menu
couleur&gt;mode&gt;RVB [04:39] ben mon dessin es blanc et je veut mettre
l'ombre avec loutil main… mais la ca marche pas quand c'est blanc
[04:39] avec l'outil main XD [04:39] hum … [04:40] parce que je veut
juste fair un calque avec lombre pour garder toujours la meme ombre
[04:40] comment dire ….. [04:40] appuye sur B. piel o<sub>O</sub>
[04:40] tu fais un calque et tu colorie dessus avec le pinceau [04:40]
tu arriveras à trouver le pinceau ? [04:40] <strong>tousse</strong> rtfm
<strong>tousse</strong> [04:40] mais non jori c'est pas ça [04:40] oh
merci :D [04:40] désolé j'ai un truc dans la gorge :) [04:40]
<strong>*</strong> PieL quit ( ) [04:42] il essayait vraiment de faire
une colo avec la main, ou il deconnait? [04:42] avec la main de toshop…
[04:42] * Jori vient de piger [04:42] bennnnn [04:42] le doigt je
suppose [04:43] mais il ferait bien de s'en mettre un [04:43] mon dieu,
c'est grave [04:43] vu la question précédente je crois qu'il parlait
sérieusement [04:43] la question est: l'index ou le majeur [04:43] oulà
[04:43] trop poussé comme question (sans mauvais jeu de mot ^^;) [04:43]
(pour le crayon je parle hein) [04:43] quand je lui est dit de faire
avec la main, il a pigé avec la main de toshop o<sub>o</sub> [04:44]
pitetre [04:44] * faut le faire o<sub>o</sub> [04:44] aaaaaaaaaaaah</p>
</blockquote>
<blockquote>
<p><strong>20 August 2005</strong></p>
<p>&gt;| masenko (~masenko@Fantasya-1B25F47D.w83-197.abo.wanadoo.fr)
has joined #mangastyl bjour ya qqn plus ou moin |&lt; masenko has left
irc.fantasya.org (Connection reset by peer)</p>
</blockquote>
<blockquote>
<p><strong>18 August 2005</strong></p>
<p>qui connait naruto ici ? mdr</p>
</blockquote>
<blockquote>
<p><strong>14 August 2005</strong></p>
<ul>
<li>sandra-chan confirme que jori est un garçon ^___^ (tu as vérifié
?)</li>
</ul>
<p>oui</p>
</blockquote>
<blockquote>
<p><strong>3 August 2005</strong></p>
<p>[03-08-05 - 23:55] viens shen allons créer e-yuri [03-08-05 - 23:55]
viiiiiiiiii, Mi-Shi [03-08-05 - 23:55] :D [03-08-05 - 23:57] * Jori veut
une carte d'abo a vie a e-Yuri</p>
</blockquote>
<blockquote>
</blockquote>
<blockquote>
<p><strong>13 July 2005</strong></p>
<p>[14:24] non mai jaimerai juste savoir parceque c'est pa cool dès que
jfai une connerie c'est toujours moi le dernier prévenu</p>
</blockquote>
<blockquote>
<p><strong>13 July 2005</strong></p>
<ul>
<li>Jiyone entend le feux d'artifice qui pete * Zadkiel entend aussi
un</li>
</ul>
<p>truc qui pète … ha non, il allait regarder dehors, mais il c'est
rendu compte que sa venait de son père</p>
</blockquote>
<blockquote>
<p><strong>7 July 2005</strong></p>
<p>allez lauwen je suis sympa <a
href="https://www.meetic.fr">https://www.meetic.fr</a> c'est une petite
adresse sympa (non merci) lol (j'ai déjà un fil à la patte) tant que
c'est pas la corde au coup Disons que ça se discute :)</p>
</blockquote>
<blockquote>
<p><strong>30 June 2005</strong></p>
<p>[30/06/05] [20:05] ohé [20:05] au bal masqué [20:05] ohé ohé [20:05]
* Bal multi-dropkick Tk-tablier</p>
</blockquote>
<blockquote>
<p><strong>14 June 2005</strong></p>
<p>[14-06-05 - 19:08] * Jori is now known as Jori|Poiffon [14-06-05 -
19:12] c koi poiffon [14-06-05 - 19:12] &lt;Jori|Poiffon&gt; fé un
zanimo qui nave dans l'ofean</p>
</blockquote>
<blockquote>
<p><strong>10 June 2005</strong></p>
<p>[02:12:03] allez faire du yuri ailleurs, vous deux [02:12:04] chez
vous, c'est une insulte, c'est ca ? [02:12:14] mee2&gt; ha nan j'en ai
déjà fait là [02:12:22] heuuu ouais [02:12:59] dommage angie, on pourra
pas aller dans mon lit =( [02:13:03] il a mouillé dessus [02:13:09] *
angeloluha slaps shenen [02:13:20] * Shenen la nouille qui laisse les
fenêtres grandes ouvertes lors d'un orage [02:13:20] je ne veux rien
savoir ! [02:13:41] tu sais pas ce que tu rates, avec moi, ma belle :P
[02:13:54] je sais ce que j'évite [02:13:57] * Shenen kisu angie
<sup>3</sup>^ [02:14:03] et tu évites quoi ? [02:14:21] &gt;_&gt;…….
<strong>regard fuyant</strong> [02:14:41] ohoh, les ptites oeillades
[02:14:43] * Shenen pokes angie [02:14:55] * angeloluha tourne le dos à
shenen [02:15:09] avoue que ca te plait, sinon, tu m'aurais kb depuis
longtemps, peutite coquine [02:15:15] * Shenen devrait pas lui donner
des idées…. [02:15:32] (arf, et on est sur e-kaki XD) [02:15:38] je te
kb pas parce que j'ai la flemme de lever le pied juqu'a tpn posterieur
[02:16:06] mon postérieur n'attend que toi, ma belle ! [02:16:20]
&lt;Jori|Sky&gt; oO [02:16:26] lol jo, rendors toi X'D [02:16:29] mdr
[02:16:32] ouais ce serait le moment mais heuuuu [02:16:41] bon j'ai
plus qu'a fuir loin [02:16:42] juste quand il faut pas, tu arrives
[02:16:47] * angeloluha se cache derrière jori [02:16:49] XD [02:17:00]
pff, jori, tu nuis à notre couple ! [02:17:07] &lt;Jori|Sky&gt;
v<sub>v</sub> [02:17:12] viole plutot jori [02:17:17] nan [02:17:19]
&lt;Jori|Sky&gt; bah a trois, c'est pas plus mal Oo [02:17:20] mais si
[02:17:28] °_° [02:17:29] ok, à trois alors :D [02:17:35] * angeloluha
s'enfuit de nouveau très loin [02:17:45] (bande de cochons, faire ca
avec une mineure v_________<sub>v</sub>)</p>
</blockquote>
<blockquote>
<p><strong>10 June 2005</strong></p>
<p>[02:18:40] * Shenen est allumée, et angie est chaude :) [02:19:00] ça
dépend avec qui</p>
</blockquote>
<blockquote>
<p><strong>9 June 2005</strong></p>
<p>[09-06-05 - 21:32] bon en parlant de fille… [09-06-05 - 21:33] *
Solkee is now known as Solkiriban [09-06-05 - 21:33] dessinons Karey
XD.</p>
</blockquote>
<blockquote>
<p><strong>8 June 2005</strong></p>
<p>[22:38:51] tout ça a cause des petits seins de Jori [22:39:12] raison
de plus pour qu'il s'en fasse mettre de plus gros o/</p>
</blockquote>
<blockquote>
<p><strong>8 June 2005</strong></p>
<p>[22:44:34] c'est normal pour un mec d'aimer les gros seins
v<sub>v</sub> [22:44:40] jvoit pas où est le prob [22:44:46] Shenen: ué
mais les gros seins d'un autre mec…</p>
</blockquote>
<blockquote>
<p><strong>8 June 2005</strong></p>
<p>[22:57:59] bon, j'ai mis un [22:58:06] je suis trop bon [22:58:12] ah
ué ça c'est sur [22:58:15] :) [22:58:18] ça veut dire quoi sinon ?</p>
</blockquote>
<blockquote>
<p><strong>7 June 2005</strong></p>
<p>[23:51:08] chuis du genre a avoir 10 paquets de dinos dans le placard
[23:51:11] et que ça ^^;;; [23:51:26] c'est quoi, des dinos ? [23:51:40]
des gateaux aux cereales et au chocolat, Shenen [23:51:47] bien coriaces
XD [23:52:18] c'est en forme de dinosaure, c''est trop bien
<strong>o</strong> [23:52:29] les frisés c'est les meilleurs [23:52:35]
* Ferraslann les faisait courir quand il était piti, il faisait des
batailles et tout [23:52:38] pask'ils sont pas tous pareils, les dinos
[23:53:56] dans un paquet de 3 je vérifie tjs qu'y a un frisé [23:54:05]
si y en a pas je donne a Bal ;D [23:54:13] et j'en prends un autre (avec
un frisé)</p>
</blockquote>
<blockquote>
<p><strong>6 June 2005</strong></p>
<p>[06-06-05 - 01:12] &lt;Jori|Mecha&gt; sllLluuUUrrrPPpp [06-06-05 -
01:12] jori tu suce quoi? [06-06-05 - 01:12] &lt;Jori|Mecha&gt;
O<sub>o</sub> [06-06-05 - 01:12] tu slurp* [06-06-05 - 01:12] XDDDDDDDD
[06-06-05 - 01:12] * mi-shi a eu du mal à etouffer son rire [06-06-05 -
01:13] * mi-shi va reveiller ses parents qui dorment à côté, pabien
[06-06-05 - 01:13] * Jori|Mecha a arrété de sucer son pouce à l'âge de
deux ans et demi, donc, rien</p>
</blockquote>
<blockquote>
<p><strong>4 June 2005</strong></p>
<p>[17:24] c un pliage tu soufle dedans et ça ça te fait un cochon en 3d
[17:25] on arrete pas le progres [17:25] c ce que je me disais justement
hier</p>
</blockquote>
<blockquote>
<p><strong>27 May 2005</strong></p>
<p>[23:51] hééééééé je dit rarement des âneries [23:51] c'est vous qui
interprétez mal !</p>
</blockquote>
<blockquote>
<p><strong>16 May 2005</strong></p>
<p>[05:44] &lt;tasse|So<sub>S</sub>&gt; quel homme [05:44] * Shen fait
la danse-de-la-joie-sous-les-cocotier &lt;(n_________<sub>n</sub>&lt;)
&lt;(n________<sub>n</sub>)&gt; (&gt;n_______<sub>n</sub>)&gt; [05:44]
vouii, c'est mon héro, mon sauveur [05:44] il est pas pompier pour rien
°3° [05:44] (de calendrier, en plus) [05:45] <strong>*</strong> Jori
changed nick to SuperJori [05:45] * Shen sort</p>
</blockquote>
<blockquote>
<p><strong>14 May 2005</strong></p>
<p>[21:37] <strong>*</strong> monoceros01 quit (irc.Fantasya.org
suisse.Fantasya.org) […] [21:37] <strong>*</strong> monoceros01
(monoceros0@Fantasya-4838D54C.fbx.proxad.net) joined […] [21:38] re
o<sub>o</sub> […] [21:38] <strong>*</strong> monoceros01 changed nick to
Poulet5750255 [21:38] pouahaha [21:38] '_' [21:38] <strong>*</strong>
Poulet5750255 changed nick to monoceros01 [21:39] angeloluha &gt; soit
maudite pour ta moquerie! [21:39] <strong>*</strong> angeloluha quit
(Connection reset by peer) [21:39] mouahahahah! [21:39] * monoceros01
est maintenant vengé :D</p>
</blockquote>
<blockquote>
<p><strong>9 May 2005</strong></p>
<p>tient c marrant ca .. je connaissais pas c du chat pas temps réel c
ca ?? :D</p>
</blockquote>
<blockquote>
<p><strong>8 May 2005</strong></p>
<p>[23:12:11] pfffff saleté de connec [23:12:18] trop le moment là en
plus [23:12:24] &lt;Shen|Dessin&gt; lol [23:12:31] &lt;Shen|Dessin&gt;
en plein 69 avec des trolls ?</p>
</blockquote>
<blockquote>
<p><strong>8 May 2005</strong></p>
<p>[23:20:40] PTDR les quotes a mee2 [23:20:48] ptdr les quotes a mee2
[23:20:56] c bon on a compris dina</p>
</blockquote>
<blockquote>
<p><strong>8 May 2005</strong></p>
<p>[23:22:22] &lt;Shen|Dessin&gt; arrête ! [23:22:26]
&lt;Shen|Dessin&gt; les quotes, c'est mal, vraiment [23:22:35] *
Shen|Dessin va arrêter de dire des conneries, NA.</p>
</blockquote>
<blockquote>
<p><strong>22 April 2005</strong></p>
<p>[00:08] &lt;Jori|Pharos&gt; fantasio est d'ailleur mon perso preferé
de bd franco-belge, je m'identifie trop a lui e<sub>e</sub> [00:17]
parce que tu aime les pipes ? [00:18] * angeloluha repart dans son coin
[00:18] … [00:18] &lt;Jori|Pharos&gt; si elles sont bien faites, je dis
pas non, t'en as a proposer? [00:18] * Jori|Pharos retourne au phare
[00:19] … [00:20] haa mais jori tu ne connais pas ma réputation dans wow
, je suis la spécialiste des pipes [00:20] &lt;Jori|Pharos&gt; j'imagine
v_<sub>v</sub>; [00:20] et par un gros hasard la spécialiste du 69 aussi
(j'ai pas l'air louche moi) [00:20] &lt;Jori|Pharos&gt; lol [00:20]
touss, touss…</p>
</blockquote>
<blockquote>
<p><strong>28 March 2005</strong></p>
<p>[14:41:21] * Zadkiel prend sa respiration et fait du bouche a bouche
a mee2</p>
</blockquote>
<blockquote>
<p><strong>14 March 2005</strong></p>
<p>[22:09:32] Yue, t'as vu la question "avez vous déjà eu des rapports
avec un membre de votre famille" [22:09:42] nan mais ça me choque qu'on
pose ce genre de question dans ce genre de test [22:09:47] et celle qui
suit : avez vous hésité à répondre! [22:09:50] MDR [22:10:02] et t'as
hésité? [22:10:06] vi [22:10:08] v<sub>v</sub> [22:10:10] arf!!</p>
</blockquote>
<blockquote>
<p><strong>7 March 2005</strong></p>
<p>[01:29] mee2, essaie pas de faire de l'humour, ca te va pas bien
[01:29] sisi c'est juste que tu es suceptible [01:29] MOAAA, suceptible
?? [01:30] si ya bien quelqun de suceptible ici, c'est Codexus <code
class="verbatim">_</code> [01:30] on fait rien et il boude [01:30] ah,
il est ici ? [01:30] ici = sur terre [01:30] heuu shenen , la plus
suceptible c'est toi [01:30] ¬¬ [01:30] on peut rien te dire [01:30]
angie, va mourir, je suis pas suceptible ! [01:30] . . . [01:30] si peu
[01:31] et pis non, TOI tu peux rien me dire, tu fais que critiquer et
dire des vipèreries [01:31] et dire que chui méchante à chaque truc que
je dit ou que je fait [01:31] snif [01:31] c'est faux [01:31] c'est vrai
[01:31] angie ne fait pas que critiquer et dire des vipèreries [01:32]
elle joue a des jeux vidéos débiles aussi [01:32] arf [01:32] …. [01:32]
vous voyez, c'est la faute à angie, tout ca ! [01:32] dire que j'ai
failli croire que mee2 allait dire quelque chose de genntil [01:32] *
angeloluha est déçue [01:32] loul [01:33] * Bal est ptdr</p>
</blockquote>
<blockquote>
<p><strong>2 February 2005</strong></p>
<p>[18:41] un peu de pipi caca ne fait pas de mal [18:41] surtout quand
ça viens de toi</p>
</blockquote>
<blockquote>
<p><strong>1 February 2005</strong></p>
<p>[01:01]
FLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFLOODFL
[01:01] <strong>*</strong> Atlantis sets channel #mangastyl mode +b
<strong>!*@Fantasya-7B5BC46B.adsl.econophone.ch [01:01] **</strong>
VEGETA-LE-PLU-FORT was kicked from #mangastyl by Atlantis (Arrêtez de
vous répéter!) [01:01] mouahahahah +b [01:02] t1 ON EST SEUL TOU</p>
</blockquote>
<blockquote>
<p><strong>1 February 2005</strong></p>
<p>[01-02-05 - 02:34] * Shen|Dessin roule une pelle à angie [01-02-05 -
02:34] o<sub>O</sub> [01-02-05 - 02:34] ça quote</p>
</blockquote>
<blockquote>
<p><strong>1 February 2005</strong></p>
<p>[01:30:39] LA BEUH CE MIEU [01:30:51] C BIEN LA CLOP TA JAME FUME
MONO T KUN CON</p>
</blockquote>
<blockquote>
<p><strong>1 February 2005</strong></p>
<p>[01:27:08] ROFLMAO [01:27:09] TE TRO MOVAI BAL, VA REGARDEZ
POKEMON!!! [01:27:11] :)))))))))))))))))))))))))) [01:27:11] EXPTDMDR
[01:27:28] JTE PW33N LA TRONCHE MOI, TVA VOIR [01:27:32] NAN YUGIOH C
DLA BALLE [01:27:56] KAN TU VEU J'FAI DU KUNGFU [01:28:00] C MORT CE
CHAN</p>
</blockquote>
<blockquote>
<p><strong>28 January 2005</strong></p>
<p>[17:38:37] je me suis pris un rateau [17:39:03] hum, c'est déja mieux
qu'une tronconneuse..</p>
</blockquote>
<blockquote>
<p><strong>17 January 2005</strong></p>
<p>[02:10:07] pis Jori dort [02:10:11] pourtant c'est la nuit ^^</p>
</blockquote>
<blockquote>
<p><strong>17 January 2005</strong></p>
<ul>
<li>Choobidoo is now known as slip<sub>enfolie</sub></li>
</ul>
</blockquote>
<blockquote>
<p><strong>17 January 2005</strong></p>
<p>J'ai besoin des services d'un vrai héros pour une mission très
spéciale! ouiiii j'ecoute Un de mes m&amp;m's a roulé sous mon bureau o
zut je dois aller manger</p>
</blockquote>
<blockquote>
<p><strong>17 January 2005</strong></p>
<p>[02:12:46] * Choobidoo is now known as Gros<sub>cammionneur</sub>
[02:12:57] ecrit Camionneur [02:13:01] pour me faire plaisir [02:13:17]
* Gros<sub>cammionneur</sub> is now known as Gris<sub>camionneur</sub>
[02:13:22] Yue, tu charies [02:13:30] J'ai bu… [02:13:32] ué moi aussi
[02:13:40] * Gris<sub>camionneur</sub> is now known as
Gros<sub>camionneur</sub> [02:13:41] trau de photes sai pah biun
[02:14:13] Ma transformation n'avais jamais été aussi laborieuse!
[02:14:33] t'as pas bien fait le ptit pas de coté dans
Fuuuuuuuuuuuuusioooooooooooon</p>
</blockquote>
<blockquote>
<p><strong>15 January 2005</strong></p>
<p>Ledria&gt; cool^^ pis quoi de neuf depuis que je suis pas pu la
Shenen&gt; pas grand choses Ledria&gt; … alors enfin de compte y'a pas
grand difference quand chus la pis kan je le suis po Shenen&gt; sauf que
le silence ne se plaind pas de tout ce qui lui arrive v<sub>v</sub></p>
</blockquote>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,479 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 138</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-01-24 12:41:03&gt;</li>
<li>modifié: &lt;2009-01-24 12:41:03&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="anatomie---myologie-des-fesses-du-ku">Anatomie - myologie des
fesses du ku</h2>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/anatomie/DSC04747.JPG" />
++Au menu du jour:++<br />
<u><u>fessiers.</u></u> Petit fessier, qui est caché par le <a
href="https://tykayn.fr/2009/top-douze-des-phrases-pour-draguer/">(ya)
moyen(nnnnnnn)</a> fessier. les deux sont attachés aux bords supérieur
du bassin et au grand trochanter. Les grands fessiers sont attachés
aussi au bord supérieur du bassin mais jusqu'en bas de part et d'autre
du coccyx, ils vont se fixer derrière l'os du fémur jusqu'au tiers, et
quelques fibres du grand fessier se fixent sur le côté du fémur,
tavu…<br />
Une image vaut mille mots, enjoy les images.<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/anatomie/DSC04745.JPG">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/anatomie/DSC04745_.JPG</span></a>]]
Eeeeh on a dit fessiers du cul!<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/anatomie/DSC04750.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/anatomie/Untitled-1.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/anatomie/Untitled-2.jpg" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,538 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 104</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-01-30 22:53:40&gt;</li>
<li>modifié: &lt;2009-01-30 22:53:40&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="exams-école-gobelins-à-paris-et-pivaut-à-nantes">Exams École
Gobelins à Paris et Pivaut à Nantes</h2>
<p>Vla une histoire que j'avais déjà publié en
[2006|/index.php/archive|fr] sur DA mais qui avait sa place dans [le
vortex à chats|/|fr] et dans la partie [vie 3.0|<a
href="tag:vie">tag:vie</a> 3.0]. Celle de mes exams à Paris pour faire
de l'animation et à Nantes pour faire de la BD. Après les images un
résumé de ce qui s'est passé ensuite… ((<a
href="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR0.jpg">https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR0.jpg</a>||C))<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR01.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR02.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR03.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR04.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR05.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR06.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR07.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR08.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR09.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR10.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR11.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR12.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR13.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR14.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR15.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR16.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR17.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR18.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR19.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR20.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR21.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR22.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR23.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/01-janvier/gobelins/CR24.jpg" /></p>
<p><br />
<br />
J'ai eu 5/20 au concours des Gobelins. Le bulletin de note ne donnait
pas plus de précision. Les épreuves étant corrigées l'une après l'autre
de manière éliminatoire je ne sais pas si j'ai échoué au test de culture
général ou à l'animation de la fillette et du chat.<br />
Plus tard, sur les conseils de <a
href="https://monoceros01.free.fr/blog/">monoceros01</a> j'ai jeté un
oeil au <strong>kit de survie de l'animateur</strong> de Richard
Williams (directeur d'animation du film "qui veut la peau de Roger
Rabbit") et effectivement ce que j'avais fait pour l'animation était
loin de la fluidité de mouvement et de l'élasticité maîtrisée qu'on
attend d'un animateur.<br />
<br />
<br />
Pour Nantes j'ai été accepté, mais je n'ai pas eu mon baccalauréat cette
année là (il me manquait 5 points sur 400, hohoho).<br />
J'ai pris une année de vacances (où j'ai bossé pour la première fois
pendant un mois, wéé) pour retenter le bac sans aller au lycée et je
l'ai eu.<br />
Dans le courant de l'année Angeloluha m'a proposé de venir étudier la BD
à Bruxelles dans l'école Saint Luc où je me trouve aujoud'hui.<br />
Et je pense que je suis mieux ici qu'à Nantes pour apprender la bédeh,
même si la ligne du TGV entre Paris et Nantes est de loin la plus
confortable de toutes celles que j'ai pu essayer. :)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,553 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 221</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-02-27 05:51:52&gt;</li>
<li>modifié: &lt;2009-02-27 05:51:52&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="job-dété-à-la-brioche-dorée-de-caluire.">job d'été à la Brioche
Dorée de Caluire.</h2>
<p><br />
Y'a quelques jours j'ai reçu un courrier confidentiel m'annonçant que
j'avais 3 points de retraite, lvl up youplaboum !<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/02-fevrier/framboise0001.jpg" /><br />
Cet été,<br />
pour me payer mon écran plat 22 pouces trouvé à Auchan, j'ai travaillé
pendant deux semaines comme préparateur de Sandwichs (et un peu comme
lave-vaisselle-man aussi) dans une brioche dorée d'un centre commercial
de la banlieue Lyonnaise.<br />
J'avais écrit un billet là dessus sur le Pc de <a
href="file:///painsdepices.php/">Sandra chan</a> mais le jour même il a
décidé de décéder, comme ça, histoire de me dire "tu bloggues trop, fais
donc queque chose de ta vie!". (ça revient souvent dans le vortex à
chats ça, le rappel à une vraie vie meilleure que le glandage intre
blogo-boule :) )<br />
Donc j'ai repris mes légendaires logs mémoriels pour vous raconter
ça.<br />
L'équipe était <a href="https://www.deezer.com/track/1094135">une bande
de mecs super sympa</a>, (enfin non y'avait + de filles) contrairement à
mon premier mois de boulot dans un Picard surgelé (c'est fatal) rempli à
80 de langues de pvtes et à 100% âgés de moins de 22 ans (même la
patronne). Souvenez vous, c'était en Décembre 2006.<br />
<br />
Donc, Juillet 2008. J'ai eu enfin la joie d'avoir un collègue mâle
capable d'humour et d'auto dérision.<br />
Le patron était un mâle persuadé que "la gueule l'emporte", ce qui
mettait une ambiance passablement chiante en sa présence.<br />
Spa facile de bosser dans une cuisine:<br />
faut un certain temps avant de savoir où se trouve chaque ustensile,
chaque produit congelé dans le congélo géant, savoir positionner les
pâtons de pâtisseries correctement, gratouiller 70 plaques en métal en
10 minutes, se servir de l'étiquetteuse de péremption, s'y retrouver
dans les deux frigos géants, faire une dizaine de sandwichs, utiliser
les coulis de trucs chimiques pour mettre sur les tartes, se servir des
échelles roulantes.<br />
<br />
Le gros avantage était qu'on était nourri gratos à midi, à côté des
clients.<br />
Un truc stupide c'est que je rechignais légèrement à faire des sandwichs
avec des aliments que j'aime pas trop. Enfin c'est surtout que c'est
chiant d'avoir les mains pleines d'huile de tomates confites ou de thon
parce que bonjour l'odeur pendant le boulot XD<br />
J'ai aussi découvert les joies de la radio en boucle à longueur de
journée. Un jour sur deux on avait NRJ, et une autre radio plus variée
et moins chiante (parce que la mise en abîme de répétition de phrases à
la con ça pompe légèrement beaucoup)<br />
"ouais gros beng beng! ouais ma gueule !"<br />
<br />
donc cet été y'a eu:<br />
young Soul, Wash my world (quelle connerie ce titre), petit pays je
t'aime beaucoup, you'll never see me again, un rayon d'soleil,
basshunter - yo sheun a bot version 2, I kiss the girls, begging
you.<br />
<br />
J'ai gagné un niveau en "même pas peur de toucher de la vaisselle sale"
ø/ ça a l'air con comme ça, mais ça change la vie.<br />
Genre après quand on vit seul on a bien plus de facilités à faire sa
vaisselle en deu deu.<br />
<br />
Les filles de l'équipe étaient 100% sympas cette fois. (et 100%
agréables à la vue) J'avais même eu droit a quelques tartelettes aux
fraises cadeau <strong>-</strong> (bah sinon on les balance en fin de
journée, donc miam)<br />
"quoi t'es vierge? moi chui gémaux.(ou je sais plus quel signe) je
m'entends pas avec les vierges. Enfin, avec les pélos je sais
pas."<br />
<br />
J'ai appris qu'il était commun d'employer le mot "pélo" pour désigner ce
que j'appelle "un mec" en langage djeunz de région Parisienne.<br />
Pélo, peut être comme pélerin.<br />
<br />
Le dernier jour de boulot mon cher collègue (qui ressemble un peu à
Riddick sans lunettes dans ISK) m'a salué de la manière suivante<br />
"bah ptêtre à un de ces quatre, à Lyon, ou à Paris!"<br />
J'ai trouvé ça puissant comme dialogue.<br />
<br />
Une fois je passais derrière les caisses pour réapprovisionner les
rayons à une heure de pointe. Une madameregardait les rayons quand
soudain elle m'apperû, avec ma charlotte à chveux sur la tête et dans
mon uniforme trop sexy.<br />
<br />
Une de mes jeunes collègues lui demandait ce qu'elle voulait (les
employés femelles sont toutes en caisse) et ce qui m'a fait
intérieurement loler c'est qu'elle m'a dit à moi ce qu'elle voulait sans
regarder l'autre fille, en me fixant. Elle tenait beaucoup à ce que ce
soit ma personne qui lui donne sa pârt de gateau. Wouah j'ai eu un
ticket là. :D<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/02-fevrier/brioche_chemin.jpg" /><br />
Il m'en reste globalement un souvenir très bon, en plus pains au
chocolat dégustés le matin tout chauds sortis du four et des tartelettes
aux framboises en partant presque chaque jour *q*<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,472 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 191</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-03-01 05:08:45&gt;</li>
<li>modifié: &lt;2009-03-01 05:08:45&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="soubrettes-datelier-q">Soubrettes d'atelier !Q</h2>
<p><br />
<a href="https://q.ailesse.com/">Atelier !Q</a> sur msn ø/. ça fait
plaisir de revoir autant de gens à la fois :3<br />
donc hop, quelques dessins:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/02-fevrier/soubrette_tk3_500.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/02-fevrier/soubrette_tk2_.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/02-fevrier/soubrette_tk_.jpg" />
J'ai profité de cette journée de congé pour refaire la tronche du menu
latéral du blog de manière à ce qu'il prenne moins de place et depuis
cette semaine vous pouvez poster les comentaires sans avoir besoin de
les prévisualiser, enjoy! Ø/<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,523 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 240</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-03-01 05:55:54&gt;</li>
<li>modifié: &lt;2009-03-01 05:55:54&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="tykayn-nu-cest-pour-pour-les-fans">Tykayn nu (c'est pour pour
les fans)</h2>
<p><br />
My god (is broken!) on est déjà au mois de Mars!<br />
<a href="https://sneups.free.fr/v2/">Sneup</a>, après avoir vu que je
m'étais coupé les chveux vient discuter sur méssène pendant que je
m'éclate dans mes premiers pas avec Blender, un logiciel pas lourd et
gratos pour faire de la 3D.<br />
Le but caché de la manoeuvre de l'apprentissage de la 3D est de pouvoir
faire des supers décors comme dans Negima ou Gantz (deux mangasses), où
si ils l'avaient pas précisé on s'en serait jamais douté (surtout dans
Negima). Pi aussi de gagner en horizons pros pour des <a
href="file:///index.php/tag/projets">projets</a> plus tard.<br />
<br />
</p>
<blockquote>
<p><strong>Snp:</strong> on dirait un ange :-O t'as une bouille toute
angélique avec les cheveux plus cours<br />
mets toi tout nu une fois? faire un remixe de la peinture de
raphael?</p>
</blockquote>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/michel_ange_tk/10.jpg" />
J'ai modélisé mes supers zassiettes carrées de chez Casa.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/michel_ange_tk/08.jpg" />
Un crayon, et une espèce de lampe de chevet de ma maison normande, à qui
il manque des cheveux en bas de l'abat jour. (sisi jteu jure)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/michel_ange_tk/02.jpg" /></p>
<blockquote>
<p><strong>Snp:</strong> de la 3d ! c'est la table où tu vas poser tout
nu ??</p>
</blockquote>
<p><br />
Et hop, me vla à poser nu sur la table.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/michel_ange_tk/michelange_tk.jpg" />
Bon c'est vrai qu'il me manque quelques poils et que je ne sais vraiment
pas pourquoi y'a des bananes du raisin et un concombre à côté de moi
mais bon.<br />
<br />
Épi*lol*gue:<br />
</p>
<blockquote>
<p><strong>Tykayn:</strong> c'est rigolo sneup, t'as disparu de msn
juste le temps que j'étais en couple :D<br />
<strong>Snp:</strong> Baaaah, sfait exprès je suis de nouveau au taqué.
:D<br />
<strong>Snp:</strong> jretente ma chance etoutetout :D</p>
</blockquote>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/michel_ange_tk/enavant.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/michel_ange_tk/cado_sneup.jpg" /><br />
<br />
Tant que j'y suis, dans le genre expérimental un redessinage de
screenshot webcam de <strong>Aude chou</strong> <em>da pengyou
caipirinia</em> \\\\ø/<br />
Juste pour le plaisir de faire un dessin parfaitement proportionné super
facilement, avec en plus un joli modèle 8-)<br />
Les plus perspicaces d'entre vous auront remarqué qu'elle est aussi en
guest star du menu latéral du vortex à chats, en ancre d'accueil. (quand
on clique dessus on revient à l'accueil hoooooo magie!)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/michel_ange_tk/audchu_redessinee.jpg" /><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,471 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1440</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-03-07 17:14:28&gt;</li>
<li>modifié: &lt;2009-03-07 17:14:28&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="être-une-femme-sexuellement-correcte">Être une femme
sexuellement correcte</h2>
<p><br />
Un strip spécial pour la <a
href="file:///index.php/post/2008/03/08/Journee-de-la-femme">journée de
la femme</a>. Avec tout ça personne remarque y'a pas 364 jours de
l'homme mais bien 0, houlala! ça me vexe dans mon existencialisme tout
ça! 8-) <img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/elle1.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/elle_2.jpg" /><br />
Heureusement que la presse féminine nous dit comment baiser
correctement, on serait perdus sinon.<br />
haha. ça me donne quelques autres idées de strip :)<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,573 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 130</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-03-20 20:50:37&gt;</li>
<li>modifié: &lt;2009-03-20 20:50:37&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="saint-luc---portes-ouvertes-2009">Saint Luc - portes ouvertes
2009</h2>
<p>Aujourdhui et demain ce sont les portes ouvertes de l'école ESA Saint
Luc. ([site officiel|<a
href="https://www.google.be/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.stluc-bruxelles-esa.be%2F&amp;ei=dAHEScnrDsfN-QaT-vzkBg&amp;usg=AFQjCNHYaPnzAmACfIYkvqVYbAqdNkRnJw&amp;sig2=kDgAuGO3dktvCIq9QzuAZQ%7Cfr">https://www.google.be/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.stluc-bruxelles-esa.be%2F&amp;ei=dAHEScnrDsfN-QaT-vzkBg&amp;usg=AFQjCNHYaPnzAmACfIYkvqVYbAqdNkRnJw&amp;sig2=kDgAuGO3dktvCIq9QzuAZQ|fr</a>])%%%
Je suis en BD mais je me suis amusé à visiter l'intégralité des
expositions. Y'a de l'architecture, de la sculpture, de la photographie,
du stylisme, du dessin numérique, du graphisme, de l'illustration, du
design orienté objet ou image…%%% ((<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05586.JPG">https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05586.JPG</a>||C))
Compte rendu photo… Ø/ %%%<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05533.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05534.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05535.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05536.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05537.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05538.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05539.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05540.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05541.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05542.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05543.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05544.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05545.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05546.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05547.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05548.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05549.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05550.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05551.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05552.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05553.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05554.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05555.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05556.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05557.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05558.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05559.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05560.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05561.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05562.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05563.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05564.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05565.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05566.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05567.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05568.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05569.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05570.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05571.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05572.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05573.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05574.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05575.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05576.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05577.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05578.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05579.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05580.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05581.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05582.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05583.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05584.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/portes_ouvertes/DSC05585.JPG" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,511 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 318</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-03-21 15:05:50&gt;</li>
<li>modifié: &lt;2009-03-21 15:05:50&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="hotline---vos-questions-pour-les-fanzines-q-3-et-q-4">Hotline -
vos questions pour les fanzines !Q 3 et !Q 4</h2>
<p><br />
<img
src="https://www.ailesse.com/%7Etykayn/bazar/kotlife/2009/03-mars/Q3+mars09_couv.jpg" /><img
src="https://www.ailesse.com/%7Etykayn/bazar/kotlife/2009/03-mars/Q3+mars09_couv2.jpg" />Salut
à vous cher kunautes kurieux.<br />
Ici, posez vos questions <strong>sérieuses ou moins sérieuses</strong>
qui trouveront leur réponse dans les prochains numéros de!Q.<br />
_{Dhabitude je moccupe des réponses aux questions tout seul mais si
quelquun veut bien maider cest pas de refus.}</p>
<p><a href="file:///index.php/tag/%21Q">!Q</a> 3 sur
<em>lhomosexualité</em> doit sortir pour la JapanExpo 2009, donc si
vous avez une question en rapport avec le thème dépéchez vous!<br />
<a href="file:///index.php/tag/%21Q">!Q</a> 4 sur <em>la masturbation et
les sextoys</em> sortira quelques mois après la japan expo, je sens que
vous avez plein de questionnements existentiels, cest le moment de
satisfaire votre curiosité.<br />
Voici les questions déjà prévues, à vous den rajouter Ø/////////</p>
<ul>
<li><strong>Kelkun (♀20ans) :</strong> est-ce que les sous-vetements
mangeables fondent et collent à la peau quand il fait trop chaud?</li>
<li><strong>Dark Videur (♂21ans) :</strong> J ai honte de toi mon ( ma )
fils ( fille juive )! Un tel dépravé tu fais! Que le shit soit en
toi!</li>
<li><strong>Jiyoné (♂20ans):</strong> Est ce que le beurre de cacao peut
être utilisé comme lubrifiant?</li>
<li><strong>Luciole (♀20ans) :</strong> tant qu'on y est dans la ligné
chocolat… XD<br />
est-ce que ca existe les copains en chocolat? *Q*<br />
ben kôa?<br />
(et les draps en chocolat? non? ok je =&gt;)<br />
Luciole le crayon nutella<br />
(dans la mesure où le chocolat stimule la libération d'endorphine, je
crois que c'est ca, peut on le considérer comme un stimulant pour la
libido?)</li>
<li><strong>riri (♀23ans)</strong> Moi j'ai une question très sérieuse:
est-ce que l'anus sécrète un liquide lubrifiant tout comme le vagin?
Parce qu'il faudrait dire aux dessinatrices de yaoi d'arrêter un peu
avec leur conneries XD (je ne mets pas d'image pour appuyer la véracité
des mes dires par peur de choquer les jeunes et pures damoiselles
juives).<br />
Et puis: peut-on appeler tykay Fortunée Sarfati? XD <strong>ok, je sors
^^;</strong></li>
<li><strong>Sandra Chan (♀17ans)</strong> les hommes atteignent-ils
toujours l'orgasme lorsqu'ils éjaculent?<br />
(p****n pourquoi je pose des questions pareilles moi? ToT) et pourquoi
est ce que la température du corps augemente pendant les préliminaires?
o<sub>o</sub> y'a pas de combat immunitaire ni de grand travail
musculaire pourtant.</li>
<li><strong>Emery (♀17ans)</strong> Pourquoi les mecs ont ils tous une
tête d'idiots quand ils jouissent? <strong>question nulle
j'avoue</strong></li>
</ul>
<p>à vous!</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,507 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 108</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-03-23 19:18:22&gt;</li>
<li>modifié: &lt;2009-03-23 19:18:22&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="nul-nest-jamais-assez-fort-pour-résoudre-ce-calcul">Nul n'est
jamais assez fort pour résoudre ce calcul</h2>
<p><br />
Une fournée de dessins de tout et nimp. Ici, quelques dessins fait en
Février à l'expo "à corps ouvert" Une expo tré tré chouette et
instructive surtout pour l'<a
href="file:///index.php/tag/anatomie">anatomie</a> mais quand même
chère.Dommage que pour 14.5 euros la place y'a même pas le droit de
faire des photos.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/02-fevrier/corpsouvert1.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/02-fevrier/corpsouvert2.jpg" />
Une vache de la planète Namek (si vous connaissez pas Dragon Ball, bande
de noobs, c'est que vous le faites exprès)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/vache_namek.JPG" />
Et un buste mangasse, parce qu'il faut bien:<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/buste.JPG" /><br />
Enfin, avec notre prof d'anatomie on se disait que c'était vachement
dommage qu'a Saint Luc en BD il n'y ait pas de vrai cours de <a
href="file:///index.php/tag/perspective">perspective</a>. Les seuls soit
disants cours de persp' qu'on a eu se résumaient à "bon on va aller à
l'hôtel de ville de Saint Gilles et au palais de justice de Bruxelles,
vous vous asseyez quelque part et vous vous démerdez avec ça".<br />
<br />
Aucune théorie sur la ligne d'horizon, sur les points de fuite, sur le
point de vue… rrrrrrrrrrrhien ! (avec un accent plein de frites)<br />
Si toi aussi cher lecteur tu as du mal avec cette méthode barbare qui
permet de donner des décors et même des personnages cohérents j'ai fait
<a href="file:///index.php/category/Tuto">quelques tutos</a> dessus que
ne peux que te conseiller de prendre le temps d'aller consulter (faut
cliquer sur les titres des billets pour les voir en entier).<br />
<br />
Comment ça se fait que je connais quelques trucs en perspective ?<br />
J'ai vécu longtemps à la campagne Normande, et au fond de mon jardin y'a
un dûcher. Et il suffit de passer en voiture à côté pour comprendre
certaines choses. Ou bien prendre le train et regarder par la fenêtre.
Ou bien marcher en forêt en regardant en l'air <strong>0</strong> Ou
bien escalader les zarbres.<br />
Hum donc , un dûcher, pour les citadins qui ne sauraient pas ce que
c'est c'est un tas de z'arbres alignés qui font des pommes ou des poires
pour faire du cidre ou du poiré. Vous pouvez les trouver en supermarché,
le nom c'est Dûcher de Longueville (à prononcer : duché d'lonvill). Trop
génial hein. Rha, tout ça me donne envie d'un vrai bout de pain au
fromage! *q*<br />
<br />
Le premier qui me dit que je fais des contropétries dans mes titres n'a
qu'a essayer d'arriver à pied par la Chine.<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,487 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 133</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-03-26 02:20:13&gt;</li>
<li>modifié: &lt;2009-03-26 02:20:13&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="myologie-des-jambes-et-des-cuisses-1">Myologie des Jambes et des
cuisses</h2>
<p>((<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05588.JPG">https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05588.JPG</a>||C))
[((<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan037_.jpg">https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan037_.jpg</a>||C))|<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan037.jpg">https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan037.jpg</a>]
étude des muscles du [jambon|<a href="tag:jambon">tag:jambon</a>]
humain, céparti!ø/ %%% Cliquez sur les images pour les voir en détail :)
%%%<br />
</p>
<h2 id="fiches-de-cours">Fiches de cours</h2>
<p><a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan038.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan038_.jpg</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan039.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan039_.jpg</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan040.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan040_.jpg</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan041.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/scan041_.jpg</span></a>]]</p>
<h2 id="dessins-de-cours">Dessins de cours</h2>
<p><a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05589.JPG">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05589_.JPG</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05591.JPG">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05591_.JPG</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05592.JPG">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05592_.JPG</span></a>]]<br />
Et un dessin de modèle + platre que mon prof a bien aimé. Le dessin. Pas
le plâtre. Hum<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/anatomie_jambes/DSC05587.JPG" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,467 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1455</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-04-03 17:33:22&gt;</li>
<li>modifié: &lt;2009-04-03 17:33:22&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="vovo-fiction-encore-un-tag-1">Vovo Fiction (encore un tag)</h2>
<p>[Mariposa|<a
href="https://mariposa-nocturna.deviantart.com/%7Cfr">https://mariposa-nocturna.deviantart.com/|fr</a>]
m'a taggué. %%% J'ai traduit le truc, parce que fuck l'Anglais
omniprésent qui s'insère DLC de partout. J'ai dû choisir 10 personnages,
et illustrer chaque case d'une action entre les personnages numéros
untel et deuxtel. Tavu. ((<a
href="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/oc_meme_tk_header.jpg">https://tykayn.fr/wp-content/uploads/i/2009/03-mars/oc_meme_tk_header.jpg</a>||C))
Attention c'est nimp.%%%<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/OC_art_meme_remix_by_Misuteru_tk.jpg" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,547 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 310</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-04-23 20:56:03&gt;</li>
<li>modifié: &lt;2009-04-23 20:56:03&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="ho-un-atelier-cocci-0-1">Ho un atelier cocci
<strong>0</strong></h2>
<p>Quelques dessins du mois d'Avril. !!!le 28 Mars: sortie entre coccis
Que d'émotions ça faisait longtemps que j'avais pas posté dans cette
section je suis trop ému, tavu.((<a
href="https://q.ailesse.com/extensions/Vanillacons/smilies/standard/tavu.gif">https://q.ailesse.com/extensions/Vanillacons/smilies/standard/tavu.gif</a>))%%%
((<a
href="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05878.JPG">https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05878.JPG</a>||C))%%%
((<a
href="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05877.JPG">https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05877.JPG</a>||C))%%%
((<a
href="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05879.JPG">https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05879.JPG</a>||C))%%%<br />
</p>
<h3 id="le-4-avril-tintitnin">le 4 Avril, tintitnin!!</h3>
<p><a href="https://posemaniacs.com">posemaniacs</a> est un site qui
propose de faire un cours de modèle nu académique avec des modélisations
de gens en 3D qui change de pose et d'angle de vue dans un intervalle de
temps au choix. Sbien pratique, mais ça ne prend pas en compte la
déformation des muscles ou du gras en fonction de la pose. D'ailleurs
les modèles sont tous sveltes. Si vous voulez de la diversité (versité)
va falloir proposer à vos potes ou a votre chat de poser nus pour vous.
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/scan053.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/scan054.jpg" /><br />
[[]]<br />
[[]]<br />
</p>
<h3 id="le-7-avril">Le 7 Avril:</h3>
<p>Après un bon resto jappe-au-nez du côté de l'Opé-rat de Pas-riz (bon
ça suffit les conneries!!) avec Ma soeur, Regulus et Mariposa qui ne se
reconnaît pas quand on l'appelle coumme ça, on est partis en vadrouille.
Dans le parc de Seaux (qui est suuuper grand, mais quand même moins
grand que les jardins de Versailles) au sud de Paris,<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/greffe_arbre.jpg" /><br />
y'avait des cerisiers greffés roooooooses en fleurs.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05894.JPG" /><br />
posés dans l'herbe au pied <del>d'unnnnnnn rosier</del> d'un sakura
<del>card captor</del>, j'appris que les mots "orgue, délice et amour"
deviennent transsexuels quand on les met au pluriel. C'est surprenant
mais c'est la joie de la langue française (howi miam!) Et hop, dessinage
avec un stylo rechargeable à l'encre de <del>aber</del> chine à embout
de plume qui s'écrase quand on dessine avec. <img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/encres.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/scan057.jpg" /><br />
Y'avait des groupes de pauvres enfants en centre aéré aussi. Leurs
moniteureuses avaient caché des oeufs en chocolat dans les arbres, et
ils étaient trop petits pour les atrapper, donc ils devaient faire un
mikado de pauvres enfants pour pouvoir les atteindre. Certains enfants
restaient béats devant la sexytude qui émane de ma personne, et devant
la classe rayonnante de Mariposa.</p>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/sur_lile_de_paques.jpg" /><br />
En parlant de pâques, comment ça se fait que personne encore n'a pensé à
scupter un pacman sur cette île ?</p>
<p>Ensuite, après une longue marche digne de la colline de Jésus 2 le
retour, on arrive chez Mariposa, on pose la tente dans sa cuisine et ses
DOUZE frères sont tout à fait surpris de voir des squatteurs dans leur
maison cubiste. Après s'être fait déménager nos cartons dans le jardin
on reprend notre passion pour les bustes mangasses. Et vouala du
combattage et des dédicaces. <a
href="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/scan056.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/scan056_.jpg</span></a><br />
]]<br />
(click it to enlarge <del>your p3nis</del>) <img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/scan057.jpg" /><br />
</p>
<h3 id="en-bonux">En bonux</h3>
<p>quelques feu de camp et nouvelles de pépète le gros chat flemme. <img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05898.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05905.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05919.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05930.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05935.JPG" /><br />
Quelle déconneuse cette pépète! elle griffe un bras quand elle sent
qu'elle est dans une couette bien douillette. <img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05887.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/DSC05889.JPG" /><br />
Même quand on retire le bras elle continue =D<br />
<br />
Et un dessin cadeau de Stella réalisé sur ma table de jardin
spécialement ressucitée par mes soins pour l'été \\\\\Ø/ <img
src="https://tykayn.fr/wp-content/uploads/i/2009/04Avril/avril_atelier_cocci_etc/scan058.jpg" /><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,537 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 167</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-04-25 17:18:26&gt;</li>
<li>modifié: &lt;2009-04-25 17:18:26&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2
id="dont-smoke-cigarette-dont-take-any-drugs-dont-go-out-at-night-just-fuck">Don't
smoke cigarette, don't take any drugs, don't go out at night, just fuck
</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/03-mars/22_atelier_nulnelesaura/12.PNG" /><br />
Ce billet est sponsorisé par l'<a
href="file:///index.php/tag/extensions">extension</a> <strong><a
href="https://addons.mozilla.org/en-US/firefox/addon/4336">Snap
Links</a></strong> de <a
href="file:///index.php/tag/firefox">firefox</a>, qui vous permet
d'ouvrir plein de liens dans les onglets en un seul clic.<br />
Le titre vient de cette magnifique musique: <a
href="https://www.lastfm.fr/music/Tom+Neville">Tom Neville - Just
fuck</a>. Parfait pour se mettre en forme le matin.<br />
Alors voilà, les examens de BD2 sont dans 2 semaines et j'ai le
découpage de mon projet de fin d'année qui s'intitulera <strong>344
mètres par seconde</strong>, parce que c'est la vitesse du son (dans
l'air à 20°C et à 1bar) et que mon histoire raconte la vie d'un homme
qui n'aime ni le bruit ni la musique.<br />
Après avoir vu hier <a
href="https://beta.legaltorrents.com/torrents/209-dimensions---a-walk-through-mathematics-french">un
sympathique long métrage en 9 épisodes sur les dimensions</a>, les
nombres complexes, les transformations d'images, la stéréographie, les
fractales, et les volumes en 4 dimensions je me suis posé plein de
questions cons comme:<br />
</p>
<ul>
<li><a
href="https://q.ailesse.com/comments.php?DiscussionID=155&amp;page=1#Item_7">C'est
quoi la coupe de pubis la plus répandue ?</a><br />
</li>
<li>Pourquoi les mecs ne se posent aucune <a
href="https://q.ailesse.com/comments.php?DiscussionID=146">question sur
leur sexualité alors que les filles sont pleines de curiosité</a>
?<br />
</li>
<li><a href="https://q.ailesse.com/comments.php?DiscussionID=153">C'est
quoi une salope en fait?</a><br />
</li>
<li>Hey mais j'vais avoir 30 000 pageviews sur <a
href="https://tykayn.deviantart%20.com">deviantart</a> !<br />
</li>
<li>Le féminisme c'est vraiment pas la même chose que le matcho-isme
?<br />
</li>
<li>Comment ressuciter une orchidée ?</li>
</ul>
<p>Bref, fallait que je vous fasse passer quelques liens utiles
comme:<br />
</p>
<ul>
<li><strong><a href="https://www.trocdestrains.com">Troc des
prems</a></strong> Le site qui permet de trouver des billets de trains
SNCF les moins cher peu de jours avant le départ, (D'habitude il faut
s'y prendre deux ou 3 mois à l'avance) ou de vendre les billets que vous
ne souhaitez pas utiliser mais que vous avez déjà payé. . Pour toute
question lisez leur FAQ.<br />
</li>
<li><strong><a href="https://www.siteduzero.com">Le site du
zéro</a></strong> Si vous voulez apprendre les mystères de la
programmation de pages web ou des logiciels 3D</li>
</ul>
<p>et d'autres liens presque <a
href="https://karamazoff42.free.fr/blog/index.php">inutiles</a>
comme:<br />
</p>
<ul>
<li><a
href="https://q.ailesse.com/comments.php?DiscussionID=154&amp;page=1#Item_3">Le
générateur hasardeux</a> de description de personnages pour dessins
grivois.<br />
</li>
<li><a
href="https://q.ailesse.com/comments.php?DiscussionID=128&amp;page=6#Item_8">Le
descripteur hasardeux du Kamasutra à 100 positions</a>.<br />
<br />
</li>
</ul>
<p>Sur ce , bon weekend!</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,510 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 129</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-05-09 13:25:40&gt;</li>
<li>modifié: &lt;2009-05-09 13:25:40&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2
id="keanu-reeves-tout-nu-pastels-gras-à-lessence-de-térébenthine">Keanu
Reeves tout nu + pastels gras à l'essence de térébenthine</h2>
<p>((<a
href="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/11.jpg">https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/11.jpg</a>||C))
Les 2 dernières semaines pendant les cours de dessin de [BD2|<a
href="tag:BD2">tag:BD2</a>] on a essayé une technique similaire au
lavis, celle du pastel gras huilé comme un bodybuilder gay sur lequel on
passe un coup de pinceau imbibé d'[essence de térébenthine|<a
href="https://fr.wikipedia.org/wiki/Essence_de_t%C3%A9r%C3%A9benthine">https://fr.wikipedia.org/wiki/Essence_de_t%C3%A9r%C3%A9benthine</a>]
(et ça fouette les naseaux).%%% Keanu Reeves c'est parce qu'on a un
modèle qui lui ressemble, je trouve, tavu. Faut cliquer sur "Lire la
suite" pour le voir.%%% Bon et cette fois ci les images sont moches
parce que mon appareil photo est chez le docteur, et mon imprimante ne
scanne pas facilement les formats A3, donc profitez en pour vous
éloigner de votre écran, ça vous reposera les yeux :D%%%<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/1.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/10.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/12.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/13.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/14.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/15.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/16.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/17.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/18.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/19.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/2.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/3.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/4.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/5.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/6.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/7.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/8.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//05mai/09-pastels_nus_essence_t/9.jpg" /><br />
C'est bien chouette comme technique mais faut la pratiquer dans un
espace ouvert sinon ça pique le nez et les yeux , alouette Ø/</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,503 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 312</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-05-23 00:36:25&gt;</li>
<li>modifié: &lt;2009-05-23 00:36:25&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="cest-la-fête-au-village">C'est la fête au village!</h2>
<p><br />
Fini les exams, pu qu'a attendre un mois avant le jury de fin
d'année.<br />
(instant geek)<br />
</p>
<blockquote>
<p>Un de mes 3 diskeudurs est dead. Mon BIOS détecte ce diskeudur, mais
ensuite windows n'y accède ni ne l'affiche. Mon vendeur de matos PC du
coin de la rue m'a dit que si j'arrivais à formater ce diskeudur kémort
il pourrait récupérer les données qu'il y avait dessus. ça me
permettrait de récupérer 3 mois de photos numériques, plein plein de
colos par PC et les maquettes des fanzines <a
href="file:///index.php/tag/%21Q">!Q</a>. Tout le reste a été sauvé par
le backup de Roulduku, le disque de 500Gigots octets. Nous pouvons faire
une minute de silence pour les fichiers perdus. <strong>Comment faire
donc, pour formater un hard drive disk qui n'est pas détecté par
windaube ?</strong></p>
</blockquote>
<p>*Donc, les geeks, manifestez vous!*<br />
<br />
(fin de l'instant geek)<br />
<br />
J'en ai profité pour vendre mes services de concepteur illustrateur
designer de site ouèb à la boutique d'informatique du coin.<br />
Que les fans de la vie d'aber se rassurent, il se lève a 23h tous les
jours, et s'est fait vacciner contre les chinois pour ses 22 ans.<br />
<br />
<img
src="https://www.cinebel.be/portal/resources/movie/1004347/b10043471.jpg" /><br />
Si vous voulez voir un film avec de l'action dedans et du polar au
dessus, mais que vous avez un peu plus de DOUZE ans (et même, que vous
avez pas une âme sensible) je vous conseille de visionner <strong>le
film Millenium</strong> au cinoche (sans voir de <em>trailer</em> qui
est plein de <em>spoil</em>). J'ai pas lu les bouquins mais le film est
bien narré et très bien accompagné par une bande son et des personnages
très travaillés. En plus c'est exotique avec tout le Suédois qu'on y
trouve.<br />
Vous pouvez maintenant reprendre une activité normale et commencer à
vous demander ce que vous allez faire de votre vie et quelles
complications du cul et de la colonne vertébrale implique une assise
quotidienne prolongée,<br />
même qu'il fait tellement beau en ce moment que ça parait être un bon
prétexte pour se lever le matin et se découvrir des talents cachés,
comme la maîtriste de la trottinette.<br />
Bon matin!<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,468 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 132</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-06-07 13:00:50&gt;</li>
<li>modifié: &lt;2009-06-07 13:00:50&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="la-ferme-décancourt-cest-kawaiiiiiii">La ferme d'Écancourt c'est
kawaiiiiiii</h2>
<p><br />
et non la ferme des concours comme le croyait <a
href="file:///index.php/tag/aber">aber</a> dans sa lointaine
jeunesse.<br />
C'est une ferme pédagogique à laquelle sont emmenés tous les enfants de
maternelle de la région scolaire.<br />
Et comme on est des rebelles et qu'on est pu en maternelle, on y va
quand même.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/06juin/07-strips2/kawai_ferme.jpg" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,472 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 153</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-06-07 13:21:01&gt;</li>
<li>modifié: &lt;2009-06-07 13:21:01&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="cocktails-datelier-q">Cocktails d'atelier !Q</h2>
<p><br />
Attention c'est choquant, ne cliquez pas. (surtout si vous avez des
connaissances en anatomie vous allez faire un arrêt cardiaque :D)<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/06juin/04-05-atelierq/plage_cocktail.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/06juin/04-05-atelierq/plage_cocktail_%20pti.jpg</span></a>]]
(<a href="https://fr.wikipedia.org/wiki/Cocktail">cocktail</a> sur
wikipédia)</p>
<blockquote>
<p>par tradition un cocktail ne se boit qu'à la paille et est réservé à
la gent féminine, ce qui donne un spectacle qui laisse ainsi
l'imagination des hommes à tous les fantasmes. De plus, un cocktail sans
alcool se nomme Virgin Cocktail.<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/06juin/04-05-atelierq/cocktail_feminin_.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/06juin/04-05-atelierq/cocktail_feminin_%20pti.jpg</span></a>]]</p>
</blockquote>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,465 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 311</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-06-13 22:52:07&gt;</li>
<li>modifié: &lt;2009-06-13 22:52:07&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="a-pwal-le-paintchat-1">A pwal le paintchat</h2>
<p><br />
Youpla, il fait beau, naked time.<br />
Mon dessin du <a href="file:///index.php/tag/paintchat">paintchat</a>
aujourd'hui avec Vhyrelle, Raekwon (qui a fait sortir les amis du bon
goût et de la poésie) Hachiko, Kira et Regulus.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/06juin/apwal.jpg" /> Et
ma bd à 3 pages sur 6 de faites. ø/</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,487 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 101</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-06-14 18:36:27&gt;</li>
<li>modifié: &lt;2009-06-14 18:36:27&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="aménagement-de-printemps">aménagement de printemps</h2>
<p><br />
Grand ménage.<br />
Maintenant je m'y retrouve impeccablement et ça augmente ma
productivité.<br />
Toi aussi public, tu devrais essayer.<br />
Voilà en presque un an (du 26 Août 2008 à aujourd'hui 2009) comment les
emplacements des meubles de mon appartement ont évolué.<br />
J'ai sacrément fait chauffer la cafetière pour me souvenir de tout, et
j'ai omis volontairement quelques changements.<br />
En arrière plan, vous avez en bleu les zones d'ombre sur le sol, ce qui
donne une idée du passage de la lumière.<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/06juin/amenagement_2008_2009.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/06juin/amenagement_2008_2009_pti.jpg</span></a>]]<br />
<br />
Vous noterez qu'en Mars 2009 il y avait le plus d'ombre dans
l'appartement, que les meubles étaient placés d'une façon très chiante
pour se déplacer, et ironiquement c'est à ce moment là que je me suis
fait cambrioler.<br />
Si on ne m'a rien volé c'est sûrement parce que c'était super chiant de
se déplacer rapidement, et qu'une fois à l'étage, le cambrioleur à fait
face à ma <a
href="file:///index.php/post/2009/02/26/Nouveaux-cheveux-2009">touffe de
cheveux découpée</a> témoignant de mes pratiques vaudou sur les
cambrioleurs.<br />
Bref, maintenant mon appartement est aménagé super bien, il n'a jamais
eu autant de lumière le jour. En plus j'ai découvert que mon canapé lit
futon avait une position que j'ignorais.<br />
Bref, quand vous partez en vacances, prenez soin de foutre vos meubles
n'importe comment, ça tue les cambrioleurs comme le basilic repousse les
mouches. :)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,555 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 368</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-06-18 13:06:45&gt;</li>
<li>modifié: &lt;2009-06-18 13:06:45&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="moloko---sing-it-back">Moloko - Sing it back</h2>
<p><img
src="https://www.twentysevenviews.com/images/bands/roisinmurphy01.jpg" /></p>
<p>Puisque je vous dis qu'il ne faut pas manger les micros, ça suscite
des sous entendus phalliques dignes des pub pourries awards de chez <a
href="https://www.nioutaik.fr/">nioutaik</a>.<br />
Allez savoir pourquoi, j'imaginais à sa voix que la chanteuse de <a
href="https://fr.wikipedia.org/wiki/Moloko">Moloko</a> était une black
rondelette, alors que point du tout.<br />
ça fait des années que je surkiffe le morceau "sing it back" et y'a
seulement deux jours que je me suis interessé à ce qu'étaient les
paroles exactes et ce que pouvait donner le clip.<br />
Vla un morceau qui sent bon l'été *-*<br />
La traduction et le clip de 1999, <a
href="https://www.lacoccinelle.net/traduction-chanson-79520-.html">par
ici</a></p>
<p>Les paroles cékado:</p>
<p><br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
When you are ready i will surrender<br />
Take me and do as you will<br />
Have what you want to<br />
Your way is always the best way<br />
<br />
I have succumbed to this passive sensation<br />
Peacefully falling away<br />
I am the zombie your wish will command me<br />
Laugh as I fall to your knees<br />
<br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
Can I control this empty delusion?<br />
Lost in the fire below<br />
And you come running your eyes will be open<br />
<br />
And when you come back<br />
I'll be as you want me<br />
Only so eager to please<br />
My little song will keep you beside me<br />
Thinking your name as I sing<br />
<br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
Come come come to my sweet melody<br />
Come come come to my sweet melody<br />
<br />
No you can't help it if you have been tempted<br />
By fruit hanging ripe from the tree<br />
And I feel useless<br />
Don't care what the truth is<br />
You will be here come the day<br />
Trut do you here me, don't try to<br />
come near me<br />
So tired I sleep through the lie<br />
If you desire to lay here beside me<br />
Come to my sweet melody<br />
<br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
Bring it back<br />
Sing it back<br />
Bring it back<br />
Sing it back to me<br />
<br />
Bring it back (sing it back to me)<br />
Bring it back (sing it back to me, youpi)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,472 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1572</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-07-16 12:58:36&gt;</li>
<li>modifié: &lt;2009-07-16 12:58:36&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="badminton-de-nuit-1">Badminton de nuit</h2>
<p><br />
La nuit cébien. si vous avez l'oeil vous arriverez à distinguer les
joueurs de badmington sur les photos en surexposition. <img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/15-badmington//DSC06591.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/15-badmington//DSC06597.JPG" /><br />
Et Pépète le chat a fait le plus gros trajet de l'année cette soirée là
en nous suivant sans savoir où on allait, à 500 mètres de là. Vla le <a
href="file:///index.php/tag/road%20trip">road trip</a>. <img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/15-badmington//DSC06604.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/15-badmington//DSC06609.JPG" /><br />
Et elle est bien crevée au retour cette feignasse :D <img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/15-badmington//DSC06612.JPG" /><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,469 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1569</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-07-20 17:18:48&gt;</li>
<li>modifié: &lt;2009-07-20 17:18:48&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="ponsoir-la-soirée-va-être-rasoir">Ponsoir, la soirée va être
rasoir</h2>
<p><br />
<img
src="https://pagesperso-orange.fr/paradoxes/img/guillotine.jpg" />Chers
lecteurs virils et poilus, j'ai besoin de votre aide. Voici quelques
temps déjà que j'en ai ras la culture de devoir me repayer des lames de
rasoir qui meurent trop vite pour un utilisation de 3 fois par semaine.
Bout à bout les lames me font un sacré trou de budget en plus de la
mousse à raser. J'vous avais déjà dit que c'est dangereux de <a
href="file:///index.php/post/2008/12/11/To-Shave">se raser</a>. Alors
voilà, que me conseilleriez vous comme rasoir électrique ? (et dans quel
prix aussi)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,520 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 317</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-07-28 01:59:24&gt;</li>
<li>modifié: &lt;2009-07-28 01:59:24&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="see-it-all-1">See it all</h2>
<p><a
href="id:9a895c5f-326f-4fd4-a529-0aeefe6a4318">bon-apptit-sign-mariposa</a><br />
(/Est ce que quelqu'un pourrait m'expliquer pourquoi les drivers de
graphire 4 ne fonctionnent pas bien sous vista ? y'a pas de gestion de
pression, ouate de phoque/)<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06727.JPG" /><br />
Woot ça ce sont de vraies vacances *-*<br />
Bananes flambées au rhum et à la cassonade, crêpes à pas d'heure, bière
et cocktails en même temps que des sessions de jeux vidéos, geekage et
apprentissage de geekeries, projets pro, dessin libre, rencontres de
gens tro chouettes, retour des alcooliques nonymes de Vovo, débats
philolsophiques dans le genre "pépète le chat elle est trop conne elle
sait pas ouvrir une porte" ou "pourquoi aller voir un psy quand on peut
causer à ses potes?" réparation de vélo au marteau et au burin, lectures
de mangasses en chaîne, grandes promenades (<a
href="file:///index.php/tag/parc%20de%20Sceaux">parc de Sceaux</a>, <a
href="file:///index.php/tag/parc%20de%20Bercy">parc de Bercy</a>, les <a
href="file:///index.php/tag/Buttes%20Chaumont">Buttes Chaumont</a>, <a
href="file:///index.php/tag/le%20Louvre">le Louvre</a>, le golfe de
Cergy…) , glaces à l'italienne, <a
href="file:///index.php/tag/resteau%20Jap">resteau Jap</a> (higuma)
douce musique et pieds dans l'herbe fraiche et verte, journées en
amoureux. Miam!<br />
Cool comme la zik <a href="https://www.deezer.com/listen-3762273">"see
it all" de Fink</a> :)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06695.JPG" /><br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06559.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06561.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06568.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06647.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06651.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06654.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06679.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06682.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06685.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06690.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06691.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06697.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06727.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06751.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06761.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/28-juillet-photos/DSC06537.JPG" /><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,529 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 309</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-07-28 02:37:14&gt;</li>
<li>modifié: &lt;2009-07-28 02:37:14&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="les-recherches-q-cest-nimp">Les recherches !Q c'est nimp</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/bazar/projets/book/decoration/recherche.png" />
Maintenant que j'ai gagné en aptitude je vous présente un texte composé
avec des bribes de <strong>recherche et mots clés</strong> que
j'indiquerai en <strong>gras</strong> des internautes qui ont trouvé le
<a href="https://q.ailesse.com">forum !Q</a>, dans l'ordre du plus au
moins employé. C'est pas pêché des laitues je vous préviens, <a
href="https://www.lopeprod.com/">on est plus très loin de chez
prosper</a>.</p>
<blockquote>
Pour leur 3e anniversaire de mariage, Raymond lisait son journal dans le
lit nuptial, <strong>rakiah</strong> elle, préférait occuper sa soirée à
lire un <strong>kamasutra illustré</strong> en provenance d'un
<strong>forum sans culotte</strong>.<br />
Raymond n'y prêtait guère attention, il avait l'habitude que sa compagne
<strong>avec ou sans culotte</strong>, lise des ouvrages de cul qui lui
rendaient le <strong>collant humide</strong>.<br />
Lui pour qui le sexe n'était pas un tabou, avait déjà essayé de discuter
avec elle sur ce qu'elle pensait de telle ou telle position, mais ça ne
volait pas très haut, aimant l'anal, elle est aussi analphabète.<br />
Cherchant alors à varier leurs conversations, il lui lança innocement
"<strong>que veut dire le mot salope</strong>" ?<br />
"Bah c'est <strong>les filles qui fait le pournou</strong>" lui répondit
elle.<br />
Une fois encore, le débat s'arrêta avant même d'avoir commencé. Sans
doute avait-elle voulu dire le "porno".<br />
Habitué et ne se laissant pas abbatre, Raymond posa son journal et la
regarda dans les yeux avant de lui avouer qu'il se demandait bien
pourquoi elle se renseignait autant sur le kamasutra et compagnie, alors
qu'elle était déjà une experte. au chevet du lit gisait une pile de
livres dont le plus haut avait pour titre "pornon pour les grande"et en
sous titre "<strong>sondage + poitrine idéale</strong>", ce qui intrigua
Raymond. Le pournou et le pornon étaient peut être de vrais mots, ou
alors toute les personnes qui écrivent des trucs de cul sont dyslexiques
et illétrés. Elle lui répondit que le livre qu'elle feuilletait lui
rappelait de beaux moments de sa jeunesse: <strong>les pubis des années
1950</strong>, l'époque avant que la société soit prise d'une folle
envie d'<strong>élaguer les poils</strong>.<br />
Rakiah regardait juste les images et commentait celui qui avait intrigué
l'attention de son bien aimé.<br />
"Celui là m'a été passé par Francine la voisine, tu sais, celle qui a
été <strong>masturbée par mon oncle</strong>. Moi aussi si j'en avais eu
l'occasion je l'aurais bien fait, <strong>j'aime masturbes les grosse
poitrine</strong>."<br />
Raymond le savait, bien sûr. Ce soir là il avait bien envie de la
culbuter mais aussi de mettre un peu de piment dans leurs ébats, et elle
l'avait compris.<br />
Ils décidèrent donc de faire un jeu de rôles et de dominance.<br />
"Bonjour madame, je suis <strong>spéléologie de rythme allongé</strong>,
et il faut que j'inspecte cette crevasse en arrière cour.", dit-il en
lui mettant une main au ku.<br />
De son côté, Rakiah saisit de sous son oreiller des <strong>photo de
gars en boxer</strong> et montra aux yeux de Raymond un <strong>garcon
de 15 ans au torse poilus</strong>.<br />
La tension était à son comble, puis Rakiah demanda " <strong>quel slip
préférez vous?</strong>".<br />
Ce qui refroidit immédiatement son partenaire pourtant bien chaud. En
effet, c'en était trop "faut pas déconner" cracha-t-il.<br />
Hé oui, trop d'illetrisme tue le désir, et ne pas faire la différence
entre un slip et un boxer était plus qu'il ne pouvait en supporter. Il
balaça ses pantoufles par la fenêtre de colère.<br />
culotte ou pas, que la nuit soit un grand jour ou non, nul ne tringle le
con d'une conne à lapsus.<br />
</blockquote>
<p><br />
<br />
Merci public, et <a href="https://pelotedetout.blogspot.com/">Rakiah</a>
n'est pas du tout comme ça. :D<br />
En espérant que cette prose à deux sous vous ait fait perdre au moins 10
secondes.</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,508 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 189</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-07-31 17:19:14&gt;</li>
<li>modifié: &lt;2009-07-31 17:19:14&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="le-journal-de-la-santé-daurélie---spécial-clitoris">Le journal
de la santé d'Aurélie - spécial clitoris</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/30-docteur_poulpe_clitoris/le_poulpe_habit_medecin.jpg" /></p>
<blockquote>
salut bande de taches, moi c'est aurélie B******, j'ai été <a
href="file:///index.php/post/2008/02/12/Jvous-presente-le-Poulpe">présentée
ici sous le doux sobriquet du “poulpe”</a>.<br />
<br />
Je reviens en mini jupe de mes douuuuuuuuze années de médecine avec la
noble mission de rendre les gens moins ignares et moins hypocondriaques.
et y'a du boulot<br />
donc aujourd'hui vous allez peut être apprendre que… le clitoris, même
s'il est au même endroit que le pénis, ne sert pas du tout à pisser.
pour ca y'a un orifice derrière les petites lèvres, le méat urétral au
dessus de l'entrée du vagin. et ouais. si vous le saviez pas et que vous
êtes une femelle, là c'est grave parce que vous auriez dû l'apprendre à
l'école, ou avoir constaté que vous ne pissiez pas par là.<br />
j'ai souvent entendu parler de filles qui se disent être clitoridienne
ou vaginale.<br />
</blockquote>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/30-docteur_poulpe_clitoris/poulpe_nimp.jpg" /></p>
<blockquote>
Mais c'est n'importe quoi!<br />
Voici la vraie forme du clitoris qui vient du grec "kleito-ridis" qui
veut dire "verrou" (la clé de l'orgasme, des portes du paradis?). il
s'étend de part et d'autre des lèvres avec ses "jambes", derrière les
lèvres avec ses deux "bulbes", en dessous avec "le corps spongieux du
périnée", et entoure le vagin en profondeur.<br />
Une stimulation du vagin entraîne forcément celle du clitoris, tout
comme une contraction du muscle Pubo-coccygien.<br />
Toutes les femmes sont clitoridiennes.<br />
</blockquote>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/30-docteur_poulpe_clitoris/clitoris_vertical.jpg" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/30-docteur_poulpe_clitoris/clitoris_face.jpg" /></p>
<blockquote>
Est ce qu'on emmerde les hommes avec les orgasmes du gland, du prépuce
ou de la verge, ou de la prostate ou du scrotum ou des oreilles ?<br />
En fait ouais, pénis ou prostate, coccyx aussi, et orgasme sans contact
(pour tout le monde).<br />
Cessons donc de couper les gens en morceaux, mangeons des groseilles et
buvons de la bière!<br />
</blockquote>
<p><img
src="https://tykayn.fr/wp-content/uploads/i/2009//07juillet/30-docteur_poulpe_clitoris/groseilles.JPG" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,483 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1543</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-01 20:37:59&gt;</li>
<li>modifié: &lt;2009-08-01 20:37:59&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="ça-spasse-comme-ça-au-square-du-canada">ça s'passe comme ça au
square du Canada</h2>
<p><br />
En direct de ce 1er jour de boulot.<br />
</p>
<blockquote>
<strong>5 vieilles femmes:</strong> bonjour! +<a
href="file:///dotclear2/public/flash/macanou_story_FINI+txt.swf">est ce
que vous avez lu la bible ?</a>+<br />
<strong>moi-même:</strong> bien lbonjour mesdames, 5 places?<br />
<strong>une 1des vieilles:</strong> oui, 5 places pour le château-musée
s'il vous plait.<br />
<strong>une autre vieille étonnée:</strong> quoi? ha, je déteste me
faire entretenir.<br />
/(les 4 autres vieilles lolent)/<br />
moi-même: <del><a href="file:///index.php/post/2008/07/25/Malheur">Ru…
Flo, quelle impression elle te fait?</a></del> ce sera 18€ siouplait.
(accent de merde d'un quartier de Dieppe)<br />
<strong>la vieille qui paie:</strong> hahaha. Vous auriez pas des
oubliettes dans le château qu'on l'y mette celle là? :D<br />
</blockquote>
<p><br />
Et c'est ainsi qu'après avoir visité le château elles repartirent en
passant devant mon accueil, pour m'apprendre que finalement elles
n'avaient pas trouvé d'oubliettes.<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,481 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 307</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-05 20:37:41&gt;</li>
<li>modifié: &lt;2009-08-05 20:37:41&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="cest-trop-dur-la-vie">C'est trop dur la vie</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/05strip//DSC06972.JPG" /><br />
Ouais, trop dur la vie en voyant ça toute la journée quand on
bosse.<br />
Mais ce qui m'empêche <del>d'atrapper le tétanos avec toute la rouille
que je dois manipuler dans le donjon</del> de sauter du haut du
trottoir, c'est que ça permet de rencontrer des gens marrants.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/05strip//DSC06987.JPG" /><br />
Enfin, je savais que je serai, un jour, reconnu à ma juste valeur comme
en témoigne cette photo qui vient de mon carnet de bienvenue pour les
employés saisonniers. <img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/05strip//cult.JPG" /><br />
<br />
La mairie de Dieppe me fait travailler à *la direction de la vie
CULturelle.*<br />
Comme quoi, je fais bien d'avoir prévu le coup depuis bientôt deux ans
(comme en témoigne la <a
href="https://ailesse.com/~tykayn/bazar/sondages/annivs/annivs.php/">liste
des anniversaires</a>) en ayant créé <a
href="https://q.ailesse.com/">!Q, le forum culturel.</a><br />
Enjoy !<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,493 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1522</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-06 14:21:43&gt;</li>
<li>modifié: &lt;2009-08-06 14:21:43&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="estuans-imterius.-ira-vehementi.">Estuans imterius. ira
vehementi.</h2>
<p><br />
Le titre de ce billet sont des paroles de la musique dont j'ignore le
titre mais que j'ai préféré appeler "trop méchant" de Nobuo Uematsu dans
Final Fantasy 7, parce qu'elle accompagne le combat du boss de fin, qui
est trop méchant. Et aussi, chanter en latin ça fait peur, hein que vous
avez peur.<br />
<br />
Aujourd'hui je ne vous ferai pas la promotion du <a
href="https://q.ailesse.com">forum !q</a> qui n'a pas de culotte mais
plein de slips, mais celle du webcomic de <a
href="https://mariposa-nocturna.deviantart.com/">Mariposa Nocturna</a>
(qui m'a payé très cher pour ça, avec des melons, des concombres, et une
visite de <a href="file:///index.php/post/2009/07/28/See-it-all">son
petit jardin à Sceaux</a>),<br />
nommé <strong>Requiem for innocents</strong>.<br />
<a
href="https://mariposa-nocturna.deviantart.com/art/rfi-break-the-wall-119254203">[[<span>https://th05.deviantart.net/fs43/300W/f/2009/104/a/3/rfi__break_the_wall___by_mariposa_nocturna.jpg</span></a>]]
<a
href="https://mariposa-nocturna.deviantart.com/art/in-eternity-we-trust-113963852">[[<span>https://th09.deviantart.net/fs40/300W/f/2009/055/1/1/in_eternity_we_trust_by_mariposa_nocturna.jpg</span></a>]]
<a
href="https://mariposa-nocturna.deviantart.com/art/requiem-for-innocents-ch1-p01-115137177">[[<span>https://th01.deviantart.net/fs44/150/f/2009/066/4/d/requiem_for_innocents_ch1_p01_by_mariposa_nocturna.jpg</span></a>]]</p>
<pre class="example"><code>--&gt; __Requiem for innocents__ : lire la 1e page.
</code></pre>
<p>Âmes sensibles s'abstenir, ça parle de sang, de vampires, de
bonnasses, de meurtre et bientôt de cul. (je suis choqué !! mais je lis
quand même, pi je commente aussi :D)<br />
Si vous aimez True Blood et Full metal alchemist ainsi que la chair
fraîche comme sait en faire Masakazu Katsura (I''s), ou les colorations
aux feutres copics vous allez être servis. Vous n'êtes même pas obligés
d'être fan de twilight pour apprécier.<br />
Ensuite, si vous ne parlez pas couramment Anglais, <a
href="https://www.wordreference.com/">Wordreference.com</a> vous aidera
grandement.<br />
5 chapitres / 87 pages , série en cours.<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,465 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1511</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-08 17:00:24&gt;</li>
<li>modifié: &lt;2009-08-08 17:00:24&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="maturité-selon-docteur-poulpe">Maturité selon docteur
poulpe</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/08aout/aurelie_moralitey.jpg" /><br />
Merci <a
href="file:///index.php/post/2009/07/31/Le-journal-de-la-sant%C3%A9-d-Aur%C3%A9lie-sp%C3%A9cial-clitoris">Aurélie</a>
pour cette grande vérité, je suis super d'accord avec cette thé au riz.
:)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,490 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1491</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-11 17:35:08&gt;</li>
<li>modifié: &lt;2009-08-11 17:35:08&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="jmen-pète-une-chaise-de-louis-15">Jm'en pète une chaise de Louis
15</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/11-chaise_bd_geek/anniv_reg_bd.jpg" />
Bien fait pour sa tronche.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/11-chaise_bd_geek/DSC07019.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/11-chaise_bd_geek/DSC07020.JPG" />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/11-chaise_bd_geek/DSC07021.JPG" />
Elle avait qu'a pas se péter quand je me suis assis dessus. Je ne fais
pourtant que 63 kilos.<br />
Omg!<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/11-chaise_bd_geek/DSC07034.JPG" />
Je suis né dans le département SM !!<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/11-chaise_bd_geek/DSC07035.JPG" />
Sur la falaise du château de Dieppe il y a un point touristique. J'y
suis déjà allé étant gosse, enmmené par l'école. Peut être que c'est de
cette image que j'ai commencé à me dire que le fisheye en dessin
cébien.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/11-chaise_bd_geek/DSC07047.JPG" />
Hmmm miam toute cette mer *-*<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/11-chaise_bd_geek/DSC07050.JPG" />
On se rend pas compte à quel point l'horizon est loinnnnn
<strong>0</strong> Mais c'est rigolo de voir la courbure de la
terre.<br />
J'espère que ce post n'était pas trop politiquement engagé pour le grand
public nin trop *pournou*graphique. Bordel !</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,482 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1495</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-16 20:21:18&gt;</li>
<li>modifié: &lt;2009-08-16 20:21:18&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="tablette-ressucitée">Tablette ressucitée</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/16-sai_dessins//New%20canvas.jpg" /><br />
Vista m'avait une petite blague. Ile me demandait de réinstaller ma
tablette mais ne m'autorisait pas à supprimer les fichiers systèmes
(cachés) de l'installtion précédente.<br />
J'ai dû violemment m'en octroyer les droits via un compte administrateur
avec un mot de passe. Activer des fonctionnalités (comme l'indexation
des fichiers et) les composants facultatifs de la tablette (la pression
du stylet était dedans). Là je pouvais supprimer les fichiers système et
enfin, réinstaller le driver de la tablette. Et youplaboum! Quelques
bustes mangasses pour se remettre en forme.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/16-sai_dessins//New%20canvasygtgy.jpg" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/16-sai_dessins//tronche.jpg" /><br />
Bon, va falloir que je dessine mon kiriban 30 000 pageviews pour mon <a
href="https://tykayn.deviantart.com/">TK Deviantart</a>.<br />
Que la bonne journée soit avec vous, et que le professionalisme soit
avec vous comme il l'a été avec moi quand je me suis retenu de rire en
entendant parler un visiteur canadien du château musée.<br />
<br />
Et aussi que je rencontre Jean Pierre Surest, auteur de BD et président
de l'association de BD Normande, youplaboum!<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,574 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 128</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-19 15:03:22&gt;</li>
<li>modifié: &lt;2009-08-19 15:03:22&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="débarquement-de-dieppe-v.2009">Débarquement de Dieppe
v.2009</h2>
<p>((<a
href="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07177.JPG">https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07177.JPG</a>||C))%%%
Est-ce une fête du seum?%%% Est-ce un concert gratuit?%%% Est-ce un
oiseau, un roc, un cap , un pic vert ?%%% C'est la commémoration du
[débarquement de Dieppe (wikipedia)|<a
href="https://fr.wikipedia.org/wiki/D%C3%A9barquement_de_Dieppe">https://fr.wikipedia.org/wiki/D%C3%A9barquement_de_Dieppe</a>]
, le 19 Août 1942. (s'taujourdhui tavu)%%% Et hop, du journalisme avant
le JiTé. (le Jirnal Télé)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07128.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07129.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07134.JPG" /><br />
Au début, il n'y avait personnnnnnne.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07137.JPG" /><br />
Et puis, à 11h 51 débarquent les cars de gens qui ont du grade et des
instruments de perCUssion.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07139.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07141.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07148.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07150.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07151.JPG" /><br />
Et puisque Coco m'a dit que j'étais chauvin (parce qu'elle trouve que la
vie en France est "invivable", et que je lui ai rappelé qu'elle était
bien vivante + en France, donc qu'elle dit nimp) , je vous lance une
vidéo de la Marseillaise. Nan j'déconne. (ouf)Je vous rapporterai juste
quelques clichés et raviverai la flamme de la légendaire <a
href="file:///dotclear2/public/planches/zyeux_bleus.jpg">fille aux yeux
bleus et aux cheveux d'ébène</a>, parce qu'en ce jour, entre 12h et
12h30, elle était là.<br />
"Ah ouais ce vieux fantasme" comme dirait Marlrllrrlposssah.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07154.JPG" /><br />
(c'était le moment fantasmique du jour. heu, ma chérie, si tu passes par
ici, sache que tu me manques <code class="verbatim">=^__^=</code>) <img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07159.JPG" /><br />
Je kiffe grave les tambours. (et circuler partout pour travailler mon
cadrage photo, y'a plein de détails rigolos à saisir) Y'avait même des
pauvres enfants qui se prenaient pour des chefs d'orchestre.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07173.JPG" /><br />
Quels poseurs ces joueurs de clairon!<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07175.JPG" /><br />
Hey, Cornemuz était aussi de la <del>patrie</del> partie ! <img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07177.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07184.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07187.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07189.JPG" /><br />
D'ailleurs, ils ont pas joué que la marseillaise, y'avait aussi l'hymne
de Borat, et le public nous a épargné les paroles (vous savez:
"Kazakstan est la plus grande nation dans le monde, les autres nations
sont nulles à chier").<br />
Pi d'abord, je trouve que généralement une musique gagne beaucoup à être
instrumentale.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07195.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07197.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07200.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07214.JPG" /><br />
Donc il y avait des Canadiens, l'armée, la fanfare des pompiers (je
crois) de Dieppe, des touristes, une chaîne de télé, le Maire, le boss
des forains, de la joie, et un soldat qui a assez de puissance pour
rester dans la même posture (debout, avec un fusil posé sur son pied)
pendant les 30 minutes de la cérémonie.<br />
Pi une vieille dame qui a pris un coup de chaud (il faisait 28°), mais
qui a été totu de suite prise en charge. Trop d'émotion peut être.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07222.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07225.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07234.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07249.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07251.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07254.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07255.JPG" /><br />
Un des anciens combattants (en fauteuil roulant), qui brillait de
décorations militaires était interviewé par la seule chaîne télé en
présence.<br />
Il disait que c'était très dur de vivre avec ces souvenirs, mais qu'il
fallait vraiment les commémorer pour qu'on se souvienne combien la paix
est une chose précieuse.<br />
Et il a bien raison.<br />
Tout ceci me fait penser que quand on apprend l'Histoire à l'école,
c'est surtout l'histoire de la guerre, au mépris d'autres parcours
historiques de domaines qui travaillent à la paix.(l'histoire des
sciences, les arts, les sports, ou encore des cours de cuisine,
miam…)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07258.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07260.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/19-commemoration_debarquement/DSC07261.JPG" /><br />
Enfin, tant que chacun travaille à la paix dans sa propre demeure et
avec les inconnus, mieux on conservera ce qui nous est précieux.<br />
Tavu.<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,492 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1475</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-21 16:49:02&gt;</li>
<li>modifié: &lt;2009-08-21 16:49:02&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="présenter-un-projet-bd-de-façon-pro-à-un-éditeur">Présenter un
projet BD de façon pro à un éditeur</h2>
<p><br />
Vous êtes dessinateur, scénariste, ou les deux.<br />
Vous avez un projet de BD qui nest pas forcément très avancé<br />
et vous voulez le faire publier pour devenir riche et ou célèbre. Mon
cours de narration avec Thomas Gunzig (réalisateur de film, scénariste
et écrivain Belge) ma appris ceci:<br />
Voici quelques points que vous DEVEZ avoir à présenter à un éditeur, et
dans cet ordre:</p>
<ul>
<li>*Un Pich.*<br />
<img
src="https://img100.imageshack.us/img100/261/poitrine2copieto2.gif" />
Non, pas celle là.<br />
Un bon Pïch doit raconter en une phrase ou deux le fil directeur de
votre histoire du début à la fin. Pas de surprise pour votre éditeur,
vous devez le spoiler.<br />
Votre Pich ne raconte pas comment vous voulez raconter votre histoire,
gardez ça pour les notes dintention.<br />
Le plus difficile est de résoudre à très peu de mots une histoire qui
peut être longue. Cependant, si vous ne pouvez pas dégager le
cheminement de votre histoire, aucun lecteur ne le pourra non
plus.<br />
Par exemple, le film des 7 Samouraïs raconte:<br />
/7 Samourais se réunissent pour la dernière bataille de leur vie et
sorganisent pour protéger un village de paysans, menacés par une meute
de voleurs de récolte, dans un Japon médiéval./<br />
Le Pich est lépuration la plus radicale de votre histoire.<br />
Si supprimer un élément de votre histoire ne change absolument rien dans
ce que vous voulez faire passer, alors cet élément est inutile et il est
préférable de sen passer.</li>
<li><strong>Des notes dintention.</strong></li>
<li><strong>Quelques travaux.</strong></li>
<li><strong>Une scène décrite précisément.</strong></li>
</ul>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,510 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1473</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-08-27 12:27:19&gt;</li>
<li>modifié: &lt;2009-08-27 12:27:19&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="dieppe-les-chtis-savent-pourquoi">Dieppe, les ch'tis savent
pourquoi</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/27-fotos_chtis/DSC07268.JPG" />
Woot un EeePC pour travailler dans ma guérite et faire les comptes plus
facilement, enfin mon père me l'a offert pour mon anniv qui arrive le
mois prochain parce que mon autre PC m'a lâché. Moralité, n'achetez pas
un PC portable qui a servi de modèle d'exposition, parce que son écran
risque de faire laggle au bout d'un mois. Donc cette semaine…<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/27-fotos_chtis/DSC07297.JPG" />
J'ai vu un bus Cergy voyages à Dieppe o<sub>o</sub> c'est trop dingue
qu'il soit venu se perdre ici.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/27-fotos_chtis/DSC07303.JPG" />
Samedi était le jour de la plus grande marrée basse de l'année, y'avait
un monde fou sur la plage, et personne pour venir visiter le château,
vacances avant l'heure :D<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/27-fotos_chtis/DSC07333.JPG" />
Quand vous voyez des balles de paille, ça veut dire que c'est
l'été.<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/27-fotos_chtis/DSC07338.JPG" />
hmmmm miam miam<br />
<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/27-fotos_chtis/DSC07342.JPG" />
hmmmm crock crock (heu…)<br />
<br />
Enfin, hier il y avait un groupe de chtis qui sont venus visiter le
château musée. Les 4 djeunz ados du groupe ont préféré bronzer dans le
square du canada. Pour le fun ils ont essayé de deviner mon prénom. Une
des deux filles imitait parfaitement le caniche et était morte (paix à
son nêm) de rirequand elle a vu que je me disais what the fuck depuis
l'intérieur de ma cahute. Au bout de 10 minutes ils ont réussi à trouver
mon prénom et on a légèrement tapé la discute, j'ai réussi à trouver
leur prénom aussi wéééé (keskons bidonne dans ce pays !). Une des filles
avait un prénom breton trop bizarre qui commençait par un L. Si y a des
breton qui passent par ici vous pouvez essayer de trouver ø/ <img
src="https://tykayn.fr/wp-content/uploads/i/2009//08aout/27-fotos_chtis/DSC07357.JPG" /><br />
Au final, quand le reste du groupe a fini leur visite du château et de
ses alentours au bout d'environ une heure, je leur ai conseillé de
visiter la boutique Vent d'Ouest dans la rue piétonne. Puis on a fait
une foto souvenir.<br />
<br />
Que d'émotions, je finis le boulot Samedi midi et j'ai déjà reçu mon
salaire. Peut être que j'irai pas bosser demain et après demain pour la
peine :D<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,460 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1466</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-02 13:33:57&gt;</li>
<li>modifié: &lt;2009-09-02 13:33:57&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="canadaenne-qui-parwle-1">Canadaenne qui parwle</h2>
<p><a href="id:72c76d01-bf69-4dc0-b940-72d452125b1e">dieppe</a><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/01-dessins-dieppe/canadienne_chateau_musee.jpg" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,508 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 232</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-02 13:59:18&gt;</li>
<li>modifié: &lt;2009-09-02 13:59:18&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="le-jeu-du-mur-avec-un-ballon-1">le jeu du mur avec un
ballon</h2>
<p><br />
<a
href="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/01-dessins-dieppe/jeu_du_mur_grand.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/09septembre/01-dessins-dieppe/jeu_du_mur_thumb.jpg</span></a>]]<br />
illustration de quelques cas du jeu.<br />
<br />
Très inspiré du jeu du mur avec une balle de tennis, pas très loin des
règles du squash, le jeu du mur nécessite un mur, un ballon, un sol et
deux joueurs minimums. ça aussi c'est un jeu trop fun.<br />
<br />
Chaque joueur commence à 5 vies.<br />
Le but est de rester en vie. (hou ça a l'air dangereux comme ça)<br />
Il faut établir un ordre de passage des joueurs.<br />
Chacun son tour, un joueur doit toucher la balle une seule fois avec
n'importe quelle partie de son corps et la faire atteindre le mur, ou le
toit, ou un autre joueur.<br />
Le premier tir se fait d'un point de lancement placé à 5 mètres devant
le milieu du mur et doit se faire au pied.<br />
+les joueurs morts vont dans le Mu, le vide, et il ne peuvent en
revenir.+<br />
<br />
*Un joueur perd une vie si:*<br />
il touche le ballon alors que ce n'est pas son tour de jouer.<br />
il n'envoie pas la balle dans le mur, le toit, ou un autre joueur.<br />
il touche deux fois ou plus la balle dans son tour.<br />
il touche un autre joueur et que la balle le re-touche avant d'atteindre
le sol.<br />
<br />
Un joueur qui n'a plus de vie est VIRÉ!!!<br />
Si la balle est au delà de la limite du mur (en pointillé sur l'image),
le joueur à le droit à 2 tirs au lieu d'un. (pour placer la balle dans
une zone qui pourra atteindre plus facilement le mur).<br />
les extrêmités du mur comptent comme le mur.<br />
<br />
*règles optionnelles:*<br />
-on gagne un point de tir supplémentaire en faisant rebondir le ballon 3
fois sur le toit.<br />
-5 rebonds sur le toit font gagner une vie.<br />
-si la balle touche 2 fois le mur au lieu d'une le joueur qui l'a lancé
perd une vie.<br />
-toucher un autre joueur avec la balle entraine une remise en jeu (au
point de lancer) au lieu d'une perte de vie.<br />
-faire tomber une des accroches qui permettent de caler les volets font
gagner 2 vies. (si votre mur a des volets).<br />
-la balle ne doit pas s'arrêter de bouger sinon le joueur qui doit jouer
perd une vie. hohoho! voilà une règle speedante.<br />
</p>
<pre class="example"><code>y&#39;a plein de règles à inventer!
</code></pre>
<p><br />
have fun. :)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,462 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1462</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-02 14:06:06&gt;</li>
<li>modifié: &lt;2009-09-02 14:06:06&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="petit-bois-belge-1">Petit bois Belge</h2>
<p><br />
il était une fois angie et karam <img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/01-dessins-dieppe/paintball.jpg" />
héoué, quelle bande de drôles ces Belges, ils ont démoli une mini forêt
pour en faire un terrain de paintball, harrr!</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,468 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1467</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-04 14:05:32&gt;</li>
<li>modifié: &lt;2009-09-04 14:05:32&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="pour-toi-public-une-photo-de-ma-douce-1">Pour toi public, une
photo de ma douce</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/04-photo/DSC00091.JPG" /><br />
…mais comme la reine et le roi ne veulent pas, ce ne sera qu'une photo
d'une fille qui lui ressemble.<br />
pour l'histoire, la photo vient de la vitrine de <a
href="file:///index.php/post/2009/02/26/Nouveaux-cheveux-2009">Dave, le
coiffeur bruxellois</a>.<br />
Enjoy!<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,492 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1465</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-04 14:54:43&gt;</li>
<li>modifié: &lt;2009-09-04 14:54:43&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="hypocras-sernik-et-nonettes-1">Hypocras, Sernik et nonettes</h2>
<p><a
href="id:6fa8ee67-a41f-4198-9b28-962c43631b86">j-vous-prsente-wanda</a>
<a
href="id:7039dead-370a-4f4f-ae65-f941e29b8122">gteau-moiti-polonais</a>
<a href="id:a9493e8c-a960-41ce-81be-6917903921ee">gteau-polonais</a> <a
href="id:fe4807da-0e3f-433a-bd29-906bfee8ed90">cuisine</a><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/04-photo//DSC07435.JPG" /><br />
Voici ce que la famillia (que je remercie au passage <strong>q</strong>)
m'a ramené de son estival voyage en basse Normandie.L'<a
href="https://fr.wikipedia.org/wiki/Hypocras">hypocras</a> est une
ancienne boisson à base de vin sucré et aromatisé, une recette
médiévale. Vous avez peut être dégusté un repas médiéval dans un
établissement à l'ancienne où on faisait sans couverts et sans assiette.
à l'époque où on avait une chance d'être brillant à table.<br />
(et oui public, vous ne rêvez pas il y a même <a
href="file:///index.php/post/2008/10/18/Gateau-polonais">un Sernik, un
gâteau Polonais</a> en arrière plan dans ma cuisine Française). <img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/04-photo//DSC07436.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/04-photo//DSC07439.JPG" /><br />
J'ignorasse que le basilic avait plusieurs sortes de tronches. s'parfait
avec une salade de tomates (sans salade) et de l'huile d'oliv (non, pas
<a href="https://tykayn.deviantart.com/art/OFB-Wish-17082201">cet
olivier là</a>)<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/04-photo//DSC07449.JPG" /><br />
Et les nonettes ce sont des rondelles de pains d'épice au miel, fourrées
ici de confiture à l'orange ou de tout autre coeur sucré. très très miam
à savourer avec un yaourt blanc ou un thé. ça surcre bien le tout en
moins de temps qu'il n'en faut pour les croquer.<br />
Et pépète le chat en raffole. si. je l'ai même filmée fixer une rondelle
que je mangeais et essayer de me la chopper. <img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/04-photo//DSC07434.JPG" /><br />
Quelle sale bête ! v<sub>v</sub></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,475 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1461</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-12 23:21:19&gt;</li>
<li>modifié: &lt;2009-09-12 23:21:19&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="portfolio-en-ligne-1">Portfolio en ligne</h2>
<p><br />
<a
href="https://artlemoine.com">[[<span>https://tykayn.fr/wp-content/uploads/i/2009/09septembre/portfolio_artlemoine.jpg</span></a><br />
<a href="https://artlemoine.com">https://artlemoine.com</a>]] (portfolio
avaliable in French and in English)<br />
J'ai profité de finir mon premier contrat de couverture de roman (Nano
07 - voyages en khelens - livre I, Lauwenmark) pour me payer un nom de
domaine et finir de coder ce portfolio.<br />
Il y est exposé mes travaux d'illustrations, graphisme, design, dessins
de nu, duku, des photos et mes travaux rémunérésainsi qu'une page
retraçant mon parcours artistique.<br />
Vous pourrez aussi y trouver de quoi faire des <a
href="https://www.artlemoine.com/?menu_actif=COMISSIONS&amp;page_courante=COMISSIONS&amp;langue=fr">commandes
de dessin à titre privé, des ''commissions''.</a><br />
Le design changera et quelques trucs aussi, enfin je suis content d'être
arrivé à quelque chose de présentable et pratique à utiliser, en accord
avec ce que je m'étais fixé de faire.<br />
Bonne visite :)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,465 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1454</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-14 01:47:57&gt;</li>
<li>modifié: &lt;2009-09-14 01:47:57&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="aber-le-milliardaire">Aber le milliardaire</h2>
<p><br />
Je ne m'attarderai pas sur le fait que j'ai trouvé dans les requêtes
menant au <a href="https://q.ailesse.com">forum !Q</a> ceci: "<em>je
suis un homme et je voudrais de la poitrine</em>"<br />
comment dire, hhiiiiiiii!!!! Vite, un épisode de <a
href="file:///index.php/tag/aber">aber</a> le millionnaire, promu aber
le milliardaire. <img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/ber_strip.jpg" /></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,521 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 306</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-22 22:32:43&gt;</li>
<li>modifié: &lt;2009-09-22 22:32:43&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="se-sentir-femme-des-années-80">Se sentir Femme (des années 80
)</h2>
<p><br />
<br />
<img
src="https://3.bp.blogspot.com/_T8waSVaPzUs/SJpe0Q0dYnI/AAAAAAAAAsc/qMwDQzsbRDE/s400/briannafblightblue.jpg" /><br />
Quelques phrases vues ou entendues ça et là :<br />
</p>
<blockquote>
« les talons sont tellement un symbole fort de la féminité que j'en
portais tout le temps quand j'avais la vingtaine, dans ces moments là où
les regards des passants glissaient sur moi je me sentais vraiment femme
»<br />
« si je sors sans mon sac à main j'ai l'impression d'être toute nue
»<br />
« après en avoir eu assez de mon mari qui rejetait mes besoins de sexe
je l'ai trompé et dans l'orgasme de cette nuit là avec mon amant je ne
m'étais jamais autant sentie aussi femme »<br />
« avant je portais des talons hauts tous les jours, maintenant c'est
seulement quelques fois, et ça fait toute la différence dans mon
sentiment d'être femme »<br />
« quand il me prend dans tous les sens, qu'il sait que j'aime ça et que
je jouis plein de fois et très longtemps je me sens femme au plus
profond de mon être»<br />
<br />
</blockquote>
<p>Mais… qu'est-ce que c'est que ces grognasses qui se sentent femme
seulement de temps à autre ? C'est aussi pertinent que de dire « hmm,
quand je réfléchis je me sens être penseur».D'habitude elles se sentent
hommes, lampadaire, tractopelle ou tapisserie peut être… Mais faut
arrêter le jaja et cesser d'employer un mot pour un autre bordel de
cul!<br />
<br />
Encore des gens qui doutent d'eux même au point de confondre genre (se
sentir femme) et <em>bien être, plaisir, jouissance, orgasme</em>. En
faisant abstraction de la déification de l'idéal que représente le mot
femme quand ces personnes l'emploient… ce qui est inquiétant c'est qu'on
(tout le monde) confond souvent genre et sexe en parlant de « sexes »
pour désigner « hommes et femmes » alors que cette paire là concerne les
genres, les sexes c'est « bite » et « fouf », et c'est tout ; et voilà
que des personnes cherchent leur identité et leur bien être en se
restreignant à un seul de leurs organes, leur sexe, ou dans une coquille
vide : l'apparence vestimentaire.<br />
<br />
Comment peut-on sérieusement croire qu'un habit, un talon ou un
accessoire change TOUT de son identité ? C'est quand même une sacré
aberration aliénante, et très majoritairement acceptée. Très peu de
personnes savent que tout ce qui leur appartient vraiment est délimité
par l'étendue de leur système nerveux.<br />
<br />
Enfin, il semblerait que ça ne choque personne de voir autant de gens
rechercher quelque chose qu'ils ont déjà (être une femme). Je crois que
je devrais jeter au feu mon manuel de biologie qui m'a raconté que les
femmes sont celles qui ont une paire de chromosome XX, et commencer à
enfin observer que dans la vraie vie, une femme ne peut pas en être une
vraie si elle n'a pas de sac à main, sans doute une preuve que les
enfants arrivent dans des tissus portés par des cigognes.<br />
la bonnasse en image là haut, n'a pas besoin de quoi que ce soit pour
être une femme. Quoique, ça doit être un trucage, y'a pas de sac à main.
Rha photoshop a failli m'avoir! :)<br />
<br />
On n'est pas dans les choux avec ces genre de conneries que, oui, même
toi public tu as sans doute pensé un jour, et ça vaut aussi pour les
autres que les femmes, en remplaçant les mots appropriés.</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,486 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1452</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-24 18:40:37&gt;</li>
<li>modifié: &lt;2009-09-24 18:40:37&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="bd2-v2---exercice-1">BD2 v2 - exercice 1</h2>
<p><br />
Comme je l'avais dit sur <a href="https://tykayn.deviantart.com/">tykayn
Deviantart</a> je retape mon année de BD2 à Saint Luc, parce que c'était
trop bien donc voilà! étant dispensé de plein de cours (réussis aux
examens) j'ai seulement 19 heures de cours par semaine.<br />
Les cours avec ma nouvelle classe de BD2 ont donc commencé le 15
Septembre 2009. Et hop, en une semaine on avait fait notre premier
travail à rendre. Un storyboard sur une description de scène
précise.<br />
<a
href="https://tykayn.fr/wp-content/uploads/i/2009//09septembre/BD22-ex1/tykayn060.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009//09septembre/BD22-ex1/thumb/tykayn060.jpg</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2009//09septembre/BD22-ex1/tykayn061.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009//09septembre/BD22-ex1/thumb/tykayn061.jpg</span></a>]]
<a
href="https://tykayn.fr/wp-content/uploads/i/2009//09septembre/BD22-ex1/tykayn062.jpg">[[<span>https://tykayn.fr/wp-content/uploads/i/2009//09septembre/BD22-ex1/thumb/tykayn062.jpg</span></a>]]</p>
<p>Mes profs m'ont dit que: pour la vitesse à laquelle je peux faire mes
dessins, je ne m'investissais pas assez dans mon travail d'atelier. Que
j'aurais du faire quelque chose de plus personnel pour le moment
évoquant un "fouillis de cheminées". Très souvent j'ai de bonnes idées
intéressantes, qu'ils disent, mais que c'est dans leur exécution ça
n'allait pas parce que je ne m'y investissais pas assez, il manque une
façon de narrer plus personnelle. Et jcrois bien voir ce qu'ils veulent
dire. Enfin, on comprend plutôt bien ce que racontent les images.<br />
Show must go on!<br />
Et youpi, j'ai reçu le paiement pour la couverture de roman de
Lauwenmark + la charte graphique et le logo du site d'immobilier de Gab
l'italien. :) C'est parti pour le deuxième exercice de BD en 5 pages
couleurs directes, avec pour contrainte de s'inspirer d'un meurtre de
charcutier à Anderlecht ø/</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,608 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 360</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-25 01:53:26&gt;</li>
<li>modifié: &lt;2009-09-25 01:53:26&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="une-grosse-connerie-heu-boucherie-1">Une grosse connerie, heu
boucherie</h2>
<p><br />
On doit faire une histoire en 5 planches, en "couleur directe" (wtf?) en
s'inspirant d'un fait divers relatant un meurtre.<br />
<img
src="https://www.actuzap-tele.com/img/experts-miami-2308.jpg" /></p>
<blockquote>
Sur le quai de la scène du crime d'Anderlecht (une ville Belge
quoi).<br />
</blockquote>
<p><img
src="https://farm2.static.flickr.com/1307/1152953593_fdd42a3e9a.jpg" /><br />
</p>
<blockquote>
2bras et une jambe en plastique, ainsi qu'un tronc d'arbre, découpés
sont sur le quai.<br />
Une inspectrice en minijupe se trouve accompagnée par un inspecteur de
la police et de Horacio des Experts (qui penche la tête).<br />
<br />
L'inspectrice: "voilà qui est fort mystérieux, enfin non…"<br />
elle s'allume une clope et prend une pose.<br />
"là c'est vraiment mystérieux"<br />
L'inspecteur lui gueule: "n'importe quoi!! Inspectrice, nous n'avons pas
beaucoup de temps pour retrouver qui à fait ça, cette histoire ne fait
que 5 pages"<br />
Une petite vieille habillée d'un tablier ensanglanté (elle est bouchère)
mange un jambon à pleines dents devant son magasin et dit: "je vous
avais bien dit que c'était une véritable boucherie"<br />
<br />
L'inspectrice: "En effet le temps presse, je ne dois pas manquer la
rediffusion de mon feuilleton ce soir, envoyez ça à l'autopsie et nous
interrogerons les suspects"<br />
<br />
Image de l'hopital du Dr House. Dans le bureau du Dr House qui regarde
la télé avec détachement en se vidant un flacon de pilules, les 4
Docteurs sous sa direction lui apportent leurs analyses.<br />
<img src="https://photos.froggytest.com/d/32015-1/Dr+House.jpg" /><br />
Dr Formel (indiqué par un cartouche): "Nous avons les résultats"<br />
Dr Chaise : " c'est une décapitation causée par une infection à la
tronçonneuse, je suis formel"<br />
Dr Formel: (étonné) "Hé mais non, c'est moi Formel!"<br />
Dr Chaise : "hoh putain toi commence pas!" (il s'énerve)<br />
Mme Meuble : "la jambe et les bras appartiennent à un mannequin. Je n'ai
pas réussi à estimer l'heure du décès"<br />
</blockquote>
<p><img
src="https://www.casino770.com/blog/media/11mai09_blog770fr.jpg" /><br />
</p>
<blockquote>
Dr House: " Et le tronc ?" (toujours en se vidant un flacon de
pilules)<br />
Mme Meuble : "Quel tronc ?"<br />
Dr Formel: "C'est toi le tronc!"<br />
Dr Chaise : "Mais non c'est toi!!"<br />
Les deux se menacent avec des scalpels et des seringues.<br />
</blockquote>
<p><img
src="https://images2.fanpop.com/images/soapbox/dr-eric-foreman_7112_1.jpg" /><br />
</p>
<blockquote>
Dr Forman : (un grand black qui fait de gros yeux ronds) "Mais vous êtes
tous débiles ou quoi ?! Vous voyez pas que ce sont des membres en
plastique et un bout de bois!! Et c'est qui ce docteur Fromel à la con?
Il est même pas dans la série!"<br />
<br />
Les autres docteurs regardent Forman bizarrement (House bouffe toujours
des pilules). Foreman est intimidé, il se met a pleurer et s'en va en
gueulant:<br />
"Vous êtes qu'une bande de racistes de toutes façons!"<br />
<br />
</blockquote>
<p><img
src="https://www.7sur7.be/static/FOTO/pe/0/0/8/media_xl_1100138.jpg" /><br />
</p>
<blockquote>
Retour sur le quai du crime.<br />
Horacio parle a la vieille bouchère en penchant la tête: "vous n'avez
plus de dents et vous mangez du jambon aussi facilement ?"<br />
la vieille: "c'est une question d'éducation, vous savez de mon
temps…"<br />
Horacio: "je n'ai pas envie de savoir je crois"<br />
<br />
L'inspecteur au tel avec le Dr Chaise: "Merci pour les infos docteur
Chaise, rappelez moi de ne plus faire appel à vos services"<br />
<br />
L'inspectrice interroge les poissons dans le canal : "L'un de vous
saurait-il me dire ce qu'il a vu"<br />
L'inspecteur : "Mais ne discutez pas avec des poissons enfin !!"<br />
Les poissons: "plop plop plop"<br />
</blockquote>
<p><img src="https://www.maniacworld.com/piranha-vs-mouse.jpg" /><br />
</p>
<blockquote>
<p>(silence)<br />
Les poissons:"nous on a rien fait"<br />
L'un d'eux à une tronçonneuse.<br />
"ouais c'était ce mannequin là qui a pas respecté la priorité, et
l'arbre aussi!" (les autres poissons ont peur pour celui qui a
avoué)<br />
L'inspecteur : "Qu'est-ce que c'est que ces conneries, ils parlent
vraiment!!"<br />
<br />
flashback en coupe verticale, en haut le pont, au milieu le niveau de
l'eau et les poissons, en bas le fond du canal plein de déchets, dont
une tronçonneuse; des étudiants jettent le mannequin et l'arbre par
dessus le pont en disant "allez hop, on a pas besoin de ça dans le kot,
fieu!!" "splash"<br />
<br />
<br />
L'inspectrice : "En voilà un qui passe aux aveux!"<br />
L'inspecteur : "attention! il est armé!!"<br />
Le poisson se jette avec sa tronçonneuse sur l'inspectrice "la priorité
c'est la vie" un autre poisson: "bien dit patron!!"<br />
<br />
L'inspectrice sort un verre de terre de sa poche et le jette sur le
quai, ce qui distrait le poisson et laisse le temps d'esquiver la
tronçonneuse à l'inspectrice.<br />
Le poisson est tout content d'avoir attrapé le ver de terre, puis se
rend compte qu'il s'est fait avoir. "argh, que diantre !" un autre
poisson: "bien dit patron!!"<br />
<br />
L'inspecteur : "félicitations inspectrice, c'est n'importe quoi mais la
justice triomphe toujours!" dit il en passant les menottes au poisson
qui commence a s'asphyxier par manque d'eau. "aidez moi, je vais crever,
(plus faiblement:) keuf keuf attaque de la grippe sous marine"<br />
La limousine de police s'en va, on peut voir plein d'agents aux fenêtres
qui bouffent des cornets de frites,</p>
</blockquote>
<p><img
src="https://www.actu-quad.com/wp-content/uploads/2008/12/horatio-300x195.jpg" /><br />
et Horacio en avant plan enlève ses lunettes avec une expression
moralisatrice et triste à la fois.<br />
</p>
<blockquote>
"haa dire que si la restriction locative était moins sous l'effet de
l'inflation, ces étudiants n'auraient pas eu de problème d'espace et ce
mannequin et cet arbre ne seraient pas morts"<br />
la vieille et son jambon: "Vous savez, de mon temps les poissons on les
bouffait sans leur poser de question"<br />
(silence)<br />
Horacio pousse la vieille dans l'eau.<br />
<br />
Fin.<br />
</blockquote>
<p>Et je compte bien faire mon projet BD avec ça n<sub>n</sub></p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,475 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1442</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-25 23:38:28&gt;</li>
<li>modifié: &lt;2009-09-25 23:38:28&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="de-la-boucherie-1">De la boucherie</h2>
<p><br />
Y'a plein de dissertations qui ont pour titre quelque chose qui commence
par "De…", ce qui donne une tournure assez incompréhensible au titre,
comme dans "de l'inconscient collectif nouménal". Bref,
<strong>Prochainement</strong> j'instaurerais un marquage qui
différenciera les billets concernés pour noter que j'aurais besoin de
critiques constructives et détaillées sur le contenu du billet pour
m'améliorer en BD, scénarii, découpage, etc. Rien n'empêche de critiquer
des billets qui ne le demandent pas, bien sûr. Celui-ci n'est pas
concerné vu que j'ai fait ces dessins dans un état de somnolence
avancée, dans le seul but d'essayer un rendu plus franco belge, et
c'était histoire de dessiner du boucher et de l'inspecteur pour le
prochain projet.<br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//09septembre/25boucherie/1.JPG" /><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009//09septembre/25boucherie/2.JPG" /><br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,487 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1427</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-27 01:21:03&gt;</li>
<li>modifié: &lt;2009-09-27 01:21:03&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="à-critiquer---nano07-livre1---couverture">[à critiquer] - Nano07
livre1 - couverture</h2>
<p><br />
Premier billet de la catégorie des critiques demandées.<br />
Le but est de m'améliorer toujours plus afin de faire des travaux de
qualité.<br />
</p>
<blockquote>
<p>Le principe est simple: dans cette catégorie j'expose des travaux de
dessin ou de textes en cours et j'attends de vous chers lecteurs, des
remarques détaillées, pas forcément longues, mais <strong>surtout
précises</strong> m'expliquant ce qui ne va pas et ce qui va bien dans
le travail, selon <strong>vos critères personnels</strong>.<br />
Soyez honnêtes avec moi.<br />
Je compte sur vous pour m'aider, je saurai être attentif et utiliser vos
conseils. ;)</p>
</blockquote>
<blockquote>
<p><a
href="https://fc01.deviantart.com/fs46/f/2009/241/7/3/Nano_07_novel_cover_by_TyKayn.jpg">[[<span>https://th01.deviantart.net/fs46/300W/f/2009/241/7/3/Nano_07_novel_cover_by_TyKayn.jpg</span></a>]]
clic &gt; grande image</p>
</blockquote>
<blockquote>
<p>Couverture du roman de fantasy intitulé <em>Nano 07- voyages en
khelens - livre 1</em>. Auteur: <em>Lauwenmark</em>. Réalisé en été 2009
grâce à 2 feuilles A4. Easy Paint tool Sai et Toshop CS3 + Wacom
graphire 4 wide.</p>
</blockquote>
<p>Ce projet est un travail fini, je ne le retoucherai pas mais vos
conseils me serviront dans un futur proche. Qui que vous soyez, je m'en
remets à vous! :)</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,463 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1493</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-27 04:12:07&gt;</li>
<li>modifié: &lt;2009-09-27 04:12:07&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="aquarelle-nabaztag-1">Aquarelle nabaztag</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/DSC07565_retouchey500.jpg" />
24*32cm 100g/m²<br />
Les nabaztag ça sert trop à rien, mais strop fun l'aquarelle ø/<br />
</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

View File

@ -1,466 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>tykayn_blog</title>
<style type='text/css'>* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
text-align: left;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.5em;
max-width: 60ch;
color: #000;
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Helvetica, "Ubuntu Sans", "Noto Sans", Calibri, Arial, sans-serif;
margin-top: 1em;
margin-bottom: 2rem;
color: #333;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
/* Improve text rendering */
-webkit-font-smoothing: antialiased;
}
/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
max-width: 100%;
}
/* Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
text-wrap: pretty;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
line-height: 1.3em;
}
#root,
#__next {
isolation: isolate;
}
input,
button,
textarea,
select {
font: inherit;
}
ul {
padding-left: 4ch;
padding-right: 4ch;
}
li {
margin-bottom: 1em;
}
@media (max-width: 20rem) {
body {
padding: 1rem;
}
}
</style></head>
<body>
<a href='/'>Retour à l'Accueil</a><hr/><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>tykayn_blog</title>
<style>
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">tykayn_blog</h1>
</header>
<h1 id="article">Article</h1>
<ul>
<li>ID: 1433</li>
<li>guid:</li>
<li>status: publish</li>
<li>publié le: &lt;2009-09-28 23:32:32&gt;</li>
<li>modifié: &lt;2009-09-28 23:32:32&gt;</li>
<li>Index des articles du blog <a
href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn blog</a></li>
</ul>
<h2 id="pinceau-dexclamation">Pinceau d'exclamation</h2>
<p><br />
<img
src="https://tykayn.fr/wp-content/uploads/i/2009/09septembre/pinceau_boussole_exclamation.JPG" /><br />
Hopla une aquarelle du jour, avec pour modèle un pinceau et une
boussole. ça fait un point d'exclamation (quoi ça se voit pas? mais si
enfin!). c'est du grand art.<br />
J'ai essayé de moins faire de trucs précis comme m'a conseillé angie et
mono, mais stencore de la gouache faite avec des aquarelles, du rothko
quoi :D</p>
<h1 id="liens">Liens</h1>
<ul>
<li>tykayn blog <a href="id:02f6018b-9196-4326-8f09-9d45d7a548fc">Tykayn
blog</a></li>
</ul>
</body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>
<footer><hr/><a href='/'>Retour à l'Accueil</a></footer></body>
</html>

Some files were not shown because too many files have changed in this diff Show More