for

Recherche

Voici les résultats de votre recherche.

articles_didactique_chimie @teaching
250 Occurrences trouvées, Dernière modification :
-online|Journal of Chemical Education - Resources for Teaching Your Chemistry Class Online: A Free to R... d'articles]] sur : * Constructivism as a Lens for Understanding Student Learning * Student Conc... /acs.jchemed.3c00413|How Effective are Indicators for Individuals with Color Vision Deficiency? | Journ... in Chemistry and Chemical Education: A Framework for Meaningful Conceptual Learning and Competence in
psychologie_de_l_education @teaching
126 Occurrences trouvées, Dernière modification :
body of literature addressing other uses of tests for educational purposes, including for formative and summative assessment. The research discussed in this special issue has important implications for the science of learning, teaching practices, and ... earch, Theoretical Perspectives, and Implications for Educational Practice | Educational Psychology Rev
desinformations @teaching
97 Occurrences trouvées, Dernière modification :
ress, anything can happen. What makes it possible for a totalitarian or any other dictatorship to rule ... get not only one lie—a lie which you could go on for the rest of your days—but you get a great number ... [https://www.criticalthinking.org/|The Foundation for Critical Thinking]] * [[https://www.criticalt... r. Richard Paul & Dr. Linda Elder, The Foundation for Critical Thinking, 2008 * Belgique * [[http
python @floss
69 Occurrences trouvées, Dernière modification :
b.io/py_resources/beginners.html|Python Resources for Everybody]] * [[https://github.com/Asabeneh/30-... /30-seconds-of-python: Short Python code snippets for all your development needs]] * [[https://github... rekhleb/learn-python: 📚 Playground and cheatsheet for learning Python. Collection of Python scripts tha... irst experience programming]], specially designed for [[http://code.org/|the Hour of Code]] * [[htt
stackexchange-chimie @teaching
69 Occurrences trouvées, Dernière modification :
r-observed-after-boiling-water-in-electric-kettle-for-many-weeks|White powder observed after boiling water in electric kettle for many weeks]] * [[http://chemistry.stackexchange... 2/why-is-phenolphthalein-an-appropriate-indicator-for-titration-of-a-strong-acid-w|Why is phenolphthalein an appropriate indicator for titration of a strong acid with a strong base?]]
calcul_matriciel_2012 @teaching:progappchim
66 Occurrences trouvées, Dernière modification :
Mlin=len(M) result=[] Rep=[] for i in range(Mlin): if i!=m: for j in range(Mlin): if j!=n... # ligne ou n ième colonne for k in range(0,len (result),Mlin-1): Re... ourne la transposée de la matrice""" s=[] for i in range(len(n[0])): #correspond à la dimension
notions_fondamentales @teaching:progappchim
31 Occurrences trouvées, Dernière modification :
tilisés par le langage lui-même (if, elif, while, for, else, print,...). * Instruction d'**affectatio... print(a, a**2, a**3) </code> L'**instruction for** ([[https://docs.python.org/3/reference/compound_stmts.html#for|documentation officielle]]) permet d'itérer sur u... ne séquence "chaîne de caractères". <code python> for i in range(11): print(i, i**2, i**3) </code>
biblio-10.1007-s10648-021-09646-1 @teaching
27 Occurrences trouvées, Dernière modification :
/S1747938X23000295|Let’s talk evidence – The case for combining inquiry-based and direct instruction - ... ry-based instruction and reproached policy makers for ignoring this fact. In the current article we rep... based instruction produces better overall results for acquiring conceptual knowledge than does direct instruction. We show that this conclusion holds for controlled, correlational, and program-based stud
teaching_ressources_videos @teaching
25 Occurrences trouvées, Dernière modification :
luebutton.org/]] web conferencing system designed for online learning * [[https://bigbluebutton.org/teachers/|BigBlueButton For Teachers]] * conversions de vidéos : * [[ht... ttps://medium.com/mit-media-lab/a-few-simple-tips-for-better-online-meetings-covid-19-edition-385af7bec... skubuntu.com/questions/829765/how-to-record-voice-for-a-slide-in-libreoffice-impress]] * documents pa
syntax @wiki
25 Occurrences trouvées, Dernière modification :
e:namespaces]] by using a colon in the pagename. For details about namespaces see [[doku>namespaces]].... ki]] links. These are quick links to other Wikis. For example this is a link to Wikipedia's page about ... ]] links. These are quick links to other Wikis. For example this is a link to Wikipedia's page about ... er\share|this]] are recognized, too. Notes: * For security reasons direct browsing of windows share
logiciels @floss
21 Occurrences trouvées, Dernière modification :
/whatsapp-alternatives|Best WhatsApp alternatives for privacy]] Douglas Crawford, Proton, 09/12/2022 ... //medium.com/interviewnoodle/best-note-taking-app-for-non-note-takers-c888180b275a|Best Note Taking App For Non-Note Takers…]] * [[https://medium.com/m... arning-ai/i-wanted-a-perfect-note-taking-workflow-for-my-data-science-learnings-and-i-settled-for-this-
simulations_random_walks_codes @teaching:exos
21 Occurrences trouvées, Dernière modification :
valeurpiece = [0.01,0.02,0.05,0.1,0.2,0.5,1.,2.] for i in range(1): # choice : random choice of an... ock value to "randomly" initiate the generator ! for j in range(3): #seed('ma chaîne personnielle'... seed() # to randomly initiate the generator for i in range(10): print(randint(1000,9999))... # reproducible initialization seed() rval = [] for j in range(100000): rval.append(randint(0,99)
bioinformatic @teaching:progappchim
19 Occurrences trouvées, Dernière modification :
de la méthode .count() bases = ["A","C","G","T"] for base in bases: print(adn.count(base),) print() # Variante : for c in 'ACGT': print(adn.count(c),) print() # variante un peu moins lisible out = [] for c in 'ACGT': out.append(str(adn.count(c))) pr... hnique "list comprehension" count = [adn.count(c) for c in 'ACGT'] for val in count: print(val,) pr
matplotlib_simple @teaching:progappchim
18 Occurrences trouvées, Dernière modification :
,1.,2.,3.,5.,7.,11.,13.,17.,19.] serie_y1 = [x**2 for x in serie_x] # ces lignes utilisent la techn... ue de "liste en compréhension" serie_y2 = [x**1.5 for x in serie_x] # pour définir efficacement une l... 3., 5., 7., 11., 13., 17., 19.] serie_y1 = [x**2 for x in serie_x] serie_y2 = [x**1.5 for x in serie_x] plt.xlim(0, 20.) #les limites suivant x plt.ylim
pandas @teaching:progappchim
18 Occurrences trouvées, Dernière modification :
blog/python-pandas-cheat-sheet|Pandas Cheat Sheet for Data Science in Python]] ===== Applications, exe... hout white spaces names = [name.replace(' ', '_') for name in names] print(names) namesfr = [ 'Lar... e most popular repositories to brush up on Pandas for beginners and experts alike]] Byron Dolon, Medium... itHub - ajcr/100-pandas-puzzles: 100 data puzzles for pandas, ranging from short and simple to super tr
publis_diverses @teaching
17 Occurrences trouvées, Dernière modification :
polynomes-10 @teaching:progappchim
17 Occurrences trouvées, Dernière modification :
5_conceptions_erronees_courantes_sur_l_apprentissage @teaching
15 Occurrences trouvées, Dernière modification :
game_of_life_conway-2012 @teaching:progappchim
15 Occurrences trouvées, Dernière modification :
ressources_educatives_libres @floss
14 Occurrences trouvées, Dernière modification :
ressourceschimie @teaching
14 Occurrences trouvées, Dernière modification :
adamboxer-approche_pas_a_pas_des_travaux_pratiques @teaching
13 Occurrences trouvées, Dernière modification :
the_need_for_a_theory_of_learning @teaching
13 Occurrences trouvées, Dernière modification :
methcalchim @teaching:methcalchim
13 Occurrences trouvées, Dernière modification :
config_ubuntu_server_rpi3 @floss
12 Occurrences trouvées, Dernière modification :
linux @floss
12 Occurrences trouvées, Dernière modification :
wacom @floss
12 Occurrences trouvées, Dernière modification :
poker_menteur @teaching:exos
12 Occurrences trouvées, Dernière modification :
plotly_simple @teaching:progappchim
12 Occurrences trouvées, Dernière modification :
activestateselection @floss:python
11 Occurrences trouvées, Dernière modification :
presentation_principes @teaching:progappchim
11 Occurrences trouvées, Dernière modification :
notions_avancees @teaching:progappchim
10 Occurrences trouvées, Dernière modification :
tmp
9 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-3 @teaching:progappchim
9 Occurrences trouvées, Dernière modification :
mastodon @floss
8 Occurrences trouvées, Dernière modification :
articles_didactique_chimie-george_m_bodner @teaching
8 Occurrences trouvées, Dernière modification :
kirschner-how_teaching_happens @teaching
8 Occurrences trouvées, Dernière modification :
paradoxe_anniversaires @teaching:exos
8 Occurrences trouvées, Dernière modification :
algos_entiers @teaching:progappchim
8 Occurrences trouvées, Dernière modification :
mendeleev @teaching:progappchim
8 Occurrences trouvées, Dernière modification :
solubilite_ph_t @teaching:progappchim
8 Occurrences trouvées, Dernière modification :
bash_scripts @floss
7 Occurrences trouvées, Dernière modification :
numerical_methods_for_ordinary_differential_equations @teaching:methcalchim
7 Occurrences trouvées, Dernière modification :
ensemble_mandelbrot_2013 @teaching:progappchim
7 Occurrences trouvées, Dernière modification :
polynomes-7 @teaching:progappchim
7 Occurrences trouvées, Dernière modification :
polynomes-11 @teaching:progappchim
7 Occurrences trouvées, Dernière modification :
config_ubuntu_server_rpi1 @floss
6 Occurrences trouvées, Dernière modification :
latex @floss
6 Occurrences trouvées, Dernière modification :
unison @floss
6 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.chemrev.8b00020 @teaching
6 Occurrences trouvées, Dernière modification :
kirschner-how_learning_happens @teaching
6 Occurrences trouvées, Dernière modification :
lancer_pieces @teaching:exos
6 Occurrences trouvées, Dernière modification :
numpy_simple @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
pavage_penrose_2013 @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
representation_molecules_2013 @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
progappchim @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
tkinter_gui_simple @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
config_ubuntu_server-18.04_rpi3 @floss
5 Occurrences trouvées, Dernière modification :
cairo-tutoriel @floss:python
5 Occurrences trouvées, Dernière modification :
system_of_linear_equations @teaching:methcalchim
5 Occurrences trouvées, Dernière modification :
epidemie_coronavirus @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
lennard-jones @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
ph_acides_bases_2013 @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
polynomes-4 @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
polynomes-8 @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
config_debian_i386_convertir_portable_32bits_en_serveur @floss
4 Occurrences trouvées, Dernière modification :
dokuwiki_extensions @floss
4 Occurrences trouvées, Dernière modification :
h5p @floss
4 Occurrences trouvées, Dernière modification :
rotation_vibration_molecules_biatomiques @teaching:exos
4 Occurrences trouvées, Dernière modification :
sequences_brins_adn @teaching:exos
4 Occurrences trouvées, Dernière modification :
elements_molecules @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
factorielle-3 @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
polynomes-5 @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
polynomes-bonus @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
solvents_data_class @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-4 @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
tableau_periodique_2013 @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
tris @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
bootstrapwrapper @floss
3 Occurrences trouvées, Dernière modification :
config_ubuntu_server @floss
3 Occurrences trouvées, Dernière modification :
config_ubuntu_server-20.04 @floss
3 Occurrences trouvées, Dernière modification :
moodle @floss
3 Occurrences trouvées, Dernière modification :
ssh @floss
3 Occurrences trouvées, Dernière modification :
tesseract @floss
3 Occurrences trouvées, Dernière modification :
initinfo @teaching
3 Occurrences trouvées, Dernière modification :
dokuwiki @wiki
3 Occurrences trouvées, Dernière modification :
dictionaries_adn_arn_protein @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
grille_configurations_melange_binaire_2013 @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
matrices @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
openbabel_jmol @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
scikit_learn @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
tableau_periodique_2011 @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
trucs_astuces @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
pka_pkb_plane @teaching:progappchim:matplotlib_gallery
3 Occurrences trouvées, Dernière modification :
numerical
2 Occurrences trouvées, Dernière modification :
borgbackup @floss
2 Occurrences trouvées, Dernière modification :
config_ubuntu @floss
2 Occurrences trouvées, Dernière modification :
dokuwiki @floss
2 Occurrences trouvées, Dernière modification :
gourmand @floss
2 Occurrences trouvées, Dernière modification :
hp_proliant-2021 @floss
2 Occurrences trouvées, Dernière modification :
obs_studio @floss
2 Occurrences trouvées, Dernière modification :
server_lamp_install @floss
2 Occurrences trouvées, Dernière modification :
ssl @floss
2 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.5b00729 @teaching
2 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00261 @teaching
2 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed074p262_10.1039-b801297k @teaching
2 Occurrences trouvées, Dernière modification :
biblio-10.1039-c0rp90006k @teaching
2 Occurrences trouvées, Dernière modification :
biblio-10.1039_c0rp90007a @teaching
2 Occurrences trouvées, Dernière modification :
biblio-10.1207-s15516709cog0502_2 @teaching
2 Occurrences trouvées, Dernière modification :
biblio-didactique-chimie @teaching
2 Occurrences trouvées, Dernière modification :
cuisine_moleculaire @teaching
2 Occurrences trouvées, Dernière modification :
exos_energie_d_ionisation @teaching
2 Occurrences trouvées, Dernière modification :
mercure @teaching
2 Occurrences trouvées, Dernière modification :
protoxyde_azote @teaching
2 Occurrences trouvées, Dernière modification :
revision_cheat_sheets @teaching
2 Occurrences trouvées, Dernière modification :
rappels-proba-stat @teaching:exos
2 Occurrences trouvées, Dernière modification :
thermodynamique_statistique-exercices @teaching:exos
2 Occurrences trouvées, Dernière modification :
numerical_integration @teaching:methcalchim
2 Occurrences trouvées, Dernière modification :
analyse_images @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
collection_counter_exemple @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
conversion_temperature_2011 @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
csv @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
fizz_buzz @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
glossaire_chimie @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
jupyter @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
koch_snowflake @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
math_nombres @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
osm_interrogation @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
ph-3d @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
plot_sinus_cosinus @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
polynomes-6 @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
polynomes-9 @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
scipy_simple @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
potentiel_morse @teaching:progappchim:matplotlib_gallery
2 Occurrences trouvées, Dernière modification :
mapathon2018
1 Occurrences trouvées, Dernière modification :
anaconda @floss
1 Occurrences trouvées, Dernière modification :
config_raspbian_rpi2 @floss
1 Occurrences trouvées, Dernière modification :
config_raspbian_rpi3 @floss
1 Occurrences trouvées, Dernière modification :
config_ubuntu_mate_rpi2 @floss
1 Occurrences trouvées, Dernière modification :
config_ubuntu_server-16.04 @floss
1 Occurrences trouvées, Dernière modification :
config_ubuntu_server-18.04 @floss
1 Occurrences trouvées, Dernière modification :
convert_monochrome_pdf @floss
1 Occurrences trouvées, Dernière modification :
java @floss
1 Occurrences trouvées, Dernière modification :
linux_humour @floss
1 Occurrences trouvées, Dernière modification :
linux_suicide @floss
1 Occurrences trouvées, Dernière modification :
lpic-1 @floss
1 Occurrences trouvées, Dernière modification :
onedrive @floss
1 Occurrences trouvées, Dernière modification :
pdf-20240316 @floss
1 Occurrences trouvées, Dernière modification :
radicale @floss
1 Occurrences trouvées, Dernière modification :
webcams @floss
1 Occurrences trouvées, Dernière modification :
win @floss
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.0c00099 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.0c00185 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.0c00361 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.0c00952 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.5b00635 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00361 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00400 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00624 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00676 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00776 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b01024 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.7b00226 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.7b00849 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed083p1182 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed083p1479 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed084p1140 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed086p1433 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed300456y @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed400128x @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed400851m @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed400901x @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed500401d @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed500658s @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed3002336 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed3004462 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed4003578 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1039-c005464j @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1039-c7rp00135e @teaching
1 Occurrences trouvées, Dernière modification :
biblio-9780321611956-chap14 @teaching
1 Occurrences trouvées, Dernière modification :
biblio-9782916032924 @teaching
1 Occurrences trouvées, Dernière modification :
carbone @teaching
1 Occurrences trouvées, Dernière modification :
hydrogene @teaching
1 Occurrences trouvées, Dernière modification :
timeline-chimie @teaching
1 Occurrences trouvées, Dernière modification :
uranium @teaching
1 Occurrences trouvées, Dernière modification :
videos_chimie_sg @teaching
1 Occurrences trouvées, Dernière modification :
codes_astuces @floss:python
1 Occurrences trouvées, Dernière modification :
partial_differential_equation @teaching:methcalchim
1 Occurrences trouvées, Dernière modification :
root-finding_algorithm @teaching:methcalchim
1 Occurrences trouvées, Dernière modification :
collection_namedtuple_exemple @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
dictionary_adn_protein @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
diffusion_chimique_1d @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
fit_modele_einstein @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
maxwell-boltzmann @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
multilateration @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
polynomes-2 @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
polynomes-3 @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
polynomes-12 @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
urllib @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
ir_spectrum_co @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
potentiel_energy_surface @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
rotateur_biatomique @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :