Skip to content

Instantly share code, notes, and snippets.

View eff-kay's full-sized avatar
😀

faizan khan eff-kay

😀
View GitHub Profile
@eff-kay
eff-kay / cuda_10.0_installation_on_Ubuntu_18.04
Created March 9, 2020 03:56 — forked from Mahedi-61/cuda_11.8_installation_on_Ubuntu_22.04
CUDA 10.0 installation for Ubuntu 18.04 LTS
#!/bin/bash
## This gist contains step by step instructions to install cuda v10.0 and cudnn 7.5 in Ubuntu 18.04
### steps ####
# verify the system has a cuda-capable gpu
# download and install the nvidia cuda toolkit and cudnn
# setup environmental variables
# verify the installation
###
@eff-kay
eff-kay / ast.py
Created April 7, 2020 00:42 — forked from buriy/ast.py
# from py2.6 distr
# -*- coding: utf-8 -*-
"""
ast
~~~
The `ast` module helps Python applications to process trees of the Python
abstract syntax grammar. The abstract syntax itself might change with
each Python release; this module helps to find out programmatically what
@eff-kay
eff-kay / API design
Created June 24, 2021 02:36
Joshua Bloch: Bumper-Sticker API Design
All programmers are API designers:
Good programs are modular, and intermodular boundaries define APIs. Good modules get reused.
APIs can be among your greatest assets or liabilities:
Good APIs create long-term customers; bad ones create long-term support nightmares.
Public APIs, like diamonds, are forever:
You have one chance to get it right so give it your best.
APIs should be easy to use and hard to misuse:
@eff-kay
eff-kay / about.md
Created October 18, 2021 00:18 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer