Skip to main content

Home/ Coders/ Group items tagged don't

Rss Feed Group items tagged

aspirant1

Beautiful Rose Heart - 0 views

  •  
    Beautiful rose heart Bouquet.
sam ali

Be Easy Get more $ - 0 views

  •  
    At the weekend I sent you an email giving information about a new simple system I've discovered that helps people like you and me make money online. I can see from the "open rate" statistics that 97% of the Posts didn't get opened hence I thought I'd give the details again because of those who did read the post, the feedback has been fantastic. You may or may not be aware that I've had the joy of being able to work from home full-time since 2010 (you can find out more about me on Facebook (frazzaq69@yahoo.com) and in those 3 years I've learned how to sort the rubbish opportunities from the genuine business opportunities and I've got to say this is one of the best I have seen. WARNING! This is not a flashy presentation with fast cars and big houses - and you'll hear my kids shouting in the background but that's the point, you don't need to be professional to make money, you just need to have a system that works and follow it. For me, it's not about BIG money, it's about FREEDOM. Freedom to choose where and when I work and not be answerable to some boss who doesn't appreciate me. It's flexibility and being able to spend you time with those I love rather than working 40-50 hours a week in some office. As you can see I am not hiding behind a fake id or anything like that, I am totally genuine and down to earth sort of guy and want to help other people get the freedom that I enjoy. No boss to answer too, choose your own hours and so on. So if that appeals to you, take a look at the Page and take the free tour: http://earnearnearning.blogspot.com.au
Christina Mulligan

DevOps' reality check - 0 views

  •  
    So you don't work at Facebook, Etsy or Netflix. Should you join the DevOps movement, now nearing the half-decade mark? With origins in the O'Reilly Velocity Conference, lean manufacturing, infrastructure as code and continuous delivery, DevOps, like agile before it, has captured the imaginations of practitioners, gurus, vendors-and now, executives.
anonymous

When is Fathers Day - 1 views

  •  
    When is Fathers Day. This article is about Fathers day date. if you want to know that when is father,s day so please don't worry and read this article. you can get here Father's day History, date and the celebration ways of different countries.
Paris Polyzos

Develop With Passion® - Jean-Paul S. Boodhoo - 0 views

  • Being an effective unlearner enables you to take an unbiased look at a new way of approaching a situation/problem/challenge without the weight of being dragged down by your old baggage(ideas
  • Being an effective unlearner enables you to take an unbiased look at a new way of approaching a situation/problem/challenge without the weight of being dragged down by your old baggage(ideas)
  • One strategy to minimize this is to seek out and collaborate with people who make you feel a little out of your element
  • ...13 more annotations...
  • Unfortunately, with the large number of these blogs, many people have fallen into the trap of subscribing to too many
  • he started to get frustrated by the abscensce of any new insights/techniques he was sure would magically manifest when working through coding sessions.
  • Any man who reads too much and uses his own brain too little falls into lazy habits of thinking
  • Don't think about what you have accomplished. Rather, what you should have accomplished with your abilities.
  • People who allow themselves to get into this mode more often can find that the spikes in creativity that result, can carry forward with them into the stuff that they have to tackle on a day to day basic
  • Gifts, however , have to be opened, and then further used, if they are going to be of any value
  • When you think you have caught up with the skill of [developer x], either their skill level has increased or you have found another developer whose skill you covet
  • It's not about being the best. It's about being your best.
  • It can give them an change to explore and think about problemsthat they may not feel comfortable with
  • There will always be someone who is better than you, there will always be someone who is not.
  • If you end your days with the persitent feeling of "I do not feel like I got enough done", it could be an indicator that some significant diagnostics need to be performed
  • can create an environment where synergy, collaboration, and friendly competitiveness raise the level of all of the people on the team
  • Give your brain an opportunity to stretch itself.
  •  
    Great article about strategies you may follow and mistakes you may avoid to become a better programmer!
Joel Bennett

Foundations: Using Templates to Customize WPF Controls -- MSDN Magazine, January 2007 - 0 views

  •  
    Part of a book by Charles Petzold on programming Windows apps with WPF -- includes a link to all the code samples -- which are really great as a learning tool even if you don't have the book.
Joel Bennett

Color Theory Tutorial by Worqx - 0 views

  •  
    Color Worqx has a great article on Color Theory -- trying to explain how colors work and why some work together and others don't ... to help you get better at color design.
Kingdon Barrett

To Err is Human… » Being a Better Programmer #2: Don't Be a Missionary - 0 views

  •  
    Good thumbing material, for especially the day when your project is set to be in a language you don't know or can't read by the powers.
Joel Bennett

Polyglot Programming | Dr. Dobb's | May 1, 2002 - 0 views

  • Everyone will benefit, even the Java community: Now that there's competition again, new constructs are—surprise!—again being considered for Java
  • Do languages have to sacrifice anything?
  • .NET goes much further: A routine written in a language L1 may call another routine written in a different language L2. A module in L1 may declare a variable whose type is a class declared in L2, and then call the corresponding L2 routines on that variable. If both languages are object oriented, a class in L1 can inherit from a class in L2. Exceptions triggered by a routine written in L1 and not handled on the L1 side will be passed to the caller, which—if written in L2—will process it using L2's own exception-handling mechanism. During a debugging session, you may move freely and seamlessly across modules written in L1 and L2. I don't know about you, but I've never seen anything coming even close to this level of interoperability.
  •  
    This ability to mix languages offers great promise for the future of programming languages, as the practical advance of new language designs will no longer be hindered by the library issue ...
Joel Bennett

Web Progress Bar for ASP.NET - 0 views

  •  
    A simple skinnable progressbar for Asp.Net & AJAX
  •  
    I don't actually know how good the quality of this is...
Joel Bennett

Taskix - Drag and Drop task reordering - 0 views

  •  
    This is the best taskbar drag reordering tool there is. Coming in around 200K in RAM, and with no UI ... it lets you drag and drop even with "grouping" enabled, and can even reorder the items inside a group. Very fast, very intuitive, nothing I don't need.
Fabien Cadet

Use your singletons wisely - 0 views

  • I know where you live anti-pattern
  • Liskov Substitution Principle
  • the easier it is to test a class, the more likely a developer will test it.
  • ...3 more annotations...
  • Don't worry: the code will always tell you what to do. Just listen.
  • The key points here are that a class is only a singleton if all applications treat it exactly the same and if its clients can use the class without an application context.
  • "[c]ode wants to be simple."
  •  
    "singletons are unnecessarily difficult to test and may make strong assumptions about the applications that will use them [...] I know where you live anti-pattern [...] Liskov Substitution Principle". "To decide whether a class is truly a singleton: * Will every application use this class exactly the same way? (exactly is the key word) * Will every application ever need only one instance of this class? (ever and one are the key words) * Should the clients of this class be unaware of the application they are part of?"
Joel Bennett

Snippet Designer - CodePlex - 0 views

  •  
    This is really sort-of a must-have tool for anyone who's using Visual Studio... especially if you don't have R# or anything...
  •  
    A Snippet editor integrated into Visual Studio, plus the ability to create snippets from text selection.
Joel Bennett

BrowsrCamp - 0 views

  • easiest
    • Joel Bennett
       
      Short of actually having a mac, that is.
    • Joel Bennett
       
      And assuming you don't mind paying $2 for a day of access.
  •  
    Free screenshots of your site in safari ... for-pay access to a virtual machine on a mac so you can test all Mac browsers. Just how badly do you want to be ready for the two-percenters?
David Corking

CocoaDev: AmbraiSmalltalk - 0 views

  • I can't imagine building a user interface intensive application through this technique. It would be extremely cool if they could integrate Interface Builder,
    • David Corking
       
      This Smalltalk company seems to have reified the Cocoa UI toolkit beautifully. Judging by the Ambrai website, there don't seem to be any retail Smalltalk compilers in the pipeline. However this could be a great lesson in how to reify John McIntosh's new Objective-C bridge for Squeak, or Etoile's Smalltalk library, if it hasn't been done already.
David Corking

Dr. Dobb's | Smartphone Operating Systems: A Developer's Perspective | March 30, 2009 - 0 views

  • The industry stewards have countered Apple's move with their own application stores, so there's a huge opportunity to write the "killer app" for one of several smartphone platforms.
  • 40 MB to less than 4 MB of free RAM
  • one-app-at-a-time requirement complicates any implementation of a copy-and-paste mechanism.
  • ...45 more annotations...
  • As a security sandbox, the iPhone OS permits only one third-party application to run at a time, and not in the background.
  • adding some useful Bluetooth profiles that supported stereo headsets, data synchronization, or the ability to implement multiplayer games would be usefu
  • iPhone OS 3, that provides some of the missing features mentioned here, such as the A2DP profile for Bluetooth, voice recording, and copy-and-paste.
  • Have to learn Objective-C; is only smartphone platform that uses it.
  • Competitors will soon catch up on the UI.
  • embed navigation and GPS plotting into applications.
  • provide their own map content
  • The OS now supports the use of accessories connected to the iPhone either through its 30-pin docking connector or wirelessly via Bluetooth. Now that the device has been "opened", you can expect an entire ecosystem to build up around the device, much like the iPod has.
  • peer-to-peer connectivity using Bonjour
  • developers can now allow users, from within the application, to purchase and obtain new content
  • No voice dial.
  • A client-server mechanism provides access to low-level system resources, and in fact the kernel itself is a server that parcels out resources to those applications that need them. This transaction scheme allows applications to exchange data without requiring direct access to the OS space.
  • C/C++ for porting existing UNIX applications, and Java to port Java ME MIDlets. As mentioned previously, the software stack offers several run-times that offer application development using WRT widgets, Flash, and Python. The primary programming language for the platform is Symbian C++,
  • Handango has managed the wide-scale distribution of Nokia applications. In February, Nokia announced plans to launch its Ovi Store, which sells applications, videos, games, pod-casts and other content, similar to Apple's App Store. The store will be accessible by Nokia S60 smartphones in May.
  • Non-standard Symbian C++ has steep learning curve, with special idioms to master. Large number of Symbian APIs to learn, since it contains hundreds of classes and thousands of member functions.
  • BlackBerry Device Software executes multiple applications simultaneously
  • Manages multiple e-mail Exchange e-mail accounts, along with support for POP3 and SMTP, and e-mails can have file attachments
  • FIPS 140-2 compliant, and supports AES or Triple DES encryption sessions via BlackBerry Enterprise Servers
  • BlackBerry Device Software has enhanced the capabilities of the platform with its own Java virtual machine (JVM), along with new Java classes that offer multitasking capabilities and UI enhancements to go beyond the capabilities of Java ME.
  • You can also take existing Java ME code and add specific BlackBerry classes to make a hybrid Java ME application
  • don't intermix MIDP 2.0 and BlackBerry API calls that perform either screen drawing or application management.
  • The catch to writing an application that uses BlackBerry API extensions is that it ties the application this smartphone. However, this is no worse than using the unique Java classes found in Google's Android.
  • Apple promotes the design goal that applications should accomplish one purpose.
  • no Flash support, and you can't download files.
  • For non-Exchange users, Apple's MobileMe online service, after some fits and starts in 2008, now supports the push of e-mails and changes to the calendar and contacts.
  • The iPhone 3G can work in tandem with Microsoft Exhange Server 2003 and 2007 to support enterprise operations.
  • Cocoa Touch is a subset of Apple's Cocoa,
  • Cocoa Touch components manage most of the writing to the screen and playing media, yet there are APIs exposed that let you access the accelerometer and camera.
  • Quartz engine is identical to the one found in Mac OS X
  • Only a select few higher-level frameworks have access to the kernel and drivers. If necessary, an application can indirectly access some of these services through C-based interfaces provided in a LibSystem library.
  • the SDK provides Dashcode, which is a framework based on a Web page composed of HTML and Javascript. You can use DashCode's simulator to write and test your web application. You can also use several other third-party frameworks to write web applications, and debug these with Aptanna Studio's tools.
  • Made by HTC, the G1 is the first smartphone using the Android platform.
  • e-mail program (which makes use of Google's Gmail), a mapping program (using the company's Google Maps), and a browser that uses WebKit, not Google's Chrome web browser
  • Android is not Java ME, nor does it support such applications
  • ability to both browse and manage multiple IM conversations. On the other hand, such heavy use of the smartphone's CPU shortens battery life significantly. Maybe Apple is on to something in limiting the number of applications that the platform can run.
  • On the positive side, the Android APIs support a touch interface (and the G1 has a capacitive touch screen), but not any multi-touch gestures.
  • copying text from the web pages is the browser isn't allowed
  • The advantage to Android's use of a different bytecode interpreter is that the DVM was designed so that multiple instances of it can run, each in their own protected memory space, and each executing an application. While this approach offers stability and a robust environment for running multiple applications, it does so at the expense of compatibility with Java ME applications.
  • Seasoned Java programmers will find the Android SDK an amalgam of Java SE and Java ME methods and classes, along with unique new ones
  • compile the Java code to generate Dalvik bytecode files, with an extension of .dex. These files, along with the manifest, graphics files, and XML files, are packaged into an .apk file that is similar to a Java JAR file.
  • The certificate that you use to generate the private key does not require a signing authority, and you can use self-signed certificates for this purpose.
  • The Developer Phone provides access to a shipping Android device without the cash outlay or contract contortions required when developing for the other platforms.
  • in February the site began supporting priced applications. Google allows developers to take seventy percent of the proceeds.
  • it's possible that you might pick up a malicious application before it is detected by the user community.
  • Open source, open platform: if you hate the mail program, some third-party is writing a better one.
  •  
    Lengthy developer's overview of Symbian, Mac OS X iPhone, Blackberry, Android. This talks about the leading app platforms except Java ME and Windows Mobile, though it does explain how Blackberry and Symbian support Java ME.
Fabien Cadet

PhoneGap : OpenSource framework for mobile development - 2 views

  • "AIR for the iPhone" because this nice little hack, first created at an iPhone BarCamp, wraps the Web view with a container. This container gives the view access to APIs available on the device, that may not be available yet via WebKit alone."
    • David Corking
       
      This quote sounds compelling
  •  
    I don't think this will get you past the iPhone app store, but it should make it easier for non-Cocoa coders who want access to the accelerometer, geolocation and other on board functions that aren't available to pure web apps.
  •  
    « PhoneGap is an HTML5 app platform that allows you to author native applications with web technologies and get access to APIs and app stores. PhoneGap leverages web technologies developers already know best... HTML and JavaScript. »
Fabien Cadet

Your Architecture Sucks and I Don't Care, by Ryan, 2011-01-03 | Friendly Dingo Blog - 10 views

  •  
    "Besides, who am I to say your architecture sucks? And why don't I care? Because I am your users, and I don't care what your codebase looks like, I don't care what it's called, and I don't care what language it's written in. I care that it solves my problem in the simplest and fastest way possible."
Fabien Cadet

prog21: Tales of a Former Disassembly Addict - 1 views

  • In fact, generated code can be so ridiculous and verbose that I finally came up with an across-the-board solution which works for all compilers on all systems: I don't look at the disassembled output.
  • I still see people obsessed with picking a programming language that's at the top of the benchmarks, and they obsess over the timing results the way I used to obsess over disassembled listings. It's a dodge, a distraction...and it's irrelevant.
« First ‹ Previous 41 - 60 of 92 Next › Last »
Showing 20 items per page