Jump to content

kralcx

Member
  • Posts

    153
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by kralcx

  1. Here are the directions from Webex themselves; https://support.webex.com/MyAccountWeb/knowledgeBase.do?articleId=WBX54330
  2. Here's a jQuery plugin that lets you use a youtube video as your background http://www.seanmccambridge.com/tubular/
  3. try http://www.imtalk.org/cmps_index.php?pageid=IMT-Website-Submitter
  4. Ultimately your website is worth whatever someone is willing to pay for it. Try Flippa, set a reserve price, and hope for the best.
  5. Elegant Themes are Beautiful Premium WordPress Themes http://www.elegantthemes.com/ My Site My Way is a group of web developers dedicated to creating professional looking WordPress themes. http://mysitemyway.com/
  6. This might be overkill, but since you said you want to read more. Here are 100 blogs to keep you busy for the rest of your career! http://designm.ag/designer-showcase/top-100-highest-quality-web-design-blogs/
  7. It just shows the most commonly used tags on your blog all in one place. Not very useful if you ask me. You can most certainly get rid of it if you want too.
  8. Pro Chat Rooms http://www.prochatrooms.com/
  9. "We are the ones we've been waiting for!" Why not design the directory for design agencies yourself and have everybody in the business want to list with you?
  10. Upload your code to code pen http://codepen.io/ It will help us help you.
  11. #wrapper { width: 900px; margin:0 auto; background:#FFF; } #header{height: 100%;} #navigation ul{height:100%;} #navigation ul li{ float:left; list-style-type: none; } #navigation ul li a{ position:relative; left:145px; display:block; padding: 8px 20px; text-decoration: none; font-family: aerial; font-weight: bold; font-size: 14px; color: grey; border: 1px solid #BBBBBB; background: white; } the above code is what I changed in your CSS. It removed the space between your header and nav bar and it centered your nav bar. I hope that helps.
  12. Just a suggestion I think your question is too vague. A more specific question might yield better results.
  13. If you use a service like signnow; the client gets a signed copy and you get a signed copy. Some people just save the image for their records or you can print the .pdf and have a hard copy for your records. The choice is yours.
  14. You want some type of Wordpress Front End Form plugin. Here are a few you may try: WP User Frontend Pro, Front-End Editor, Front End Upload, WP Frontend Uploader, Gravity Forms, Profile Builder, and Ninja Forms. Online signatures are legal in the US, EU, China, India, Canada and most developed countries. I personally use SignNow.com
  15. About HBase HBase is a column-oriented database management system that runs on top of HDFS. It is well suited for sparse data sets, which are common in many big data use cases. Unlike relational database systems, HBase does not support a structured query language like SQL; in fact, HBase isn’t a relational data store at all. HBase applications are written in Java much like a typical MapReduce application. HBase does support writing applications in Avro, REST, and Thrift. An HBase system comprises a set of tables. Each table contains rows and columns, much like a traditional database. Each table must have an element defined as a Primary Key, and all access attempts to HBase tables must use this Primary Key. An HBase column represents an attribute of an object; for example, if the table is storing diagnostic logs from servers in your environment, where each row might be a log record, a typical column in such a table would be the timestamp of when the log record was written, or perhaps the server name where the record originated. In fact, HBase allows for many attributes to be grouped together into what are known as column families, such that the elements of a column family are all stored together. This is different from a row-oriented relational database, where all the columns of a given row are stored together. With HBase you must predefine the table schema and specify the column families. However, it’s very flexible in that new columns can be added to families at any time, making the schema flexible and therefore able to adapt to changing application requirements. Just as HDFS has a NameNode and slave nodes, and MapReduce has JobTracker and TaskTracker slaves, HBase is built on similar concepts. In HBase a master node manages the cluster and region servers store portions of the tables and perform the work on the data. In the same way HDFS has some enterprise concerns due to the availability of the NameNode (among other areas that can be “hardened” for true enterprise deployments by InfoSphere BigInsights), HBase is also sensitive to the loss of its master node. About Hadoop Distributed File System (HDFS) To understand how it’s possible to scale a Hadoop® cluster to hundreds (and even thousands) of nodes, you have to start with the Hadoop Distributed File System (HDFS). Data in a Hadoop cluster is broken down into smaller pieces (called blocks) and distributed throughout the cluster. In this way, the map and reduce functions can be executed on smaller subsets of your larger data sets, and this provides the scalability that is needed for big data processing. What’s the goal? The goal of Hadoop is to use commonly available servers in a very large cluster, where each server has a set of inexpensive internal disk drives. For higher performance, MapReduce tries to assign workloads to these servers where the data to be processed is stored. This is known as data locality. (It’s because of this principle that using a storage area network (SAN), or network attached storage (NAS), in a Hadoop environment is not recommended. For Hadoop deployments using a SAN or NAS, the extra network communica­tion overhead can cause performance bottlenecks, especially for larger clus­ters.) Now take a moment and think of a 1000-machine cluster, where each machine has three internal disk drives; then consider the failure rate of a cluster composed of 3000 inexpensive drives + 1000 inexpensive servers! We’re likely already on the same page here: The component mean time to failure (MTTF) you’re going to experience in a Hadoop cluster is likely anal­ogous to a zipper on your kid’s jacket: it’s going to fail (and poetically enough, zippers seem to fail only when you really need them). The cool thing about Hadoop is that the reality of the MTTF rates associated with inexpen­sive hardware is actually well understood (a design point if you will), and part of the strength of Hadoop is that it has built-in fault tolerance and fault compensation capabilities. This is the same for HDFS, in that data is divided into blocks, and copies of these blocks are stored on other servers in the Ha­doop cluster. That is, an individual file is actually stored as smaller blocks that are replicated across multiple servers in the entire cluster. An example of HDFS Think of a file that contains the phone numbers for everyone in the United States; the people with a last name starting with A might be stored on server 1, B on server 2, and so on. In a Hadoop world, pieces of this phonebook would be stored across the cluster, and to reconstruct the entire phonebook, your program would need the blocks from every server in the cluster. To achieve availability as components fail, HDFS replicates these smaller pieces onto two additional servers by default. (This redundancy can be increased or decreased on a per-file basis or for a whole environment; for example, a development Hadoop cluster typically doesn’t need any data re­dundancy.) This redundancy offers multiple benefits, the most obvious being higher availability. In addition, this redundancy allows the Hadoop cluster to break work up into smaller chunks and run those jobs on all the servers in the cluster for better scalability. Finally, you get the benefit of data locality, which is critical when working with large data sets. We detail these important ben­efits later in this chapter.
  16. http://www.javascriptsandmore.com/announcement-box.html this code uses tables which is not best practices, however I believe this is what you're looking for. A simple message displayed that when the user clicks on it, the message disappears.
  17. Since you said free...that would be Gimp (image editing software) and notepad ++ (code editing software). And this info will get you started on how to design for mobile
  18. You're on the right path...this will help you with picking a theme http://www.tripwiremagazine.com/2013/04/best-wordpress-e-commerce-themes.html
  19. kralcx

    Html To Psd

    screen capture won't produce the layers used in a PSD file
  20. kralcx

    Html To Psd

    There is also another software called Layers that will do this, however the downside to Layers and Page Layers is that they both can only work on a Mac.
  21. kralcx

    Gradient

    1st line: is a fallback, in case the browser doesn't recognize any gradients. 2nd line: is vendor specific code for older webkit broswers 3rd line: is vendor specific code for mozilla browswers (firefox) 4th line: is standard code for a linear gradient I've included below additional code that should have been included in this css: background: -webkit-linear-gradient(top, #b9b9b9, #6a6a6a); this would go between lines 2 and 3; this is vendor specific code for modern webkit browsers background: -o-linear-gradient(top, #b9b9b9, #6a6a6a); this would go between lines 3 and 4; this is vendor specific code for opera browsers background: -ms-linear-gradient(top, #b9b9b9, #6a6a6a); this would follow the above line; this is vendor specific code for Internet Explorer 10 filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#b9b9b9', endColorstr='#6a6a6a'); this come after line 4; this is vendor specific code for Internet Explorer 7-9 Hope this helps you.
  22. Google is your friend http://btemplates.com/ http://www.hongkiat.com/blog/40-free-beautiful-blogger-templates-part-iii/
  23. I believe using the html element would actually supersede the body element especially in modern browsers. e.g. <html class="happyNewYear">
  24. For Responsive Design you need to learn a Grid System so that your design works on all (or at least many)devices. Check out The Goldilocks Approach, or Twitter Bootstrap. To keep up to date on the latest in Responsive Web Design check out the Responsive Design Newsletter. Lastly when your site is finished test how it looks in various devices at Screenfly.
×
×
  • Create New...