Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

nickyoung

Privileged
  • Joined

  • Last visited

  1. Anyone else? I'm working on a plugin called WP-InstantBackup with a friend....getting some ideas what people prefer to do.
  2. Hi Guys, I wanted to find out how you guys go about backing up your WordPress database and files. What do you rely on when **** hits the fan?
  3. http://en.wikipedia.org/wiki/IE6 Initial releaseAugust 27, 2001 Stable release6.0 SV3 ('6 SP3')[1] / May 5, 2008
  4. Convert hashtable to object array public Object hashTableToObjectArray(Hashtable ht){ Object[] objectArray = new Object[ht.size()]; int i = 0; Enumeration htElements = ht.elements(); while(htElements.hasMoreElements()){ objectArray[i] = htElements.nextElement(); i++; } return(objectArray); } Convert vector to object array public Object vectorToObjectArray(Vector vector){ Object[] objectArray = new Object[vector.size()]; int i = 0; Enumeration elements = vector.elements(); while(elements.hasMoreElements()){ objectArray[i] = elements.nextElement(); i++; } return(objectArray); }
  5. Thanks Connetu, the part about creating a Comparator was very helpful. Here's what I found out so far for Blackberry Apps... Collections.sort not working. Instead use a similar function - Arrays.sort Here is what it looks like....still testing this out. * Note on Data Types - Make sure to use an Object Array for the first argument in the Arrays.sort method. So if you have your data in a hashtable or vector, you'll wanna convert to an object array - see post below to do this... import net.rim.device.api.util.Arrays; import net.rim.device.api.util.Comparator; class sortStringAscendingComparator implements Comparator{ public int compare(Object o1, Object o2) { String person = (String) o1; String nextPerson = (String) o2; if(person.compareTo(nextPerson)<0){ return(-1); } if(person.compareTo(nextPerson)>0){ return(1); } return(0); } } Object [] people = new Object[3] people[0] = new String("person 0"); people[1] = new String("person 1"); people[2] = new String("person 2"); Arrays.sort(people, new sortStringAscendingComparator());
  6. Hi Guys, I am trying to sort a vector/array in Java to make a Blackberry Application. Other forums talk about the use of a collection object to sort but I don't have this object in my library/JRE 5.0....or at least I can't find it. Here is a sort function I have attempted to create but it doesn't exactly work correctly...it outputs duplicates and not in alpha ASC order... public Vector sortBusinessesVectorASC(Vector businesses){ Vector sortedBusinesses = new Vector(); sortedBusinesses.setSize(businesses.size()); for(int i=0; i<businesses.size()-1;i++){ for (int j=0;j<businesses.size()-1;j++){ JSONObject business = (JSONObject) businesses.elementAt(j); JSONObject nextBusiness = (JSONObject) businesses.elementAt(j+1); try{ if(business.getString("name").compareTo(nextBusiness.getString("name")) < 0){ //phonebook.log(business.getString("name")+" < "+nextBusiness.getString("name")); sortedBusinesses.setElementAt(nextBusiness.getString("name"), j+1); sortedBusinesses.setElementAt(business.getString("name"), j); }else{ sortedBusinesses.setElementAt(nextBusiness.getString("name"), j); sortedBusinesses.setElementAt(business.getString("name"), j+1); } }catch(Exception e){ phonebook.error(e); } } } phonebook.log(sortedBusinesses.size()+""); return(sortedBusinesses); }
  7. Agreed. Magento themes tend to come out with that look and feel. Go look for premium magento themes or custom magento theme designers.
  8. Sorry to be witty but someone had to post the actual link... edit:..so this unclickable link feature is something new? edit: trying with full editor...hmm
  9. At a glance, I'd say it's one of the better websites I've seen. It gets right to the point... I wasn't going to elaborate but could not resist... I'd advise everyone else to look at how simple and customer focused this website is. It's not bogged down with crazy colors, crazy design. It's black n' white and puts artistic talent into the spotlight. It has real pictures of real people in it, supposedly affected by the restoration process. Top navigation is easy to access. The fact that this website aimed at web + design/art, as opposed to strictly web-design makes all the difference in the world. Some people are too wrapped up in their HTML and CSS they forget that 80% of the people out there don't even know what that is. And who cares if it's not 100% consistent. In the real world, people aren't perfect...pictures aren't perfect...and neither is this, but that's a good thing. Any changes moving forward I would not be overly concerned about. So get out there and tell more people you can do photo restoration and digital work like websites.
  10. A wise man once told me in fewer words... Lesson #1 - Work with your customers. Lesson #2 - Work with your sellers. Lesson #3 - Throw out the trash before it gets smelly.
  11. Your job is "Graphical Concept Designer" Responsibilities - networks with someone that writes code based on your design - direct contact with the client to figure out what graphical needs will accomplish their goals - provides a design that they can use, or you can forward to HTML CSS etc...coder.. Services - provides several drafts of graphical concept, gauges reaction, and repeats the process according to client budget. Sound good?
  12. It has elements of good design, but I don't see a call to action. Action words make me (who has never been to Cornwall), start to wander where Cornwall is...and why I should go camping in a box on wheels. How about this......"Go Camping.. in a Classic VW box" size font 30 bold italic... As a tourist...it's essential that I have a reason to actually travel to Cornwall in the first place...aside from light sabers.......pictures are good for looking at....but a message + pictures is stronger.
  13. more professional feel... #body{background:white;} problem solved...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.