Skip to content

Instantly share code, notes, and snippets.

View sugatoray's full-sized avatar
🎯
Focusing

Sugato Ray sugatoray

🎯
Focusing
View GitHub Profile
@sugatoray
sugatoray / gist:2de9ae4e54990ed5e4bccdefb4b8e505
Created June 23, 2021 14:26 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@sugatoray
sugatoray / article_installing_tensorflow-gpu_using_conda.md
Last active May 19, 2023 14:21
Installing Tensorflow GPU + CuDNN + CudaToolkit with Conda

Install Tensorflow-GPU with Conda

I would suggest you to use conda (Ananconda/Miniconda) to create a separate environment and install tensorflow-gpu, cudnn and cudatoolkit. Miniconda has a much smaller footprint than Anaconda. I would suggest you to install Miniconda if you do not have conda already.

Quick Installtion

@sugatoray
sugatoray / howto_share_code_on_social_media_using_images.md
Last active February 27, 2021 18:44
How to share code on social media using images

Sharing code on social media using images

You must have often seen people sharing code in beautiful images.

  • How can you do the same without much effort?
  • Does there exist any service where you could just copy and paste your code and create such images?

YES 💡 🔥 ⚡ https://carbon.now.sh aka Carbon.

You can go to Carbon and just paste your code in the editor and download a beautiful image (svg or png). The following example was created on Carbon.

@sugatoray
sugatoray / streamlit_colab.ipynb
Created November 9, 2020 19:18 — forked from tuffacton/streamlit_colab.ipynb
Colaboratory Notebook that hosts a streamlit app and creates an ngrok https tunnel for access.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This is a collection of books that I've researched, scanned the TOCs of, and am currently working through.  The books are selected based on quality of content, reviews, and reccommendations of various 'best of' lists.

The goal of this collection is to promote mastery of generally applicable programming concepts.

Most topics are covered with Python as the primary language due to its conciseness, which is ideal for learning & practicing new concepts with minimal syntactic boilerplate.

JavaScript & Kotlin are listed in the Tooling section; as they allow extension of VS Code and the IntelliJ suite of IDEs, which cover most development needs.

 

@sugatoray
sugatoray / kaggle_import_dataset_public.ipynb
Last active May 25, 2022 18:47
Kaggle_Import_Dataset_public.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sugatoray
sugatoray / draw_neural_net.py
Last active May 29, 2019 02:26 — forked from craffel/draw_neural_net.py
Draw a neural network diagram with matplotlib!
import matplotlib.pyplot as plt
def draw_neural_net(ax, left, right, bottom, top, layer_sizes):
'''
Draw a neural network cartoon using matplotilb.
:usage:
>>> fig = plt.figure(figsize=(12, 12))
>>> draw_neural_net(fig.gca(), .1, .9, .1, .9, [4, 7, 2])
@sugatoray
sugatoray / future_value_and_loan_installments.ipynb
Last active January 18, 2019 18:58
Future_Value_and_Loan_Installments.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.