Filter
Exclude
Time range
-
Near
Town Boy retweeted
¡Ivanka Trump ha cometido el mayor error de su vida con esa entrevista! Incluso después de la paralización de las obras en el proyecto de la isla de Kushner, los albaneses se niegan a volver a sus hogares y abandonar las calles y plazas, salvo después de que se revele a los implicados en esa traición y se entreguen sus tierras a los intereses de Israel. ¡La infección de la revolución albanesa se extenderá al resto de los países de Europa!
17
927
1,636
19,080
Nilah. retweeted
Instastory error, lagi ga bisa ngupload. Saya share di sini aja ya bapak ojol yang gagah. Panjang umur perjuangan
28
13,528
39,538
501,542
MARCO retweeted
No fue ningún error. El error fue contratar a los guionistas de mierda de Toy Story 4 que maltrataron a la niña. En los cortos previos Bonnie cuidaba bien de los juguetes.
El mayor error que cometio Andy #ToyStoryLa1
17
146
3,438
74,006
Mark Frederick retweeted
Replying to @ChristianHeiens
Categorical error. If there's anything the post Cold War era has given us, it's that trillions (yes, trillions) has been spent producing copious research and material on how to produce "nonviolent" regime change. Our side just hasn't bothered to look at it. 3.5% cuts both ways.
6
28
280
3,106
Karina retweeted
Ahora resulta que pintar la ciudad de morado fue un error de la empresa contratada, no un capricho de la jefa de gobierno. Que curioso que una empresa “especializada” (como se supone debe contratar el gobierno) no conociera las normas oficiales que establecen el amarillo para la infraestructura de tránsito. La cosa es que no es una empresa especializada, sino favorita de la jefa de Gobierno. En 8 años ha recibido más de 230 millones de sus gobiernos y todos de contratos para cosas diferentes entre sí, un claro acto de corrupción.
94
1,707
2,911
37,127
Replying to @BUDPR
Los de la diáspora andan como en el 1895: rebeldes sin causa. Más de 130 años estorbando la calidad de vida de los puertorriqueños que viven en la Isla y ahora reclutan a este aparato arrepentido de un error garrafal para adelantar sus fantasías.
Luly retweeted
Deseo de corazon que en unos meses recordemos el cooling break como el peor error de la historia del futbol, pero que sea solo eso, un recuerdo, que rectifiquen esta regla y no exista nunca mas. No podria soportar ver a mi equipo con esta mierda todos los fines de semana
16
453
4,493
24,696
lola retweeted
El viernes ya se lo explicó Ione Belarra y ayer siguió ahondando en el error, la ultraderechista Malena Contestí dice que García-Castellón demandó a Belarra por llamarle prevaricador. Pablo Fernández acaba diciéndole que se lea la demanda y deje de hacer el ridículo:
1
34
70
1,341
it’ll make (re)learning c much slower and error-prone with my dyslexia and adhd.
imagine if they banned all models and we all went back to writing code by hand and the last 6 months were just a fever dream…imagine
He's just assisting people in seeing the substantial error they've made. Being lead to believe that Fragile Farage is going to bring radical needed change. The Tourquoise Tory party - made up of the same money hungry Tories who ruined the nation.
2
Update: @TeamYouTube has confirmed the decision is final, but I still believe this was an automated error. The channel contained 100% original self produced music. The only unusual activity was deleting and re-uploading one video due to an audio error, which is not a policy violation. I have now also submitted an appeal via the official form. Is there any further escalation path available? @YouTubeCreators 🙏
2
Unfortunately its body got stuck between the fan blade and the body of the unit. AC showed error. So went to check & found it like that. Om Shanti to it
1
Parley Venezuela retweeted
Replying to @ParleyVenezuela
¡No te lo puedo creer! Una remontada histórica de 21 puntos tirada a la basura por un error mental en los últimos 5 segundos. Urbina se nubló por completo, esa bola era para congelarla y forzar las faltas. ¡Harakiri total de Guaiqueríes!
1
1
30
Replying to @abhisar_sharma
Every journalist made such an error , but what is this

Mr Sushil Kumar Shinde,You damaged the country 's and Sanatan Dharm 's reputation to please your party and its agenda. By doing so you gave a handle to your enemy country Pakistan to spread a false narrative of" Bhagwan Atangwad '
7
Maikomauuuuu retweeted
Achraf Hakimi, fruto de un error
9
51
1,841
23,918
Replying to @neem_jamhoori
Typo error. 2003 obviously
1
1
Emmy Jakes retweeted
Day 2 of Documenting my Data Engineering Journey Today I went hands-on with SQL Error Handling. Here's what I built: → A Stored Procedure that inserts orders into a Sales database → Wrapped in a TRY/CATCH block → If it fails — it captures the exact Error Message() and Error_Number () → No silent failures. No guessing. The database tells you what broke. Why this matters: → Pipelines fail → Data is dirty → Errors are inevitable A pipeline without error handling is a pipeline you can't trust. This is the difference between SQL that works on your laptop and SQL that survives in production. Building in public from Nigeria 🇳🇬 US. UK. India. The tech ecosystem is watching. Follow along. Day 3 is loading. #DataEngineering #BuildInPublic #SQL
Day 1 of Documenting My Data Engineering Journey Today, I started learning about stored procedures in SQL. A stored procedure is like a saved set of SQL instructions inside a database. Instead of writing the same SQL code again and again, I can save it once and run it whenever I need it. Today, I learned three important concepts: 1. Control / `IF ELSE 2. Error Handling 3. Styling in Stored Procedures 1. Control / IF ELSE in Stored Procedures I learned that control statements help stored procedures make decisions. It works like normal decision-making in real life: sql IF something is true Do this ELSE Do something else For example, if a student scores 50 or above, they pass. Else, they fail. sql CREATE PROCEDURE CheckStudentResult @Score INT AS BEGIN IF @Score >= 50 BEGIN PRINT 'You passed!'; END ELSE BEGIN PRINT 'You failed. Try again.'; END END; I also learned that `IF ELSE` can be used to check things like: - Whether a student passed or failed - Whether someone is old enough to vote - Whether a product is in stock - Whether a customer should get a discount - Whether a user is an admin or normal user Example: sql CREATE PROCEDURE CheckVotingAge @Age INT AS BEGIN IF @Age >= 18 BEGIN PRINT 'You can vote.'; END ELSE BEGIN PRINT 'You are too young to vote.'; END END; So, I now understand that `IF ELSE` helps stored procedures choose what action to take. 2. Error Handling in Stored Procedures I learned that error handling means preparing for mistakes in SQL code. Sometimes something can go wrong, like: - Dividing by zero - Inserting duplicate data - Trying to update data that does not exist - A money transfer failing halfway Instead of letting the whole procedure crash badly, we can use: ```sql BEGIN TRY -- Code that might cause an error END TRY BEGIN CATCH -- Code that runs if an error happens END CATCH ``` Example: ```sql CREATE PROCEDURE DivideNumbers @Number1 INT, @Number2 INT AS BEGIN BEGIN TRY SELECT @Number1 / @Number2 AS Result; END TRY BEGIN CATCH PRINT 'Error: You cannot divide by zero.'; END CATCH END; ``` I also learned that SQL Server has useful error functions like: ```sql ERROR_MESSAGE() ``` This shows the actual error message. Example: ```sql CREATE PROCEDURE ShowErrorMessage AS BEGIN BEGIN TRY SELECT 10 / 0; END TRY BEGIN CATCH PRINT ERROR_MESSAGE(); END CATCH END; ``` I also learned about using transactions with error handling. A transaction means: Do everything successfully, or undo everything. Example: ```sql CREATE PROCEDURE TransferMoney @FromAccount INT, @ToAccount INT, @Amount DECIMAL(10,2) AS BEGIN BEGIN TRY BEGIN TRANSACTION; UPDATE Accounts SET Balance = Balance - @Amount WHERE AccountId = @FromAccount; UPDATE Accounts SET Balance = Balance @Amount WHERE AccountId = @ToAccount; COMMIT TRANSACTION; PRINT 'Transfer successful.'; END TRY BEGIN CATCH ROLLBACK TRANSACTION; PRINT 'Transfer failed. Money returned.'; PRINT ERROR_MESSAGE(); END CATCH END; ``` This taught me that error handling is very important because it protects the database from bad or incomplete changes. 3. Styling in Stored Procedures I learned that styling means writing stored procedures in a clean and readable way. Good styling makes SQL easier to understand, especially when the code becomes long. Bad style: ```sql create procedure getstudents as begin select * from students end ``` Good style: ```sql CREATE PROCEDURE GetStudents AS BEGIN SELECT * FROM Students; END; ``` I learned some good styling rules: - Use clear procedure names - Use clear parameter names - Write SQL keywords in uppercase - Use indentation - Add comments only when needed - Keep the code organized Example of a clear procedure name: ```sql CREATE PROCEDURE GetAllCustomers AS BEGIN SELECT * FROM Customers; END; ``` Example of clear parameter names: ```sql CREATE PROCEDURE GetStudentById @StudentId INT AS BEGIN SELECT StudentId, Name, Age FROM Students WHERE StudentId = @StudentId; END; ``` Example with comments: ```sql CREATE PROCEDURE GetPassedStudents AS BEGIN -- Get students who scored 50 or above SELECT Name, Score FROM Students WHERE Score >= 50; END; ``` I also learned about using `SET NOCOUNT ON;`, which helps stop unnecessary messages from being returned. ```sql CREATE PROCEDURE RegisterStudent @Name VARCHAR(50), @Age INT, @ClassName VARCHAR(20) AS BEGIN SET NOCOUNT ON; IF @Age < 3 BEGIN PRINT 'Student is too young.'; RETURN; END; INSERT INTO Students(Name, Age, ClassName) VALUES (@Name, @Age, @ClassName); PRINT 'Student registered successfully.'; END; ``` My Summary for Today Today, I learned that stored procedures are saved SQL instructions that help make database work easier and reusable. I learned that: -Control / IF ELSE* helps stored procedures make decisions. -Error handling helps stored procedures handle problems without crashing badly. -Styling helps make stored procedures clean, readable, and professional. This is an important step in my data engineering journey because data engineers work with databases a lot. Understanding stored procedures will help me write better SQL, manage data safely, and build stronger database workflows. Day 1 completed. #Datafam
6
3
26
625