What's new

Closed Ai development

Status
Not open for further replies.

YokaiDesuDesu

Addict
Joined
Jun 23, 2016
Posts
135
Reaction
82
Points
107
I develop an AI that could help me in developing a project
currently i already finished the

* "coding assistant" feature
- Kaya nyang mag sabi if aabot ba ako sa deadline, kailan ako pwedeng mag chill or kelan ako mag huhustle
- kaya nyang gumawa ng code as i speak the right command (combination of "php artisan style" and voice recognition)


so far.. yan palang nagagawa ko ..

i want to ask if meron pa kayong naiisip na feature na pwedeng ilagay to improve my AI ..

Thanks
 
Last edited:
1) unit tester

e.g. state mo yung block (line:file) then ggrab niya yung function definition (or snippet?) then mag-la-launch ng separate process para i-unit test :D maganda kasi kung nag ccode ka habang nag uunit test sa background para mataas yung integrity ng code

P.S. di ko pa na-uunit test vecmath/BLAS library ko (so far di pa naman sumasabog physics simulations, lol)
 
1) unit tester

e.g. state mo yung block (line:file) then ggrab niya yung function definition (or snippet?) then mag-la-launch ng separate process para i-unit test :D maganda kasi kung nag ccode ka habang nag uunit test sa background para mataas yung integrity ng code

P.S. di ko pa na-uunit test vecmath/BLAS library ko (so far di pa naman sumasabog physics simulations, lol)


Yah I get your idea .. actually parang may nakita akong ganitong extension para sa Visual Studio .. Thanks sa idea .. I'll research that
 
Nice po sana mapagaralan naming yan ngayon grade10 hahaaha. Pwede po mag paturo?:):)
 
Last edited by a moderator:
1 great addition if you can is code error suggestions, like for example kung may error ka, mag fefetch agad sia from stackoverflow for possible suggestions for an error without checking for it yourself right? hahah, or if it's a syntax related error, you could add some documentation suggestions based on the project platform language
 
1 great addition if you can is code error suggestions, like for example kung may error ka, mag fefetch agad sia from stackoverflow for possible suggestions for an error without checking for it yourself right? hahah, or if it's a syntax related error, you could add some documentation suggestions based on the project platform language
existing na for most languages and more sophisticated (intellisense code completion). if one decides to do it pa rin, gagawa siya ng static analyzer, ntm iba-iba yung output ng compilers parsers in addition to compiler switches. mas malaking problema yung logic errors like for (unsigned i = 0; i >= 0; --i) {/*never stops*/}, integer overflow, floating point errors, race conditions and memory leaks XD

pero maganda to for example c++ static template solver
 
Status
Not open for further replies.
Back
Top