Posts
Wednesday, 13 September 2017
Python (with ~ as)
-------------------------------------------
f= open('test.txt','r')
...
f.close()
--------------------------------------------
with open('test.txt','r') as f:
...
--------------------------------------------
'with open() as ' close the file automatically after the code end.
Wednesday, 19 July 2017
Final Fantasy 14 in Korean Server
In my apartment |
There are 3 servers in Final Fantasy 14 online, Chocobo, Moogle and Carbunkle. I started this game last November in server Odin. In 2017 Feburary, 6 servers were consolidated into 3 servers so I am in Chocobo. I thoroughly enjoy my life in Eorzea, the continent of this game, with my friends.
Before I met this game, I had tried to find the most interesting MMORPG and played several games in Korea such as Maple Story 1, Maple Story 2, Blade and Soul, and so on. However, these games were hard to play as a woman because the misogyny and widespread prejudice about women players. FF14 is not perfect in terms of the gender equality, but it is the best one I have ever known.
Subscribe to:
Posts (Atom)
[ new blog ]
new blog https://jihyo-jeon.github.io/
-
How to run ORB SLAM with your own data in Ubuntu 16.04 1. Take your video at a resolution of 640*480(VGA). 2. Save each frame of your ...
-
How to run ORB SLAM with KITTI Dataset Monocular Examples 1. Download the dataset ( grayscale images ) from http://www.cvlibs.net/da...
-
Find every file which have this error and add the codes below to it: #include <unistd.h> #include <stdio.h> #include <st...