| 日時: | 2023-01-15 |
|---|---|
| 作: | @voluntas |
| バージョン: | 2023.1 |
| url: | https://voluntas.github.io/ |
この資料は以下の製品の宣伝を含みます。
| FROM python:3.5.1 | |
| MAINTAINER Katy Lavallee <[email protected]> | |
| RUN mkdir -p /dockeripdb/ | |
| ENTRYPOINT ["/usr/local/bin/python"] | |
| WORKDIR /dockeripdb/ | |
| ENV PYTHONPATH /dockeripdb/ | |
| ENV DJANGO_SETTINGS_MODULE dockeripdb.settings |
| 日時: | 2023-01-15 |
|---|---|
| 作: | @voluntas |
| バージョン: | 2023.1 |
| url: | https://voluntas.github.io/ |
この資料は以下の製品の宣伝を含みます。
| using System; | |
| using UnityEngine; | |
| #if UNITY_EDITOR | |
| using UnityEditor; | |
| #endif | |
| public class DraggablePoint : PropertyAttribute {} | |
| #if UNITY_EDITOR |
| ## Unity ## | |
| *.cs diff=csharp text | |
| *.cginc text | |
| *.shader text | |
| *.mat merge=unityyamlmerge eol=lf | |
| *.anim merge=unityyamlmerge eol=lf | |
| *.unity merge=unityyamlmerge eol=lf | |
| *.prefab merge=unityyamlmerge eol=lf |
| """ | |
| Pseudo-random django secret key generator. | |
| - Does print SECRET key to terminal which can be seen as unsafe. | |
| """ | |
| import string | |
| import random | |
| from __future__ import print_function |