Skip to content

Instantly share code, notes, and snippets.

View charudatta10's full-sized avatar
:dependabot:
Lecturer @ NFSU

charudatta charudatta10

:dependabot:
Lecturer @ NFSU
View GitHub Profile
@charudatta10
charudatta10 / GANTimeline.md
Last active February 3, 2025 05:08
GAN Timeline

GAN Timeline

This is a timeline showing the development of Generative Adversarial Networks. It is expected to show the evolutions and connections of ideas and to follow the most recent progress in GAN researches.

The paper list partly refers to the lists in nightrome/really-awesome-gan and zhangqianhui/AdversarialNetsPapers.

Notice: All dates correspond to the initial version of the submissions.

Notice: Papers with "Title of this style" are the key papers in the development of GANs. Any suggestion about if a paper is key paper or not is welcome!!

@charudatta10
charudatta10 / justfile
Last active March 7, 2025 09:58
justfile
# <one line to give the program's name and a brief idea of what it does.>
# Copyright © 2024 Charudatta
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@charudatta10
charudatta10 / start.py
Last active July 16, 2024 14:27
python init script
import os
import subprocess
if input("Do you want create directories? ")== "y":
list_dirs = ["archive", "data", "src", "test"]
for dir in list_dirs:
if not os.path.exists(dir):
print('Creating Directory: ' + dir)
os.makedirs(dir)
with open(os.path.join(dir, "__init__.py"), "w") as f:
// This app initially started from Flavio Copes analytics example
// but diverged quite a bit to generate images as well as track views
// https://flaviocopes.com/count-visits-static-site/
const express = require('express')
const app = express()
// no db - so global var to keep track of count
let counter = 0
@charudatta10
charudatta10 / README-Template.md
Created May 15, 2024 17:29 — forked from DomPizzie/README-Template.md
A simple README.md template

Project Title

Simple overview of use/purpose.

Description

An in-depth paragraph about your project and overview of use.

Getting Started

@charudatta10
charudatta10 / powershell_profile.ps1
Last active March 26, 2024 15:59
PowerShell, profile files are scripts that run automatically when you start a PowerShell session. They allow you to customize your environment, load modules, define aliases, and set preferences.
"""
Certainly! Let's delve into the details of **PowerShell profile files**, their relevance in the context of **Git**, and how they can be used effectively for **Gist READMEs**.
## **PowerShell Profile Files**
In PowerShell, profile files are scripts that run automatically when you start a PowerShell session. They allow you to customize your environment, load modules, define aliases, and set preferences. There are different types of profile files, each serving a specific purpose:
1. **`$PROFILE`**: This is the most common profile file. It is specific to the current user and host (console or ISE). You can find it by running `$PROFILE` in your PowerShell session. Common locations include:
- **Current User, Current Host**: `$Home\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1`

Reusable embeddable HTML components

Banner

This is my fancy banner! 🐱 🍀

Buttons \ Badges

.champ-moderator-badge-inner-wrapper {
position: relative;
.champ-moderator-badge-icon {
background: #333333;
color: white !important;
border-radius: 50px;
position: absolute;
right: 10px;
top: -5px;
font-size: 10px;
@charudatta10
charudatta10 / git-badges.html
Created March 19, 2024 05:33 — forked from soundstorm/git-badges.html
Pure CSS Git-Badges
<html>
<head>
<style>
div.badge {
display: inline-block;
border-radius: .75em;
font-family: 'Dejavu Sans','Arial';
}
div.badge div {
display: inline-block;
@charudatta10
charudatta10 / wikilinks-to-markdown-links.sh
Created January 29, 2023 19:29 — forked from CharlesSchimmel/wikilinks-to-markdown-links.sh
Convert WikiLinks to Markdown Links