Headline
CVE-2022-34023: GitHub: Where the world builds software
Barangay Management System v1.0 was discovered to contain a SQL injection vulnerability via the hidden_id parameter at /officials/officials.php.
Blazing fast cloud developer environments with CodespacesLearn more about GitHub Codespaces
The future of code is in the cloud, not your local copy. Codespaces gives you a complete, configurable dev environment on top of a powerful VM in minutes.
Visual Studio Code, in your browser, full stop. Codespaces brings the world’s most popular desktop editor to every repo. Code, build, test, use the terminal, and open pull requests from anywhere.
Customize to your heart’s desire. Add your favorite VS Code extensions, create a devcontainer config file, install new themes, and tweak your settings.
GitHub Copilot,
your AI code companion****GitHub Copilot plugs directly into your editor and suggests lines of code—and entire functions. Focus on building bigger things while GitHub Copilot takes on the repetitive stuff.Learn more about GitHub Copilot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const token = process.env[“TWITTER_BEARER_TOKEN”]
const fetchTweetsFromUser = async (screenName, count) => {
const response = await fetch(
\`https://api.twitter.com/1.1/statuses/user\_timeline.json?screen\_name=${screenName}&count=${count}\`,
{
headers: {
Authorization: \`Bearer ${token}\`,
},
}
)
const json = await response.json()
return json
}