Anonymous
True
Anonymous
But to b safe lemme play through the game
Anonymous
Wat of games like dragon mania
deltanicola
Welcome!
norman
tq👍😁
deltanicola
Welcome!
Anonymous
Your welcome
Maksym
Hey dudes
Maksym
Is there any who alive?
Maksym
It little more better
Maksym
How about C++17?
Maksym
Anybody started using the standard?
Asdf
just in experiments
Maksym
Great
Asdf
Great
not much, I lost a job with c++14 few years ago, and currently I'm trying to keep the knowlege
Maksym
Understand, I lose c++ work a year ago, and now work with python, but trying to use c++ in small projects using qt
Maksym
not much, I lost a job with c++14 few years ago, and currently I'm trying to keep the knowlege
Maksym
What you using now?
Asdf
python + django + sphinx
Asdf
the next project is java + opencv (face recognition) (maybe c++ to improve speed)
Maksym
Cool, opencv it is really interesting. I tested convolution neutral network for recognise my cat.
ENOENT
python + django + sphinx
interesting that you mention sphinx huh
Asdf
interesting that you mention sphinx huh
I like sphinx search engine :)
ENOENT
we are both speaking about the sphinx documentation generator right?
Asdf
http://sphinxsearch.com/
Maksym
He written on c++ and you use it in python?
ENOENT
He written on c++ and you use it in python?
anything performance critical is
Asdf
the GUI is not performance trouble, and the search engine is c++, the best performance on search engines
ENOENT
it's pretty simple to write extensions for python, you basically just write normal c/cpp and then sprinkle some type conversions and macros around the place to make it work
ENOENT
or you use Cython which allows you to write c/cpp with python-similar syntax
Asdf
currently I call the services of sphinx, like connect ti MySQL database
Maksym
Understood.
ENOENT
well of course you try to make as much python as possible
ENOENT
easier for everyone and works on all implementations
Anonymous
your welcome
Anonymous
thanks
Anonymous
Hi friends, can you help me solve a question? How to identify the type of file (plain text, directory, etc) in C language in GNU / Linux?
deltanicola
Welcome!
Anonymous
Hi friends, can you help me solve a question? How to identify the type of file (plain text, directory, etc) in C language in GNU / Linux?
#include <sys/types.h> #include <sys/stat.h> #include <unistd.h> int is_regular_file(const char *path) { struct stat path_stat; stat(path, &path_stat); return S_ISREG(path_stat.st_mode); }
Anonymous
int isDirectory(const char *path) { struct stat statbuf; if (stat(path, &statbuf) != 0) return 0; return S_ISDIR(statbuf.st_mode); }
Anonymous
thanks 👍
deltanicola
Welcome!
Ben'omi
Welcome!
Oh thanks 😀
deltanicola
Welcome to all!
Theophile
Namasté!!
deltanicola
Ahah
deltanicola
Welcome!
Theophile
Thanks a lot
Theophile
I'm a C++ programmer and game developer
Theophile
Cool
Theophile
You do 3D modeling?
deltanicola
Yep
deltanicola
You do 3D modeling?
I also do 3d modelling to make rendered images to use as prints for t-shirts
Stanislav
https://github.com/openhomm/openhomm this is my one and only game project :)
Stanislav
but i dont enough time to continue
Theophile
but i dont enough time to continue
It's just about making it happen. Who knows how things might turn out in the future.
Stanislav
yep, nobody want to help me with this project :)
Stanislav
since 2009
Theophile
Woooow
deltanicola
Really?
deltanicola
What a pity
Stanislav
Really?
yes, u can see commits
deltanicola
Ouw
Stanislav
Ouw
m? :)
deltanicola
I'd like to make a game
Stanislav
deltanicola
Ehhh if I'd have the time
Stanislav
but openhomm is not game, it's more like map viewer with fullscreen support for now
deltanicola
Oh
deltanicola
I see
Stanislav
i think i need some motivation to continue like some people who interested and can help with this :)
deltanicola
When I'll free myself, maybe I'll contact you
Stanislav
i found some interesting sources on github