Forum
A place to discuss topics/games with other webDiplomacy players.
Page 1162 of 1419
FirstPreviousNextLast
Al Swearengen (0 DX)
10 May 14 UTC
(+1)
RFC: The Google Conundrum
A.P.Below
99 replies
Open
NigeeBaby (100 D(G))
11 May 14 UTC
(+1)
Bird with Beard wins Eurovision Song Contest
http://www.bbc.co.uk/news/entertainment-arts-27360310

People just can't be bothered to shave anymore, even for big events like the Eurovision Song Contest, I didn't think the song was that good but the beard I would give top marks.
Well done Austria, I'm sure the right-wingers are outraged by this so every cloud .....
0 replies
Open
PSMongoose (2384 D)
11 May 14 UTC
Dju -> Vostok?
http://webdiplomacy.net/map.php?gameID=139976&turn=17&mapType=large

See the move by Frozen from Dju to Vostok.
Is this a bug or an intended feature?
1 reply
Open
Maniac (189 D(B))
10 May 14 UTC
I may need a sitter
Only in one gunboat game, it won't take up much of sitter's time
4 replies
Open
CommanderByron (801 D(S))
10 May 14 UTC
In Ancient Med who (in your opinion) has the greatest advantage?
Just wondering and wanted to see what everyone else thought.
8 replies
Open
yebellz (729 D(G))
08 May 14 UTC
(+1)
World War I photos
http://www.theatlantic.com/static/infocus/wwi/

An ongoing photo series of the horrific war that our favorite game so delightfully trivializes.
39 replies
Open
ssorenn (0 DX)
09 May 14 UTC
Let's play chess!!!
Anyone want to play some chess. Either long games or fast games. There have to be some players on this site....
41 replies
Open
bo_sox48 (5202 DMod(G))
09 May 14 UTC
Pfff, Ya Think, Mitt?
http://www.latimes.com/business/jobs/la-fi-mo-mitt-romney-minimum-wage-20140509-story.html
1 reply
Open
generalcros (100 D)
10 May 14 UTC
(+1)
1 hour game
Join Win-2
2 replies
Open
mapleleaf (0 DX)
09 May 14 UTC
Apple buying BEATS ELECTRONICS off of Dr. Dre for $3.2 billion.
Tribute to follow....
9 replies
Open
President Eden (2750 D)
09 May 14 UTC
Eden "Time For My Post-Promotion GR Slump" Invitational results are in!
As above below
7 replies
Open
steephie22 (182 D(S))
07 May 14 UTC
(+1)
Staying unhealthy and unique instead of losing 'your touch' while getting better?
I figured something out and while it's not a hard choice at all in my case, it makes me wonder what you would do...
34 replies
Open
krellin (80 DX)
08 May 14 UTC
Settled Science
http://www.washingtontimes.com/polls/2014/may/8/840-page-national-climate-assessment-paints-grim-p/results/
http://www.petitionproject.org/qualifications_of_signers.php

Nothing settled, no consensus. Enough said.
164 replies
Open
SandgooseXXI (113 D)
09 May 14 UTC
Lights Out
Let's get a game going, I've been itching for one. gameID=141409
30 point buy in, WTA, Full Press, Anon.
PM for the password, first come first serve basis
1 reply
Open
murraysheroes (526 D(B))
09 May 14 UTC
Creating a game based on GR
I was 112 in April and I'm 353 overall. I'd like to play with some people ranked higher than me.

The game would be full-press (it's all I really play). Everything else is up for discussion: anon/non-anon, buy-in, PPSC/WTA, and length. Personally, I prefer 3-4 days, but I could do 2 if people wanted. Who's interested?
0 replies
Open
SYnapse (0 DX)
09 May 14 UTC
Your worst game?
1 reply
Open
arborinius (173 D)
07 May 14 UTC
Rules question... kind of
As above, below
9 replies
Open
ReturnoftheKing (0 DX)
08 May 14 UTC
Matlab Code
Anybody here know Matlab and would be willing/have the time to help me write up a really short code?
ReturnoftheKing (0 DX)
08 May 14 UTC
Here's the problem. It's on 2 pages so I had to take 2 screenshots.
http://puu.sh/8Ch8v
http://puu.sh/8Chak
Shirley (0 DX)
08 May 14 UTC
(+1)
Lmao, lazy much? I'm afraid I can't help you though--I'm a chemical engineer and don't remember what little coding I learned 8 years ago.
bihary (2782 D(S))
08 May 14 UTC
(+1)
I know MatLab, I will try to help you after I get home (around 19:00 GMT). I cannot check your screenshots from my office. What is the problem about?
Gobbledydook (1389 D(B))
08 May 14 UTC
(+1)
Ok, I know matlab too.

The most important bit of coding is to think about the logical steps you need to get to your destination. Here you are asked to plot the trajectory of a projectile that is launched and affected by lateral wind. Fortunately for you, the equations you need are already given and you do not need to derive them yourself. The only thing left to do is to implement these equations into matlab code.

With matlab, figure plotting is usually done by taking many data points. The simplest example would be, say I want to plot y=t+2 from t = 1 to 10, then I might have two vectors, one containing your independent variable and one containing your dependent variable.

e.g.
[1 :0.01:10]
will generate your values of t, from 1 to 10, with a step of 0.01.
then you input
y = t+2
and it will add 2 to each of the values and save that vector as y.

Since your average computer is powerful enough to manipulate thousands of points in a few seconds, just choose a small step change like 0.01 or something.

Use the method described above to generate a vector of x, a vector of y, and a vector of z, that correspond to the same time scale.

Now we want to plot the trajectory of the object, and since we are plotting x against y against z, and not against t, you would use the 3 D line plot function, 'plot3()'. Search the matlab documentation online on their website or use google to find out how to use plot3.

You will bump into a problem: the question asks you to plot the trajectory until it hits the ground and you don't know when it hits the ground. There are two ways around this. You could use your hand calculations (hint, when z = 0, you hit the ground), or you could, after testing a time value that exceeds the required time, insert some code to tell matlab to delete the x y z data after you hit the ground.

yebellz (729 D(G))
08 May 14 UTC
(+1)
Do your own homework
Draugnar (0 DX)
08 May 14 UTC
I don't know MatLab, but if I were writing this, I'd set up a while loop instead of a for loop and the while clause would be "Y > 0)".
Draugnar (0 DX)
08 May 14 UTC
I meant Z of course.
abgemacht (1076 D(G))
08 May 14 UTC
There is a matlab tutorial online for literally every problem you will ever need to solve as an undergrad.
abgemacht (1076 D(G))
08 May 14 UTC
Also, there are many technical people here you can help you, but you need to show a little effort. Do you know the pseudocode to solve this and you just don't know MATLAB well? Are you having a problem setting up the problem? Do you not know how to read? Where are you getting stuck?

Just giving us a 2-page question and asking for the answer will not generate helpful responses.
orathaic (1009 D(B))
09 May 14 UTC
42, is the answer 42?
Al Swearengen (0 DX)
09 May 14 UTC
Additionally, I'd like to mention that if you need general coding help, there is a site that I'll endorse:

www.daniweb.com

I've had a very good experience there.


11 replies
Ogion (3882 D)
07 May 14 UTC
2015 Gunboat Tournament format thread
the offical 2014 tournament thread has too much talk about next years' tournament probably. Use this one instead
11 replies
Open
SYnapse (0 DX)
07 May 14 UTC
wall street terminology
Can anyone explain to me what some of these mean:
62 replies
Open
obiwanobiwan (248 D)
06 May 14 UTC
A Third Pary Run in 2016?
Couple years off, obviously, but still, allow me to float a hypothetical--Rand Paul, like his father before him, obviously is a big enough name to run for office...and, like his father, might not be a perfect fit for the big business-happy GOP as a whole. That being said, he's younger and potentially a hotter candidate than his father was, so, let's say Rand Paul runs as a third party candidate vs. Hillary and *insert flavor of the month GOP candidate here.* How would that race go?
61 replies
Open
Shirley (0 DX)
08 May 14 UTC
(+2)
"Game Etiquette"
If you're doing relatively well in your game to begin with, then neighboring countries start to CD, is it expected of you to put in a draw vote or is it ok to go for the win anyways?
9 replies
Open
krellin (80 DX)
08 May 14 UTC
Money In Politics
http://www.reid.senate.gov/koch-facts#.U2uaZKKGfXQ
This is why citizens/businesses should be allowed to spend *whatever they want* in politics. If Harry Reid can use the power of his office to attack **individual citizens and corporations**, then individuals and corporations should be fully enabled to fight back. FUCK HARRY REID.
4 replies
Open
bo_sox48 (5202 DMod(G))
05 May 14 UTC
(+1)
Ursus Existentialis
For your "happy Monday" viewing pleasure, here's a bunch of pictures of bears pondering life.
5 replies
Open
sirdallas (1202 D)
07 May 14 UTC
(+1)
JUST NEED 2 MORE!!! GUNBOAT GLOBAL DOMINATION! JOIN UP!!
http://webdiplomacy.net/board.php?gameID=141052
3 replies
Open
TheSpider (190 D)
07 May 14 UTC
A Few rules questions (Sorry if you'd heard these questions before)
If you perform a support hold on an army that attempted to move to a different location but failed (therefore it hasnt moved), will the support hold fail because the initial orders were not to hold?

Also, if army 1 is supporting army 2 and is being support held by army 3, yet army 1 gets attacked, does his support of army 2 fail or stay since army 1 is being support held by army 3? (sorry if that was confusing)
15 replies
Open
orathaic (1009 D(B))
07 May 14 UTC
Very well put.
https://www.youtube.com/watch?v=NAxMyTwmu_M
1 reply
Open
semck83 (229 D(B))
05 May 14 UTC
Town Council Prayer upheld
There was discussion of this case here when it was argued, so I thought I would point out that the decision has come down.

http://www.scotusblog.com/2014/05/opinion-analysis-prayers-get-a-new-blessing/
37 replies
Open
josunice (3702 D(S))
07 May 14 UTC
(+3)
Thank you, User Mute Function!
He who shall not be named is the only user I have ever muted, and as page loading is very slow on the train, I saw flash before the mute was applied a PM to me from my "friend": "Another asshole that pretends he mutes people....just another fucktard, aren't you?"

Oh, how I miss that witty banter... Full disclosure, I did take off the mute for a minute to grab that nugget to share. Share your best of the worst!
22 replies
Open
krellin (80 DX)
07 May 14 UTC
Obama's Eagle Laser
http://freebeacon.com/blog/the-obama-bird-genocide-is-out-of-control/

If only we could get the Eagles to fly through a little salt and pepper before we roast them. Mmmmm..yummy.
Worth a read if only for the flaming eagle graphic.
29 replies
Open
Page 1162 of 1419
FirstPreviousNextLast
Back to top