diff --git a/.gitignore b/.gitignore index a72b52e..ef316f8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.DS_Store + lib-cov *.seed *.log @@ -13,3 +15,7 @@ results npm-debug.log node_modules + +assets/js/email.js +html/index.html +html/assets/* diff --git a/base.html b/base.html index c1e9b11..5e9f9ad 100644 --- a/base.html +++ b/base.html @@ -1,3 +1,4 @@ + @@ -83,4 +84,6 @@ - + + + diff --git a/html/.empty-placeholder b/html/.empty-placeholder new file mode 100644 index 0000000..e69de29 diff --git a/html/index.html b/html/index.html deleted file mode 100644 index 2aca86a..0000000 --- a/html/index.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - SquatConf.386 - - - - - - - - - -
-
-
- - -

- - - -

- - - -
- - -
- -

The SquatConf Manifest

-

What is SquatConf ?

-

Some of us are lucky enough to attend to some marvellous conventions, made with love by amazing people, they give us some great event with top notch speakers, incredible venues, amazing parties.

-

Theses conferences are pulled out with a huge work by volunteers, some sponsors, so they can cut the cost of theses event to the minimum.

-

the minimum is still a bit of money, money some don't have.

-

We came out with an alternative model for that ... SquatConf

-

This will not be your everyday conference, but it will be a on donation with good talk from amazing people, and you will be able to contribute to it if you want too

-

How can this be possible ?

-

Conference have huge cost to handle, and most of the time ticket prices are not even close to the real cost per attendee, see this transparency report to understand how a 0 profit conference can pull that. Still it costs a pile of cash to do that -Venues, transportation, hotels, food are really nice perks to have, but ...

-

If you held a conference in a Squat,
If the Speakers advance their travel expenses,
If you host them in some Friend's home,
If you tell people to bring some food and
If you know for SURE that the wifi will be shaky ...

-

you can get a 0 cost conference made with love,but a little rougher

-

Where / when ?

-

A Squat in Paris, that will not yet be disclosed for obvious reasons ...

-

It will happened 2014 November 15th .

-

The plan

-

We are a bunch of crazy programers that believe in anarchy and distributed systems, conferences included.

-

We will provide a place, we will provide a context, some talks, and the rest will be up to you ...

-

Who is behind this

-

SquatConf is an Idea that came after LXJS, It was a great conference, and the organisation made an amazing job, and after the final day of the event we ended up dominictarr, joates and I talking about autonomous self driving boats when this idea came to live, now the idea matured and some folks (mmalecki,no9,substack, ...) are in the loop now.

-

Ok so you are a bunch of idealist that will make a 10 ppl conference in a dump ...

-

What you will get out of SquatConf is, in the end literally what you will want put in SquatConf .

-
    -
  • Tickets will be on donation, you want a cheap conf give 0, you want provided food ...
  • -
  • this won't be a 400 ppl conf for sure, but do you NEED that much ppl ?
  • -
  • there are already speakers interested for who you would enjoy spend some bucks :)
  • -
  • you have ideas to improve this thing ? they are gladly welcome.
  • -
  • we plan to make it zero sum ... ie, we will split eventual benefit with attendees, ROI in a squat conference !!!
  • -
-

mhhh I want to talk here !!!

-

Please see here to propose a talk

- -
-
-
- - - - diff --git a/package.json b/package.json index 3efe759..5dedb31 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,8 @@ "description": "website for the squatConf conference", "main": "server.js", "scripts": { - "start": "echo -n 'building.. '; node build.js && node server.js", + "start": "echo -n 'building.. '; npm run build && node server.js", + "build": "browserify src/email.js -o assets/js/email.js && node build.js", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { @@ -22,6 +23,8 @@ }, "homepage": "https://github.com/squatconf/website", "dependencies": { + "browserify": "^5.11.2", + "domready": "^1.0.7", "marked": "^0.3.2", "wrench": "^1.5.8" } diff --git a/server.js b/server.js index 06a93a6..a0bebd8 100644 --- a/server.js +++ b/server.js @@ -32,5 +32,5 @@ process.on('uncaughtException', function (err) { }) server.listen(port) -console.log('['+ process.pid +'] server started on port '+ port) -console.log('(use ctrl+c to stop server)') +console.error('['+ process.pid +'] server started on port '+ port) +console.error('(use ctrl+c to stop server)') diff --git a/src/email.js b/src/email.js new file mode 100644 index 0000000..3195c7e --- /dev/null +++ b/src/email.js @@ -0,0 +1,10 @@ +var ready = require('domready') + +process.nextTick(function() { + ready(function() { + +console.log('ready') + + }) +}) +