<p>how to help the stakeholder focus on the outcome, rather than a predefined solution: </p>
https://medium.com/user-interface-22/the-back-up-question-defining-a-projects-good-enough-4ae29e72052b
Open link
Aline Silveira
Posted on
May 23, 2018
Topics:
ux
Let's talk!
Clients
Services
Blog
About us
Careers
Let's talk!
SOFTWARE
HOUSE
Clients
Services
MVP Development
Web Development
Staff Augmentation
Insights
Blog
Learnings
Careers
About us
Contact us
Learnings
Boost your knowledge with the insights from our expert team.
accessibility
agile
ai
api
architecture
aws
career
celery
communication
concurrency
css
data
database
db
debug
design
design system
development
devops
django
docker
documentation
figma
frontend
git
html
javascript
js
leadership
management
metrics
ml
orm
performance
postgres
process
product
product design
python
react
redux
research
security
software
sql
sre
test
testing
tests
typescript
ui
ux
web
workflow
<p>Design for Non-Designers: #.q40uw7tjv</p>
↗
https://medium.com/@limedaring/design-for-non-designers-part-1-6559ed93ff91
Flávio Juvenal
Jan 24, 2017
Topics:
design
<p>Pipenv by @kennethreitz checkout at </p>
↗
https://www.kennethreitz.org/essays/announcing-pipenv
Filipe Ximenes
Jan 23, 2017
Topics:
python
<p>Always have a quick and friendly feedback feature on your product. Besides all the metrics you can get from it, it helps users to give you a second chance by telling you what didn't work for them.</p>
↗
Flávio Juvenal
Jan 22, 2017
Topics:
product, ux
<p>Really good blog post telling the experience of re-writing an app in React: #.sl07j8rbq</p>
↗
https://medium.com/bumpers/isnt-our-code-just-the-best-f028a78f33a9
André Ericson
Jan 20, 2017
Topics:
react
<p>Don't hurry your team! </p>
↗
http://chrismm.com/blog/how-terrible-code-gets-written-by-perfectly-sane-people/
Anderson Resende
Jan 19, 2017
Topics:
team
<p>Continuous Integration Certification </p>
↗
https://martinfowler.com/bliki/ContinuousIntegrationCertification.html
Filipe Ximenes
Jan 19, 2017
Topics:
continuous integration
<p>Never write to a model field or call save() directly </p>
↗
https://www.dabapps.com/blog/django-models-and-encapsulation/
Filipe Ximenes
Jan 18, 2017
Topics:
django
<p>How to add a heroku remote #creating-a-heroku-remote</p>
↗
https://devcenter.heroku.com/articles/git
Anderson Resende
Jan 18, 2017
Topics:
heroku
<p>Query Expressions are amazing </p>
↗
https://www.caktusgroup.com/blog/2016/06/20/query-expressions-are-amazing/
Anderson Resende
Jan 18, 2017
Topics:
django
<p>Nice strftime reference: </p>
↗
http://strftime.org/
Flávio Juvenal
Jan 17, 2017
Topics:
datetime, python
<p>Semantic vs. presentational SASS classes: </p>
↗
https://anotheruiguy.gitbooks.io/sassintherealworld_book-i/content/rules-to-live-by/semVsPres.html
André Ericson
Jan 17, 2017
Topics:
sass
<p>A SASS Style Guide: </p>
↗
https://anotheruiguy.gitbooks.io/sassintherealworld_book-i/content/aLittleUnderTheHood/style-guide.html
André Ericson
Jan 17, 2017
Topics:
sass
<p>Use a custom loaddata management command to load data from stdin to production Django projects. Useful for loading data into Heroku: </p>
↗
http://stackoverflow.com/questions/15041853/running-loaddata-on-heroku-without-adding-the-data-file-to-repository
Flávio Juvenal
Jan 16, 2017
Topics:
django, heroku
<p>The price of GPL </p>
↗
http://bitsplitting.org/2016/10/30/the-price-of-gpl/
Filipe Ximenes
Jan 11, 2017
Topics:
open source
<p>Be careful when comparing <code>Decimal</code> and <code>float</code>: <code>Decimal('3.0') == 3.0</code> but <code>Decimal('3.2') != 3.2</code>.</p>
↗
Filipe Ximenes
Jan 11, 2017
Topics:
python, tests
<p>Interesting rant about google platforms </p>
↗
https://plus.google.com/+RipRowan/posts/eVeouesvaVX
Filipe Ximenes
Jan 11, 2017
Topics:
web
<p>"Project delays: why good software estimates are impossible" </p>
↗
http://chrismm.com/blog/project-delays-why-software-estimates/
Filipe Ximenes
Jan 9, 2017
Topics:
project management
<p>Parse and automatically capitalize human names with nameparser: </p>
↗
https://github.com/derek73/python-nameparser
Flávio Juvenal
Jan 9, 2017
Topics:
library, python
<p>If you're using <code>CELERY_ALWAYS_EAGER = True</code>, probably you'll also want <code>CELERY_EAGER_PROPAGATES_EXCEPTIONS = True</code> to find bugs</p>
↗
Flávio Juvenal
Jan 6, 2017
Topics:
celery, django
<p>Django bugfix release: 1.10.5 - update your projects! </p>
↗
https://www.djangoproject.com/weblog/2017/jan/04/bugfix-release/
Flávio Juvenal
Jan 5, 2017
Topics:
django
<p>Great advice from top startups in 2016: </p>
↗
http://firstround.com/review/the-30-best-pieces-of-advice-for-entrepreneurs-in-2016/
Flávio Juvenal
Jan 5, 2017
Topics:
entrepreneurship, startup
<p>"Write down any question you hear from customers more than twice. That'll feed your content marketing". From: </p>
↗
http://firstround.com/review/content-is-eating-the-world-contentlys-ceo-on-winning-at-marketings-fastest-growing-trend/
Flávio Juvenal
Jan 5, 2017
Topics:
marketing, product
<p>Great article about employee retention: </p>
↗
http://firstround.com/review/this-company-retains-95-percent-of-its-employees-heres-its-secret/
Flávio Juvenal
Jan 5, 2017
Topics:
career, management
<p>This is how you mock components when testing react with <code>jest</code>:</p> <p><code>// in your test file jest.mock('../path/to/component/to/Component.js');</code></p> <p>Create a <code>__mocks__</code> folder in the same directory of the component you want to test and a file with the same name of the component inside it:</p> <p><code>// __mocks__/Component.js import React from 'react'; export default function mock() { return (<span>Component mock</span>); }</code></p>
↗
Filipe Ximenes
Jan 3, 2017
Topics:
tests
Previous
Next
Close Cookie Preference Manager
Cookie Settings
By clicking “Accept all”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage and assist in our marketing efforts.
Check our privacy policies.
Strictly Necessary (Always Active)
Cookies required to enable basic website functionality.
Analytics
Cookies helping understand how this website performs, how visitors interact with the site, and whether there may be technical issues.
Marketing
Cookies used to deliver advertising that is more relevant to you and your interests.
Personalization
Cookies allowing the website to remember choices you make (such as your user name, language, or the region you are in).
Save settings
Accept all
We use Cookies to promote our services.
Settings and Privacy.
Accept