Skip to content

Instantly share code, notes, and snippets.

View rifqirosyidi's full-sized avatar
🌝
Learning

Rifqi Rosyidi rifqirosyidi

🌝
Learning
View GitHub Profile
@rifqirosyidi
rifqirosyidi / github-readme-stats-section
Created November 20, 2020 03:25
Github Profile Stats Section
#### Stats:
<!-- thropy -->
<a href="https://rifqirosyidi.github.io">
<p align="center">
<img src="https://github-profile-trophy.vercel.app/?username=rifqirosyidi&column=7&theme=onedark"/>
</p>
</a>
<!-- status codes -->
@rifqirosyidi
rifqirosyidi / github-readme-skill-section
Created November 20, 2020 03:12
Github Profile Skill Section
#### Languages:
<img align="left" alt="Python" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png" />
<img align="left" alt="PHP" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/php/php.png" />
<img align="left" alt="JavaScript" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png" />
<img align="left" alt="Java" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/java/java.png" />
<br/>
#### Frameworks/Platforms:
<img align="left" height="20" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/django/django.png">
<img align="left" height="20" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/laravel/laravel.png
@rifqirosyidi
rifqirosyidi / github-readme-desctiption-section
Created November 20, 2020 02:48
Github Profile Desctiption Section
#### I'm a Fresh Graduate Student, Web Developer
- 🔭 I’m currently working on: Blog & Design, and some Personal Project
- 🌱 I’m currently learning GraphQL, NodeJS, MongoDB and other Javascript Framework. 🤣
- 👯 I’m looking to forward to collaborate.
- ⚡ Fun fact: I eat Food. 🍜
@rifqirosyidi
rifqirosyidi / github-readme-introduction-section
Last active December 3, 2020 08:22
Github Profile Introduction Section
<div align="center">
<h3>Hi there 👋,</h3>
<p>Welcome to My Profile</p>
<p>Hi, I'm Rifqi, I'm a Web Developer. Check <a href="#">ℹ️</a> For More Information.</p>
[![](https://img.shields.io/badge/-@rief.rosyidi-black?logo=medium&style=flat-square)](https://medium.com/@rief.rosyidi)
[![](https://img.shields.io/badge/-rief014-1fa2f2?logo=twitter&style=flat-square&logoColor=white)](https://twitter.com/Rief014)
[![](https://img.shields.io/badge/-rief_rosyidi-1ba94c?logo=hackerrank&style=flat-square&logoColor=white)](https://www.hackerrank.com/rief_rosyidi)
</div>
@rifqirosyidi
rifqirosyidi / elementaryos.md
Created November 5, 2020 05:35 — forked from isneezy/elementaryos.md
elementaryOS | Things To Do After Installing elementary OS Hera(5.1)

First Things First

  • Enable PPA

     sudo apt update
     sudo apt install software-properties-common
  • Install apt-fast

@rifqirosyidi
rifqirosyidi / understanding_redux.js
Last active December 3, 2020 08:24
Learn the basic of Redux in one file.
const {createStore} = Redux;
const initState = {
todos: [],
posts: []
}
function myReducer(state=initState, action) {
if (action.type === 'ADD_TODO') {
return {