Jump to content

Shinryuu

Moderators
  • Posts

    1,025
  • Joined

  • Last visited

  • Days Won

    40

Everything posted by Shinryuu

  1. I use Ubuntu, I recently started learning assembly and basic hacking techniques, so it's good for setting up a penetration testing environment while still being fully functional for classwork.
  2. They changed it then, the old source had <input type="button" class="input-button" etc etc. But yay, I'll mod my script now.
  3. http://www.reuters.com/article/2010/04/08/us-wounds-printer-idUSTRE63657520100408 http://www.eetimes.com/electronics-blogs/the-engineering-life-around-the-web/4394165/Today-s-special--3D-printed-meat-
  4. So I have an odd request, if djbob doesn't mind I'd like him or whoever manages the cPanel login page to give the login button a name or id, preferrably id. I made an automation script in Ruby that opens IE, moves to the cPanel login page, and submits it with the proper info. Problem is it fills the user and pass inputs but doesn't click the button because the getElementByClass method isn't supported, I tried, and so in attempting to run this line: button = doc.getElementByClass("input-button") the script crashes. The reasons for the script are: a) I can b ) I don't like typing passwords, I get paranoid in public and c) it's easier to remember passwords when they are in programs heh.
  5. about the food, there was an article on eetimes about a team getting funding to start 3d printing tests with meat, similar to how hospitals print skin grafts for burn victims.
  6. I'm not sure what you mean here, can you give a detailed example of what you'd need?
  7. XML and HTML are similar in that you have tags with attributes, values, and tags are embedded in each other, the difference is that in HTML your stuck with a set amount of tags, in XML you make them up as you and keep track of them in your own DTD. I can explain a Wall definition as the code is expecting it to show you how to backtrace the XML structure. var walls = document.getElementsByTagName('Wall'); for(var i = walls.length - 1; i &--#62;= 0; --i) { var str = ''; var points = walls[i].getElementsByTagName('Point'); for(var j = points.length - 1; j &--#62;= 0; --j) { var x = parseFloat(points[j].getAttribute('x')); var y = -parseFloat(points[j].getAttribute('y')); str += x + ',' + y + ' '; if(minx &--#62; x) minx = x; if(maxx &--#60; x) maxx = x; if(miny &--#62; y) miny = y; if(maxy &--#60; y) maxy = y; } var polyline = document.createElementNS('http://www.w3.org/2000/svg', 'polyline'); polyline.setAttribute('points', str); polyline.setAttribute('stroke', 'black'); polyline.setAttribute('stroke-width', stroke); polyline.setAttribute('fill', 'none'); svg.appendChild(polyline); } The first line creates an array of walls by scanning for &<Wall> tags, <Wall></Wall>. The fourth line creates a point array and expects x and y attributes in the tag in the form of <Point x= y=/>. After the inner loop finishes running you have the code making polyline elements based on w3c's 2000 svg DTD. Because the point loop is inside the wall loop you know the point tags are embedded in wall tags <Wall> <Point x= y= /> </Wall> I'm not a javascript programmer, but it's usually pretty straightforward.
  8. Personally I prefer internal stylesheets, but if you want the same CSS to be used across several pages use ICE's link method, for an internal stylesheet add <style> </style> tags in the <head> section of your page and put your style rules in the style section. For example: <!DOCTYPE html> <html> <head> <style> p { color: #ca8; background-color: #000;} </style> </head> <body> <p>Hello World!</p> </body> </html>
  9. Seems like we're close to fiddling with them now that we've proof they exist.
  10. My view on climate is the same as a someone's piece of software, someone put the effort into setting up a functional system while some noobs decided they knew better and tried to make it "better" and then started complaining when it broke.
  11. http://www.asus.com/Eee/Eee_Pad/Eee_Slate_EP121/#specifications As-is outta the box, I do all software/web dev on it, mainly got it to take to school. My older HP laptop and its charger kept popping my back when i threw my bag on, of course my bag has thick textbooks as well.
  12. Shinryuu

    Websites

    Just a place to call home in cyberspace. http://shinryuukai.co.cc
  13. Hiya guys, my name's Shin, I self-learned Ruby, C++, and C# but recently started a computer tech program in college. In my first semester I learned HTML/CSS, was forced to remember why I liked C# over C++ and had to take my C# .NET knowledge and transfer it all to VB. But I digress, part of my web design course involved a semester project of making a rather simple sample site, I slacked off and never got around to it so I figured I'd one-up the project by making actual sites [nearly 4 months later].
×
×
  • Create New...