Sabitlenmiş Tweet
Soumyabrata
394 posts


@Proton_Pass lemme share xkcd comic too. yes/no questions are needed - log (base 2) (100,000) = 17 bits. now usual word trabador takes 17 bits. tried to introduce minor substitutions (+4 bits). (+1 for cap) 10 digits (log 10 = 3) and 16 sc (log 16 = 4) 17+4+7 = 28 bits and 2^28 combination.

English

@Proton_Pass c because its just letters, special characters and no numbers
a good password must contain a mixture of numbers, special characters and letters
English

@cyber_razz chmod: chmod is for changing file permissions.
examples: chmod 777 file.txt
(gives read, execute and write permissions 4+1+2)
2. chgrp: used for changing the group
sudo chgrp developers file.txt
3. chown: changes owner + group
sudo chown john:developers file.txt
(c) ans
English

nobody saw me coding till 3am,
nobody saw me shipping projects,
nobody saw me grinding weekends,
nobody saw me debugging for hours,
nobody saw me landing a job at MNC,
nobody saw me earning $10k a month,
nobody saw me pushing to prod at 4AM,
nobody saw me reading docs at midnight,
because I didn't do any of that 😭💀
English

@sonukg4india umm
1 + 1/a + 1/a² + 1/a³ ..... = 2018
subtract 1
1/a + 1/a² + 1/a³ + .... = 2017
1/a ( 1 + 1/a + 1/a² + ...) = 2017
1/a (2018) = 2017 a = 2018/2017
imagining same happens for b, b = 2019/2018
2019/2018 × 2017 / 2018 = 1/2018² (2019 × 2017)~1
English
Soumyabrata retweetledi

Because 9 idle connections doesn’t always mean your request can actually use them
Most likely:
one request is holding a lock/resource while waiting on the external API.
Now every other request piles up behind it:
- waiting for the same DB row
- transaction lock
- synchronized section
- connection checkout
- or thread pool starvation
So technically the pool looks healthy 9 idle, 1 active
…but that 1 active connection is blocking progress for everyone else
English





















