- M: Move to (args x, y): Moves cursor to a specific point.
- L: Line to (args x, y): Lines from current point to point supplied in args.
- H: Draws a horizontal line as an argument the end point.
- V: Draws a vertical line and takes as an argument the end point.
- Z: CLoses path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Ibrahem Khalil", | |
"label": "Full stack developer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "+201153338668", | |
"url": "https://github.com/ibrkhalil", | |
"summary": "From Cairo, Egypt. He has earned a Bacherlor's from Modern Academy in Maadi in Computer Science. He is a full stack developer with 3 years of experience in web development. He has worked on various projects open and closed sources projects, including mobile and web projects, and custom web applications. He is proficient in HTML, CSS, JavaScript, React, React Native, Golang, Node.js, Next.js, MySQL, and PostgreSQL, Clojure(Script), YAML and many more. He is also familiar with cloud services such as AWS but on a beginner level. He is a quick learner and enjoys working in a team environment. He is always looking for new challenges and opportunities to grow his skills.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
"location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
"location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
"location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
"location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createStore } from "redux"; | |
const monitorStateUpdateEnhancer = | |
(createStore) => (reducer, initialState, enhancer) => { | |
const monitoredReducer = (state, action) => { | |
console.log("STATE BEFORE => " + state.value); | |
const newState = reducer(state, action); | |
console.log("STATE AFTER => " + state.value); | |
return newState; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>#WARNING - 1</key> | |
<string>This is just a sample. Do NOT try loading it.</string> | |
<key>#WARNING - 2</key> | |
<string>Ensure you understand EVERY field before booting.</string> | |
<key>#WARNING - 3</key> | |
<string>In most cases recommended to use Sample.plist</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GO111MODULE=on go install github.com/golangci/golangci-lint/cmd/[email protected] | |
/bin/sh: 1: go: not found | |
sudo -E env "PATH=$PATH" make setup-dev |