Jump to content

Endy0816

Senior Members
  • Posts

    3643
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Endy0816

  1. They cannot make you, but you can freely choose.
  2. Endy0816

    Zoo Tragedy

    I was thinking at all airports terminals and as you drive into the State. :| More serious, many lakes do include signs along these lines, if not quite so blatant. Attacks are rare, but most of the attacks have been in Florida. Disney should look at redoing the area and placing signs, but equally you are just as likely encounter one while playing golf or walking to the pool. Generally they are easy to live with, but gotta give them their space.
  3. Endy0816

    Zoo Tragedy

    "No Swimming(or Wading). Risk of: Alligators, Snakes, Brain Eating Amoebas and Boaters in water." If is is a ditch or larger it has potential to host one or more alligators. Just be aware if you ever come visit.
  4. Endy0816

    Zoo Tragedy

    There are alligator fences, though they are pretty unsightly and could impact the allowed uses. Even then you need to continue the fence on land far enough that something which considers attempting to climb vertical walls reasonable, becomes bored. What would probably work is modifying the shoreline's slope. Most here are more 90 degrees than something that gentle.
  5. Too much happening nearby :/

  6. Endy0816

    Zoo Tragedy

    Wall?
  7. https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events Somewhat ironically made for SVG originally.
  8. Endy0816

    Zoo Tragedy

    They start out small and have no problem moving on land. https://www.youtube.com/watch?v=7Qp_bUYPrTg Best you can do is limit human access. Even then the gator itself may not be likewise restricted. I'm not sure a leash would help, though I've never read anything about them taking a leashed animal in the first place.
  9. If it works I wouldn't worry about it, but meant something along these lines. Similar to what Sensei mentioned using CSS for absolute positioning. <!doctype html> <html lang="en"> <head> <style> body { background-color: blue; } canvas { position: absolute; left: 100px; top: 50px; } </style> </head> <body> <canvas id="gameCanvas" width="578" height="200"></canvas> <canvas id="textCanvas" width="578" height="200"></canvas> <script> var gameCanvas=document.getElementById("gameCanvas"); var ctx=gameCanvas.getContext("2d"); ctx.fillStyle="red"; ctx.fillRect(0,0, gameCanvas.width, gameCanvas.height); var message, canvas = document.getElementById('textCanvas'), context = canvas.getContext('2d'), boundingrect = canvas.getBoundingClientRect(); function getMousePos(e) { return { x: e.clientX - boundingrect.left, y: e.clientY - boundingrect.top }; } canvas.addEventListener('mousemove', function(e) { mousePos = getMousePos(e); message = 'Mouse position: ' + mousePos.x + ',' + mousePos.y; context.clearRect(0, 0, canvas.width, canvas.height); context.font = '18pt Calibri'; context.fillStyle = 'black'; context.fillText(message, 10, 25); }, false); </script> </body> </html> Granted can see some limitations with this too, so depends on what you are looking for.
  10. Unfortunately no, though you can use multiple canvas elements as layers.
  11. Naturally. Every DeLorean I've seen has a Flux Capacitor. https://www.google.com/maps/@28.4783926,-81.468178,3a,75y,98.27h,59.42t/data=!3m6!1e1!3m4!1scNhwEOy5valsnH_Ydx7TwA!2e0!7i13312!8i6656!6m1!1e1 A very interesting device. It preserves momentum and position relative to the Earth while translating someone through time. Clearly the standard time dilation equation is modified to: [latex]t' = t / i\sqrt{1-v^2/c^2}[/latex] at 88 mph velocity is increased to just slightly over c. While normally this would result in an imaginary result, with the modification time travel is instead achieved. Edited by Endy0816, 5 Nov 1955, 11:16 AM.
  12. Pretty much the same as any other DeLorean. Admittedly flying is a nonstandard feature.
  13. Numbers are what kill people. You want to be safe focus on the statistics. Can't say I'm surprised it was an assault rifle. Basically only limited by the number of bodies in front of it. Takes about a minute to raise a pistol and fire, in that time they could have emptied an entire 100 round magazine into a crowd. Glad NRA is fighting to keep us safe! Somewhat worse, typical for armed security to be familiar with wearing body armor.
  14. Place I'm moving into is just down the road from there. Been walking around in shock for most of the day. Difficult not to want to assign blame, but we need to avoid jumping to any conclusions. May have well been a lone wolf attack with nobody else aware. Maybe he was just insane and the equally disturbing shooting the other night set him off.
  15. It is only a matter of time before we learn the truth Do you think straight lines might work instead?
  16. Ends up eating a raisin bagel... Anyways... I like both but think there might be a better way to illustrate more aspects. Some of the coding will be easy, other parts painful. Read about an ideal form of Hubble's law, something along those lines might work.
  17. Thanks. The Magic of Gradients. They are still slightly off, but give it a nice look. Before moving to randomly generated arcs, it had this whole cosmic K thing going. Really looked like a logo then. I see homework in my future. :| Really just want something that doesn't involve balloons or raisin bread.
  18. Mainly trying to show the other superclusters increasingly separating from our own(blue line) and each other. Time is from the center outwards. Space is along any radius circle with the same center as the black circle. Got it looking like I had hoped. The Arcs are the main concern. Want to make them as accurate as possible. If there is a general formula anyone can provide that would be appreciated. Pleas note that this is just a picture and should not be taken too seriously or used for intercluster travel.
  19. I don't know if a degree in an unrelated field would help any. Past work history perhaps. Depends on how you sell it. Obtaining professional certifications(Cisco, Microsoft, Linux) would probably be more useful. Many schools will offer them at discounted prices for students.
  20. Nice, always fun when you can use tech to help out. Just need to look at switching out the images now. Then figure out how you want your mom(or any other instructors) to enter in words and be all done
  21. I would assume good intent unless otherwise indicated. If OP could upload a photo showing a recreation of the sign that might help to identify it.
  22. Playing Sims... in RL :}

  23. Glad your project is coming together. What are you envisioning for the word matching aspect?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.