├── .gitignore ├── README.md ├── Update.md ├── dev └── README.md ├── devnote ├── 2020-05-11_안녕하세요 개발진입니다_winterlood.md └── 2020-05-11_안녕하세요 서버 관련 공지입니다_winterlood.md ├── img ├── blacklogo.png ├── contributors.png ├── devstu-howto.JPG ├── devstu-question.JPG ├── devstu_text_logo_empty.png ├── howToPage.PNG ├── img_upload_with_imgserver.png ├── img_way_1.png ├── mainPage.PNG ├── question_show_with_imgserver.png ├── stack.PNG ├── title_logo.png └── title_logo2.png └── server-notice.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/java,java-web,intellij 3 | # Edit at https://www.gitignore.io/?templates=java,java-web,intellij 4 | 5 | ### Intellij ### 6 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 7 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 8 | 9 | # User-specific stuff 10 | .idea/**/workspace.xml 11 | .idea/**/tasks.xml 12 | .idea/**/usage.statistics.xml 13 | .idea/**/dictionaries 14 | .idea/**/shelf 15 | 16 | # Generated files 17 | .idea/**/contentModel.xml 18 | 19 | # Sensitive or high-churn files 20 | .idea/**/dataSources/ 21 | .idea/**/dataSources.ids 22 | .idea/**/dataSources.local.xml 23 | .idea/**/sqlDataSources.xml 24 | .idea/**/dynamic.xml 25 | .idea/**/uiDesigner.xml 26 | .idea/**/dbnavigator.xml 27 | 28 | # Gradle 29 | .idea/**/gradle.xml 30 | .idea/**/libraries 31 | 32 | # Gradle and Maven with auto-import 33 | # When using Gradle or Maven with auto-import, you should exclude module files, 34 | # since they will be recreated, and may cause churn. Uncomment if using 35 | # auto-import. 36 | # .idea/modules.xml 37 | # .idea/*.iml 38 | # .idea/modules 39 | # *.iml 40 | # *.ipr 41 | 42 | # CMake 43 | cmake-build-*/ 44 | 45 | # Mongo Explorer plugin 46 | .idea/**/mongoSettings.xml 47 | 48 | # File-based project format 49 | *.iws 50 | 51 | # IntelliJ 52 | out/ 53 | 54 | # mpeltonen/sbt-idea plugin 55 | .idea_modules/ 56 | 57 | # JIRA plugin 58 | atlassian-ide-plugin.xml 59 | 60 | # Cursive Clojure plugin 61 | .idea/replstate.xml 62 | 63 | # Crashlytics plugin (for Android Studio and IntelliJ) 64 | com_crashlytics_export_strings.xml 65 | crashlytics.properties 66 | crashlytics-build.properties 67 | fabric.properties 68 | 69 | # Editor-based Rest Client 70 | .idea/httpRequests 71 | 72 | # Android studio 3.1+ serialized cache file 73 | .idea/caches/build_file_checksums.ser 74 | 75 | ### Intellij Patch ### 76 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 77 | 78 | # *.iml 79 | # modules.xml 80 | # .idea/misc.xml 81 | # *.ipr 82 | 83 | # Sonarlint plugin 84 | .idea/**/sonarlint/ 85 | 86 | # SonarQube Plugin 87 | .idea/**/sonarIssues.xml 88 | 89 | # Markdown Navigator plugin 90 | .idea/**/markdown-navigator.xml 91 | .idea/**/markdown-navigator/ 92 | 93 | ### Java ### 94 | # Compiled class file 95 | *.class 96 | 97 | # Log file 98 | *.log 99 | 100 | # BlueJ files 101 | *.ctxt 102 | 103 | # Mobile Tools for Java (J2ME) 104 | .mtj.tmp/ 105 | 106 | # Package Files # 107 | *.jar 108 | *.war 109 | *.nar 110 | *.ear 111 | *.zip 112 | *.tar.gz 113 | *.rar 114 | application.properties 115 | build.gradle 116 | WebSecurityConfig.java 117 | CreateQuestion.java 118 | RandMaker.java 119 | 120 | 121 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 122 | hs_err_pid* 123 | 124 | ### Java-Web ### 125 | ## ignoring target file 126 | target/ 127 | 128 | # End of https://www.gitignore.io/api/java,java-web,intellij 129 | dev/front-end/dev_student/.firebase/hosting.YnVpbGQ.cache 130 | *.cache 131 | *.cache 132 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | ## 4 |

5 | GitHub issues 6 | GitHub closed issues 7 | Bitbucket open pull requests 8 | GitHub milestones 9 | GitHub contributors 10 |

11 | 12 | **

지식을 지식으로 갚는, 한국 대학생 개발자 커뮤니티

** 13 |

14 | 15 | 16 |

17 | 18 | 19 | 20 | 21 |

공식 창구

22 | 23 | 공식 이메일 : 24 | 25 | 대표 이메일 : 26 | 27 | 28 |

긴급 공지 알림 사용법

29 |

30 | 서버의 긴급 공지사항은 31 | 해당 repos의 root/server-notice.json 파일을 수정함으로써, 발생시킬 수 있습니다 32 |

33 | 34 | ```json 35 | { 36 | "status":true, 37 | "notice":"어떤 문제가 발생하였고, 원인이 무엇인지 (또는 파악중인지)", 38 | "sDate":"2020-07-30:18:26", 39 | "eDate":"2020-07-30:20:26", 40 | "errors":["현재 이용할 수 없는 기능1","현재 이용할 수 없는 기능2"] 41 | } 42 | ``` 43 | 44 |

(2020-05-22 ~ )보안상의 이유로 private repos 에서 작업합니다.

45 | -------------------------------------------------------------------------------- /Update.md: -------------------------------------------------------------------------------- 1 | 2 | # Devstudent Update log 3 | 4 | GitHub issues 5 | GitHub closed issues 6 | Bitbucket open pull requests 7 | GitHub milestones 8 | GitHub contributors 9 | 10 | 11 | # 2020-05-04 12 | 13 | **WEB** 14 | - Sites Header 변경 15 | 16 | **SERVER** 17 | - Https 적용 18 | 19 | # 2020-05-03 20 | 21 | **WEB** 22 | - Sites Header 변경 23 | 24 | **SERVER** 25 | - Https 적용 26 | -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/dev/README.md -------------------------------------------------------------------------------- /devnote/2020-05-11_안녕하세요 개발진입니다_winterlood.md: -------------------------------------------------------------------------------- 1 | 오늘은 여러가지 이야기를 해보려고 합니다 2 | 사이트를 개설하고 처음으로 공지를 작성해 보네요 3 | &&& 4 | 5 | ## 안녕하세요 개발진입니다! 6 | -------------------------------------------------------------------------------- /devnote/2020-05-11_안녕하세요 서버 관련 공지입니다_winterlood.md: -------------------------------------------------------------------------------- 1 | 🤴 2020-05-10일 서버가 잠시 마비되는 현상이 있었습니다 2 | 이에 정상적인 사이트 이용이 불가하셨을 회원님들에게 사과드립니다 3 | &&& 4 | 5 | ## 서버 관련 공지 6 | 7 | 입니다. 8 | -------------------------------------------------------------------------------- /img/blacklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/blacklogo.png -------------------------------------------------------------------------------- /img/contributors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/contributors.png -------------------------------------------------------------------------------- /img/devstu-howto.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/devstu-howto.JPG -------------------------------------------------------------------------------- /img/devstu-question.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/devstu-question.JPG -------------------------------------------------------------------------------- /img/devstu_text_logo_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/devstu_text_logo_empty.png -------------------------------------------------------------------------------- /img/howToPage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/howToPage.PNG -------------------------------------------------------------------------------- /img/img_upload_with_imgserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/img_upload_with_imgserver.png -------------------------------------------------------------------------------- /img/img_way_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/img_way_1.png -------------------------------------------------------------------------------- /img/mainPage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/mainPage.PNG -------------------------------------------------------------------------------- /img/question_show_with_imgserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/question_show_with_imgserver.png -------------------------------------------------------------------------------- /img/stack.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/stack.PNG -------------------------------------------------------------------------------- /img/title_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/title_logo.png -------------------------------------------------------------------------------- /img/title_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/22hours/DevStudent/5e5093b8313673038ab5b531d8cb25c70ade95f3/img/title_logo2.png -------------------------------------------------------------------------------- /server-notice.json: -------------------------------------------------------------------------------- 1 | { 2 | "status":false, 3 | "notice":"웹 서버 및 디자인 리뉴얼 중 입니다.", 4 | "sDate":"2021-03-17:14:22", 5 | "eDate":"2020-05-17:00:00", 6 | "errors":["모든 기능"] 7 | } 8 | --------------------------------------------------------------------------------