My Daily Coding Blog

December

December 30 2016

December 29 2016

December 28 2016

December 27 2016

December 26 2016

December 21-25 2016

The week leading up to Christmas was difficult to maintain a strict studying and documenting schedule. I had shopping to do, went to an Eagles tailgate, and visited New York City in the days leading up to Christmas Eve. In no orderly manner I read a variety of blog posts and chapters in books, as well as worked on this site.

I returned to the 13 week JavaScript journey that began my path in August

December 20 2016

December 19 2016

December 15 2016

December 14 2016

December 13 2016

December 12 2016

December 10 2016

  • Created a link to November page on the blog.
  • Completed the November page.
  • December 9 2016

    var fs = require('fs');
    var path = require('path');
    
    var fileDir = process.argv[2];
    var extName = '.' + process.argv[3];
    fs.readdir(fileDir, function(err, files){
        if(err)
            throw err;
        files.forEach(function(file){ //loop through files
            if(path.extname(file) === extName){
        console.log(file); //if extname of the file is == extName, log that file.
            }
        });
    });
            

    December 8 2016

    App Academy seems like the best suited for my situation being that it is in New York City, essentially free ($5000 deposit that they refund + 20% of first year's salary), and has amazing reviews due to a high job placement rate. However, it could be the most selective and difficult to get into.
    Launch Academy also sounds tempting, and searches claim they have a campus in Philadelphia which would immediately put it at the top of my list. But their site is only showing Boston and an online option right now, and $15,000 on top of relocating may not be feasible for me at the moment.
    More research and introspection needed.

    December 7 2016

    //Creating http server
    var http = require('http');
    var server = http.createServer(function(request, response){
        response.writeHead(200, {'content-type': 'text/plain' })
        response.write("empty\n");
        setTimeout(function(){
            response.end("site\n");
        }, 2000)
    });
    server.listen(8000);

    December 6 2016

    December 5 2016

    December 2 2016

    December 1 2016