Comic Cune

Comic Cune (コミックキューン, Comic Cune) is a Japanese seinen manga magazine which mainly serializes 4-koma manga published by Media Factory. The magazine originally began to be published as a supplement 4-koma magazine in Comic Alive on October 2014 but in June 2015, the publisher announced that Comic Cune would be its own magazine instead of just a supplement for Comic Alive, with the magazine debuting in August 27, 2015 with the titles it had before.[1]

Comic Cune
Cover of Comic Cune featuring Tonari no Kyūketsuki-san
CategoriesSeinen manga
FrequencyMonthly
PublisherMedia Factory
First issueAugust 27, 2015
CountryJapan
LanguageJapanese
WebsiteComic Cune

Serialized titles

Anime adaptations

gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
gollark: Coming in about 3 minutes.
gollark: Use osmarksbuildsystem™.

References

  1. Loo, Egan. "Comic Alive to Launch 4-Panel Manga Magazine Spinoff". Anime News Network. Retrieved 2 January 2019.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.