Skip to content

Commit f65a9a1

Browse files
committed
fixed cv
2 parents 6db7823 + fc9dac1 commit f65a9a1

21 files changed

+1489
-17
lines changed

_bibliography/papers.bib

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,23 @@ @unpublished{stroupe_icsam_2022
7171
%%% INVITED WRITING %%%
7272
%%%%%%%%%%%%%%%%%%%%%%%
7373
74+
@article{Caballero2024,
75+
author = {Caballero, Marcos D. and Odden, Tor Ole B.},
76+
year = {2024},
77+
title = {Computing in physics education},
78+
journal = {Nature Physics},
79+
pages = {339--341},
80+
volume = {20},
81+
number = {3},
82+
abstract = {Computing is central to the enterprise of physics but few undergraduate physics courses include it in their curricula. Here we discuss why and how to integrate computing into physics education.},
83+
issn = {1745-2481},
84+
url = {https://doi.org/10.1038/s41567-023-02371-2},
85+
html = {https://www.nature.com/articles/s41567-023-02371-2},
86+
doi = {10.1038/s41567-023-02371-2},
87+
abbr = {NATURE PHYS}
88+
}
89+
90+
7491
@incollection{odden_compchapter_2023,
7592
title = {{Physics Computational Literacy: What, Why, and How?}},
7693
author = {Odden, Tor Ole B. and Caballero, Marcos D.},
@@ -834,6 +851,48 @@ @article{cochran_temple1_2009
834851
%%% PAPERS IN PROCEEDINGS %%%
835852
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
836853
854+
%% 2024 %%
855+
856+
@inproceedings{10.1145/3626253.3635341,
857+
author = {Bolger, Emily and Caballero, Marcos},
858+
title = {Using Natural Language Processing to Explore Instructional Change Strategies in Undergraduate Science Education Literature},
859+
year = {2024},
860+
isbn = {9798400704246},
861+
publisher = {Association for Computing Machinery},
862+
address = {New York, NY, USA},
863+
html = {https://doi.org/10.1145/3626253.3635341},
864+
doi = {10.1145/3626253.3635341},
865+
abstract = {Over ten years ago, our collaborators conducted a NSF-funded project identifying four broad categories of change strategies used to improve undergraduate STEM education through a comprehensive interdisciplinary literature review of articles from 1995 to 2008. Since this first iteration, there have been many major developments in undergraduate STEM education; particularly, the rapid development in sophisticated technology tools. These developments affect the nature of classroom instruction as well as expand the bounds on analyzing a corpus of articles. Thus, it is crucial to repeat this review to better understand the changes in STEM education from the more recent past. Our goal is to use machine learning to identify, potentially new, themes in the recent literature. We plan to compare and contrast both AI-assisted modeling and traditional, human-qualitative coding approaches in an effort to: (1) identify the benefits and faults of using AI verses human coding, and (2) portray a comprehensive story of change instruction literature from 2010. This lightning talk will describe the data extraction process and preliminary results from machine learning models. In addition to sharing the beginnings of our work, we hope to gain new perspectives and ideas from computing education scientists regarding our data representation and modeling choices.},
866+
booktitle = {Proceedings of the 55th ACM Technical Symposium on Computer Science Education V. 2},
867+
pages = {1930},
868+
numpages = {1},
869+
keywords = {instruction change strategies, natural language processing, undergraduate science education},
870+
location = {Portland, OR, USA},
871+
series = {SIGCSE 2024},
872+
abbr = {SIGCSE}
873+
}
874+
875+
876+
@inproceedings{10.1145/3626253.3635334,
877+
author = {Frisbie, Rachel Lyn-Salmon and Silvia, Devin and Caballero, Marcos D. and Roca, Rachel and Bowerman, Amanda and Sachithanand, Krithi},
878+
title = {Exploring the Scurry of Squirrels in Central Park},
879+
year = {2024},
880+
isbn = {9798400704246},
881+
publisher = {Association for Computing Machinery},
882+
address = {New York, NY, USA},
883+
html = {https://doi.org/10.1145/3626253.3635334},
884+
doi = {10.1145/3626253.3635334},
885+
abstract = {As computing becomes increasingly intertwined with other disciplines, research that centers computing education in an interdisciplinary context (and the challenges surrounding it) is increasingly relevant. In particular, writing modular code (i.e. using functions) is a fundamental part of scientific programming. However, functions have been identified as challenging for students to learn. This assignment leverages a fun, real, and approachable dataset from the 2018 Central Park Squirrel Census as well as experiences authentic to developing scientific programs to introduce the concept of functions in Python. The assignment is intended to be delivered in a "flipped classroom" format, where students are first introduced to concepts in videos and short problems prior to coming to class. Once in class, the students work collaboratively in groups of 4-6 with a hands-on programming activity. By the end of the assignment, students have not only had the opportunity to learn about functions in an authentic context, but they have also been able to make calculations and propose their own problems to learn about the data.},
886+
booktitle = {Proceedings of the 55th ACM Technical Symposium on Computer Science Education V. 2},
887+
pages = {1914},
888+
numpages = {1},
889+
keywords = {computing education, functions, interdisciplinary, python},
890+
location = {Portland, OR, USA},
891+
series = {SIGCSE 2024},
892+
abbr = {SIGCSE}
893+
}
894+
895+
837896
%% 2022 %%
838897
839898

_data/books.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
- id: 1
2+
title: "The Great Gatsby"
3+
author: "F. Scott Fitzgerald"
4+
isbn: "978-0-7432-7356-5"
5+
genre: "Novel"
6+
published_year: 1925
7+
- id: 2
8+
title: "1984"
9+
author: "George Orwell"
10+
isbn: "978-0-452-28423-4"
11+
genre: "Dystopian"
12+
published_year: 1949

_data/checkouts.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
- book_id: 1
2+
user: "John Doe"
3+
checkout_date: "2023-12-01"
4+
due_date: "2023-12-15"
5+
- book_id: 2
6+
user: "Jane Smith"
7+
checkout_date: "2023-11-20"
8+
due_date: "2023-12-04"
9+
# More checkouts...

_data/coauthors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
"Hamerski":
2626
- firstname: ["Patti", "P.", "P.C.", "P. C.", "P.~C."]
27-
url: https://www.pattihamerski.com/
27+
url: https://physics.oregonstate.edu/directory/patti-hamerski
2828

2929
"Silvia":
3030
- firstname: ["Devin", "D."]

_data/courses.yml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,32 @@
1+
- course: phy_321_s2025
2+
semester: Spring 2025
3+
name: PHY 321 (Classical Mechanics)
4+
url: ../phy321msu
5+
active: true
6+
7+
- course: cmse_201_f2024
8+
semester: Fall 2024
9+
name: CMSE 201 (Introduction to Computational Modeling)
10+
url: https://www.egr.msu.edu/classes/cmse201/
11+
active: true
12+
13+
- course: ml_su2024
14+
semester: Summer 2024
15+
name: Machine Learning Short Course
16+
url: ../MSU_REU_ML_course
17+
active: true
18+
119
- course: phy_321_s2024
220
semester: Spring 2024
321
name: PHY 321 (Classical Mechanics)
4-
url:
5-
active: true
22+
url: ../phy321msu
23+
active: false
624

725
- course: phy_415_f2023
826
semester: Fall 2023
927
name: PHY 415 (Mathematical Modeling in Physics)
1028
url: ../phy415fall23
11-
active: true
29+
active: false
1230

1331
- course: ml_su2023
1432
semester: Summer 2023

0 commit comments

Comments
 (0)