#overflow — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #overflow, aggregated by home.social.
-
About 30,000 gallons of sewage spills in Beaufort
BEAUFORT, N.C. (WITN) – Officials say about 30,000 gallons of …
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #Environment #basin #beaufort #electrical #freedomparkroad #gallons #nc #northcarolina #overflow #repair #repairs #River #riverbasin #saturday #Science #Sewage #spill #Spills #townofbeaufort #turner'screek #Waste #wastewater #water #WhiteOak #whiteoakriver #whiteoakriverbasin #witn
https://www.newsbeep.com/us/651641/ -
About 30,000 gallons of sewage spills in Beaufort
BEAUFORT, N.C. (WITN) – Officials say about 30,000 gallons of …
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #Environment #basin #beaufort #electrical #freedomparkroad #gallons #nc #northcarolina #overflow #repair #repairs #River #riverbasin #saturday #Science #Sewage #spill #Spills #townofbeaufort #turner'screek #Waste #wastewater #water #WhiteOak #whiteoakriver #whiteoakriverbasin #witn
https://www.newsbeep.com/us/651641/ -
Why Keyboard Users Can’t Scroll Your Overflow Containers, by @csstricks:
https://css-tricks.com/why-keyboard-users-cant-scroll-your-overflow-containers/
-
Why Keyboard Users Can’t Scroll Your Overflow Containers, by @csstricks:
https://css-tricks.com/why-keyboard-users-cant-scroll-your-overflow-containers/
-
Why Keyboard Users Can’t Scroll Your Overflow Containers, by @csstricks:
https://css-tricks.com/why-keyboard-users-cant-scroll-your-overflow-containers/
-
Why Keyboard Users Can’t Scroll Your Overflow Containers, by @csstricks:
https://css-tricks.com/why-keyboard-users-cant-scroll-your-overflow-containers/
-
Why Keyboard Users Can’t Scroll Your Overflow Containers, by @csstricks:
https://css-tricks.com/why-keyboard-users-cant-scroll-your-overflow-containers/
-
THANK YOU ALL!!! - what errors should I check for and handle?
Thank you all for your kind, patient and educative responses when I obnoxiously post amateur questions! 💙 While I cannot make any promises because of how my brain works, I am almost ready to continue reading *The C Programming Language, 2nd Edition”. I just want to experiment a little bit with error handling, specifially how to handle wrong input (char VS. int, etc.) and also to learn to indentify code that runs the risk of overflow/underflow.
Question: what errors do you recommend checking for and handling?
Meanwhile, thank you all! 🥰
#include <stdio.h> //Function declarations int newPin(); int checkPin(int i); //Program that prompts for, verifies and saves pins temporarily into an array int main() { //New pin int pin = 0; //History int history[10] = {0,0,0,0,0,0,0,0,0,0}; int history_limit = 10; int history_index = 0; printf("Hello there! What would you like to do? (V)iew your saved pins, (S)ave a new pin or (E)xit: "); int choice = 0; while ((choice = getchar()) != EOF) { switch (choice) { case ('V'): { //Display saved pins printf("\nYour saved pins are:\n\n"); for (int i = 0; i < history_limit; i++) printf("%d\n", history[i]); printf("\nWhat would you like to do next? (V)iew your saved pins, (S)ave a new pin or (E)xit: "); break; } case('S'): { //Prompt for and verify newly entered pin pin = newPin(); if (checkPin(pin) == pin) { history[history_index] = pin; history_index++; if (history_index >= history_limit) history_index = 0; } break; } case ('E'): goto EXIT; //Terminate program } } EXIT: printf("\nGoodbye!\n"); return 0; } //Function definitions //Prompt user to enter a new pin int newPin() { int pin = 0; printf("This enter your pin: "); scanf("%d", &pin); getchar(); return pin; } //Verify newly entered pin int checkPin (int i) { int check = 0; printf("Confirm your new pin: "); while((scanf("%d", &check)) != EOF) { if (check != i) printf("Mismatch! Confirm your new pin: "); else if (check == i) { printf("Success! Your new pin is %d. What would you like to do next? (V)iew your saved pins, (S)ave a new pin or (E)xit: ", i); goto EXIT; } } EXIT: return i; } //TODO //Error handling (overflow, input data type, other?) -
THANK YOU ALL!!! - what errors should I check for and handle?
https://piefed.blahaj.zone/c/c_lang/p/743161/thank-you-all-what-errors-should-i-check-for-and-handle
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
[C programming] Why and how is the allocated bytes affecting these unexpected behaviors?
-
[C programming] Why and how is the allocated bytes affecting these unexpected behaviors?
-
[C programming] Why and how is the allocated bytes affecting these unexpected behaviors?
-
[C programming] Why and how is the allocated bytes affecting these unexpected behaviors?
-
[C programming] Why and how is the allocated bytes affecting these unexpected behaviors?
-
[C] What is the relationship between string length, allocated memory size and overflow?
-
Demystifying Block Formatting Contexts, by @ppk:
-
Demystifying Block Formatting Contexts, by @ppk:
-
Demystifying Block Formatting Contexts, by @ppk:
-
Demystifying Block Formatting Contexts, by @ppk:
-
# Think of the children!
EU age verification APP cracked in 120 secs
The hack was so easy it looks like the app was designed to be so weak
https://cybernews.com/security/eu-age-verification-app-hack/
#InfoSec #EU #Age #Verification #hack #crack #programming #buffer #overflow #programming #Android
-
# Think of the children!
EU age verification APP cracked in 120 secs
The hack was so easy it looks like the app was designed to be so weak
https://cybernews.com/security/eu-age-verification-app-hack/
#InfoSec #EU #Age #Verification #hack #crack #programming #buffer #overflow #programming #Android
-
# Think of the children!
EU age verification APP cracked in 120 secs
The hack was so easy it looks like the app was designed to be so weak
https://cybernews.com/security/eu-age-verification-app-hack/
#InfoSec #EU #Age #Verification #hack #crack #programming #buffer #overflow #programming #Android
-
# Think of the children!
EU age verification APP cracked in 120 secs
The hack was so easy it looks like the app was designed to be so weak
https://cybernews.com/security/eu-age-verification-app-hack/
#InfoSec #EU #Age #Verification #hack #crack #programming #buffer #overflow #programming #Android
-
# Think of the children!
EU age verification APP cracked in 120 secs
The hack was so easy it looks like the app was designed to be so weak
https://cybernews.com/security/eu-age-verification-app-hack/
#InfoSec #EU #Age #Verification #hack #crack #programming #buffer #overflow #programming #Android
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
Security Patches
InfoSec
Regardless of which Operating System you run, it is important to keep up with the critical updates to keep your machines as safe as possible
- Realize that by the time a critical bug has been reported, verified, patched and delivered to your distribution of choice, a significant amount of time has passed...
- From the first day the bug has been discovered [zero day] to the day you patch your computing machine, you've had a vunurable open machine in that one respect.
- Keep the amount of time between the availability, of patches & the update of your machines, especially your VMs (Qemu et al) & physical servers as short as possible
- Make sure to always use manual updates on your server VM's!
- I shall not explain why, start reading on Wikipedia and furthe, the explanation is too long for this short post
Notes:
- every OS can have vunurabilities
- Security in obscurity does not work!
- you are not secure because you run obsolete AmigaOS QNX or cool and niche *BSD as an OS
- buffer overflows hide everywhere
- I reguraly find them!
#Security #patches #programming #InfoSec #AmigaOS #Amiga #QNX #Linux #feeBSD #netBSD #openBSD #technology #software #buffer #overflow #mathematics
-
Security Patches
InfoSec
Regardless of which Operating System you run, it is important to keep up with the critical updates to keep your machines as safe as possible
- Realize that by the time a critical bug has been reported, verified, patched and delivered to your distribution of choice, a significant amount of time has passed...
- From the first day the bug has been discovered [zero day] to the day you patch your computing machine, you've had a vunurable open machine in that one respect.
- Keep the amount of time between the availability, of patches & the update of your machines, especially your VMs (Qemu et al) & physical servers as short as possible
- Make sure to always use manual updates on your server VM's!
- I shall not explain why, start reading on Wikipedia and furthe, the explanation is too long for this short post
Notes:
- every OS can have vunurabilities
- Security in obscurity does not work!
- you are not secure because you run obsolete AmigaOS QNX or cool and niche *BSD as an OS
- buffer overflows hide everywhere
- I reguraly find them!
#Security #patches #programming #InfoSec #AmigaOS #Amiga #QNX #Linux #feeBSD #netBSD #openBSD #technology #software #buffer #overflow #mathematics
-
Security Patches
InfoSec
Regardless of which Operating System you run, it is important to keep up with the critical updates to keep your machines as safe as possible
- Realize that by the time a critical bug has been reported, verified, patched and delivered to your distribution of choice, a significant amount of time has passed...
- From the first day the bug has been discovered [zero day] to the day you patch your computing machine, you've had a vunurable open machine in that one respect.
- Keep the amount of time between the availability, of patches & the update of your machines, especially your VMs (Qemu et al) & physical servers as short as possible
- Make sure to always use manual updates on your server VM's!
- I shall not explain why, start reading on Wikipedia and furthe, the explanation is too long for this short post
Notes:
- every OS can have vunurabilities
- Security in obscurity does not work!
- you are not secure because you run obsolete AmigaOS QNX or cool and niche *BSD as an OS
- buffer overflows hide everywhere
- I reguraly find them!
#Security #patches #programming #InfoSec #AmigaOS #Amiga #QNX #Linux #feeBSD #netBSD #openBSD #technology #software #buffer #overflow #mathematics
-
Security Patches
InfoSec
Regardless of which Operating System you run, it is important to keep up with the critical updates to keep your machines as safe as possible
- Realize that by the time a critical bug has been reported, verified, patched and delivered to your distribution of choice, a significant amount of time has passed...
- From the first day the bug has been discovered [zero day] to the day you patch your computing machine, you've had a vunurable open machine in that one respect.
- Keep the amount of time between the availability, of patches & the update of your machines, especially your VMs (Qemu et al) & physical servers as short as possible
- Make sure to always use manual updates on your server VM's!
- I shall not explain why, start reading on Wikipedia and furthe, the explanation is too long for this short post
Notes:
- every OS can have vunurabilities
- Security in obscurity does not work!
- you are not secure because you run obsolete AmigaOS QNX or cool and niche *BSD as an OS
- buffer overflows hide everywhere
- I reguraly find them!
#Security #patches #programming #InfoSec #AmigaOS #Amiga #QNX #Linux #feeBSD #netBSD #openBSD #technology #software #buffer #overflow #mathematics
-
Security Patches
InfoSec
Regardless of which Operating System you run, it is important to keep up with the critical updates to keep your machines as safe as possible
- Realize that by the time a critical bug has been reported, verified, patched and delivered to your distribution of choice, a significant amount of time has passed...
- From the first day the bug has been discovered [zero day] to the day you patch your computing machine, you've had a vunurable open machine in that one respect.
- Keep the amount of time between the availability, of patches & the update of your machines, especially your VMs (Qemu et al) & physical servers as short as possible
- Make sure to always use manual updates on your server VM's!
- I shall not explain why, start reading on Wikipedia and furthe, the explanation is too long for this short post
Notes:
- every OS can have vunurabilities
- Security in obscurity does not work!
- you are not secure because you run obsolete AmigaOS QNX or cool and niche *BSD as an OS
- buffer overflows hide everywhere
- I reguraly find them!
#Security #patches #programming #InfoSec #AmigaOS #Amiga #QNX #Linux #feeBSD #netBSD #openBSD #technology #software #buffer #overflow #mathematics
-
https://www.europesays.com/be-fr/38057/ Pourquoi consomme-t-on? Pour tenir jusqu’au bout de la nuit, pousser la confiance en soi, oublier… #BE #BEFr #Belgique #Belgium #blockage #bollards #broken #burst #city #cold #DailyLife #damp #drain #drainage #emergency #failure #flood #INFRASTRUCTURE #Leak #legs #liquid #maintenance #manhole #outdoor #overflow #pavement #pedestrians #problem #PublicSpace #puddle #road #runoff #safety #sewage #shoes #sidewalk #splash #street #urban #utility #walking #water #wet #winter
-
My Garmin watch hit an empty battery, upon connecting to the charger the step counter went haywire and apparently overflowed 🤣
-
#overflow : to flow over
- French: débordement
- German: überschwemmen, die Überschwemmung
- Portuguese: transbordar
- Spanish: desbordamiento
------------
Try our new word guessing game @ https://24hippos.com
-
Fixing a Buffer Overflow in Unix v4 Like It's 1973
https://sigma-star.at/blog/2025/12/unix-v4-buffer-overflow/
#HackerNews #Fixing #a #Buffer #Overflow #in #Unix #v4 #Like #1973 #unix #v4 #buffer #overflow #cybersecurity #programming #history
-
Hi, Mastodon 🦣 can you help me out?
If you can test in actual Safari, what do you see for this demo?
https://codepen.io/thebabydino/pen/EayKKjQ??editors=1100
Is it the result in the first screenshot? (what I get in Chrome & Firefox)
Or the result in the second screenshot? (what I get in Epiphany)
If you cannot test yourself, boosts appreciated. 🙏
Thank you!
#CSS #SVG #filter #svgFilter #overflow #web #dev #webDev #webDevelopment #code #coding #frontend #bug
-
StackOverflow 的每月發問數量已經降到開站第一個月的等級了
-
StackOverflow 的每月發問數量已經降到開站第一個月的等級了
-
StackOverflow 的每月發問數量已經降到開站第一個月的等級了
-
StackOverflow 的每月發問數量已經降到開站第一個月的等級了
-
StackOverflow 的每月發問數量已經降到開站第一個月的等級了