Avr Month

0 views
Skip to first unread message

Zoraida

unread,
Aug 3, 2024, 5:40:50 PM8/3/24
to socaracu

National Hispanic Heritage Month traditionally honors the cultures and contributions of both Hispanic and Latino Americans as we celebrate heritage rooted in all Latin American countries. During this month and throughout the year, the National Park Service and our partners, share history, heritage, and accomplishments of Hispanic and Latino Americans of past and present.

The Smithsonian Latino Center unlocks dynamic U.S. Latino stories that shape our national experience and identity. It empowers a greater understanding and deeper appreciation for the enduring contributions of Latinos to our country. It preserves a growing collection of diverse stories and experiences that reflect Latino presence in our history and culture, and convenes conversations, inclusively, about the stories and connections that continue to inspire generations to come.

Visit the website

Haykuykamuy! The Hispanic Reading Room at the Library of Congress welcomes you to Interconnecting Worlds: Weaving Community Narratives, Andean Histories & the Library's Collections. In this guide, with resources in English, Spanish and Quechua, we seek to facilitate research about Andean peoples, cultures, and knowledges through the themes of language, storytelling and literature, visual arts, and music.

Explore the Research Guide

We celebrate Hispanic Heritage Month to recognize the achievements and contributions of Hispanic American champions who have inspired others to achieve success. Discover documents, exhibits, films, blog posts and more from the National Archives and Presidential Libraries that highlight Hispanic culture.

Explore the site

Asked to serve their country in time of war, Hispanic Americans displayed courage and valor in the face of adversity. Familiar with discrimination back home, many saw their service as affirming the ideals of democracy. In this presentation, the Veterans History Project recounts their inspirational stories.

Read More about Hispanic American Veterans

100 Ways to Cross the Border
Post screening discussion with filmmaker Amber Bemak in person.
Celebrated Mexican/Chicanx performance artist Guillermo Gmez-Pea and his performance troupe La Pocha Nostra have spent their careers working with conceptual, social, and physical borders. With intimate access to the artist and his troupe, 100 Ways to Cross the Border unabashedly documents the impact of Gmez-Pea's work and his contributions to conversations on Latinx and Chicanx identity, politics, and border theory.

Alejandro Brittes Quartet, Masters of Chamam
Music from the board regions of Argentina, Brazil and Uruguay. The Alejandro Brittes Quartet from Brazil is an instrumental ensemble which performs contemporary renditions of chamam, traditional music from the border regions of Argentina and Brazil.

Live! at the Library: Danzn Class with Corazn Folklrico
In honor of Hispanic Heritage Month, join a Danzn class taught by Prof. Manuel Cuellar (GW University) and Paulette Chavira, both members of the DC-based Corazn Folklrico dance group. This type of dance is accessible to all levels and ages and has recently seen a resurgence as a popular dance with younger generations in Mexico.

Close Topics Topics Cybersecurity Best Practices Cyber Threats and Advisories Critical Infrastructure Security and Resilience Election Security Emergency Communications Industrial Control Systems Information and Communications Technology Supply Chain Security Partnerships and Collaboration Physical Security Risk Management How can we help? GovernmentEducational InstitutionsIndustryState, Local, Tribal, and TerritorialIndividuals and FamiliesSmall and Medium BusinessesFind Help LocallyFaith-Based CommunityExecutivesHigh-Risk Communities Spotlight Resources & Tools Resources & Tools All Resources & Tools Services Programs Resources Training Groups News & Events News & Events News Events Cybersecurity Alerts & Advisories Directives Request a CISA Speaker Congressional Testimony CISA Conferences CISA Live! Careers Careers Benefits & Perks HireVue Applicant Reasonable Accommodations Process Hiring Resume & Application Tips Students & Recent Graduates Veteran and Military Spouses Work @ CISA About About Culture Divisions & Offices Regions Leadership Doing Business with CISA Site Links Reporting Employee and Contractor Misconduct CISA GitHub CISA Central 2023 Year In Review Contact Us Free Cyber Services#protect2024Secure Our WorldShields UpReport A Cyber Issue

Since 2004, the President of the United States and Congress have declared the month of October to be Cybersecurity Awareness Month, a dedicated month for the public and private sectors to work together to raise awareness about the importance of cybersecurity.

Over the years it has grown into a collaborative effort between government and industry to enhance cybersecurity awareness, encourage actions by the public to reduce online risk and generate discussion on cyber threats on a national and global scale. October 2024 marks the 21st Cybersecurity Awareness Month.

Strong passwords are long, random, unique and include all four character types (uppercase, lowercase, numbers and symbols). Password managers are a powerful tool to help you create strong passwords for each of your accounts.

You need more than a password to protect your online accounts and enabling MFA makes you significantly less likely to get hacked. Enable MFA on all your online accounts that offer it, especially email, social media and financial accounts.

If you would like to request a CISA speaker for your Cybersecurity Awareness Month event, please fill out the CISA Speaker Request Form and then email it as an attachment to CISA.S...@cisa.dhs.govno later than August 30, 2024.

Join CISA and the National Cybersecurity Alliance for a webinar on July 16, 2024, at 2pm ET/11am PT to learn more about how you or your organization can get involved in Cybersecurity Awareness Month 2024. To register, click here.

elements of type month create input fields that let the user enter a month and year allowing a month and year to be easily entered. The value is a string whose value is in the format "YYYY-MM", where YYYY is the four-digit year and MM is the month number.

For those of you using a browser that doesn't support month, the screenshot below shows what it looks like in Chrome and Opera. Clicking the down arrow on the right-hand side brings up a date picker that lets you select the month and year.

A string representing the value of the month and year entered into the input, in the form YYYY-MM (four or more digit year, then a hyphen ("-"), followed by the two-digit month). The format of the month string used by this input type is described in Month strings.

One thing to note is that the displayed date format differs from the actual value; most user agents display the month and year in a locale-appropriate form, based on the set locale of the user's operating system, whereas the date value is always formatted yyyy-MM.

The values of the list attribute is the id of a element located in the same document. The provides a list of predefined values to suggest to the user for this input. Any values in the list that are not compatible with the type are not included in the suggested options. The values provided are suggestions, not requirements: users can select from this predefined list or provide a different value.

The latest year and month, in the string format discussed in the Value section above, to accept. If the value entered into the element exceeds this, the element fails constraint validation. If the value of the max attribute isn't a valid string in "yyyy-MM" format, then the element has no maximum value.

The earliest year and month to accept, in the same "yyyy-MM" format described above. If the value of the element is less than this, the element fails constraint validation. If a value is specified for min that isn't a valid year and month string, the input has no minimum value.

A Boolean attribute which, if present, means this field cannot be edited by the user. Its value can, however, still be changed from JavaScript code that directly sets the value of the HTMLInputElement.value property.

The step attribute is a number that specifies the granularity that the value must adhere to, or the special value any, which is described below. Only values which are equal to the basis for stepping (min if specified, value otherwise, and an appropriate default value if neither of those is provided) are valid.

Note: When the data entered by the user doesn't adhere to the stepping configuration, the user agent may round to the nearest valid value, preferring numbers in the positive direction when there are two equally close options.

Date-related inputs (including month) sound convenient at first glance; they promise an easy UI for choosing dates, and they normalize the data format sent to the server, regardless of the user's locale. However, there are issues with because at this time, many major browsers don't yet support it.

To help avoid this, you can use min and max to restrict the available dates (see Setting maximum and minimum dates), and in addition use the required attribute to make filling in the date mandatory. As a result, supporting browsers will display an error if you try to submit a date that is outside the set bounds, or an empty date field.

Here's the CSS used in the above example. Here we make use of the :valid and :invalid CSS properties to style the input based on whether the current value is valid. We had to put the icons on a next to the input, not on the input itself, because in Chrome the generated content is placed inside the form control, and can't be styled or shown effectively.

Warning: HTML form validation is not a substitute for scripts that ensure that the entered data is in the proper format. It's far too easy for someone to make adjustments to the HTML that allow them to bypass the validation, or to remove it entirely. It's also possible for someone to bypass your HTML entirely and submit the data directly to your server. If your server-side code fails to validate the data it receives, disaster could strike when improperly-formatted data is submitted (or data which is too large, of the wrong type, and so forth).

c80f0f1006
Reply all
Reply to author
Forward
0 new messages