Jump to content

c0dege3k

Active Members
  • Posts

    17
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Earth
  • Interests
    Coding, gaming, android mods

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

c0dege3k's Achievements

Newbie

Newbie (1/14)

  1. I found a dropbox alternative called Spideroak (spideroak.com) that, as far as I can tell, is definitely more secure. This is a quote from the "Engineering matters" page on the site: I'm no security specialist or anything, but it sounds pretty good to me. Thoughts? (and if you're gonna join use this link please :) https://spideroak.com/download/referral/78131cdb2e740f8b2b2bf6cd6eda5e15)
  2. Thanks for all this help. I've finally got all this displayed and moving correctly.
  3. That sounds good, but do I still have to create a ".button" & ".button:hover" class for each different image?
  4. http://dl.dropbox.com/u/8051037/Web/android_dev.html I don't know if I'm not being clear or misunderstanding you, but what I want is the blue tabs in the page above to be slightly overlapping. When I learn JS, I'm thinking on having the hovered-over image shift upwards. Can this still be done with a map?
  5. I thought about doing an image map but I'm thinking on adding JavaScript to the images when I learn that, so I'm pretty sure that using a map wouldn't work too well
  6. Okay, just one more quick question. In a related page, I have a navigation piece to it made up of multiple images like: <div id="navigation"> <a href="android_dev_projects.html"><img src="android_tab_projects.png" alt="Projects" /></a><br /> <a href="android_dev_news.html"><img src="android_tab_news.png" alt="News" /></a> </div> [/CODE] I want the images positioned just overlapping each other. So I'm thinking to position them all, I need to create CSS classes for each image, but feel that this is very inefficient. Is there any easier way?
  7. Okay, here's a different background that I was using initially: http://dl.dropbox.com/u/8051037/portal_back%20%28copy%29.png And the design for the page: http://dl.dropbox.com/u/8051037/Jarvis%20Organization%20%7C%20Portal%20-%20Mozilla%20Firefox_003.png
  8. http://dl.dropbox.com/u/8051037/netsec.png http://dl.dropbox.com/u/8051037/portal_back.png http://dl.dropbox.com/u/8051037/stark_android.png There ya go
  9. Alright, here's my full code, but it isn't quite what I want yet, as I've been messing around with the graphics, and trying to figure out this problem. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <title>Jarvis Organization | Portal</title> <style type="text/css"> body { background:#0035a2 url(portal_back.png) no-repeat top left; } h1 { text-align:center; font-family:"courier"; font-size:5em; position:static; top:24%; left:29%; } div { font-size:2em; font-family:"courier"; font-weight:bold; text-align:center; position:absolute; } #left { top:47%; left:17%; width:15em; } #right { top:54%; left:55%; width:20em; } </style> </head> <body> <h1>JARVIS ORGANIZATION</h1> <div id="left"> <a href="android_dev.html"><img src="stark_android.png" alt="Android Stark logo" /></a><br /> ANDROID DEVELOPMENT<br /> Go Mobile </div> <div id="right"> <a href="net_sec.html"><img src="netsec.png" alt="NetSec logo" /></a><br /> NETWORK SECURITY<br /> Defend Your Fortress </div> </body> </html> [/CODE]
  10. So I'm relatively new to HTML/CSS coding and have run into a very annoying problem. I get the position of my background image, header and other elements positioned fine on one resolution, but then moving it to another makes it looked completely screwed up. Here's the CSS for two different elements so that the elements show up correctly on a 1280x800 resolution: div { font-size:2em; font-family:"courier"; font-weight:bold; text-align:center; position:absolute; } #left { top:47%; left:17%; width:15em; } #right { top:54%; left:55%; width:20em; } [/CODE]
  11. Ok, I guess the answer was kinda obvious :) . Been going through the poignant guide, and testing out my knowledge on the project euler problems. Thanks though. I'll hopefully learn it and be able to be more active in the hacking community
  12. Haven't been around here too often, so just noticed this, but I'm getting the same error as above
  13. I've been doing some looking around, considering learning Ruby. I already know C# and Java, so I'm no beginner to programming, and am interested in getting into writing Metasploit exploits. So I was just wondering if people here thought that to be a worthwhile thing to do
  14. I'm modding the OMFGB Gingerbread ROM, and have run into a two problems. First of all, they both have to do with this: http://dl.dropbox.com/u/8051037/disk_ab1.png 1) I need to be able to make each of the eight sections its own section, as an ImageView, while keeping the image as one whole thing. 2) Slightly simpler I believe, but I need to be able to change the rotation of a view dynamically to spin the disk pictured in the link. All of my current mods can be found at github.com/c0dege3k/StarkOMFGB for reference. Thanks for any help- I've been looking for answers to these questions EVERYWHERE
×
×
  • Create New...