Skip to content

Instantly share code, notes, and snippets.

View hamidabdulmalik's full-sized avatar
💭
I may be slow to respond.

Hamid Abdulmalik Al-Hassan hamidabdulmalik

💭
I may be slow to respond.
  • Integrated Data Africa
  • Sudan
View GitHub Profile

Free O'Reilly books and convenient script to just download them.

Thanks /u/FallenAege/ and /u/ShPavel/ from this Reddit post

How to use:

  1. Take the download.sh file and put it into a directory where you want the files to be saved.
  2. cd into the directory and make sure that it has executable permissions (chmod +x download.sh should do it)
  3. Run ./download.sh and wee there it goes. Also if you do not want all the files, just simply comment the ones you do not want.
@hamidabdulmalik
hamidabdulmalik / ArtistList.js
Created August 15, 2017 11:05 — forked from n1ru4l/ArtistList.js
mobx + apollo-client + react
import React from 'react'
import { observer } from 'mobx-react'
function ArtistList({ uiState: { artistData } }) {
const { data } = artistData;
if ( !data || !data.artists || !data.artists.length ) {
return <div>No artists bruh.</div>
}
const { artists } = data
return (