Forum Topic

Programmers' Thread - Trabaho, Kamustahan Atbp

  • good day. meron ba sa inyo proficient sa powerbuilder?
  • Post deleted #12244619
  • Hi, any info naman about 1902 software development. Thanks
  • Sino po Ruby on Rails dev dito? May freelance work po ako para sa inyo. PM na lang po. Thanks.
  • good day. meron ba sa inyo proficient sa powerbuilder?


    I'm a PB developer, may tanong ka?
  • Hi, magkano po ba salary range for entry level position?
  • Ako lang ba ang ganito? Been working as a programmer for 11 yrs. But now I don't feel like doing it anymore. I want to do other things.
  • Nakaka burnout talaga if matagal na nag ccode. Progress ka into a BA, Architect or a project manager. Or baka negosyo na hanap mo hehe
  • ^ 11 years na din ako sa front-end, wordpress, drupal etc. 9 years of those sa bahay lang or remote me nagwowork. Nag-tatransition ako now to SEO and start my long time dream na podcasting.
  • ^ 11 years na din ako sa front-end, wordpress, drupal etc. 9 years of those sa bahay lang or remote me nagwowork. Nag-tatransition ako now to SEO and start my long time dream na podcasting.


    Podcasting? That's nice. Ano ba balak mong mga topics na ipodcast?
  • @jeff1101

    Buhay Website Developer, Buhay Freelancer, Buhay Gamer na soon to be Daddy na. Hehe
  • Ako lang ba ang ganito? Been working as a programmer for 11 yrs. But now I don't feel like doing it anymore. I want to do other things.


    Been working as a programmer for 27 years now... still want to do it as it is very uplifting solving problems and coding solutions... kaso out of date na ang skills ko and I will need to upgrade.. that is the roadblock I have right now as legacy products pa rin ang sinu-support ko, and now trying to upscale to newer languages...

    FYI, being a programmer opened lots of doors for me.. been to NZ, USA and now Canada, and being a developer I find it guarantees you a high salary and kahit wala kang certs or license and kahit Filipino school ka pa, they don't care about the degree as long as you have the skills... I know lots of people with ivy league degree (commerce, Engineering, etc) sa pinas (UP, Ateneo, etc) who migrate and do menial jobs dahil di naman recognized ang degree nila, pero being a programmer, you just need to show your skills and if they need you, you get a good job agad
  • ^ Amen, but a certification will help, but I totally agree with everything you said
  • you just need to show your skills and if they need you, you get a good job agad

    tanong lang po, what sort of skills are they looking out for when hiring?
  • tanong lang po, what sort of skills are they looking out for when hiring?


    Depende na yan sa company at kung ano ang opening... you would have to look at what the most common requirement, which is sometimes different sa iba't ibang lugar... in our area, probably Java, Python, Angular, Dotnet, Azure/AWS, etc... in Portland, it's probably more on Amazon web services, in Silicon Valley, more likely mga bagong techs...
  • Post deleted #12250610
  • Sino mahusay sa vba programming dito, pls pm me.
  • ^ may alam lang, pero nde siguro mahusay, ilang taon Nakong nde nagvba e
  • ang sakit po sa ulo ng dates sa javascript.

    pano ko malaman if nag 7 days na or nag 35 days na from a specific date.

    vanilla js po
  • @kentsfied, masakit talaga ang dates and time in general. Para mas madali, assume naten na midnight yang 'specific date'. Tapos yung timezone ay UTC. In case lang na hindi mo pa alam yung timezones/utc, I highly suggest na pag-aralan mo muna yon via google/wikipedia/youtube etc., nakakalito kasi ito pag-sinulat mo na sa code.

    Eto solution based on assumptions given:

    function daysSince (dateInUTC) {
    var t1 = dateInUTC.getTime();
    var t2 = Date.now(); // millis since epoch UTC
    var millisPerDay = 24*3600*1000
    return parseInt((t2-t1)/millisPerDay);
    }
    // create date object Sept 25, 2019 Midnight in UTC timezone
    var specificDate = new Date("2019-09-25T00:00:00Z")
    var daysDiff = daysSince(specificDate)
    // check mo na dito kung 7 days na ba or 35

    Tested in my browser (Brave) local console.

    Regarding date creation. Source <click here for link>:

    Time Zones
    When setting a date, without specifying the time zone, JavaScript will use the browser's time zone.

    When getting a date, without specifying the time zone, the result is converted to the browser's time zone.

    In other words: If a date/time is created in GMT (Greenwich Mean Time), the date/time will be converted to CDT (Central US Daylight Time) if a user browses from central US.


    -- edited by sliverchair on Sep 28 2019, 07:45 AM
  • sir @rolandg, sa experience mo, ano salary range ngayon ng senior java developer with 9 years exp? salamat po!
  • @silverchair
    thanks sa reply idol. ako pag nagawa ako ng date ang default ng timezone laging sa singapore. need pa inconvert if gagamitin sa ibang time zone.

    saka, need ko pa ba aralin yung Typescript? Tinignan ko sya kahapon parang javascript lang din pero mas mahigpit. Need talaga ideclare yung mga data-types ganun.

    --
    edit:
    boss silver ano pala itong line na to:
    var millisPerDay = 24*3600*1000

    *ano yung 24, 3600 and 1000?

    -- edited by kentsfield on Sep 29 2019, 01:22 AM

    -- edited by kentsfield on Sep 29 2019, 03:23 AM
  • @silverchair

    no idea dyan sa pinas... dito sa Canada, assuming yung 9 years exp mo is dito sa Canada galing, around $70 to $150K malamang depende din sa skill... kung 9 years sa pinas, pero wala pang experience sa Canada, around $40K to $60K (annually and depende din sa skill), kung tipong bigatin ang skill +$10K to 20K additional ang sweldo. Nasa dating din kasi ng applicant, kung bigatin ang dating, (multinational clients and may north american projects) and mukhang malakas ang speaking skills mo, at impressive ka, you can get more
  • @rolandg, salamat sa info


    @kentsfield

    ano yung 24, 3600 and 1000?


    24 - no of hours in 1 day
    3600 - no of seconds in 1 hour (60 sec times 60 mins)
    1000 - no of milliseconds in 1 minute

    Kaya "millis Per Day", milliseconds yang "millis"

    Regarding pag aaral ng javascript. I highly suggest yung fundamental JavaScript muna, tapos yung ebook ang sundan mo - or - okay din yung sa Coursera or PluralSight.

    Kung mga blog at youtube at mga websites ka kasi, puro basics lang makita mo at mababaw na detalye. Mapapagod ka na niyan pero puro basics lang nakuha mo. Kaya maganda yung complete course or yung book na quality. Pagkatapos mo niyan, gawa ka ng game using JavaScript at HTML5, para ma-isabuhay mo.

    Kapag na-master mo na yung JavaScript, saka mo makikita kung bakit merong TypeScript.

    -- edited by sliverchair on Sep 30 2019, 12:55 PM
  • 1000 - no of milliseconds in 1 minute


    Mali ata ito... 1 millisecond is 1000th of a second.. so 1000 ms is 1 second
  • Data migration from Centera GEN4LP to Isilon... anyone have experience on this? Please message me... ASAP
  • Php developer, proficient in Laravel.
    Develops with security in mind.
    Ortigas area. PM me for details.
    Full time position.
  • Still need 2 more PHP developer. Laravel and codeigniter ang titirahen. Ortigas Area. Day Shift. PM me.

    -- edited by kadaj_bee on Nov 08 2019, 07:03 AM
  • trying my best to learn programming. sa tingin nyo mga ka tpc may edge ako dito? hirap kasi ako mahire companies dahil sa speech problem ko. as programmer naman i think hindi naman kailangan magsalita.
  • trying my best to learn programming. sa tingin nyo mga ka tpc may edge ako dito? hirap kasi ako mahire companies dahil sa speech problem ko. as programmer naman i think hindi naman kailangan magsalita


    Depende yan sa company/project... there are projects that require clear communications like in Agile, you are given minimal specs and it is up to you to build the spec while developing. Kaya during the development phase, kelangan mo constant communication with the client kung ano ang kelangan nila, and rapid prototyping needs quick turnaround.

    Sa project namin, we have daily scrum meetings, detailing kung ano ginawa namin previous day, anong gagawin namin today, what are the impediments and blocks stopping us from our work, etc. 25% of our time is meetings, collaboration, etc...