Skip to content

Instantly share code, notes, and snippets.

View sayyidisal's full-sized avatar

Sayyid Shalahuddin sayyidisal

  • Jakarta, Indonesia
View GitHub Profile
@sayyidisal
sayyidisal / barcode-mask-example-3.jsx
Created February 24, 2022 02:48 — forked from shahnawaz/barcode-mask-example-3.jsx
react-native-barcode-mask example usage
import React from "react";
import {
Text,
View,
Item,
Icon,
Input,
Button
} from 'native-base';
import { KeyboardAvoidingView } from "react-native";
@sayyidisal
sayyidisal / JsonHelper.java
Created September 20, 2019 04:03 — forked from codebutler/JsonHelper.java
Convert Android JSONObject/JSONArray to a standard Map/List.
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.*;
public class JsonHelper {
public static Object toJSON(Object object) throws JSONException {
if (object instanceof Map) {
JSONObject json = new JSONObject();
@sayyidisal
sayyidisal / webdev_online_resources.md
Created June 19, 2019 10:37 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)

Day 21 - Interactive Dribbble Invite Modal

This week I decided to create Paul Flavius Nechita's Day 21 UI, which is a Dribbble Invite Modal.

A Pen by Andy Tran on CodePen.

License.

Pure CSS Horizontal Accordion

Inspired by Ch3mical.com.

I saw this accordion at Paul Kelley's website. He had used jQuery and images to achieve the effect. I decided to take a CSS3 approach and use elements instead of images. I have use Genericons font for the social networking icons.

A Pen by Ren Aysha on CodePen.

License.

@sayyidisal
sayyidisal / index.html
Created May 2, 2019 08:52 — forked from CodeMyUI/index.html
Tooltips Over SVG Social Icons
<a href="#0" class="c-link c-link--facebook c-tooltip" aria-label="Facebook">
<svg class="c-icon"><use xlink:href="#icon--facebook"></use></svg>
</a>
<a href="#0" class="c-link c-link--twitter c-tooltip" aria-label="Twitter">
<svg class="c-icon"><use xlink:href="#icon--twitter"></use></svg>
</a>
<a href="#0" class="c-link c-link--google c-tooltip" aria-label="Google+">
<svg class="c-icon"><use xlink:href="#icon--google"></use></svg>
@sayyidisal
sayyidisal / index.html
Created May 2, 2019 08:50 — forked from CodeMyUI/index.html
SVG Filter Gooey Share, Social Media Button
<div class="container">
<div class="button">Share</div>
<div class="social twitter"><a href="https://twitter.com/sa_sha26" target="_blank"><i class="fa fa-twitter"></i></a></div>
<div class="social facebook"><i class="fa fa-facebook"></i></div>
<div class=" social google"><i class="fa fa-google-plus"></i></div>
<div class="social youtube"><a href="https://www.youtube.com/channel/UCCATAa8MWoBuH-sR_Jlx29A" target="_blank"><i class="fa fa-youtube"></i></a></div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>