
conceptell.wordpress.com
Insights – Conceptell BlogConceptell Blog
http://conceptell.wordpress.com/
Conceptell Blog
http://conceptell.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.6 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
10
SSL
EXTERNAL LINKS
13
SITE IP
192.0.78.13
LOAD TIME
0.626 sec
SCORE
6.2
Insights – Conceptell Blog | conceptell.wordpress.com Reviews
https://conceptell.wordpress.com
Conceptell Blog
5 reasons agile story points should never be used to track individual performance – Insights
https://conceptell.wordpress.com/2016/07/25/5-reasons-agile-story-points-should-never-be-used-to-track-individual-performance
5 reasons agile story points should never be used to track individual performance. Story points estimate a team’s capacity to take on work. They don’t measure an individual’s capability to handle it. Photo source: Deck of Planning Poker Cards selling on http:/ www.agilehardware.com. By Atul Handa, Manager, Design Operations, IBM (guest post for Conceptell). Scrum/ Agile focuses on the team. Story points, if used for individual performance tracking, would be a lousy way to do so. Story points aren’t exact;.
5 easy fixes to ensure employee engagement – Insights
https://conceptell.wordpress.com/2016/08/02/5-easy-fixes-to-ensure-employee-engagement
5 easy fixes to ensure employee engagement. Atul Handa, Manager, Design Operations, IBM (guest post for Conceptell). What I’m going to propose might sound ‘obvious’ and rudimentary to many managers. And sure enough, these nuggets of management wisdom pop up in every Management 101 course. But if you self-introspect, like me, you’ll realize these practices are oft forgotten in the cubicle world. For a junior and inexperienced. Senior and experienced employees. May only expect general vison and direction, ...
The Problem with Personas and some Solutions – Insights
https://conceptell.wordpress.com/2016/09/27/the-problem-with-personas-and-some-solutions
The Problem with Personas and some Solutions. Http:/ www.uxmatters.com/mt/archives/2016/09/the-problem-with-personas-and-some-solutions.php. Kanupriya Vashisht and Atul Handa. Content Strategy, User Experience and Research Specialists with more than 30 years of cumulative industry experience. September 27, 2016. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your Google account. ( Log Out.
Don’t keep asking people what they need – Insights
https://conceptell.wordpress.com/2016/06/30/first-blog-post
Don’t keep asking people what they need. Watch them interact with their natural environment, then come up with a design that fits gracefully with their related activities and needs. One of the biggest mistakes well-meaning organizations tend to make is ask their customers: What do you need? If Henry Ford had asked people what they need, he says they’d probably have said, faster horses. That’s what iconic brands like Apple, Nike and Harley Davidson do. For these brands, customers aren’t just customers...
Top 3 mistakes to avoid when building online communities – Insights
https://conceptell.wordpress.com/2016/07/04/top-3-mistakes-when-building-online-communities
Top 3 mistakes to avoid when building online communities. Don’t bother investing in community building if you aren’t in it for the long haul, or if product promotion is all you want. When handled well, social-media communities are a golden opportunity to engage with eager users who have the potential of becoming keen advocates for your brand. But if you lack commitment, the on-again, off-again relationship can breed more harm than good by generating negativity, or worse still, detachment. Don’t use commu...
TOTAL PAGES IN THIS WEBSITE
10
gustavocguimaraes.wordpress.com
A Simple But Effective Way to Contribute to Open Source Projects – Codersations
https://gustavocguimaraes.wordpress.com/2015/01/30/a-simple-but-effective-way-to-contribute-to-open-source-projects
A Simple But Effective Way to Contribute to Open Source Projects. January 30, 2015. February 2, 2015. I use open source code every day. Be it Rails. Or the myriad of Ruby gems. Out there, open source is part of my life and work. It all started when I used the MetaInspector. Once I updated the tests, I submitted a pull request. And added my comments. The maintainer of the gem, replied to me within minutes. It Is Not Who you Influence, It Is How You Influence. New Year Resolution: deep dive in JavaScript.
gustavocguimaraes.wordpress.com
Role-Based Authorization with Rails 4 Enum – Codersations
https://gustavocguimaraes.wordpress.com/2014/12/17/role-based-authorization-with-rails-4-enum
Role-Based Authorization with Rails 4 Enum. December 17, 2014. June 22, 2015. I have started creating an employee engagement application recently. Its purpose is to allow companies to engage their employees in volunteering activities around social projects. For this application I need to create 3 different roles and access levels. I am using Ruby on Rails and I discovered that you could do this with gems such as ActiveAdmin. But I decided to give Rails 4 Enum. More info about enum methods here. Migrate t...
gustavocguimaraes.wordpress.com
Sending Pull Requests – Codersations
https://gustavocguimaraes.wordpress.com/2014/03/24/sending-pull-requests
March 24, 2014. April 27, 2014. This weekend I contributed to my first (of many more! Open source projects. I pair-programmed with Cameron Cundiff. This is how the process works from start to finish. 0 – Find a project you want to contribute. Check what issues are open. These are features or software bugs that need to be worked on. Cameron and I decided to work on issue #62. Which required adding a link to the Whiteboard application landing page where the user can click on to show all standups locations.
gustavocguimaraes.wordpress.com
gustavocguimaraes – Codersations
https://gustavocguimaraes.wordpress.com/author/gustavocguimaraes
August 14, 2016. August 14, 2016. I often use RSpec as my testing library when I code in Ruby. The documentation is not that great so I often use code that I already wrote as syntax reference. Here I am going to write RSpec: Core and RSpec: Expectations syntax so I can refer it in the future. RSpecdescribe 'Common, built-in expectation matchers' do example 'Equality' do expect('x' 'y').to eq('xy') # a = b expect('x' 'y').to eql('xy') # a.eql? B) expect('x' 'y').not to be('xy') # a.equal? Add one extra me...
gustavocguimaraes.wordpress.com
Understanding URL Query Strings – Codersations
https://gustavocguimaraes.wordpress.com/2014/12/09/understanding-url-query-strings
Understanding URL Query Strings. December 9, 2014. December 9, 2014. URL, short for Uniform Resource Locator, is web address that you see on web browsers. You may have seen urls that look something like this. The part after the question mark is a query string. It appears at the end of a URL and provides a way to send additional information that a web server can use to control the output of its response. Generally a query string is used to search a database for information, and return a single record.
gustavocguimaraes.wordpress.com
Passing Params With Rails Render AKA Lesson on Rails Render vs Redirect_to – Codersations
https://gustavocguimaraes.wordpress.com/2014/05/27/passing-params-with-rails-render-aka-lesson-on-rails-render-vs-redirect_to
Passing Params With Rails Render AKA Lesson on Rails Render vs Redirect to. May 27, 2014. May 27, 2014. Problem: User is directed to the purchase page of the website with a discount code. While purchasing user forgets to add password, hit submit button. Rails(with Devise gem) sends user to url/users but now discount is gone! This bug … well…bugged me for a morning. I hope this post helps others with the same problem. This is how my RegistrationsController which inherits from Devise looked. When you succe...
gustavocguimaraes.wordpress.com
Postgresql Did Not Work After I Updated to OS X Yosemite(With Solution) – Codersations
https://gustavocguimaraes.wordpress.com/2014/12/16/postgresql-did-not-work-after-i-updated-to-os-x-yosemitewith-solution
Postgresql Did Not Work After I Updated to OS X Yosemite(With Solution). December 16, 2014. January 20, 2016. This morning, I tried to start up an application on Rails with a Postgresql server and had this error:. PG: ConnectionBad: could not connect to server: Connection refused > Is the server running on host "localhost" (: 1) and accepting > TCP/IP connections on port 5432? Mkdir pg tblspc pg twophase pg stat tmp. Touch pg tblspc/.keep pg twophase/.keep pg stat tmp/.keep. Leave a Reply Cancel reply.
gustavocguimaraes.wordpress.com
When Stuck, Reverse It for Clarity – Codersations
https://gustavocguimaraes.wordpress.com/2014/06/24/when-stuck-reverse-it-for-clarity
When Stuck, Reverse It for Clarity. June 24, 2014. June 24, 2014. Recently I tried to create a ruby method that formatted a number to a string but comma separating large numbers. For example: 100000 should result in 100,000 and 352456745 in 352,456,745. My first monstrous attempt was:. But this returned “1,000,00” for 100000 which is NOT the end result I envisioned. Def number to string(number) result = [] # reverse the string and then split it number.to s.reverse.split(/ ).each with inde...You are comme...
gustavocguimaraes.wordpress.com
What does Memoization mean? – Codersations
https://gustavocguimaraes.wordpress.com/2014/12/23/what-does-memoization-mean
What does Memoization mean? December 23, 2014. It turns out that memoization is recording the results of earlier calculations so that we don’t have to repeat the calculations again. It simply means caching the output. An example may clarify this further. Say I have method that tells me how many Twitter followers a user has:. Def total twitter followers current user.twitter followers end. Def total twitter followers @current user total followers = current user.twitter followers end. Enter your comment here.
gustavocguimaraes.wordpress.com
Codersations – Page 2 – Conversations about Coding
https://gustavocguimaraes.wordpress.com/page/2
New Year Resolution: deep dive in JavaScript. January 11, 2016. January 20, 2016. My New Year resolution is to become a master in JavaScript. This blog post will serve more as a reference to me where I can come back to and review things that I have written. Also the act of writing helps me fossilize in my brain these concepts. I will start by reviewing the concepts I know about Objects, Arrays and Functions. Update: Jan 20th Adding Nested data, Scope notions as well. Var Santa = {};. It looks like this:.
TOTAL LINKS TO THIS WEBSITE
13
ConceptElise
Vous vous demandez pourquoi vous auriez besoin dun site internet? Daprès vous quelles sont les choses que la plupart des gens comme vous et moi font le matin au réveil? Ecouter la radio, lire le journal. Et surtout regarder les infos sur leurs ordinateurs, mobiles et tablettes! Et oui, sur quasiment 66 millions de Français, 83% sont internautes. Un menu du jour à présenter à vos potentiels clients? Une promo du jour à annoncer? Vous voulez vous promener avec votre projet dans la poche? Toujours à l'affût...
Home
OUR NEW ADDRESS IS. 1911 NW 40TH COURT. POMPANO BEACH FL 33064. Corporate and Custom Sales. Is a creative company dedicated to fabricating and installing some of the finest stone porcelain and quartz products in the world. From beautiful counter-tops to an intricate fireplace or elevator surround, Concept Elite. Is there for you. Is the company to call upon when it comes to fabricating any type of natural stone and quartz products. We welcome the challenge to bring to life, your dreams:.
conceptelitesalonbakersfield.com
conceptelitesalonbakersfield.com
Welcome to: conceptelitesalonbakersfield.com. This Web page is parked for FREE, courtesy of GoDaddy.com. Is this your domain? Let's turn it into a website! Would you like to buy this. THE domain at THE price. Visit GoDaddy.com for the best values on. Restrictions apply. See website for details.
conceptelitesalonbakersfieldca.com
Salon - Nail Care - Concept Elite Salon - Bakersfield - California
Get Hair and Nail Care Treatments from Beauty Experts at Concept Elite Salon. Thanks for your interest in our business. For quicker response, call us at (661) 524-5927 . 8200 Stockdale Hwy. D-1. Bakersfield, CA 93311. Click Here for More Info! Call Concept Elite Salon at (661) 524-5927 to make an appointment. Global Keratin Smoothing Treatments. Acne, Wrinkle and Lightening Lift. Face and Head Massages. The Photo Gallery requires JavaScript and Flash Player. Get Flash. Hair and Nail Care. We respect your...
Conceptell | Home
1 905 908 0107. Are ideas best sold. Are ideas best sold. Great products are born of great ideas. But before any stellar idea gets molded into a winning portal, app or software, it must resonate with your target audience. That's where we come in. We take your ideas right to your users. We use a variety of research techniques to identify your target users and deconstruct their needs. We convert user needs and business goals into designs that enhance user satisfaction and strengthen the brand.
Insights – Conceptell Blog
Don’t keep asking people what they need. Watch them interact with their natural environment, then come up with a design that fits gracefully with their related activities and needs. One of the biggest mistakes well-meaning organizations tend to make is ask their customers: What do you need? If Henry Ford had asked people what they need, he says they’d probably have said, faster horses. That’s what iconic brands like Apple, Nike and Harley Davidson do. For these brands, customers aren’t just customers...
Conceptelle
Conceptellers
Our philosophy is to offer best products and services within available resources of our customers. To envision and to achieve our goal of realizing infinite value, we have dedicated our major resource i.e. the brains, to design and innovate a captivating environment and state of the art technology products. Honesty and Integrity - - Dedication - - Quality Control - - Delegation - - Design and Innovation - - Creativity - - Receptivity - - Health, Safety and Environment.
Welcome
Conceptem welcomes you to their new website! Conceptem produces quality shows, themes and concepts, created by two talented artists, for clients from both corporate and event backgrounds wanting artistic performances with original themes. Whether you are planning an event, a convention or a reception, our productions are sure to entertain, delight and dazzle! DESIGNED BY KIAÏ STUDIO.
Home
Planungssysteme . Fachbücher . Seminare . Workshops . Vorträge. Kontakt: 49 (0)6131 / 57022-10. Die Zukunft vorher zusagen,. Sondern auf die Zukunft vorbereitet zu sein. Nutzen Sie dazu auch den STRESSTEST für Ihr Vorhaben. Der 1000-Tage-Planer unterstützt in der Realisierungsphase. 4 überarbeitete und aktualisierte Auflage. Seit 2002 mehr als 6.000 Mal evaluiert mehr. Ist es, die gleichen Fehler zu begehen. Ca 7852.000 Millionen Unternehmen liquidierten in. In den Jahren 1997 2016*. Die ersten 1000 Tage.
Accueil - CONCEPT EMBALLAGE. - Étiquettes adhésives et Étiquettes IML
Votre partenaire idéal en étiquettes. Forte de plus de 50 années d’expérience dans l’imprimerie Concept emballage dispose de l’ensemble des savoirs faire et technologies de pointe pour vous proposer le meilleur de l’étiquette adhésive . Principe L’I.M.L est une étiquette imprimée en Polypropylène (P.P) et ensuite découpée selon la forme du moule. L’IML est mise d’abord dans le moule qui est tenue par électrost . Participation au salon Djazagro. Janvier 4th, 2016. Sleeve & Décor. Suivez nous sur :.