#rgg #yakuza #likeadragon #龍が如く #majimagoro #真島吾朗 #mymod
#rgg #yakuza #likeadragon #龍が如く #majimagoro #真島吾朗 #mymod
That's usually good. But what if you want to? (Common in development and debugging.)
from importlib import reload
reload(mymod)
This forces the reload.
That's usually good. But what if you want to? (Common in development and debugging.)
from importlib import reload
reload(mymod)
This forces the reload.
Check sys.path, a list of directory names (strings) where it searches.
By default:
- Current dir (empty string)
- Standard library
- site-packages
The first match wins, which can lead to unpleasant surprises — be careful!
Check sys.path, a list of directory names (strings) where it searches.
By default:
- Current dir (empty string)
- Standard library
- site-packages
The first match wins, which can lead to unpleasant surprises — be careful!
ekagames.lifecycle.jp/skyrim/mymod...
ekagames.lifecycle.jp/skyrim/mymod...
"import mymod" tells Python to find mymod.py in each dir in sys.path.
The first directory is '' (the empty string) -- i.e., the directory where the program is running (i.e., not where it was defined).
へ スカイリム🏔️❄️
ekagames.lifecycle.jp/skyrim/mymod...
#スカイリム
へ スカイリム🏔️❄️
ekagames.lifecycle.jp/skyrim/mymod...
#スカイリム
ということで、フォロワー拡張MODの Simple Follower Extension AE をアップデートしました。MCMに各フォロワーのレベルを表示するとともに、プレイヤーとレベル同期させることができるようになります。加えて、他のMODで表示される会話に対する互換性を向上させました。
ekagames.lifecycle.jp/skyrim/mymod...
#スカイリム
ということで、フォロワー拡張MODの Simple Follower Extension AE をアップデートしました。MCMに各フォロワーのレベルを表示するとともに、プレイヤーとレベル同期させることができるようになります。加えて、他のMODで表示される会話に対する互換性を向上させました。
ekagames.lifecycle.jp/skyrim/mymod...
#スカイリム
eka.snow-flowers.com/skyrim/mymod...
#Skyrim
eka.snow-flowers.com/skyrim/mymod...
#Skyrim
自作のフォロワー管理MODは、シンプルな Simple Follower Extension AE、多機能な FOMS という2方向での展開となりました。
#スカイリム
eka.snow-flowers.com/skyrim/mymod...
自作のフォロワー管理MODは、シンプルな Simple Follower Extension AE、多機能な FOMS という2方向での展開となりました。
#スカイリム
eka.snow-flowers.com/skyrim/mymod...
#Skyrim
eka.snow-flowers.com/skyrim/mymod...
#Skyrim
eka.snow-flowers.com/skyrim/mymod...
module MyMod : sig
type t
val pp : fmt -> t -> unit
val show : t -> string
val value : t -> string
val to_string : t -> string
end
which one is:
* for debugging?
* for serialization/persistance?
* for presenting to users?
go!
module MyMod : sig
type t
val pp : fmt -> t -> unit
val show : t -> string
val value : t -> string
val to_string : t -> string
end
which one is:
* for debugging?
* for serialization/persistance?
* for presenting to users?
go!