click
β Elegant CLI toolkitfire
β Auto-generate CLIs from Python objectsargparse
β Built-in argument parsing (standard library)typer
β Modern CLI with type hints (built onclick
)
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!!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# <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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
div.badge { | |
display: inline-block; | |
border-radius: .75em; | |
font-family: 'Dejavu Sans','Arial'; | |
} | |
div.badge div { | |
display: inline-block; |
NewerOlder