Skip to content

Instantly share code, notes, and snippets.

View Frankie-B's full-sized avatar
💭
New Day New Code

Frankie Bukenya Frankie-B

💭
New Day New Code
  • The Netherlands
View GitHub Profile
@Frankie-B
Frankie-B / webdev_online_resources.md
Created June 24, 2020 05:53 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@Frankie-B
Frankie-B / The ultimate gitignore!
Created March 11, 2021 14:10 — forked from KSkodje/The ultimate gitignore!
The ultimate gitignore!
# Created by Adamino @ https://www.gitignore.io/api/java,android,netbeans,intellij,windows,csharp,wordpress,drupal,sass,linux,bluej,unity,unrealengine,grunt,yeoman,adobe,c++,bower,coffeescript,composer,eclipse,jetbrains,magento,joomla,laravel,lua,meteorjs,node,kobalt,python,objective-c,rails,swift,visualstudio,umbraco,visualstudiocode,webstorm,xamarinstudio,xcode,sublimetext
### Eclipse ###
.metadata
bin/
tmp/
*.tmp
*.bak
@Frankie-B
Frankie-B / React .gitignore
Created March 11, 2021 14:16 — forked from vidaaudrey/React .gitignore
React Gitignore
node_modules
ncp-debug.log
npm-debug.log
bower_component
src/config/configSec.js
.DS_STORE
node_modules
*~
*.pyc
@Frankie-B
Frankie-B / array-methods.js
Created March 1, 2022 16:00 — forked from rohailtaha/data.js
Reusable javascript code snippets
// Sort Records(objects) In Arrays By Some Key.
// @PARAMS:
// data => array of objects to sort
// key => object key on which sort is based.
// order => DESC | ASC
// limit => number of objects to return in resulting array.
// @RETURN:
// The sorted array.
export const sort = (data, key, order, limit = null) => {
limit = limit ? limit : data.length;
@Frankie-B
Frankie-B / CodeSnippets
Created March 1, 2022 16:02 — forked from magicpotion/CodeSnippets
Code Snippets
Code Snippets
/* http://coding.smashingmagazine.com/2013/08/20/semantic-css-with-intelligent-selectors/ */
[rel="prev"] {
/* styling for "previous links" */
}
[role="button"] {
/* semantic CSS for modified elements that are announced as “button” in assistive technologies */
}
@Frankie-B
Frankie-B / frontendDevlopmentBookmarks.md
Created March 1, 2022 16:08 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@Frankie-B
Frankie-B / markdown-cheatsheet.md
Created March 1, 2022 16:10 — forked from jonschlinkert/markdown-cheatsheet.md
A better markdown cheatsheet.
@Frankie-B
Frankie-B / chrome-dev-tools-cheatsheet.js
Created March 1, 2022 16:10 — forked from jahe/chrome-dev-tools-cheatsheet.js
Chrome Dev Tools Cheatsheet
// Switch Colour Representation (HEX -> HSL -> ...)
Shift + Click on the colourpicker
// Search DOM-Nodes by CSS classnames
Cmd + F -> ".hidden p"
// Jump to a specific line
Cmd + P -> ":39"
// Open a File by searching for the filename
// Overwrite settings by placing them into your settings file.
{
//-------- Editor configuration --------
// Controls the font family.
"editor.fontFamily": "",
// Controls the font size.
"editor.fontSize": 0,