It can help abstract the differences you may have across projects. If you're on a team with many projects/repositories, having conventions across them all helps improve onboarding, cross-teamwork and promotes better dev…
Isn't this an implicit risk anyone who purchases a 'smart' device takes? Every company will eventually discontinue their cloud service for a product line when it suits their needs. We have seen this countless times in…
Cookies are used for double-submit CSRF protection pattern. One copy of the CSRF token is put into a hidden form field, and the other is in a cookie. https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Re...
That's fair, not having a cookie could work for session, how would you handle CSRF protection on a login form without cookies?
I believe that knowing whether or not you are logged would be part of the strictly necessary.
The sentrysid, sc, and sudo cookies are all login state cookies btw.
But you're thinking of it as an end customer. What if instead of a 'charging' station getting all the transaction fees the car manufacturers could haggle for some bps and work their way towards a controlling interest in…
> Who listens to music any more? It might not be your thing, but I frequently use 'active listening to music' as a way to relax after a long day. I don't have ultra high end kit either. I'm doing most of my listening on…
Jet Brains Mono https://www.jetbrains.com/lp/mono/ is another contender. It has a crossbar I, a dotted 0, and easily distinguishable i, 1, l.
Why? We all have to pay for shelter and food. This looks like what could become a fantastic business and product. I applaud their commitments to privacy and open-source at such an early stage. I am looking forward to…
Interesting, I've never seen this mode of firefox before. I checked a few other sites and they also had a 'Failed to load article from page' error. Do you have a link for a site that does work?
Yes, CakePHP is still maintained. The API docs are something that is being worked on and, we'll get the 404s fixed soon. What browser are you having problems with in reader mode?
Sentry's hosted and self-hosted options offer APM, and the source is open with an eventually permissive license. (disclosure: I work for Sentry)
I run https://stickler-ci.com While it is not currently at 500/month but it has been there in the past. I started this as a way to improve review speed at a previous position and it was well received, so I converted the…
100% agree. The butterfly switch MBP I have is by far the worst keyboard I have ever used. After a few hours of typing on that keyboard my fingers are sore from instant bottom out into what feels like a sheet of metal.
Just to clarify, I was never a developer of Passbolt. I think they based their repository off of CakePHP (which I do maintain) and inherited all the commit history that way.
Nope. The parent commenter came to some interesting conclusions, but I've never worked on passbolt. From what I remember passbolt based their repository on CakePHP (of which I'm a maintainer) and inherited all the git…
I've had good experiences using celery-beat to replace crond. It lets you use all the good parts of celery without much work. http://docs.celeryproject.org/en/latest/userguide/periodic-t...
Yay HORSE the band as a soundtrack!
CakePHP had an issue with unserialize() at one point. Since then we've wised up about using putting user data into unserialize()
That sounds crazy to me, but I have very little experience with ruby. In PHP/python doing that can be unpleasant.
If a team is using different versions/runtimes of ruby I would have to agree this is an organizational feature in some cases. If you're working on a webapp you should be aiming to make as few differences between a…
> It's a great use case because 99.9% of DB interactions are read-only searches. Did you ever consider a datasource like elasticsearch? If yes what made you choose mongo?
I find the lack of ticket features in github has been the biggest blocker. Doing any reporting, or saved searches on github issues requires custom tooling.
As a source repository its more than useful for non-toy projects from my experience. While the issue features a bit lacking when compared to full blown ticket trackers, the pull request feature is brilliant. I've yet to…
It can help abstract the differences you may have across projects. If you're on a team with many projects/repositories, having conventions across them all helps improve onboarding, cross-teamwork and promotes better dev…
Isn't this an implicit risk anyone who purchases a 'smart' device takes? Every company will eventually discontinue their cloud service for a product line when it suits their needs. We have seen this countless times in…
Cookies are used for double-submit CSRF protection pattern. One copy of the CSRF token is put into a hidden form field, and the other is in a cookie. https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Re...
That's fair, not having a cookie could work for session, how would you handle CSRF protection on a login form without cookies?
I believe that knowing whether or not you are logged would be part of the strictly necessary.
The sentrysid, sc, and sudo cookies are all login state cookies btw.
But you're thinking of it as an end customer. What if instead of a 'charging' station getting all the transaction fees the car manufacturers could haggle for some bps and work their way towards a controlling interest in…
> Who listens to music any more? It might not be your thing, but I frequently use 'active listening to music' as a way to relax after a long day. I don't have ultra high end kit either. I'm doing most of my listening on…
Jet Brains Mono https://www.jetbrains.com/lp/mono/ is another contender. It has a crossbar I, a dotted 0, and easily distinguishable i, 1, l.
Why? We all have to pay for shelter and food. This looks like what could become a fantastic business and product. I applaud their commitments to privacy and open-source at such an early stage. I am looking forward to…
Interesting, I've never seen this mode of firefox before. I checked a few other sites and they also had a 'Failed to load article from page' error. Do you have a link for a site that does work?
Yes, CakePHP is still maintained. The API docs are something that is being worked on and, we'll get the 404s fixed soon. What browser are you having problems with in reader mode?
Sentry's hosted and self-hosted options offer APM, and the source is open with an eventually permissive license. (disclosure: I work for Sentry)
I run https://stickler-ci.com While it is not currently at 500/month but it has been there in the past. I started this as a way to improve review speed at a previous position and it was well received, so I converted the…
100% agree. The butterfly switch MBP I have is by far the worst keyboard I have ever used. After a few hours of typing on that keyboard my fingers are sore from instant bottom out into what feels like a sheet of metal.
Just to clarify, I was never a developer of Passbolt. I think they based their repository off of CakePHP (which I do maintain) and inherited all the commit history that way.
Nope. The parent commenter came to some interesting conclusions, but I've never worked on passbolt. From what I remember passbolt based their repository on CakePHP (of which I'm a maintainer) and inherited all the git…
I've had good experiences using celery-beat to replace crond. It lets you use all the good parts of celery without much work. http://docs.celeryproject.org/en/latest/userguide/periodic-t...
Yay HORSE the band as a soundtrack!
CakePHP had an issue with unserialize() at one point. Since then we've wised up about using putting user data into unserialize()
That sounds crazy to me, but I have very little experience with ruby. In PHP/python doing that can be unpleasant.
If a team is using different versions/runtimes of ruby I would have to agree this is an organizational feature in some cases. If you're working on a webapp you should be aiming to make as few differences between a…
> It's a great use case because 99.9% of DB interactions are read-only searches. Did you ever consider a datasource like elasticsearch? If yes what made you choose mongo?
I find the lack of ticket features in github has been the biggest blocker. Doing any reporting, or saved searches on github issues requires custom tooling.
As a source repository its more than useful for non-toy projects from my experience. While the issue features a bit lacking when compared to full blown ticket trackers, the pull request feature is brilliant. I've yet to…