Recent content by akaneechan

  1. A

    Closed Python or Java?

    python bad: interpreted, slow, developers destroying backwards compatibility between v2 and v3 and autistic syntax good: easy, implemented on most things (ex. django for web, embedded on software, etc...) java good/bad: "compiled" (byte code), jvm good: garbage collection, runs everywhere where...
  2. A

    Closed Anyone here into cybersec?

    Anong section ng cyber sec? Mostly magbasa at manuod at bigyan mo lang ng time, but mostly hands on. Wag matakot mag tanong / mag google kung stuck ka as long as natututo ka in the process at never rely sa spoon feeding. Kung reverse engineering / low level / GH related may pde akong ma link
  3. A

    Closed code error please help ayaw mag run

    sa main source file mo lagyan mo ng int main() { } yan na yung magiging entry point na gagamitin ng linker mo
  4. A

    Closed code error please help ayaw mag run

    walang entrypoint yung main source file mo
  5. A

    Ito ibibigay ko nang free sa lahat Attendance tracker with Payroll

    mas maganda pag sa project repository sites mo to i upload katulad ng github or gitlab bonus rin pde mo idikit sa resume mo yung github mo
  6. A

    Closed SYSTEM CALL

    Windows ba? kung yung system call ay windows api call may tool pang monitor ng api calls, kung gusto mo pragmatically pde mo i hook yung import address table tapos detour mo yung call sa program mo possible rin na mag inline hook kung di exported yung api function
  7. A

    Closed Any 8086 Assembly Language Expert Here?

    wala akong alam na forum pero kung interested ka mag RE may forums katulad ng Guidedhäçking or Unknowncheats. hmu kung gsto mo makipag usap akaneechan#7146
  8. A

    Closed Patulong po pagawa po ng proccess map please.

    pili lang sa isa anyway, kung patulong post mo kung ano na yung nagawa / idea mo tapos revise at improve naten. also anong map? graphical (charts)? graphical draw (dx, ogl)? data structure na map? at kung data structure/gphx draw anong language?
  9. A

    Closed Binary

    di na kailangan yung hexcodes, kunin mo lang yung delta ng ascii (value - 'A') + 10; // Capital hex delta (value - 'a') + 10; // lower case hex delta (value - '0'); // Numerical delta i also advice na wag gumamit ng using namespace std;. its bad coding practice
  10. A

    Closed patulong po c++

    problem is you haven't implemented anything, anyway. dynamic memory implementation incase you need the values separately later #include <stdio.h> // no error checking implemented. hf int main() { int nCount = 0, nTotal = 0, nOdd = 0, nEven = 0, nZero = 0; printf("Entered desired...
  11. A

    Closed patulong po c++

    post code para matulungan ka namin kung anong problem ng code mo at matuto ka sa mistakes mo. no spoonfeeding.
  12. A

    Tutorial Deleted

    ok naman based sa instructions na binigay sayo
  13. A

    Tutorial Deleted

    Should be good :) d ba ni specify kung ano yung welcome message? mas maayos ata pag yung i print mo is related sa pag welcome ng player sa new level instead of "level up"
  14. A

    Tutorial Deleted

    mahirap maintindihan yung point mo. you mean pag mag next level i didisplay yung welcome message? if so ok na pero d maganda yung pagka implement kung player base yan dpat may sariling instance yung player at yung messages ay implemented as callback events assuming na game dev paradigm yung...
Back
Top