<p>One Way Smart Developers Make Bad Strategic Decisions: </p>
https://earthly.dev/blog/see-state/
Open link
Rebeca Sarai
Posted on
March 9, 2022
Topics:
decisions, software
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>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
<p>simple automated solution for dealing with trolls and toxic comments on your comments session: everyone has to rate before commenting and helps stoping hate speech</p>
↗
https://www.civilcomments.com
Rob Novelino
Jan 2, 2017
Topics:
blog
<p>React tip: the solution to “how do I avoid passing props many levels down” can be surprisingly simple: </p>
↗
https://twitter.com/dan_abramov/status/815378123227176960
Victor Carriço
Jan 2, 2017
Topics:
react
<p>Want to exclude a directory from <code>git diff</code>? Use <code>git diff old new --name-only | grep -v '/tests/' | xargs git diff old new --</code>. Replace old/new with your branches. From: </p>
↗
http://stackoverflow.com/a/4381121/145349
Flávio Juvenal
Dec 29, 2016
Topics:
bash, git
<p>On Django templates, avoid nested <code>for</code>s on simple cases by using <code>ifchanged</code> block tag: #ifchanged</p>
↗
https://docs.djangoproject.com/en/1.10/ref/templates/builtins/
Flávio Juvenal
Dec 28, 2016
Topics:
django, template
<p>Subscribe to NN/g newsletter for top articles about UX backed by real-world data </p>
↗
http://us4.campaign-archive1.com/?u=538d934a891681a5d850bb4e5&id=735c283b09&e=3cbb741b0a
Flávio Juvenal
Dec 28, 2016
Topics:
design, ux
<p>If there is an error with webpack build it will not stop your CI from deploying. Always use --bail </p>
↗
https://github.com/webpack/webpack/issues/708
André Ericson
Dec 28, 2016
Topics:
webpack
<p>On Django, validate ZIP codes, states, social security numbers and more with django-localflavor: </p>
↗
https://django-localflavor.readthedocs.io/en/latest/localflavor/us/
Flávio Juvenal
Dec 28, 2016
Topics:
django
<p>Use Hashids to generate short obfuscated strings from IDs. Useful for URL shorteners and human friendly IDs: </p>
↗
https://pypi.python.org/pypi/django-hashid-field
Felipe Farias
Dec 27, 2016
Topics:
django, python
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