https://github.com/unicar9/bits-bytes-notes
📝Today I learned
https://github.com/unicar9/bits-bytes-notes
study-notes
Last synced: 7 months ago
JSON representation
📝Today I learned
- Host: GitHub
- URL: https://github.com/unicar9/bits-bytes-notes
- Owner: unicar9
- Created: 2018-09-16T05:16:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-24T04:39:18.000Z (over 6 years ago)
- Last Synced: 2025-03-02T06:26:42.238Z (10 months ago)
- Topics: study-notes
- Homepage:
- Size: 109 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bits-bytes-notes
[](https://forthebadge.com)
Quick notes about anything related to coding world that I learn on a daily basis.
Every note will consist of a short and concise explanation with a code snippet as an example.
---
# Categories
- [bits-bytes-notes](#bits-bytes-notes)
- [Categories](#categories)
- [CSS](#css)
- [React](#react)
- [React Native](#react-native)
- [Creative Coding](#creative-coding)
- [Git](#git)
- [Functional JavaScript](#functional-javascript)
- [Bash](#bash)
- [Uncategorised](#uncategorised)
---
## CSS
- [:not selector tricks](/CSS/not-selector-tricks.md)
- [How to fade out an element](/CSS/fade-out-element.md)
- [How to wrap words by comma not by space](/CSS/wrap-words-by-comma.md)
## React
- [How to comment in React JSX](/react/comment-in-jsx.md)
- [Initialising state based on props](/react/initialising-state-based-on-props.md)
- [Map an array into 2 column grid layout](/react/map-array-two-column.md)
- [Listen for window resize](/react/listen-window-resize.md)
- [Listen for keypress in React](/react/listen-keypress.md)
- [Fix warning: A component is changing an uncontrolled input of type text to be controlled](/react/component-changing-uncontrolled-to-be-controlled.md)
## React Native
- [React Native ellipsis on text component](/react-native/ellipsis-on-text.md)
- [Disable the Yellow Box in React Native](/react-native/disable-yellow-box.md)
- [Draw a horizontal divider in React Native](/react-native/horizontal-divider.md)
- [Get screen height and width](/react-native/screen-height-width.md)
- [Horizontally scrollable cards/content snap to center](/react-native/horizontal-scrollview-snapping.md)
- [Custom styling unordered list in React Native](/react-native/custom-style-bullet-list.md)
- [Fixed header using relative position React Native](/react-native/relative-position-header.md)
- [Detect scroll to bottom of ScrollView/FlatList/SectionList component](/react-native/scroll-to-bottom.md)
## Creative Coding
- [P5.js template](/creative-coding/p5js-template.md)
- [three.js template](/creative-coding/threejs-template.md)
## Git
- [Rename git branch locally or remotely](/git/rename-git-branch.md)
## Functional JavaScript
- [Map an array of primitive type values into an array of objects](/functional-javascript/map-array-into-array-of-objects.md)
- [Map an object into array of object using both its keys and values](/functional-javascript/map-object-into-array-with-keys-and-values.md)
## Bash
- [Create multiple files with sequential numbers](/bash/create-sequential-files.md)
## Uncategorised
- [Debugger steps](/uncategorised/debugger-steps.md)