Skip to content

Instantly share code, notes, and snippets.

View ANG13T's full-sized avatar
🪄
Manipulating electrons

Angelina Tsuboi ANG13T

🪄
Manipulating electrons
View GitHub Profile
<<<iDevice ricing guide>>>
Below will be listed some decent themes and tweaks as to what I see fit, if anyone has anything to add make your own updated paste when this one is over a year old. If you have questions I may or may not be in the rizon homescreen channel. Otherwise, you can just go shitpost on r/jailbreak.
***LATEST EDIT: 03:14, 18/03/2017***
<<Useful Links>>
http://www.reddit.com/r/iOSThemes
http://www.reddit.com/r/Jailbreak
https://www.reddit.com/r/jailbreak/wiki/escapeplan
https://docs.google.com/spreadsheets/d/14e9GB-PNhDJuKI799InVFWrUQc-qn-Wd3zRJHKGkKr0/pubhtml

Easy steps to implement social login with linkedin in Angular 7 (Angular 2+)

Note: The entire login process cannot be handled from client side, backend integration required for some steps (Explained at Step-3).

Step-1: Create your app in linkedin developer console

In order to start with linkedin login, we need to first create out app in linkedin.

Note: If you have already created your app, click on Go to My apps, select your app and then follow from step no 1.2

@joeljerushan
joeljerushan / PaginateApp.js
Last active April 13, 2024 06:11
React Pagination with Firebase FireStore - (Prev / Next Pagination)
import React, { useState, useEffect } from 'react'
//i'm using react-bootstrap for UI elements
import { Table, Button, ButtonGroup } from "react-bootstrap";
//firebase config
import firebase from './../../Firebase'
export default function App() {
const [list, setList] = useState([]);
const [page, setPage] = useState(1);