#gsl-script
Explore tagged Tumblr posts
Text
Pequenas vitórias...


Eu incrivelmente terminei o curso 🎉
Era pra ter sido feito dentro de dois meses, eu fiz em vinte dias, mas é detalhe kkkkk
Ainda tem alguns módulos pra estudar, porque eu tive que acelerar, encurtando a história, eu vou ter que voltar e ver o conteúdo de novo.
Espero melhorar a partir de agora e não me desesperar tanto. Procurei uma roadmap de javascript e acabei refazendo a rota, começando pela roadmap de frontend, que começa com HTML e tal. É melhor porque assim dá pra entender melhor.
Agora é fazer.
(o gato na foto é o Miau, ele não liga pro nome dele que é Garfield)
25/03/24
#orange cat#studyblr#brasil#estudos#eu procrastinei tanto que quase não consigo terminar#de novo#o que seria muito frustante#gato#gsl-script
4 notes
·
View notes
Text
How to Prepare a Strong GSL Speech for MUN
If you’ve ever attended a Model United Nations conference, you know how intimidating the General Speakers' List (GSL) can be — especially when you’re staring at that mic, room full of delegates watching, and all you’ve got is a 60-second speech.
GSL Speech for the Model United Nations
But here’s the truth: GSL is your moment to shine.
It’s your first chance to set the tone, show your research, and get noticed. And yes — you can prepare a GSL that’s powerful, persuasive, and award-winning with a few simple steps.
Let’s break it down.
🎯 What is the General Speakers’ List (GSL)?
The GSL is the default form of debate in MUN, where each delegate gets a set amount of time (usually 60–90 seconds) to present their country’s position and ideas.
You’ll use it to:
State your stance on the agenda
Propose solutions
Call for collaboration
It's usually the first major speech you make after opening speeches or roll call — and it sets the tone for how the room sees you.
✅ How to Prepare Your GSL Speech (Step-by-Step)
1. 🗺️ Start with Research
Before writing a word:
Understand the topic (e.g., “Climate Refugees”)
Know your country’s official stance
Find recent data, policies, treaties related to the issue
Be clear on who your allies and opponents are
2. ✍️ Structure Your Speech (the 4-Part Formula)
Here's a proven structure you can follow:
🔹 A. Hook (1–2 lines) Catch attention with a fact, quote, or question.
“Every day, over 20 million people are displaced due to climate change. How many more before we act?”
🔹 B. Country’s Position (2–3 lines) State where your country stands on the issue.
“The Republic of Kenya recognizes the urgency of climate-induced displacement and supports multilateral solutions.”
🔹 C. Proposed Solutions (3–4 lines) Mention practical, action-based ideas.
“We urge the creation of a UN-backed climate migration fund and regional relocation agreements to support vulnerable populations.”
🔹 D. Call for Collaboration (1–2 lines) Invite other nations to work with you.
“Kenya is ready to work with fellow African Union members and beyond to ensure a just and humane solution.”
3. 🧠 Memorize the Key Points (not the script)
Don’t memorize every word. Instead:
Know your main ideas
Practice phrasing naturally
Be ready to adjust based on the room’s energy
4. 🗣️ Practice with Confidence
Stand tall, make eye contact, speak clearly
Time yourself (use a stopwatch)
Practice in front of a mirror or record yourself
💡 Pro Tips
✔ Use formal language (but not robotic) ✔ Avoid filler words ("uh", "like", "you know") ✔ Speak slowly — confidence comes with clarity ✔ Refer to your country in third person (e.g., “India believes…”)
0 notes
Text
Compile Universal Binary For Mac
The new generation of Apple Macs and Macbooks come with a major change in the CPU. They have an Apple processor, the M1 Apple silicon chip, a RISC / ARM64 architecture.
Sparkle compiled as Universal binary works with Mac apps compiled as Universal binary, as well as Mac apps compiled only for Intel, as well as Mac apps compiled only for ARM. To get an ARM-compatible Sparkle, you have to compile a Universal Binary yourself. Mar 20, 2010 I took the time to compile a Super-Fat Universal Binary of the LAME 3.98.3 library for Mac OS X 10.5 PPC, PPC64, i386 and X8664 architectures. Posted in Blog Posted on 2010-03-18 04:44:32 This post is pretty much only for other Mac owners out there Googling for a super-fat Universal binary of LAME 3.98.3 for Mac OSX 10.5 and greater. Aug 01, 2020 Now, when compiling your package, specify both architectures to compile a Universal Binary: $ xcrun swift build -c release -arch arm64 -arch x8664 To verify that your built binary contains both architectures, you can use the lipo -info command to inspect a binary and confirm.
Oh, and since a lot of this software runs on arm (iphone,ipad) and at least until Mac OS X 10.5 on powerpc, two Intel compatible binaries is hardly universal:-) I wrote a similar script to compile openssl 1.0.1g for all 4 CPU architectures Xcode 3.1 on 10.5 handles - 32/64 bit PowerPC and 32/64 bit Intel. This may be a very silly question, but I'm new to developing on Macs and am having a hard time with the universal binaries. I've got an application that I'm compiling in QT Creator, which according to lipo is producing i386 architecture outputs. As I understand it, that means it is producing Mac OS X.
Old intel based applications will continue to run under the Rosetta2 emulator. Applications compiled for ARM64 will run natively.
I am collecting here the steps needed to build a MacOS universal binary for our Software Product Analytics library, 'SoftMeter'.
I will keep updating this post until all steps are gathered and the library is relased.
What needs to be done. ---------------------------------- The library must be compiled as a 'fat' (universal) binary. A universal binary looks no different than a regular app, but is a binary that contains two executables, one for the usual (until today) x86_64 for intel type of processors, and one for the Apple's M1 ARM64 processor. MacOS will choose which version to execute.
What do you need to have --------------------------------------
The newly released xcode 12.2 or newer version.
You do not need a Apple silicon Mac to build universal applications. You can build it on your pre-2020 Mac.
If your application uses 3rd party compiled binaries (e.g. OpenSLL), you must obtain universal binaries for those libraries. Our SoftMeter, does not rely on any 3rd party libraries, so it can be compiled immetiatelly.
Adjust your compilation (build) settings -------------------------------------------------------- You only need to clear any custom setting you have put under the architecture settings. Xcode comes with the default, 'Standard architectures (Apple silicon, Intel)' which is coded as ARCHS=arm64 x86_64. Also, make that the 'build only active architecture' is NO.
Verify that the compiled binary contains both architectures ---------------------------------------------------------------------------------- In terminal run the command lifo -info path-to-your-binary-file For example if you run this command against our SoftMeter dylib, lipo -info libSoftMeter.dylib you will get the result: Architectures in the fat file: libSoftMeter.dylib are: x86_64 arm64 Note: you must use the command for the binary file inside your app bundle (not the .app bundle itself). I.e. the file under myapp.app/contents/MacOS/myapp This works in the same way also for the screensaver bundles (.saver).
Digitally sign your binary ------------------------------------ Digitally signing your binary does not change. The 'fat' binary is still a single file.
Notarize your binary with Apple --------------------------------------------- Notarizing with Apple your binary does not change. The 'fat' binary is still a single file.
.............
Appendix - Useful links ------------------------------- Porting Your macOS Apps to Apple Silicon https://developer.apple.com/documentation/xcode/porting_your_macos_apps_to_apple_silicon?language=objc
Building a Universal macOS Binary https://developer.apple.com/documentation/xcode/building_a_universal_macos_binary?language=objc
Our website post https://www.starmessagesoftware.com/blog/compile-macos-desktop-application-arm64-apple-silicon-m1-chip-cpu
Building GSL as a Universal Binary
Quick download link: GSL 1.15 precompiled universal binaries for OS X
GSL
The GSL (Gnu Scientific Library) is a robust set of math routines, very useful for scientific computing.
If you want to link against the GSL and make code that runs on multiple architectures on OS X, you'll need a universal binary of the library, like this precompiled universal binary of the GSL for OS X, including the ppc, i386 and x86_64 architectures.
Compile Universal Binary For Mac Download
Building GSL as a Universal Binary
Compile Universal Binary For Mac Os
The script I used to build it is below, and is based on this post. If you want to compile it yourself, download the latest version of the GSL (.tar.gz file) from here or one of the mirrors, then run the script below in the same directory. If you're worried about the compiler optimizations affecting accuracy, remove the '-O3' from COMPFLAGS. The finished libraries are in the 'libs' directory and the headers are in 'include'. The script makes universal libraries of all of the '.a' files.
Related posts:
Compile Universal Binary For Mac X
Installing VTK on Mac OS X Download Universal Binaries of the VTK libraries for OS X here (also how to build them yourself). The comet program…
0 notes
Photo

New Post has been published on https://techcrunchapp.com/historical-markers-to-be-placed-along-sacandaga-news-sports-jobs/
Historical markers to be placed along Sacandaga | News, Sports, Jobs

Lauren Roberts, Saratoga County Historian, presented the 15 markers on Thursday that will be placed throughout the area around the Great Sacandaga Lake. (The Leader-Herald/Briana O’Hara)
MAYFIELD — To celebrate the documentary, “Harnessing Nature: Building the Great Sacandaga” and to highlight the history of the reservoir, the Great Sacandaga Lake Advisory Council unveiled 15 historic markers on Thursday at the Hudson River-Black River Regulating District, to be placed in significant locations around the GSL.
After the success of the council-funded 2017 documentary “Harnessing Nature: Building the Great Sacandaga” brought renewed public interest to the history of the reservoir, the GSLAC funded a proposal by Saratoga County Historian Lauren Roberts for 15 historical markers to be placed around the lake at locations significant to the history of the Sacandaga Reservoir Project.
The 15 historic markers unveiled and their locations include: Dam Built 1930 located in the town of Hadley; Conklingville, Day Center and Huntsville located in the town of Day; the Historic Bridge located in the town of Edinburg; The Spillway located in the village of Northville; the Sacandaga Park midway entrance, Sport Island, Sacandaga Park auto entrance, Obsorn’s Bridge and Old Fish House located in the town of Northampton; Cranberry Creek, Mayfield Lake and Munsonville located in the town of Mayfield; and Benedict located in the town of Broadalbin.
“We’re here today to view the actualization of 15 historical markers first proposed by Lauren Roberts, Saratoga County Historian and consequently approved by the advisory council October 2018,” said Henry Hughes, chair of the GSLAC. “These markers are a continuation of the council’s efforts to highlight the significance of previous to and following the construction of the Sacandaga Reservoir later known as the GSL. You’ll recall that the GSLAC funded th making of the documentary ‘Harnessing Nature: Building The Great Sacandaga’ which has been received with great acclaim.”
Jason Kemper, GSLAC treasurer, said the goal behind creating the documentary was to give a better understanding on the sacrifices made by families in the valley, and to make sure there was something to clearly portray the monumental construction of the reservoir and flooding of this valley.
Shown are the two of the 15 historic markers Ñ The Spillway and Sport Island Ñ which will be placed throughout the area around the Great Sacandaga Lake, to show the history of the reservoir. (The Leader-Herald/Briana O’Hara)
“I believe we’ve accomplished that goal whether it’s a high school student asking to do research, a mom I see at Stewart’s or a teacher looking to include the history of the lake in their curriculum, there’s definitely renewed interest from the young people around the area on the history of this lake,” Kemper said.
Roberts said while working on the film, it was brought to her attention that there was a lack of public signage and historic markers acknowledging what was once there before the lake.
Therefore, she made the proposal to the council for the historic markers in which they approved.
“It took me a little bit longer than I thought it would take, but I’m glad that this has become a comprehensive project and we have these 15 markers here,” Roberts said.
Roberts thanked each town and village historian for their input on the historic markers and where each one should be located.
Shown are the historic markers which will be placed throughout the area around the Great Sacandaga Lake, to show the history of the reservoir. (The Leader-Herald/Briana O’Hara)
“I appreciate their help,” she said.
All 15 markers were cast by Catskill Castings. Markers such as these are recognizable throughout the state. Each marker is blue with yellow writing, to signify the marker is placed at a historic site. Roberts said each of the markers has five lines of text with 27 characters that includes spaces.
Roberts said those visiting the sites of the 15 historic markers should take into consideration that most of these sites are actually under water.
“When you’re figuring out land locations, we did the best we could taking into consideration where the former hamlets were located, where the current roads exist today, so that these signs will be most accessible for the most amount of public to be able to view them,” Roberts said.
The markers were given to the individual town supervisor and Hudson River-Black River Regulating district who have agreed to erect the signs in their individual locations.
“It’s encouraging to me when a time when many museums are closed and indoor activities are being canceled, having these historic markers erected in outdoor public places allows people to find them, read them and gain some understanding about what happened her 90 years ago and why we are able to enjoy this beautiful lake here today,” Roberts said.
Lauren Roberts, Saratoga County Historian, presented the 15 markers on Thursday that will be placed throughout the area around the Great Sacandaga Lake. (The Leader-Herald/Briana O’Hara)
Shown are the two of the 15 historic markers Ñ The Spillway and Sport Island Ñ which will be placed throughout the area around the Great Sacandaga Lake, to show the history of the reservoir. (The Leader-Herald/Briana O’Hara)
Shown are the historic markers which will be placed throughout the area around the Great Sacandaga Lake, to show the history of the reservoir. (The Leader-Herald/Briana O’Hara)
Today’s breaking news and more in your inbox
GLOVERSVILLE — The Common Council on Tuesday will conduct a series of public hearings and consider several …
JOHNSTOWN — The Fulton County Correctional Facility is eyeing a Minnesota-based data logging system. It would be …
GLOVERSVILLE — Gloversville Enlarged School District administrators at the elementary school level are reporting …
JOHNSTOWN — Fulton County Historian Samantha Hall-Saladino assisted a state historical group with a virtual …
JOHNSTOWN — Youth activities, book clubs and music highlight happenings at the Johnstown Public Library during …
GLOVERSVILLE — The Gloversville Enlarged School District announced that the playground at Boulevard Elementary …
(function(d, s, id) var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&appId=156336697732347&version=v2.0"; fjs.parentNode.insertBefore(js, fjs); (document, 'script', 'facebook-jssdk'));
0 notes
Text
Eles encontram remédio para reverter a calvície e cabelos grisalhos
Um composto químico poderia ajudar a reverter a calvície para combater o cabelo grisalho e a inflamação da pele, segundo uma pesquisa de cientistas da Universidade Johns Hopkins ( EUA ) e centra-se nestas condições relacionadas com gorduras e colesterol de dietas humanas.
O estudo foi publicado em Scientific Reports da revista Nature. O composto químico chamado D-treo-l-fenil-2-decanoilamino-3-morfolino-l-propanol (D-PDMP). Os pesquisadores dizem que o composto pára a produção de certas gorduras chamadas glicoesfingolipídeos, ou GSL, que são os principais componentes da pele e outras membranas celulares.
Leia também: Eles descobrem por engano, possível cura para a calvície
Cientistas alimentaram ratos com dietas ricas em gordura e colesterol. Eles observaram que essa dieta aumenta a probabilidade de ter descoloração do cabelo de preto para cinza e depois para branco, para perda de cabelo e inflamação da pele, no entanto, quando administrada esse composto químico, esses sintomas pareciam se reverter.
Leia também: Eles criam tratamento à base de nozes para a regeneração capilar
Os pesquisadores da Hopkins alertam que tais resultados em camundongos não significam que os mesmos efeitos ocorreriam nas pessoas, e não há evidências neste momento de que os compostos
Mas as descobertas, eles dizem, lançam luz sobre possíveis caminhos para lidar com a perda de cabelo e feridas cutâneas em humanos com medicamentos orais ou tópicos.
] Este relatório foi publicado em 30 de julho na revista Scientific Reports.
Esta nota inclui informações sobre: Medicina de Johns Hopkins
Neste artigo:
Perda de cabelo
Calvície
! Função (f, b, e, v, n, t, s) if (f.fbq) return; n = f.fbq = function () n.callMethod? n.callMethod.apply (n, argumentos): n.queue.push (arguments); if (! f._fbq) f._fbq = n; n.push = n; n.loadado =! 0; n.versão = '2.0'; n.queue = []; t = b.createElement (e); t.async =! 0; t.src = v; s = b.getElementsByTagName (e) [0]; s.parentNode.insertBefore (t, s) (janela, documento, 'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq ('init', '2151408958419581'); fbq ('track', 'PageView'); fbq ('track', 'ViewContent'); from WordPress https://ift.tt/2OHbvdx via IFTTT
0 notes
Video
youtube
This is a rehearsal of a dance that was included in both of our final productions.
Community Service Learning Project Reflection
In the Summer of 2017 I had the opportunity to travel to Ghana as part of a program offered by the University of Alberta’s music department. The program promised to offer insights on development in Western Africa as well as first-hand experience working on a Community Service Learning project with an NGO in northern Ghana. The Community Service Learning program consisted of creating two performances, one in a rural setting and the other in an urban setting. This paper is meant to highlight my experiences in addition to the various strategies that were used by myself and my peers to navigate the project. The paper begins with a short overview that compares Community Service Learning and explores how it differs from Global Service Learning. Following this, I outline some of the principles that guided the project. Then, I provide a short introduction to the CSL project and elaborate on different defining components of the project before finally discussing ways in which it could be improved for future iterations.
Community Service Learning and Global Service Learning
Community Service Learning (CSL) is a form of education that is centered on the experimental aspects of fieldwork that students learn from via various partnerships with different community organizations. These organizations are often on the front lines of different causes which are pivotal to the livelihood and vitality of a community, causes are often driven by grassroots sentiments that snowball into larger causes of action and are then addressed by different community-lead organizations, at times these sentiments even grow into their own community organizations. CSL connects students with organizations striving to meet community needs and students are able to learn and practice methods of direct action that lead to the betterment of a community. When unencumbered, a CSL project should strive to empower a community by contributing to the community’s ability to remain independent of larger, often corporate, trends in society. It is because of community independence that a CSL project should be motivated by the needs of a community, otherwise it faces the risk of being an irrelevant exercise of student labour and demonstrates the disconnect between a post-secondary institution and the community which it serves. The importance of community input cannot be understated because a relationship between community and volunteers is a fundamental aspect of a CSL placement or project, in fact, the relationship between student volunteer and community members should predicate a CSL project. A CSL project should be based on the input of the community and should minimally be a collaborative effort between the two parties.
It is because of the heavily collaborative effort required to create successful projects that Global Service Learning (GSL) projects are often criticized. A major challenge faced by GSL projects is maintaining grassroots sentiments especially when the project is meant to be executed transnationally. GSL projects can easily become prescriptive in nature when they are exported because programs which are internationally oriented are more likely to miscommunicate simply due to the increased distance between partners involved in the project. The introduction of an increased distance between the two service learning parties easily opens itself to miscommunications between the parties. This relation is further aggravated by the power inequalities between the two service learning groups. For example, projects pursued by the service learning volunteers may prove to enforce hegemonic interpretations of reality, Michael Apple elaborates on this issue and argues that “the kinds of cultural resources and symbols schools select and organize are dialectically related to the kinds of normative and conceptual consciousness ‘required’ by a stratified society” (2). Clear communication is therefore indispensable to any GSL project, as it is to a CSL project, however, GSL projects face additional challenges when attempting to articulate project goals, these challenges can come in the forms of cultural contingencies, participant biases, language barriers, or power divisions. How successfully these unique issues are navigated is one of the key determinants of not only how collaborative a GSL project is, but also whether that project has any sustained meaning and impact on a community.
Project Overview
The project that I was involved in was a collaborative effort between the University of Alberta’s Music Department and Tamale’s Youth Home Cultural Group. Tamale is the largest city in northern Ghana and a majority of it’s over 220 000 inhabitants are Muslim. The placement I participated in was biphasic, the first part of the project involved a production in the city of Tamale and the second part consisted of a similar project in a rural Ghanaian district called Tolon. The project was meant to incorporate traditional forms of Ghanaian culture, namely singing and dancing, in a relevant way to address growing problems or areas of disconnect experienced by our participants. The group of service learners consisted of four post-secondary students, which includes myself. The two groups we worked with were school-aged kids, the kids in the city of Tamale were all between the ages of 15-17 and the second group in the rural area consisted of kids between the ages of 17-20, these two groups were our community partners for this project. They also served as cultural informants on many occasions, which is something that greatly aided our ability to communicate interculturally. Our service learning group was tasked with collaboratively co-creating a culturally relevant performance that would address issues that were directly affecting the lives of our community partners. Interestingly, the final production from both groups were quite similar.
Theoretical Guidelines
Our group of North American students had decided on a few rules we would try to follow through the project. These guiding principles were generally very simplistic, we did not foresee a great deal of difficulty in trying to enforce these rules. These rules were derived mainly from guiding principles of CSL projects and were supplemented with direction from ethnographic studies. Some of these principles were:
Our work would strive to be as undisruptive as it could be.
If disruption became necessary and was unavoidable then the disruption would have to be as minimally disruptive as possible.
To avoid neo-colonial complications in our project, we would prioritize the voices of our community partners over our own.
The project would be sustainable and easily recreated if we removed ourselves from the equation.
The community partners would experience a tangible benefit from participating in the project.
We would attempt to maintain contact with partners following the completion of the project.
We recognized that following these rules may be limiting in some aspects, but it would help us minimize the negative impacts we would have on our community partners. The need to navigate our own impacts and maintaining a self-aware and self-critical critical perspective is explained by Margaret Himley in her description of CSL’s evolution from the disciplines of sociology and anthropology, she argues that
[s]ervice has roots in the volunteerism of white middle- and upper-class women in this country, where these hopeful and idealistic (and perhaps naive) volunteers went out into poor and working-class neighborhoods to improve the material and moral lot of the less fortunate they found living there. These volunteers had the social capital to move close to these strangers in order to re-script their lives within dominant discourses and values. Moving close did not produce a linear transition from distance to proximity, however, but rather a more complex encounter involving, [that was] at one and the same time, social and spatial relations of distance and proximity. Through service projects, these women also achieved a measure of public status and power by representing their work to public audiences and themselves as "good citizens" taking care of those who were weaker and more vulnerable and (believed to be) more dangerous.
(419)
We attempted to implement a process that would result in respectful, collaborative, interactive and non-exploitative interactions. We had hoped that the relationship resulting from our closeness with the kids would allow us a richer glimpse at the issues that were defining the lives of members in the community. Feminist scholars, such as Diane Wolf, have repeatedly argued that in-field risk management alone is myopic as a method of mitigating the power relations involved in working with a less privileged group. According to this perspective, researchers and volunteers can only temporarily manage their privilege and stop doing so once they leave the field or project. A researcher's positionality and locationality cannot effectively be isolated in a
project or research simply by employing friendly or emphatic methodologies (Wolf 35). Wolf elaborates on this and says, “while the contradiction posed by positionality is not resolvable, these dilemmas must continue to be confronted by service learners in the field without naivete, with open eyes, and without discourses that conceal” (36). To this end, we emphasized both the replicability of the projects and our long-term relationships with the various groups of students to mitigate some of the problems arising from the interpretive power we commanded as outsiders in this scenario.
The Field
As previously mentioned, the project was biphasic and each phase culminated with a public performance followed by a small debriefing with the community partners. I will use this section to describe the different aspects of each of the projects as well as the similarities which existed between the two. Both of the projects delivered a similarly formatted final product, a stage drama preceded by a cultural performance that included call-and-response singing as well as dancing.
Our collaborative partners from Tamale were a group of students from a local junior high school, this group’s ages ranged from 15-17 years of age. There was a total of ten students, seven of them were girls and three of them were boys. With this group we had eight total meetings spread out over one month. These meetings generally consisted of brainstorming different ideas for performances as well as refining and practicing the different existing ideas.
In contrast, the Tolon group consisted of slightly older, high school aged kids. The ages in this groups ranged from 17-20. The gender divide in this group was quite different from the Tamale group’s, here we had a group of 13 with only four being girls. Our meetings with the group were spread over one week and took place every evening for around one to two hours.
Group Formation
When it came to group selection we had no real input in the process that was used to select students. This is something that we confirmed with both our organizing parties, the University of Alberta and Tamale Youth Home. The process varied for each of the two groups of students. The students from Tamale were all from the same school and were in the same class, these students were selected by their teacher with no indication on whether or not there were any selection criteria for the choices. This is something we learned by directly asking the students during one of our later rehearsals. These students had little to no idea about what they had been selected for or what would be expected of them in their roles. During our later sessions, more of their classmates became interested in the project and began to watch our rehearsals. It seemed that more students became interested in the project as it progressed. This will be a great benefit in future iterations of the program as participants may have some familiarity with the expectations as well as the outcomes of the program.
Group selection with Tolon group was even more arbitrary. We had originally assumed that we would be working with a school’s dedicated cultural dance troupe. However, as it turned out, we ended up working with a group of kids who were formerly associated with their school’s dance troupe but had since graduated. The kids were selected due to their previous acquaintance with a dance instructor from Tamale Youth Home. This was meant to minimize possible issues we may have with the group such as English language skills as well as to ensure that the kids we would be collaborating with would have some familiarity with traditional music and dances. In terms of the Tolon group, it is harder to hypothesize how our project will affect future interest into the collaborations since the selection process for this group can change dramatically for the next iteration. For example, there may be interest in the project but we do not know if these same kids will be selected to perform again or whether the school’s cultural troupe would be selected.
Theme Selection
An area of the project which was extremely crucial was the selection of topics
that would be addressed by the final production. Selecting the topics that we would address through our project was something that had the potential to determine the type of relationship we would have with our community partners as well as the degree to which the entire project could be considered collaborative. In order to synthesize a strong and collaborative thread in our performance we ensured that the two groups that we worked with had a great deal of agency during the entire creative process. We aimed to listen to what everyone involved in the project had to say without over-emphasizing any specific voice. To simplify this goal, we split up into smaller groups of three to four people, including one service learner, to discuss issues that were relevant to our lives and brainstorm ways in which the topics could be represented in a bigger production. The conversations usually began with one of the service-learners describing issues we had encountered ourselves, then we would ask others to share what problems they thought were important. These problems were a little different between each of the areas, though larger themes remained constant in each area. Themes that came up in both areas were the importance of education and the negative impacts of early marriage. Themes that were exclusive to the urban environment were HIV, inter-religious tolerance, drug use, and female circumcision. Themes exclusive to the rural environment were hand washing, mosquitoes being harboured by stagnated water, improper use of medicated malaria nets as farming tools, and prostitution. All of these themes were generated through brainstorming sessions. At times, theme selection was carried out more organically. Many of the sub-themes and conflicts that drove the performance came from improvisations the students did while they were rehearsing. Interestingly, the final themes incorporated into our performances were incredibly similar—it seemed as though there was not a severely pronounced urban-rural divide in the lives of both of our community partner groups.
Finally, it should be noted that group formation was not rigidly enforced. In our first project, based in Tamale, after a few initial sessions, groups dissolved and students moved around to fill vacant roles. This worked especially well as it gave the students the opportunity to share their own ideas in smaller groups but then move on and help peers who had ideas that required more assistance. Originally, each group was tasked with exploring a possible contribution to the final production. We had two songs and two skits for our final production and after this had been finalized we were able to ensure everybody had a relevant role for the performance. This flexibility proved to be extremely rewarding and was demonstrated by the case of a student who had paired with a friend in the initial group selection but had ended up without a significant role in a song but was eventually able to join both of the skits, becoming a central figure in each of them and lending a great deal of comedic relief to the entire production.
Project characteristics
A surprising element of each of the projects was how similar the two productions were. Having a similar format was expected and the format we chose was meant to be the most engaging for audiences. Thus, each of the shows began with a performance that featured service-learners singing, dancing, or playing the accompanying music. The surprising similarity between the two projects was the overlap in the skits. Each of projects featured a skit with a female protagonist and highlighted how education impacted the lives and choices of not only educated individuals but also their communities.
The first skit in the Tamale show was about a young girl living with her father and stepmother who is then married to an older man when the family encounters financial difficulties. The girl faces abuse as a young incompetent wife and eventually dies in childbirth. The second skit in the Tamale project was of an english professor who argues against his tribe’s tradition of circumcision and refuses to consent to his daughter receiving the procedure. This production also featured a song that borrowed its rhythm and a majority of its lyrics from a local pop-song that was constantly playing on the radio, the song was repurposed to address the ills of drugs and alcohol. A second song was featured in the project and was offered by one of the students. This song highlighted the dangers of HIV/AIDS and offers a three-step approach to avoid contracting the virus.
The skit in Tolon was about two female classmates. One girl had a supportive family who helped her with school related expenses and the other girl had to date a boy to get help with similar expenses as her family was not supportive of her getting
an education. The play ends with the girl with the supportive family becoming a health-care provider for her community and the other girl dying due to childbirth complications. This theme was selected because it offered a parallel to the lives of the students in Tolon, many of whom were no longer in school because their families did not value education and instead made them help at the farm or would use available funds to build additional structures on their housing compounds rather than sending their children to school.
Overall, I felt that the project was a success because it gave the students a medium through which they could speak to authority in a way that was socially acceptable. The students’ ability to use this production to ‘speak-up’ to adults in a way that would be taken seriously was facilitated by the input and flexibility they were afforded in the early stages of the project.
General Issues
With all of its success, the project, unfortunately, was not without its faults. One of the biggest shortcomings of the project was its inability to engage all students that participated in it. One student, in particular, was fairly shy during all of our rehearsals in Tamale and eventually stopped coming to rehearsals. It’s fairly reasonable to expect that not all students would be interested in the project, however, this is an issue that could have been dealt with in advance if students had a general idea of what would be expected of them in their roles as community partners for this project. Furthermore, parents were not informed by the school of the new activity their kids were undertaking. Albeit, many of the students mentioned it to their parents, there was no information about it from the school. For future iterations of the program it might be helpful to provide parents with a short description of the projects as well as contact information for representatives from both collaborating community institutions. The lack of communication was quite obvious in the final two days of the project when both very few parents and guardians attended the final production and also when I was required to write a few letters to parents requesting their permission for their children to join us longer than usual on the day of the performance.
Another issue that cropped up was specific to the Tamale group. In one of our
early meetings, we learned that the students had missed an entire period in school so that they would be able to join us. This was against our principle of minimal disruption and we immediately changed our meeting times to better accommodate the students. During our later sessions we also learned that the students were in the middle of final exams, in fact, we learned that the students had an exam the very next day. As soon as we learnt this we made arrangements for the students to leave early. The long-term implication of this would be exploring if it would be possible to schedule the program so there would not be a significant overlap between the kids’ final exams and the program.
Other issues we had to be sensitive to was the kids’ comfort with one another. During one of our rehearsals in a scene where one of the actors was meant to hit another actor, the exchange was meant to be exaggerated and fake but we noticed that one of the actors was actually striking the other one. After noticing this we had to handle the ensuing conversation tactfully as to not appear too harsh while also resolving the issue. We decided to alleviate the situation by adding a prop into the scene and emphasizing that the actor should not actually be striking their colleague with it at all but instead be making a motion of hitting them instead. A different skit required that one of the boys who was playing a doctor declare one of his female patients dead. We noticed that the scene where he took the dead girl's pulse was fairly awkward and learned that neither student was too comfortable with the scene. During our discussion of the scene we learned that the students thought that the pulse could only be found over the heart. Both students were relieved to learn that a pulse can be located through the wrist and happily incorporated this change into their performance.
The biggest issue that arose from this project was the lack of immediate long-term benefits available to community partners. The skills that the participants learned are definitely a form of cultural capital, an example of this would be the traditional dances that all participants learned through workshops. A more commodifiable benefit that could be made available to participants is a participation certificate. At the very least, a certificate of this sort would demonstrate a participant’s command of the English language. The final issue I will mention will be easy to address in future iterations of the program. When we began the project we had little to no idea in regards to who would
be attending our eventual performance. If we had a better idea about the demographic of the eventual audience for our play we would have been able to finetune the message to be more relevant to the lives of the audience. The audience for our production in Tamale was largely school aged children and young adults, had this been something we knew in advance we could have produced skits that were more relevant to the lives of these groups of people. However, it should be noted that the audience for the shows can easily be changed simply by sending invitations. In our production in Tamale, only one parent came to see the final performance. If the parents were more involved in the entire process I imagine more of them would have attended the performance.
Project Impacts
The project had a few different impacts on the lives of all those who participated in it. In terms of long term impacts of the project, there is some potential that the project challenged some of the views held by audience members. The project in Tolon was actually extremely subversive because it gave young people, who would otherwise be dismissed by their elders, a platform through which they were able to voice their concerns to elders. Furthermore, this production was actually attended by the village chief, other important elders, and even the parents of many of the kids who were performing. What made this dynamic subversive was the normalcy with which adults tend to scold and chastise anyone younger than them in Ghana. Both groups of community partners gained the necessary skills to create and organize another similar project if they chose to do so. The project is simple and does not require a financial investment to recreated. The Tolon group benefitted from an investment that the service learners decided to make in order to start their own cultural troupe. The Tolon group were formerly part of a school’s dance troupe and since many of them were no longer able to attend school, they were no longer able to use the school’s equipment. We made a small investment in the group so that they may be able to purchase their own equipment, such as drums or costumes, for future performances. A final benefit from this project is offered by its ability to introduce participating groups to cultural traditions that they might not encounter otherwise. In
this sense, the project has a potential to be a strong medium that can be used to preserve culture.
Concluding remarks.
Overall, the CSL project offered a learning opportunity to both service learners and community partners. I think both parties step away with a richer understanding of the diversity of human cultures and human expression. I found that this CSL project helped foster inter-cultural communication between service learners and participants in a way that, for me, translated across the entire trip. The project itself was simple enough to not overshadow the entire trip but also presented many opportunities to add depth and complexity to it as we became more adept with the entire process. Looking forward, there is talk between service-learners to start a scholarship for community-partners of the program to help pay for costs associated with schooling. This project served as a conduit through which many other issues can be addressed and the project format easily lends itself to any community members who wish to address topics which are dear to them.
Works Cited Apple, Michael. Knowledge, Power, and Education : the Selected Works of Michael W. Apple. New York, NY: Routledge, 2013. Himley, Margaret. “Facing (Up to) 'the Stranger' in Community Service Learning.” College Composition and Communication, vol. 55, no. 3, 2004, pp. 416–438., www.jstor.org/stable/4140694. Wolf, Diane L. Feminist Dilemmas in Fieldwork. Westview, 1996.
0 notes
Text
Processo Seletivo | 03 JUN 2024
Há duas semanas, comecei um processo seletivo para uma universidade de Engenharia de Software. É frustrante saber que não passei, mesmo eu já sabendo que não conseguiria. Eu não tenho nenhuma habilidade social pelo que parece.
As aulas eram síncronas e assíncronas, as atividades deveriam ser entregues antes da aula síncrona começar. Eu tentei o meu melhor para fazer uma boa pontuação nessas atividades, mas na última atividade, que teria que ser em grupo, eu sei que não dei meu melhor. Além de não ter interagido tanto durante as aulas. Eu não sei bem o que deveria ter feito, porque quando não sei algo, eu fico quieta e observo. Ou me mantenho quieta quando alguém fala algo parecido com o que eu poderia falar para não ser redundante.
Eu não sei o que deveria ter feito diferente, para ser bem sincera. Me sinto estúpida por achar que conseguiria passar, sendo que sei bem que eles procuram alguém extrovertido que conversa bastante e interage. E eu com certeza não sou assim. Não desde minha infância.
Agora eu pretendo focar em outros cursos em que eu não preciso entrar em videochamada e marcar presença.
#diario#estudos#studyblr#brasil#introvert#eu não sei conversar com outros humanos#estou triste#mesmo sabendo que não passaria#gsl-script
0 notes
Text
Como eu (não) instalei o Linux pt.2
Então, eu com minha teimosia e, de certa forma, falta de atenção, deixei meu notebook inutilizável.
Mas ainda estou tentando. Minha tentativa falha foi feita na sexta, no sábado não tive nenhuma grande ideia e ontem decidi fazer uma gambiarra. Pensei em configurar o cartão de memória com a ISO e usar um adaptador para colocar em um pendrive e passar para o computador.
Baixei o aplicativo Hash Checker e tentei baixar uma versão Android para o Rufus, o que não funcionou. Nenhum aplicativo desses desenvolvedores funcionou, então baixei o Flash USB. Fui no site do Ubuntu MATE, baixei o arquivo em seis minutos e fiz a verificação no Hash Checker.
Escolhi um arquivo clicando em File, depois Action e em seguida Generate. Esperei uns instantes e foi gerado uma chave (letras e números) que comparei com a chave fornecida no próprio site do Linux. E comparei as duas chaves. Dado o Match, fui ao próximo passo que era configurar o cartão de memória.
Porém, o aplicativo não reconhece o cartão como um dispositivo externo, apenas o pendrive. Por isso preciso do cabo OTG. Eu acho que tenho, mas não sei onde está ou se estragou e foi jogado fora.
Vou comprar o adaptador e continuar minhas tentativas ✌️
parte-1
0 notes
Text
Como eu (não) instalei o Linux
Decidi mudar o sistema do meu notebook ancião de 10 anos de existência do sistema Windows para Linux.
Baixei a distro Linux Mint Xfce, que é a mais leve, e decidi testar em outro computador. E quero deixar registrado minha insatisfação com a Positivo. Eu não quero um notebook desse nem de graça. Ele é um notebook duo Q432A que não tem espaço nem para o próprio sistema – sendo que não tem nada instalado, nem foto, arquivo, NADA.
Aí fiz o processo de passar a distro para o pendrive, até onde eu chequei estava tudo bem com os arquivos, não tinha nada corrompido. Preparei o pendrive [nota: o notebook não tem espaço, né? Aí baixei o Linux direto no pendrive que seria configurado, mas quando fui configurar com o Rufus não deu certo porque o arquivo não podia estar dentro do pendrive que seria formatado. Então peguei um cartão de memória de 64gb e passei o Linux de um lado para o outro. No fim, deu certo.], vi se não tinha nenhuma informação no computador que pudesse fazer falta e comecei a testar. Não sabia qual era a tecla para chegar na BIOS, descobri que era a F2, diferente de outros notebooks do mesmo modelo.
Porém, a tela da BIOS é diferente de qualquer outro modelo que vi em vídeos. No fim recebi a mensagem:
This system uses 64bit x86 UFEI searching for x64 EFI bootloader
Nas especificações, diz ser Windows Home 10 64bits, então acho que esse não é o problema, mas diz que a plataforma não é suportada.

Eu pensei em instalar novamente o Linux Mint usando outro link, mas antes eu quis testar outras formas e tentar instalar, porque não acho que tenha arquivos corrompidos no pendrive. Aí decidi usar o Chatgpt para me dizer o que poderia fazer e cai na besteira de desativar o Secure Boot. O amaldiçoado do notebook tem BitLocker e eu não sabia, acabei de saber. Não lembro do e-mail nem nada e agora não sei o que fazer porque fui trancada pra fora do sistema.


Tentei procurar alguma alternativa, mas o problema já começa com essa tela do device manager que é diferente dos tutoriais que já vi. Desde manhã estou sem o notebook e não sei como resolver 🤡
Vou continuar tentando porque ainda preciso desse notebook kkkkkrying


parte-2
0 notes
Text
07/03/2024
Mais um pequeno update.


Infelizmente não tão bom quanto eu gostaria.
Falta treze dias para o fim do curso e eu tenho, muita coisa pra fazer. Eu passei dias sem fazer o que eu mesma planejei. É revoltante, mas também é exaustivo. Eu não tenho ninguém a quem culpar além de mim mesma.
Mas como a esperança é a última que morre, vou continuar a tentar até o dia final e ver o que acontece.
0 notes
Text
26/02/24
Eu estou há semanas tentando terminar um curso e ainda não consegui colocar minha bunda na cadeira e fazer o que precisa ser feito. Os dias estão se passando e cada vez menos tempo, mas mesmo assim eu não sinto o desespero da responsabilidade.

Ontem eu ainda consegui assistir algumas aulas, mas ainda tem tanta coisa. Eu penso que eu não mereço as oportunidades que tenho porque não sei como usá-las. É sempre mais fácil dar jeito na vida do outro. Estar dentro dessa bagunça é horrível, as outras pessoas me veem apenas como preguiçosa.
Mas eu vou tentar hoje de novo. Espero que seja melhor que ontem.
#diary#brasil#português#studyblr#eu só estou tentando organizar minha vida do lado de cá#não sei se tá adiantando#gsl-script
1 note
·
View note
Text
Olá, meu nome é Gisele, sou do Brasil 🇧🇷
Gosto de assistir resenhas de filmes cult e de terror, que não tenho coragem ou paciência de assistir. Gosto de desenhar, apesar de não manter o hábito desde quando era criança. Também estudo programação de forma autodidata porque sou ✨pobre✨.
Leio inglês, mas não falo inglês.
Para ver minhas postagens pesquise: #gsl-script
"loyal to few ruled by none"
Alguns posts:
Como eu não instalei o Linux
parte-1 | parte-2
Processo seletivo
Curso:
parte-1 | parte-2 | Pequenas vitórias
0 notes