TILs - Fueling Curiosity, One Insight at a Time
At Codemancers, we believe every day is an opportunity to grow. This section is where our team shares bite-sized discoveries, technical breakthroughs and fascinating nuggets of wisdom we've stumbled upon in our work.
- Published
- Author
- Goromlagche
git log has grep.
git log --grep=“something something”
also can do some cut head etc to read the whole commit(which generally is the goal) at once
$git log --grep=“something something” | head -1 | cut -d” ” -f2 | xargs -I{} git show {}
git log --grep=“something something”
also can do some cut head etc to read the whole commit(which generally is the goal) at once
$git log --grep=“something something” | head -1 | cut -d” ” -f2 | xargs -I{} git show {}
- Published
- Author
- George
Postgres will look up an index only if it is worthwhile to look up an index. It will simply use regular row fetching otherwise. https://thoughtbot.com/blog/why-postgres-wont-always-use-an-index
- Published
- Author
- George
Postgres will look up an index only if it is worthwhile to look up an index. It will simply use regular row fetching otherwise. https://thoughtbot.com/blog/why-postgres-wont-always-use-an-index
- Published
- Author
- Goromlagche
to debug statsd servers, this is a helpful command,
echo "your.statsd.counter:1|c" | nc -u -w 1 your.statsd.host.com 8125- Published
- Author
- Revath
port forward via ssh.
ssh -L8200:127.0.0.1:8200 192.168.1.2. https://www.ssh.com/ssh/tunneling/example#local-forwarding- Published
- Author
- Akshay
Code
+----------+---------+---------------------+------------------------+-------------+
| | context | matched docs scored | matched docs in result | exact match |
+----------+---------+---------------------+------------------------+-------------+
| must | query | yes | yes | yes |
| filter | filter | no | yes | yes |
| should | query | yes | yes | no |
| must_not | filter | no | no | yes |
+----------+---------+---------------------+------------------------+-------------+- Published
- Author
- Revath
mac set custom default folder for screenshots
defaults write com.apple.screencapture location /path/to/Screenshots- Published
- Author
- Revath
incase
pod install throws error xcrun:_ error: SDK "iphoneos" cannot be located run sudo xcode-select --switch /Applications/Xcode.app. souce: https://github.com/facebook/react-native/issues/18408#issuecomment-386696744- Published
- Author
- Iffyuva
This site https://imageonline.co/ is very handy to manipulate images online without searching for imagemagick commands
Showing page 51 of 83
Your competitors are already using AI.
The question is how fast you want to unlock the value.
Don't know where to start?
AI is everywhere but it's unclear which investments will actually move your metrics and which are expensive experiments.
Your data isn't ready
Most AI projects fail at the data layer. Pipelines, quality, access all need work before LLMs can deliver value.
Internal teams are stretched
Your engineers are shipping product. They don't have capacity to also become AI specialists with production-grade experience.
Legacy systems block everything
Aging, undocumented codebases make AI integration slow, risky, and expensive. They need to move first.