Skip to content

Instantly share code, notes, and snippets.

View abdullahseba's full-sized avatar
💭
Writing bad code 💩

abdullahseba

💭
Writing bad code 💩
View GitHub Profile
@bradtraversy
bradtraversy / vscode_shortcuts.md
Last active July 25, 2024 10:27
Helpful shortcuts for VSCode

VSCode Shortcuts

List of helpful shortcuts for faster coding

If you have any other helpful shortcuts, feel free to add in the comments of this gist :)

Official List of all commands

@carousel
carousel / snake-to-camel.php
Last active July 19, 2024 12:34
Convert snake to camel case and back with PHP
<?php
function camel_to_snake($input)
{
return strtolower(preg_replace('/(?<!^)[A-Z]/', '_$0', $input));
}
function snakeToCamel($input)
{
return lcfirst(str_replace(' ', '', ucwords(str_replace('_', ' ', $input))));
}
@mrmrs
mrmrs / html5-element-list.txt
Created November 25, 2013 22:43
List of all html 5 elements, in alphabetical order.
a
abbr
address
area
article
aside
audio
b
bdi
bdo