|
I've just been working through the erlang websockets example from Joe Armstrong's blog I'm still quite new to erlang so I decided to write a simple server in python that would help teach me about websockets (and hopefully some erlang by interpreting joe...
Started by MattyW on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For those who are interested this was the solution
import threading import socket def start_server(): tick = 0 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.bind(('localhost', 1234)) sock.listen(100) while True: print 'listening...' csock... .
|
|
I'm in the process of learning Flex, but I learn best by example. Where can I find open source examples of Flex applets? In particular, I'm trying to reproduce the functionality of the JavaScript based Simile timeline, so a timeline example would be sweet...
Started by dacracot on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There is a specific category called "data visualization"..
There are >300 examples maintained by Adobe running in the AIR app.
Check out flexlib.scheduling here
You must check out Tour de Flex .
|
|
I still find the with keyword a bit... enigmatic .
Briefly, with behaves like this:
with (obj) { // do stuff }
This adds obj to the head of the scope chain and then executes the with-block. When the block is finished it removes obj from the head of the...
Started by ntownsend on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
That label control has....
For instance, assume a label control is being modified based on an event / action .
It is simply a way to avoid repetition with properties / methods of an object .
The with statement in JS is like the with statement in say VB.net .
|
Ask your Facebook Friends
|
Where can I find example charts for scrum development?
For example: Burn down or backlog charts.
Started by Blankman on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I find his writing style succinct and concise.
A good example of the burndown chart on his blog .
|
|
I suspect that I'm missing something stupid, so feel free to blast me, but:
I'm reading through Test Driven Development: By Example and one of the examples is bugging me. In chapter 3 (Equality for all), the author creates an equals function in the Dollar...
Started by brian on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Modifier private is class-private ,....
Fundamentally misunderstanding private, Dollar can access any Dollar private method if they are the same class .
Privacy is class-specific, not instance-specific.
Yep, you're fundamentally misunderstanding private.
|
|
I'm trying to run django-cms example. But I think I'm doing something wrong. Can anybody describe by steps, how to run django-cms example?
Started by Gennadich on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Git clone git://github.com/digi604/django-cms-2.0.git $ cd django-cms-2.0
Open example.
|
|
I've now found out what Unit Testing is , does anyone have an example of Unit Testing in C#?
The example must be simple :)
Started by GateKiller on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Ayt, here's they should be a good starting point ... .
I don't understand it.
Testing Framework, here is an Example of NUnit from the top of my head (I know that Is requires,
Thanks for the example, but could you explain how it works please.
|
|
Can you give me an UML example of a website or REST server. Thx!
Started by xpepermint on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When you get around.
If you had an example to work from, UML is too complicated to just copy.
|
|
Does anyone have an example of using the ZoneEdit API? I have looked at the docs and there is not a clear example there. Preferably I would like to interface with ZoneEdit via REST.
Darren
Started by Darren on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It's under the main section...look for "Advanced..." and click on that. .
Http://jensendarren.wordpress.com/2009/07/06/update-zoneedit-nameservers-via-a-restful-api/
zone edit does offer the TXT records.
|
|
What is your single most useful example of using dired mode in Emacs? Any nice tricks? Please one example per answer.
Started by Michiel Borkent on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.koders.com/lisp/fidF2236488FD787692D0859F1D23403E205AEFE048....
I've found it quite useful in the past.
I don't know about 'single most' but the gnus-dired.el module has some nifty utilities to quickly add attachments to mails you're composing .
|