Recent content by Ivenco

  1. I

    What programming languages do you use?

    Your words applicable to you too: Because you give not very good determination of term 'big data' initially. Also if you know pair of technologies like "hadoop, mapreduce" it does not mean anything. I've seen guys on conference who use these technologies for 30 millions records datasets which...
  2. I

    What programming languages do you use?

    Which data you count in PB? Media content? If not media, then there is only several companies who operate such data volumes. Sometimes I use TB(s) of data volume with billions structured records. I'm not goolge to use PB(s) of structured data. May be you, Gogol?
  3. I

    Remove emails program

    from answers_yahoo_com/question/index?qid=20120323111557AA5uoes
  4. I

    What programming languages do you use?

    I do not know is it enough big data, but in some cases regular mysql/pgsql storages becomes slow for my needs. It starts from about 100M entities of data and more. In these cases I use own engine for storage and fast access to data. It is variations of multithread daemon, based on c++, with...
  5. I

    Looking For PHP Script To Recursively Search & Replace Server Files

    It can be solved in one line with shell script: find ./myFolder -type f -exec sed -i 's/Application/whatever/g' '{}' \; But in php you will need something like this (just sample, test it before use): <?php replaceRec ("DIR_WITH_FILES", "FROM", "TO"); function replaceRec ($dn, $from, $to){...
  6. I

    what is your first programming language that you study

    MK-61 machine codes was first for me. It have space for only 115 commands and 15 registers for data + 4 on stack. ZX spectrum basic and Z80 assembler after it. c/c++/i86 assembler in school (borland/watcom). and php/js/java etc. after web coming
  7. I

    What programming languages do you use?

    PHP/JS for web, C/C++ for fast or big data manipulations.
  8. I

    How to manage users after logging them in with google auth

    Email from profile info - best way to identify google user. Access token will be changed on next login. Just 'json_decode' received data from /o/oauth2/token and use ['email'] field of returned array.
  9. I

    Hello BHW!

    Hi all I'm webmaster with some experience in SEO, also I like creating tools for SEO.
  10. I

    Source code scraper

    You can try PublicWWW - it indexed source codes of 158 millions websites.
Back
Top