Skip to content

Instantly share code, notes, and snippets.

View ismaelrak's full-sized avatar
👨‍💻
Focusing

Ismael Mohamed ismaelrak

👨‍💻
Focusing
View GitHub Profile
sass/
|
|– abstracts/
| |– _variables.scss # Sass Variables
| |– _functions.scss # Sass Functions
| |– _mixins.scss # Sass Mixins
| |– _placeholders.scss # Sass Placeholders
|
|– core/
| |– _reset.scss # Reset/normalize
@ismaelrak
ismaelrak / class-naming-convention.md
Last active January 18, 2023 16:38 — forked from whizark/class-naming-convention.md
HTML/CSS Class Naming Convention #html #css #sass
@ismaelrak
ismaelrak / class-naming-convention.md
Created January 18, 2023 16:38 — forked from whizark/class-naming-convention.md
HTML/CSS Class Naming Convention #html #css #sass
@ismaelrak
ismaelrak / funcionalidades.js
Last active January 12, 2021 09:39
TO-DO JS
//selectores
const todoInput = document.querySelector('.todo_input');
const todoButton = document.querySelector('.todo_button');
const todoList = document.querySelector('.todo_list');
const filterOption = document.querySelector('.filter_todo');
//event listeners
todoButton.addEventListener("click", addTodo)
todoList.addEventListener("click", deleteCheck)
filterOption.addEventListener("click", filterTodo)
@ismaelrak
ismaelrak / index.html
Last active January 12, 2021 09:59
HTML TO-DO LISTA
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous" />
<link rel="stylesheet" href="./estilos.css">
<title> Lista To-Do</title>
@ismaelrak
ismaelrak / estilos.css
Last active January 12, 2021 09:40
CSS TO-DO
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background: linear-gradient(to right, #d1913c, #ffd194);
font-family: 'Poppins', sans-serif;
color: white;
@ismaelrak
ismaelrak / devmachine.ps1
Last active April 13, 2020 05:01
Script Boxstarter
#####################
# REQUISITOS
#####################
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Set-TaskbarSmall
# Powershell
cinst PowerShell
cinst poshgit
@ismaelrak
ismaelrak / hyper.js
Created January 4, 2018 04:01
My Hyper.js config Win 10
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// Choose either "stable" for receiving highly polished,
// or "canary" for less polished but more frequent updates
updateChannel: 'stable',