Skip to content

Instantly share code, notes, and snippets.

View sandrabosk's full-sized avatar
👩‍💻
Always a student, never a master. Have to keep moving forward. ~C.Hall

Aleksandra Bošković sandrabosk

👩‍💻
Always a student, never a master. Have to keep moving forward. ~C.Hall
  • Ironhack
View GitHub Profile
// ============================================================
// Definition of an object / dictionary
// ============================================================
const fruits = {
color: 'red',
length: 3
}
// ============================================================
@sandrabosk
sandrabosk / git_fetch_all.bat
Created April 26, 2021 08:32 — forked from JuanLengyel/git_fetch_all.bat
Fetch from all remote for all the repositories in current directory
@echo off
for /d %%i in (%cd%\*) do (
echo *************************************************************************
echo "%%i"
cd "%%i"
echo -----------------------------------------
echo fetch --all -v
@sandrabosk
sandrabosk / git_apply_all.bat
Created April 26, 2021 08:31 — forked from JuanLengyel/git_apply_all.bat
Applies a git command to all of the repositories found in the current folder
@echo off
set /p git_command="Type your command: "
for /d %%i in (%cd%\*) do (
echo *************************************************************************
echo "%%i"
cd "%%i"
@sandrabosk
sandrabosk / README.md
Created June 4, 2020 17:08 — forked from ross-u/README.md
webinar-portfolio-html-css-resources
@sandrabosk
sandrabosk / index.html
Last active April 16, 2020 01:47 — forked from ross-u/index.html
Semantic HTML example
<!DOCTYPE html>
<html>
<head>
<title>Semantic HTML</title>
<meta charset="UTF-8" />
</head>
<body>
<nav>
<a href="">Home</a>
@sandrabosk
sandrabosk / README.md
Last active February 2, 2021 05:56 — forked from ross-u/README.md
Block vs Inline Elements - Cheat Sheet

HTML Introduction

Block vs Inline Elements - Cheat Sheet


@sandrabosk
sandrabosk / antd.md
Last active August 6, 2019 06:54 — forked from Jossdz/antd.md

logo_ironhack_blue 7

React | UI components of Ant Design for React

Learning goals:

After this lesson you will be able to:

  • explain what a component library is and what makes it different from a style library,
  • add and configure a component library,
  • use and set up a component of antd library