Search found 2686 matches

by admin
Thu Mar 21, 2024 11:43 am
Forum: Babbling
Topic: how to post code
Replies: 0
Views: 16

how to post code

Use the next block (delete spaces inside square brackets [ ])
[ code ]
int main();
[ /code ]

Code: Select all

int main();
by admin
Thu Mar 21, 2024 8:48 am
Forum: Raspberry Pi and ESP32 Programming
Topic: Lesson 1
Replies: 2
Views: 1787

Re: Lesson 1

Open esp32simulator. Create the folder "blinky" in the directory "esp32projects". Create the next files "main.py", "diagram.json" inside the folder "blinky". Connect all components with wires in the same way, as in the picture. You can rotate a compo...
by admin
Wed Mar 20, 2024 11:02 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

You can make a real circuit and use blinking LED for a Christmas tree or put it in a toy police car and give it as a gift to children.
by admin
Wed Mar 20, 2024 10:35 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

Create a new code file in SimulIDE. Copy-paste the program to the code window of SimulIDE (you may click the button Select All (from the previous post) and press Ctrl+С (to copy the code from the forum) and Ctrl+V (to paste the code)). Click "Save". Then enter "File name: blinking-led...
by admin
Wed Mar 20, 2024 10:33 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

int led=13; //creates variable led:=13 void setup(){ pinMode(led, OUTPUT); //makes the pin 13 an output } void loop(){ digitalWrite(led, 1); //writes the HIGH value to the digital pin 13 delay(2000); //delay 2 seconds digitalWrite(led, 0); //writes the LOW value to the digital pin 13 delay(2000); }
by admin
Wed Mar 20, 2024 10:32 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

int led=13; //creates variable led:=13 void setup(){ pinMode(led, OUTPUT); //makes the pin 13 an output } void loop(){ digitalWrite(led, 1); //writes the HIGH value to the digital pin 13 delay(2000); //delay 2 seconds digitalWrite(led, 0); //writes the LOW value to the digital pin 13 delay(2000); }...
by admin
Wed Mar 20, 2024 9:43 pm
Forum: Raspberry Pi and ESP32 Programming
Topic: Lesson 1
Replies: 2
Views: 1787

Re: Lesson 1

Create the file "blinky.py" inside the folder "raspberryemulator" and copy-paste the next code (you may click the button Select Al and press Ctrl+С (to copy the code from the forum) and Ctrl+V (to paste the code)) from EmulatorGUI import GPIO #import RPi.GPIO as GPIO import time ...
by admin
Wed Mar 20, 2024 4:06 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

Blinking LED in Arduino. Now we will create an Arduino project using a sketch. A sketch is the name that Arduino uses for a program. It's the unit of code that is uploaded to and run on an Arduino board. Create the folder "blinking-led-arduino" in the directory "my-avr". Create t...
by admin
Wed Mar 20, 2024 2:03 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

Create inside the subfolder "blinking-led-arduino-asm_ino" the next files blinking-led-arduino-asm.ino, blinking-led-arduino-asm.S using Notepad. ====================== 1.Open Notepad 2.File->Save As... and browse to the subfolder "blinking-led-arduino-asm_ino" 3.File name: blink...
by admin
Wed Mar 20, 2024 1:54 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

Arduino has AVR microcontroller inside. It can be ATmega328, ATmega168 or ATmega8. We will prove it by creating our first Arduino program in Avrasm. Blinking LED in Arduino Avrasm. Create the folder "blinking-led-arduino-asm" in the directory "my-avr". Create the subfolder "...
by admin
Tue Mar 19, 2024 11:21 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

Create a new code file in SimulIDE. Copy-paste the program to the code window of SimulIDE (you may click the button Select All (from the previous post) and press Ctrl+С (to copy the code from the forum) and Ctrl+V (to paste the code)). Click "Save". Then enter "File name: blinking-led...
by admin
Tue Mar 19, 2024 10:13 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

#include <avr/io.h> //includes library, standard AVR header #define LED 0 //defines the constant LED. Now LED:=0 void delayms(volatile unsigned long j) { volatile unsigned long i; for(i=0; i < 157*j; i++); //loops i from 0 to 157*j } int main(void) { DDRD |= (1<<LED); //makes PORTD0 an output while...
by admin
Tue Mar 19, 2024 10:13 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

#include <avr/io.h> //includes library, standard AVR header #define LED 0 //defines the constant LED. Now LED:=0 void delayms(volatile unsigned long j) { volatile unsigned long i; for(i=0; i < 157*j; i++); //loops i from 0 to 157*j } int main(void) { DDRD |= (1<<LED); //makes PORTD0 an output while...
by admin
Tue Mar 19, 2024 8:44 pm
Forum: AVR Microcontroller and Arduino Programming
Topic: Lesson 1
Replies: 16
Views: 1421

Re: Lesson 1

Blinking LED in AVR GCC. Create the folder "blinking-led-avr-c" in the directory "my-avr". Create the subfolder "gcb_code" in the folder "blinking-led-avr-c". Open the program SimulIDE and click "Save Circuit As", then save your project to the folder...
by admin
Tue Mar 19, 2024 5:20 pm
Forum: Student Lobby
Topic: Student heon950's corner
Replies: 0
Views: 25

Student heon950's corner

Have a good day! I want you to post a short essay about yourself and your aims here. It will help us to pick up an individual plan for you. I'd like to see answers to the next questions in your essay. You can answer whatever you want (it's just an example of an essay, you may not follow it strictly)...
by admin
Fri Mar 08, 2024 3:14 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

which way the wind blows
----------------------------------------
What the real situation is.
by admin
Fri Mar 08, 2024 3:12 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

on hand
------------------------------------
If someone or something is on hand, they are near and able to be used if they are needed.
Do you have a calculator on hand?
by admin
Fri Mar 08, 2024 3:11 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

odds and ends
---------------------------------
Various things of different types, usually small and not important, or of little value.
by admin
Fri Mar 08, 2024 3:10 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

man of his word
-----------------------------------
A person who can be trusted to keep a promise; a reliable person.
by admin
Fri Mar 08, 2024 3:08 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

nail something down
----------------------------------
To finalize
by admin
Fri Mar 08, 2024 2:45 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

==================================== a night shift -Will you go to a night club with us? -No, I have a night shift today =================================== hands on -Will you do a work soon? -Yes, it's time to lay hands on it. =================================== with We will create a computer progr...
by admin
Fri Mar 08, 2024 1:52 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

put your heart and soul into something
----------------------------------------
If you put your heart and soul into something, you do it with a great deal of enthusiasm and energy.
by admin
Thu Feb 29, 2024 7:08 pm
Forum: English grammar
Topic: "For" in English
Replies: 1
Views: 54

Re: "For" in English

"For" preposition (INTENDED FOR) Intended to be given to There's an email for you. There's a prize for the best scientists. =================================== "For" preposition (PURPOSE) Having the purpose of I’m going for some breakfast. This store is for the use of hotel gues...
by admin
Thu Feb 29, 2024 7:05 pm
Forum: English grammar
Topic: "For" in English
Replies: 1
Views: 54

"For" in English

When to use "For" in English.
by admin
Thu Feb 29, 2024 6:40 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

put food on the table
---------------------------------------
To provide enough money to cover basic necessities.
by admin
Sat Feb 17, 2024 5:39 pm
Forum: Babbling
Topic: ASkype
Replies: 0
Views: 48

ASkype

by admin
Fri Jan 19, 2024 5:44 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

roughly speaking
----------------------------------------
Not being totally accurate (used as a phrase to specify).
by admin
Wed Jan 10, 2024 12:10 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

at first sight.
--------------------------------------
Used to describe your first impression of someone or something, usually to indicate that this first impression was wrong or incomplete.
Love at first sight
by admin
Tue Jan 09, 2024 11:35 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

a drop in the bucket.
-------------------------------------
A very small amount compared to the amount needed
by admin
Sat Dec 23, 2023 1:34 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

bring home the bacon.
--------------------------------
To bring home the bacon means to earn the household income.
by admin
Sat Dec 23, 2023 1:32 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

apple of one’s eye
------------------------------
Special favorite, beloved person or thing.
The youngest was the apple of his father's eye.
by admin
Sat Dec 23, 2023 1:29 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

castles in the air
-----------------------------
Plans that have very little chance of happening.
by admin
Sat Dec 23, 2023 1:28 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

bottom line
-----------------------------
Main result/factor.
The bottom line is, I don't have enough money.
by admin
Sat Dec 23, 2023 1:27 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

lose one's temper
----------------------------------
Lose self-control.
by admin
Sat Dec 23, 2023 1:26 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

to be born in purple
--------------------------------
It was originally used to refer to babies born to the members of the royal family.
by admin
Sat Dec 23, 2023 1:25 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

a slip of the tongue
---------------------------------
If you describe something you said as a slip of the tongue, you mean that you said it by mistake.
by admin
Sat Dec 23, 2023 1:24 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

take one's breath away
-----------------------------------
To make someone feel surprised and excited.
The beautiful new cinema took my breath away.
by admin
Sat Dec 23, 2023 1:22 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

which way the wind blows ------------------------------------- If a person tries to discover which way the wind blows/is blowing, he/she tries to discover information about a situation, especially other people's opinions, before he/she takes action. John knows which way the wind blows and always act...
by admin
Sat Dec 23, 2023 1:20 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

white lie
---------------------------------------
A lie that is told in order to be polite or to stop someone from being upset by the truth
by admin
Sat Dec 23, 2023 1:10 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

educational circles
----------------------------------------
You can use it to refer to people or organizations who are involved in education.
by admin
Fri Dec 22, 2023 4:55 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

Chicken and egg problem.
------------------------------------
If you describe a situation as a chicken and egg situation, you mean that it is impossible to decide which of two things caused the other one.
by admin
Thu Dec 14, 2023 10:50 am
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

========================================== hold on -Could you give me the book White Fang by Jack London? -Hold on, I have to find that book. =========================================== keep on -My English lexicon is poor. -Keep on learning and you will be fluent soon. ==============================...
by admin
Tue Dec 12, 2023 11:00 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

Eat breakfast like a king, lunch like a prince, and dinner like a pauper.
----------------------------------------
Make the first meal of your day your biggest, and only eat three meals a day.
by admin
Tue Dec 12, 2023 10:15 am
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

============================================ to handshake -I can help you with math now and you will help me with biology. -Agree. Handshake. ============================================ don't give up -I cannot solve this task. -Don't give up. You will solve it soon. ================================...
by admin
Tue Dec 05, 2023 2:09 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

=========================================== not permitted -Can I share the content of your website with others? -No, it's not permitted =========================================== -I made all medicine tests. Now I have been waiting for the doctor for over one hour. -The doctor will consult you in 5 ...
by admin
Sun Dec 03, 2023 10:05 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

============================================== good vibes Developing a home would bring good vibes. ============================================== I'm blushing -You dropped down the vase of our mother. -I'm blushing now. ============================================== to rock Ricky Martin will rock t...
by admin
Sun Dec 03, 2023 8:21 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

=========================================== be up to -My dog is barking at me all the time. He has had a good life with me for 5 years. Now I'm thinking... -What are up to? -I'll close him in a cell for a while. =========================================== to calm down -We will make jokes of you toda...
by admin
Sat Dec 02, 2023 6:54 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

============================================= attitude towards me His attitude towards me as a patient was fantastic. ============================================= over -I want to buy a new car. What is better Toyota or Suzuki? -I would choose Toyota over Suzuki. Toyota is a more bigger car than Suz...
by admin
Fri Dec 01, 2023 10:11 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

by the way
------------------------------------------
Used when you say something that does not relate to what is being discussed.
Oh, by the way, my name's Julie.
by admin
Fri Dec 01, 2023 10:07 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

off the top of my head -------------------------------------- If you say something off the top of your head, you say it without thinking about it much before you speak, especially because you do not have enough time. This idiom suggests one has not used the inside of one's head before making some st...
by admin
Fri Dec 01, 2023 10:02 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

on the tip of my tongue
------------------------------------------
If something that you want to say is on the tip of your tongue, you think you know it and that you will be able to remember it very soon.
by admin
Fri Dec 01, 2023 9:51 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

============================================ to cheat on I have a very good husband. He doesn't cheat on me. ============================================ believe me -Do you know the next-door neighbor? -Believe me he never said a word. =========================================== if I were you If I w...
by admin
Thu Nov 30, 2023 6:18 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

======================================== -I don't understand biology. -I'll do my best to help you. ======================================== to carry on -Should we stop our text chat now? -No. Carry on, guys. I just have some work to do. ========================================= whatever -Could you ...
by admin
Thu Nov 30, 2023 5:21 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

none of your business
---------------------------------------
Used to say that something is private information and should not be asked about.
by admin
Thu Nov 30, 2023 5:20 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

Who do you think you are?
-----------------------------------
The questioner is implying that the person to whom the question is addressed has exceeded their authority, interfered in something which was not their business.
by admin
Thu Nov 30, 2023 3:42 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

========================================== to lift someone's mood -I'm very sad today. -Your buddies are here. They will lift your mood. ========================================== to fish for -Have you already hired some people for your new work? -I hope to find some men today. I'm fishing for new w...
by admin
Thu Nov 30, 2023 3:00 pm
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

======================================= a use of -What is the use of this picture? -This picture hides a hole in the wall. ======================================= to rely on -You should help me with work, I rely on you. -Sure, I'll help you, I'm a very devoted friend. I'll do that without any obliga...
by admin
Thu Nov 30, 2023 11:43 am
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

======================================================= interested in I'm interested in learning new languages. ======================================================== to reach out someone -Hi. I phone you to ask. Could you make a big dining table for me? -Thank you for reaching out to me. I'll try...
by admin
Thu Nov 30, 2023 11:24 am
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Re: Popular English phrases

=========================================================== Hi! Hello! Good morning! Good afternoon! Good night! Good day. Have a good day. Have a good night. Greetings. I'm glad to see you. Good bye! Best wishes. Best regards. Cheers! Ciao. Nice to meet you. Pleasure to meet you. ==================...
by admin
Thu Nov 30, 2023 11:16 am
Forum: English grammar
Topic: Popular English phrases
Replies: 13
Views: 1604

Popular English phrases

We will post popular English phrases here. You can memorize or write them down in your notebook.
by admin
Sun Nov 26, 2023 4:24 pm
Forum: Learning English together
Topic: Stories
Replies: 3
Views: 1190

Re: Stories

There was a gentleman named John who loved to eat fast food. He was a regular at the local McDonald’s and always ordered* 📋 a sandwich 🥪 with avocado and mayonnaise. One day, he decided* to try* something new and ordered 📋 a hotdog with ketchup and tomato. To his surprise*, he loved it! After finish...
by admin
Fri Nov 24, 2023 8:21 pm
Forum: Learning English together
Topic: Stories
Replies: 3
Views: 1190

Re: Stories

A doctor made a recipe to generate a capsule containing* a bacteria that could resist a virus. The doctor tested the capsule on a patient and noted that the patient’s condition improved. The doctor then scanned the patient using an X-ray. The doctor was happy about the potential of the capsule and v...
by admin
Tue Nov 21, 2023 7:33 pm
Forum: Student Lobby
Topic: Student r.gunerski's corner
Replies: 0
Views: 1678

Student r.gunerski's corner

Have a good day! I want you to post a short essay about yourself and your aims here. It will help us to pick up an individual plan for you. I'd like to see answers to the next questions in your essay. You can answer whatever you want (it's just an example of an essay, you may not follow it strictly)...
by admin
Sun Nov 19, 2023 4:54 pm
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

Time heals all wounds
------------------------
Used to say that feelings of sadness, disappointment, etc., gradually go away as time passes.
by admin
Thu Nov 16, 2023 11:05 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be out of sorts
----------------------------
To be slightly ill or slightly unhappy.
I've been feeling tired and generally out of sorts.
Leave him alone, he's out of sorts today.
by admin
Thu Nov 16, 2023 11:04 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be out of shape ------------------------------ You are unhealthy and unable to do a lot of physical activity without getting tired. To be out of shape means to be in poor physical condition, because you do not exercise regularly. I haven’t been to the gym all month, and I am getting really out of sh...
by admin
Thu Nov 16, 2023 11:02 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be out of
----------------------------
If you are out of something, you no longer have any of it.
We are out of bread, cheese, and sugar.
by admin
Thu Nov 16, 2023 11:01 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be on the safe side
-------------------------------
Being especially careful in order to avoid something unpleasant.
I'm sure it won't rain, but I'll take an umbrella to be on the safe side.
by admin
Thu Nov 16, 2023 10:59 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be on one's way
-------------------------------
In the process of coming, going, or traveling; about to come.
He has been allowed to leave the country and is on his way to Britain.
by admin
Thu Nov 16, 2023 10:57 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

bend over backwards
-----------------------------------------------
Make efforts to achieve something, especially to be fair or helpful.
Use a lot of physical effort to do something.
Thanks for leaning over backwards at the conference. Everyone praised your cheerfulness and hard work.
by admin
Thu Nov 16, 2023 10:53 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be into something
---------------------------------------
To be really interested in something.
I like computers, I'm into programming.
by admin
Thu Nov 16, 2023 10:51 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be in the red
------------------------
Spending and owing more money than is being earned.
Apparently the company had been in the red for some time.
by admin
Thu Nov 16, 2023 10:50 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be in charge of
------------------------
Having control of something or responsibility for something.
She is in charge of hiring new employees.
by admin
Thu Nov 16, 2023 10:48 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be high on one's list
---------------------------------
In a position to be dealt with or done ahead of others.
Getting the car fixed is high on my list.
by admin
Thu Nov 16, 2023 10:48 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

hard at it
-----------------------------------
Putting a lot of effort into what you are doing.
That's what I like to see - everybody hard at it!
by admin
Thu Nov 16, 2023 10:46 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be hard on someone
--------------------------------------------
To criticize someone severely, or to treat someone unfairly.
Don't be too hard on him - he's new to the job.
by admin
Thu Nov 16, 2023 10:45 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be broke
------------------------------
To spend or lose all money.
He went broke after he lost his job.
The company could go broke if the economy doesn't improve soon.
by admin
Thu Nov 16, 2023 10:43 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be better off
-------------------------------
To be in a better situation, if or after something happens.
He'd be better off working for a bigger company.
by admin
Thu Nov 16, 2023 10:41 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be beside yourself
---------------------------------------
If you are beside yourself with a particular feeling or emotion, it is so strong that it makes you almost out of control.
He was beside himself with grief when she died.
by admin
Thu Nov 16, 2023 10:38 am
Forum: English grammar
Topic: Idioms
Replies: 179
Views: 18687

Re: Idioms

be back on one's feet
------------------------------------------
If you say that someone or something is on their feet again after an illness or difficult period, you mean that they have recovered and are back to normal.