I don't know anymore. I joined this group partly because I wanted to learn
Node.js, but I also knew that other places weren't particularly helpful. I
have a lot of pent up frustration from all these times when I searched for
answers on the internet, and saw nothing but people answering my questions,
and other people's questions, with nothing but links to documentation (and
literally nothing more), without really helping anyone.

And so I came here and found the same crap. And it's like, "what the
hell..."

Now here's where I get confused.. I find that when working with Node.js,
and these particular modules for back end, there are a large number of
predefined variables, which makes sense! But I have a tendency to over
analyze them I suppose.

But you've won. I'll leave.


On Wed, Apr 9, 2014 at 12:05 AM, John Teague <[email protected]> wrote:

> Can everyone please dial it back a bit or at least keep it off the list.
>
> Frank, if you post your code or put it in a gist, a lot of people will be
> happy to help.
>
> Keep Calm and Node On.
>
>
> On Tue, Apr 8, 2014 at 11:02 PM, Conrad Pankoff <[email protected]> wrote:
>
>> Just to clarify, nobody has a problem with you learning. The node
>> community (of which I consider myself a part) loves teaching people and
>> helping people to learn more about node or JavaScript in general.
>>
>> The problem that people (again, including me) have with you is your
>> attitude. You came into this with the typical bravado and false confidence
>> of so many before you who've been ridiculed. "Everything is correct in
>> my app.js file" is a predeclaration of your correctness and infallibility,
>> when every sign points directly to your code being the problem. That's just
>> an example. After people reacted in similar fashion (i.e. somewhat rudely),
>> you launched into an idiotic attack of character ("I'm guessing you're
>> bitter because you're still a virgin"). This is just another example. I'm
>> not saying that these two things alone are the reason that people have been
>> a jerk (back) to you, but just that they're particularly good examples of
>> the overall attitude you display.
>>
>> Just so you know, I'm going to post more image macros every time I see
>> you being a jerk. In that regard, I have a bit of credit saved up from the
>> last thread, so I'll use it to post this one.
>>
>> <http://i.imgur.com/UZfkIrs.png>
>>
>>
>> On Wednesday, 9 April 2014 13:53:46 UTC+10, Frank Z wrote:
>>
>>> Hahahahaha.
>>>
>>> This isn't fair.... I didn't even realize that was the problem.
>>>
>>>
>>> On Tue, Apr 8, 2014 at 11:51 PM, Conrad Pankoff <[email protected]>wrote:
>>>
>>>> <http://i.imgur.com/0NgnE8w.png>
>>>>
>>>>
>>>> On Wednesday, 9 April 2014 13:43:31 UTC+10, Frank Z wrote:
>>>>
>>>>> Can someone actually help me? YES, I am VERY GOOD at JavaScript.
>>>>>
>>>>> Here's the deal, I'm NEW TO BACK END!!!!!!!!!!!!!!!!!!
>>>>>
>>>>> I'm better with very direct and lower level stuff like, you know,
>>>>> actual programming, making variables and loops and what not.. This is all
>>>>> layers of abstractions upon abstractions, Dependencies piled on top of
>>>>> dependencies...
>>>>>
>>>>> Why does mongoDB require mongoose? Why does it need a user declared?
>>>>> How to I get Mongo to talk to Express.js? This exceed the boundaries of
>>>>> JavaScript as a programming language.
>>>>>
>>>>>
>>>>> On Tue, Apr 8, 2014 at 11:39 PM, Luiz Filipe <[email protected]>wrote:
>>>>>
>>>>>>  Focus guys this list is destined to share knowledge about nodejs.
>>>>>> Em 09/04/2014 00:36, "Frank Z" <[email protected]> escreveu:
>>>>>>
>>>>>>  By the way... What is your deal exactly? What makes you assume that
>>>>>>> I don't know JavaScript? I'm guessing you're bitter because you're 
>>>>>>> still a
>>>>>>> virgin? I understand bro, it's cool.
>>>>>>>
>>>>>>> You are better at JavaScript at least, so good for you.
>>>>>>>
>>>>>>> On Tuesday, April 8, 2014 8:26:04 PM UTC-4, Martín Ciparelli wrote:
>>>>>>>>
>>>>>>>> You don't know Javascript and because of that mongodb is confusing?
>>>>>>>> [image: Inline image 1]
>>>>>>>>
>>>>>>>>
>>>>>>>> On Tue, Apr 8, 2014 at 9:20 PM, Jose Luis Rivas <[email protected]
>>>>>>>> > wrote:
>>>>>>>>
>>>>>>>>> Where's "user"?
>>>>>>>>>
>>>>>>>>> You have to write and declare "user" before using it. It has
>>>>>>>>> nothing to
>>>>>>>>> do with mongodb, at all.
>>>>>>>>>
>>>>>>>>> You have to write the method "list" inside user too before trying
>>>>>>>>> to tie
>>>>>>>>> something to that method.
>>>>>>>>>
>>>>>>>>> On 4/8/14, 7:10 PM, Frank Z wrote:
>>>>>>>>> > I installed mongodb through my unbuntu terminal after installing
>>>>>>>>> node.js.
>>>>>>>>> >
>>>>>>>>> > When I run |sudo| |service mongodb start|
>>>>>>>>> > |
>>>>>>>>> > |
>>>>>>>>> > |I get back "|start: Job is already running: mongodb" from the
>>>>>>>>> terminal
>>>>>>>>> >
>>>>>>>>> > So my assumption is that everything is running properly here...
>>>>>>>>> >
>>>>>>>>> > I'm trying to make this todo list from an example in my book,
>>>>>>>>> using
>>>>>>>>> > express.js. I used the package.json file to install the
>>>>>>>>> depenencies:
>>>>>>>>> >
>>>>>>>>> > {
>>>>>>>>> >   "name": "application-name",
>>>>>>>>> >   "version": "0.0.1",
>>>>>>>>> >   "private": true,
>>>>>>>>> >   "scripts": {
>>>>>>>>> >     "start": "node app.js"
>>>>>>>>> >   },
>>>>>>>>> >   "dependencies": {
>>>>>>>>> >     "express": "3.5.1",
>>>>>>>>> >     "jade": "*",
>>>>>>>>> >     "mongoose":"3.8.4"
>>>>>>>>> >   }
>>>>>>>>> > }
>>>>>>>>> >
>>>>>>>>> > Then I run npm install in my terminal...
>>>>>>>>> >
>>>>>>>>> > Everything is correct in my app.js file, all the variables
>>>>>>>>> declared
>>>>>>>>> > properly with mongoose and everything...
>>>>>>>>> >
>>>>>>>>> > I run node app.js and get back:
>>>>>>>>> >
>>>>>>>>> > /home/frankz/Desktop/nodesandbox/connect_to_mongo/app.js:40
>>>>>>>>> > app.get('/users', user.list);
>>>>>>>>> >                   ^
>>>>>>>>> > ReferenceError: user is not defined
>>>>>>>>> >     at Object.<anonymous>
>>>>>>>>> > (/home/frankz/Desktop/nodesandbox/connect_to_mongo/app.js:40:19)
>>>>>>>>> >     at Module._compile (module.js:456:26)
>>>>>>>>> >     at Object.Module._extensions..js (module.js:474:10)
>>>>>>>>> >     at Module.load (module.js:356:32)
>>>>>>>>> >     at Function.Module._load (module.js:312:12)
>>>>>>>>> >     at Function.Module.runMain (module.js:497:10)
>>>>>>>>> >     at startup (node.js:119:16)
>>>>>>>>> >     at node.js:902:3
>>>>>>>>> >
>>>>>>>>> > So what's going on here?
>>>>>>>>> >
>>>>>>>>> > --
>>>>>>>>> > --
>>>>>>>>> > Job Board: http://jobs.nodejs.org/
>>>>>>>>> > Posting guidelines:
>>>>>>>>> > https://github.com/joyent/node/wiki/Mailing-List-Posting-Gui
>>>>>>>>> delines
>>>>>>>>> > You received this message because you are subscribed to the
>>>>>>>>> Google
>>>>>>>>> > Groups "nodejs" group.
>>>>>>>>> > To post to this group, send email to [email protected]
>>>>>>>>> > To unsubscribe from this group, send email to
>>>>>>>>> > [email protected]
>>>>>>>>> > For more options, visit this group at
>>>>>>>>> > http://groups.google.com/group/nodejs?hl=en?hl=en
>>>>>>>>> >
>>>>>>>>> > ---
>>>>>>>>> > You received this message because you are subscribed to the
>>>>>>>>> Google
>>>>>>>>> > Groups "nodejs" group.
>>>>>>>>> > To unsubscribe from this group and stop receiving emails from
>>>>>>>>> it, send
>>>>>>>>> > an email to [email protected]
>>>>>>>>> > <mailto:[email protected]>.
>>>>>>>>> > For more options, visit https://groups.google.com/d/optout.
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> Jose Luis Rivas - http://joseluisrivas.net
>>>>>>>>> Venezuela - GPG: 0xB9AC8C43
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> --
>>>>>>>>> Job Board: http://jobs.nodejs.org/
>>>>>>>>> Posting guidelines: https://github.com/joyent/node
>>>>>>>>> /wiki/Mailing-List-Posting-Guidelines
>>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>>> Groups "nodejs" group.
>>>>>>>>> To post to this group, send email to [email protected]
>>>>>>>>> To unsubscribe from this group, send email to
>>>>>>>>> [email protected]
>>>>>>>>> For more options, visit this group at
>>>>>>>>> http://groups.google.com/group/nodejs?hl=en?hl=en
>>>>>>>>>
>>>>>>>>> ---
>>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>>> Groups "nodejs" group.
>>>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>>>> send an email to [email protected].
>>>>>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>>>>>
>>>>>>>>
>>>>>>>>  --
>>>>>>> --
>>>>>>> Job Board: http://jobs.nodejs.org/
>>>>>>> Posting guidelines: https://github.com/joyent/node
>>>>>>> /wiki/Mailing-List-Posting-Guidelines
>>>>>>> You received this message because you are subscribed to the Google
>>>>>>> Groups "nodejs" group.
>>>>>>> To post to this group, send email to [email protected]
>>>>>>> To unsubscribe from this group, send email to
>>>>>>> [email protected]
>>>>>>> For more options, visit this group at
>>>>>>> http://groups.google.com/group/nodejs?hl=en?hl=en
>>>>>>>
>>>>>>> ---
>>>>>>> You received this message because you are subscribed to the Google
>>>>>>> Groups "nodejs" group.
>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>> send an email to [email protected].
>>>>>>>
>>>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>>>
>>>>>>  --
>>>>>> --
>>>>>> Job Board: http://jobs.nodejs.org/
>>>>>> Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-
>>>>>> Posting-Guidelines
>>>>>> You received this message because you are subscribed to the Google
>>>>>> Groups "nodejs" group.
>>>>>> To post to this group, send email to [email protected]
>>>>>> To unsubscribe from this group, send email to
>>>>>> [email protected]
>>>>>> For more options, visit this group at
>>>>>> http://groups.google.com/group/nodejs?hl=en?hl=en
>>>>>>
>>>>>> ---
>>>>>> You received this message because you are subscribed to a topic in
>>>>>> the Google Groups "nodejs" group.
>>>>>> To unsubscribe from this topic, visit https://groups.google.com/d/to
>>>>>> pic/nodejs/XF9mhLAGepQ/unsubscribe.
>>>>>>  To unsubscribe from this group and all its topics, send an email to
>>>>>> [email protected].
>>>>>>
>>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>>
>>>>>
>>>>>  --
>>>> --
>>>> Job Board: http://jobs.nodejs.org/
>>>> Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-
>>>> Posting-Guidelines
>>>> You received this message because you are subscribed to the Google
>>>> Groups "nodejs" group.
>>>> To post to this group, send email to [email protected]
>>>> To unsubscribe from this group, send email to
>>>> [email protected]
>>>> For more options, visit this group at
>>>> http://groups.google.com/group/nodejs?hl=en?hl=en
>>>>
>>>> ---
>>>> You received this message because you are subscribed to a topic in the
>>>> Google Groups "nodejs" group.
>>>> To unsubscribe from this topic, visit https://groups.google.com/d/
>>>> topic/nodejs/XF9mhLAGepQ/unsubscribe.
>>>> To unsubscribe from this group and all its topics, send an email to
>>>> [email protected].
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>
>>>  --
>> --
>> Job Board: http://jobs.nodejs.org/
>> Posting guidelines:
>> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
>> You received this message because you are subscribed to the Google
>> Groups "nodejs" group.
>> To post to this group, send email to [email protected]
>> To unsubscribe from this group, send email to
>> [email protected]
>> For more options, visit this group at
>> http://groups.google.com/group/nodejs?hl=en?hl=en
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "nodejs" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  --
> --
> Job Board: http://jobs.nodejs.org/
> Posting guidelines:
> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
> You received this message because you are subscribed to the Google
> Groups "nodejs" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/nodejs?hl=en?hl=en
>
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "nodejs" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/nodejs/XF9mhLAGepQ/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to