Skip to content

Instantly share code, notes, and snippets.

View Ifycode's full-sized avatar
🎯
Always in Collabo mode 🤝

Mary @Ifycode Ifycode

🎯
Always in Collabo mode 🤝
View GitHub Profile
@Ifycode
Ifycode / app.js
Created August 1, 2020 03:22
Embed for Understanding Regular Function & Converting To Arrow Function Article - First project from 15 javascript project free course transcribed to arrow function
'use strict';
const hex = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'A', 'B', 'C', 'D', 'E', 'F'];
const section1 = document.querySelector('.section1');
const btn = document.getElementById('btn');
const color = document.querySelector('.color');
let getRandomNumber = () => {
return Math.floor(Math.random()*hex.length);
}
@Ifycode
Ifycode / my-first-module.md
Created March 17, 2021 10:11 — forked from tmpvar/my-first-module.md
how to create your very first node.js module and publish it to the npm registry

building your first node module

This is pretty simple, lets dive in!

choose a name

Find a name that isn't taken and clearly describes what your module is doing

$ npm view your-first-node-module
@Ifycode
Ifycode / README.md
Last active March 29, 2022 07:12
Just organising my thoughts about how to go about studying... @catlog-shop

Notes on Ifycode's study method

Basic idea

Generally for any course you take/study, to help your "ministry" move forward 😉:

  • You may want to take a full course more than once.
  • You may want to group sections based on what you've come across before or not. Let me just give the groupings the term "study-rounds"... You may want to do this grouping half way through the entire course, or at the end the first study-round of the entire course.
  • You don't want to add another course to the list of what you learning, if your brain still has to do a lot of work to process concepts/things from a previous course (applicable to group-sections as explained in the hints below).

One full course can be divided into group-sections. Every group-section is treated as though it is a separate course. Which technically means a full course that is not divided into any group-sections is equivalent to a typical group-section.

Each group-section can therefore have different number of study-rounds depending on the comple