Skip to content

Instantly share code, notes, and snippets.

View MyaElla's full-sized avatar
👩‍💻
exercising my brain muscle

Mihaela Ciobanu MyaElla

👩‍💻
exercising my brain muscle
View GitHub Profile
@MyaElla
MyaElla / Profiles-iTerm.json
Last active January 11, 2023 15:56
iTerm pref, and profiles
{
"Profiles": [
{
"Ansi 3 Color" : {
"Green Component" : 0.81672251224517822,
"Blue Component" : 0.19727933406829834,
"Red Component" : 0.99627053737640381
},
"Tags" : [
componentDidMount() {
let apiRequest1 = fetch('https://content.guardianapis.com/sections?q=travel&api-key=test').then(function (response) {
return response.json()
});
let apiRequest2 = fetch('https://content.guardianapis.com/sections?q=football&api-key=test').then(function (response) {
return response.json()
});
let combinedData = { "apiRequest1": {}, "apiRequest2": {} }
@MyaElla
MyaElla / api-playground-google-maps.markdown
Created May 22, 2018 11:10
API Playground - Google Maps

API Playground - Google Maps

In which I fiddle around with APIs to become more comfortable. Nothing much to see here... move along.

A Pen by Nicole Archambault on CodePen.

License.

@MyaElla
MyaElla / destructuring.js
Created February 12, 2018 13:35 — forked from mikaelbr/destructuring.js
Several demos and usages for ES6 destructuring. Runnable demos and slides about the same topic: http://git.mikaelb.net/presentations/bartjs/destructuring
// === Arrays
var [a, b] = [1, 2];
console.log(a, b);
//=> 1 2
// Use from functions, only select from pattern
var foo = () => [1, 2, 3];
@MyaElla
MyaElla / README-Template.md
Created December 15, 2017 10:33 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@MyaElla
MyaElla / MC
Last active May 5, 2017 16:38
tutorial_try2
function Square(props) {
return (
<button className="square" onClick={props.onClick}>
{props.value}
</button>
);
}
class Board extends React.Component {
handleClick(i) {
My recommended learning resources for web development. (Note this may be a little too much.)
This is a good video:
How to Become a Master Web Developer
https://www.youtube.com/watch?v=0yzRW8yqN4M
2016/2017 MUST-KNOW WEB DEVELOPMENT TECH - Watch this if you want to be a web developer
https://www.youtube.com/watch?v=sBzRwzY7G-k 22:51
Two core resources that I use when learning/troubleshooting: