Jump to content

L8V2L

Members
  • Posts

    788
  • Joined

  • Last visited

Posts posted by L8V2L

  1. I heard in passing from Facebook when they introduce flux and react of The Mythical Man-Month(that is in passing).There's this book that is coming out or is out on JS, and it's a beauty. It's a visual walk through, through the hold language. I can't wait to be able to read it. I can't remember the name sadly at this time.
  2. The good parts..... I enjoy reading the definitive guide 6 than the good parts... To me it was way to much talking(didn't even finish it). I like information after information after information every word or on some occasion; every other word.And speaking JavaScript... Is okay... I like how they go over(could have went in a little deeper) the whole language for the overview. And later in detail(which I'm still reading, and still reading the pervious book I mention).Also studying on XML, and the likes.

  3. Anything written by Gary Hamel especially Leading the Revolution (1st ed). Subsequent eds are watered down.

    ... Mostly aiming to programming... You heard of(and this is very broad) of that man and I believe his two sons trying to start a slavery revolution in the slavery time. But it didn't go as plain, and they(I think) was gun down in a mine.
  4. what is apply-template? Is it use to call a template element by matching the match attribute context node with it's select attribute context node. Is this true? if so, does the path to the node matter when matching both attribute up(most the xPath syntax be the same for both attribute for the apply-template to be able to call that particular template)? And is this the only way to use apply-template element(can it not stand alone to match a particular node context by absolute path in the target or link to xml document)?

  5. What are these: []? What are your markdown language call? These ([) (])?The... Code you use to style the text in the post, what is the name of the language? And if not a language what is it?

  6. I've mostly worked with MySQL. If I didn't work with MySQL, then it would probably be MariaDB or PostgreSQL. I haven't looked into moving our servers off of MySQL.

    What type of data format they hold their data in? Tubular right?
  7. That code will return an empty object. A return statement is not an expression.Tabular (not tubular) data is any data that would best be displayed inside a table. A database table can be envisioned as a spreadsheet, more or less.

    Is that what you prefer? You a php programmer... What database would you prefer to work with?
  8. It's returning an object literal.

    So this:
    (function(){  return(Boolean(return({}) === return{}))}())();/*return true? ...if it could actually be compare like this.*/
    Is true?Also, can you give me an example of database tubular data? And what SQL database data look like?
  9. With function, I'll get confuse when I see curly braces infront of the return statement:

    "use strict";function(baz){  If(baz === "?"){ //the curly braces    return{foobar:function(baz){return{/*...*/}};  }}//Is that top function the same as:function(baz){  If(baz === "?"){//the parenthese warp/inclose the curly braces    return({foobar:function(baz){     return({/*...*/})}    );   }}
  10. I am using divs... I just styled the elements using display table/table-cell. The only issue I see with absolute positioning is you need to know the exact dimensions of the box, which I don't want...

    ... Yeah that's part of the beauty, and that type of information is obtainable if you need screen side via EMCAScript.
×
×
  • Create New...