Skip to main content

Jul
10
awarded Popular Question
Jul
8
awarded Famous Question
Jul
6
awarded Yearling
Jul
6
awarded Yearling
Jul
3
revised How can I revert to the old context menu in Windows 11?
Clarify phrasing
Jul
3
awarded Commentator
Jul
3
comment How can I revert to the old context menu in Windows 11?
Note: the change will not take effect until the explorer.exe process is restarted.
Jun
25
answered Disable HTTP2 For Microsoft Edge
May
17
revised How can I rename a local Git branch?
Fix typo of enwbranch to newbranch
Mar
21
awarded Popular Question
Jan
12
awarded Popular Question
2023
Dec
11
revised How can I configure a MI424WR wireless router to provide specified DNS servers to DHCP clients?
corrected inaccurate instructions
Dec
1
asked How can I configure a MI424WR wireless router to provide specified DNS servers to DHCP clients?
Dec
1
answered How can I configure a MI424WR wireless router to provide specified DNS servers to DHCP clients?
Dec
1
asked How to configure a MI424WR wireless router to always assign a host the same IP via DHCP?
Dec
1
answered How to configure a MI424WR wireless router to always assign a host the same IP via DHCP?
Nov
19
comment Why is it better to use Glib data types (e.g. `gint` instead of `int`)?
In case anyone comes across this in the future: Glib has deprecated sized integer types in favor of C99 stdint.h: gitlab.gnome.org/GNOME/glib/-/issues/1484
Oct
15
awarded Citizen Patrol
Aug
28
comment Using stat() after fopen() to Avoid TOCTOU Problems?
For anyone in the future who wishes to go the route of fopen/fstat: if((stream = fopen("input.dat","r+")) != NULL) { if((status = fstat(fileno(stream),&buffer)) == 0) { printf("file status obtained.\n"); printf("file size is %ld\n",buffer.st_size); } }
Jul
18
comment Cipher suite selection for compatibility with http/2, and TLS 1.0-1.2
For any future visitors: See RFC 9113 section 9.2.2. TLS 1.2 Cipher Suites, httpwg.org/specs/rfc9113.html#tls12ciphers which references Appendix A, a list of unallowed cipher suites: httpwg.org/specs/rfc9113.html#BadCipherSuites
1 2 3 4 5