Skip to content
Clondalkin, Dublin 22

Coding classes in Clondalkin

What are the best coding classes in Clondalkin?

Clondalkin learners have a live teacher on video for each lesson, either in a small group where everyone is at the same point or individually, commonly twice a week, and the classes are open to people from six to sixty-seven. There is no trip to make. The free first lesson comes before anything else; from then on a group place is USD 100 a month and a private place USD 150 a month.

South Dublin County Council gives the height of the Round Tower in Clondalkin village as 27.5 metres. Suppose a learner wants to check that with nothing but a phone's angle app and a measured distance. The trigonometry is one line, but the answer is only as good as the measurements, and a single degree of error in the angle can shift the result by almost a metre or by nearly three, depending on where the learner stands. This page turns that into a small coding project: build the calculation, add a deliberate error, and let the program find the spot where the tower can be measured most reliably.

Facts last verified 20 September 2026. Teaching is online; no Clondalkin branch is claimed.

Courses for Clondalkin

First courses for Clondalkin learners

A course for each stage of life, with the free first lesson and its teacher deciding whether it fits.

Browse the course atlas for more than one hundred options and use the coding roadmap to check prerequisites.

The four we are known for

Python, AI, vibe coding and agentic coding

These run underneath everything above. Every one is live and online, placed by ability rather than by age, and the first class is free.

Signature project

Measure the Round Tower with an angle, then find where to stand

The height is worked out from the distance to the tower and the angle up to its top, plus the observer's eye height, assumed here to be 1.5 metres on level ground. The table shows how far off the answer lands when the angle is misread by one degree either way.

Estimating a 27.5 m tower when the angle is off by one degree
DistanceAngle to the topError if +1 degreeError if -1 degree
5 m79.1 degrees+2.69 m-2.24 m
10 m69.0 degrees+1.42 m-1.30 m
26 m45.0 degrees+0.92 m-0.89 m
40 m33.0 degrees+1.00 m-0.98 m
80 m18.0 degrees+1.55 m-1.54 m
150 m9.8 degrees+2.71 m-2.69 m

Too close

Five metres from the base the top is almost straight up, at 79.1 degrees, and a one-degree slip changes the answer by up to 2.69 metres. At steep angles the tangent climbs fast, so small errors are magnified.

Too far

From 150 metres the top is less than ten degrees above eye level, and the same slip is worth about 2.7 metres. At shallow angles a degree covers a long way at the tower's distance.

Just right

The error is smallest, about 0.9 metres either way, near 26 metres, where the top sits at 45 degrees. A search over distances from 1 to 200 metres puts the most forgiving spot at 26.5 metres.

Before trusting a result, nudge its inputs

Every calculated answer inherits the errors of its inputs, and some inputs matter far more than others. Sensitivity testing is the habit of changing each input by a realistic amount, one at a time, and watching how far the answer moves. It shows which measurements deserve the most care, and sometimes, as here, how to set up the measurement so the errors hurt least. It costs a loop and a few lines of code, and it turns a single number into a number with a known margin.

The learner's program has one function: given a distance, an angle and an eye height, return the tower's height using the tangent of the angle. Around it goes a loop over distances, and for each one the program computes the true angle to a 27.5-metre top, adds and subtracts one degree, and records how far the answers land from 27.5. A second loop does the same for the distance instead of the angle: at 26 metres, judging the distance 5 percent too long adds 1.30 metres to the height. The results go into a small table and a line chart, and the lowest point of the chart is the recommended place to stand.

Stated assumptions

The eye height of 1.5 metres and the level ground are assumptions, not facts about Clondalkin; a sloping street or a taller observer changes the numbers slightly. A good report lists them before the answer.

Tall and thin

The council describes the tower as 27.5 metres high and four metres wide at the bottom, a height nearly seven times its base, 6.88 to be exact, and thought to be the slenderest round tower in Ireland.

Why 45 degrees

The error from a small angle slip is smallest where the angle is 45 degrees, because that is where the product of its sine and cosine is largest. The program finds this by searching; the maths explains why.

Clondalkin, named

Clondalkin, in the words of the council and its services

Facts that each body publishes itself, with an eircode where its page gives a valid one.

Named places in Clondalkin
PlaceWhat its own source says
The Round Tower27.5 m high, four metres wide at the base
Round Tower visitor centreTower Road, D22 DV56; opened 3 July 2017
North Clondalkin LibraryLiscarne Close, Rowlagh, D22 E2Y2; opened December 2020
Clondalkin Fonthill stationFonthill Road, D22 Y2F9

The tower itself

South Dublin County Council calls it one of only four remaining round towers in County Dublin, with its original cap, a raised doorway and four windows at the top facing north, south, east and west. Inside there were once six floors; there are now five.

A modern library

The council describes North Clondalkin Library as purpose-built and opened to the public in December 2020, with a creative studio and a virtual reality library experience designed for a Meta Quest 2 headset.

In the village

Clondalkin Library, on Monastery Road in the village, opens until 8pm from Monday to Thursday. Its web page prints an eircode containing the letter O, which eircodes do not use, so none is repeated here.

What this page does not claim

No population is printed for Clondalkin, because the page uses only facts that named bodies publish about the place itself. The council's pages give the tower's age in two different ways, so this page does not state one. The measurement project uses stated assumptions, not a survey of the tower.

Learning here

Clondalkin learners and their week

Two live lessons make up a typical week, each taught by a teacher who is present the whole way through.

Children

Children begin with block code and angle games, turning and aiming sprites, the playful start of trigonometry.

Teenagers

Teenagers move to Python, websites, AI projects and models whose inputs they can test, like the tower calculator.

Adults

Adults may start with no coding at all; the opening lesson chooses the path.

The tower's height and width are South Dublin County Council's figures; the angles, errors and recommended distance are our own calculations, run on 20 September 2026, using the assumptions stated above. The libraries, the visitor centre and the station are quoted from their own pages.

Learning ladder

From aiming a sprite to testing a model

Age bands are approximate; lesson one finds the real starting point for each learner.

Ages 6 to 10

Turn and aim

Block-coded sprites that turn by angles and hit, or miss, a target.

Coding for KidsScratch Coding for Kids
Ages 11 to 13

Triangles in code

Python that uses tangent to find a height from a distance and an angle.

Maths Through CodingPython and AI for Kids
Ages 14 to 18

Sensitivity

Nudging inputs in a loop to see which errors matter and how to reduce them.

Data Science for TeensPython for Teens
Ages 18 to 67

Estimates with margins

Workplace calculations reported with the error each input can cause.

Data Analysis CoursePython Automation Course
Coding and AI

Ask an assistant to measure the Round Tower from a photo

It will usually produce a confident height.

Describe a photo of the tower to an AI assistant, with a distance and an angle, and it will calculate a height and state it neatly. The arithmetic will be right. What it will rarely add is how much that height would change if the angle were a degree off, or whether the photo was taken from a good distance for measuring at all.

With the sensitivity table in hand, the learner asks the assistant what error margin its answer carries, how the margin changes with distance, and what assumptions it made about eye height and level ground. The answers turn a neat number into an honest one.

Calculating a height is one line. Knowing how wrong it could be is the skill. The longer argument is in the case for learning to code at any age.

Delivery

How lessons run for Clondalkin

The practical arrangements.

A live teacher

Each lesson is led live, with the teacher watching and helping as every learner writes code.

Same-stage learners

Groups of five to ten at one stage, from Dublin 22, elsewhere in Ireland and abroad.

Two regular slots

About eight lessons a month, on the same two weekly slots agreed at the outset.

Term planning

School holidays, mid-term breaks and exam weeks are accounted for in advance.

Setup at home

Whatever laptop or desktop is at home will usually do, with a mic and something to hear through, on broadband that copes with video.

Alone with a tutor

One-to-one lessons for learners who are ahead, need extra time, or can only attend at unusual hours.

Online, not local

We have no premises in Clondalkin, in South Dublin or anywhere in Ireland. Every lesson is on video and is the same wherever the learner joins from.

Fees

Clondalkin lesson fees

Here is everything.

First classUSD 0

A free first lesson that includes a level check.

Group tuitionUSD 100

A month in a group of five to ten at one stage, around eight live lessons.

Private tuitionUSD 150

A month of private lessons at the same pace.

One monthly fee in US dollars applies to every family outside India. The free lesson involves no commitment, the first payment is due when the course begins, and the pricing page explains holidays, missed lessons and moving between group and private lessons.

Reviews

Six families on Google, word for word

Rated 4.9 across 547 Google reviews. These are real reviews, reproduced as written.

★★★★★

"The one step solution for my son. Modern Age Coders make learning coding so simple that kids love it. The teachers explain complex concepts clearly with practical exercises and interactive content."

Ria Mukherjee

Parent

★★★★★

"Modern Age Coders has been a game-changer for me. I struggled to grasp IT concepts and coding before joining, but their classes transformed everything. I can now confidently write complex programs with ease."

Samriddha Mondal

Student

★★★★★

"One of the most wonderful education centres out there. Education is not limited to school syllabus but focuses on skill development."

Vansh Agarwal

Student

★★★★★

"My child Dhairya is really enjoying the Modern Age Coders classes. This is his first online class and he eagerly looks forward to it. I can already see his improvement, and the teachers are very cooperative."

Sonam Oswal

Parent of Dhairya

★★★★★

"Modern Age Coders have wonderful teachers who teach in a clear, easy and practical way. The teacher boosts students' confidence and inspires them to learn without hesitation."

Sonu Goyal

Parent

★★★★★

"I highly recommend this computer coding class! The teachers are incredibly knowledgeable and passionate about coding."

Ritu Kedia

Parent

Free placement class

Book a free first lesson in Clondalkin

Tell us the learner's age and interests, and the first hour will be planned around them. The hour might close with a small game, a program that works, or a height calculator honest about its own margin of error.

+353

FAQ

Clondalkin coding class questions

Questions Clondalkin families often ask.

Is there a Modern Age Coders centre in Clondalkin?

No. Lessons are live on video, and we have no premises in Ireland. A learner needs a computer, a microphone and sound, and a dependable connection. The phone number given here is in India.

What is the Round Tower project?

Learners write a small program that works out the tower's height from a distance and an angle, then add a one-degree error and see how much the answer moves. The error is smallest, about 0.9 metres, near 26 metres from the base, and grows to about 2.7 metres very close or far away.

Is this more maths than coding?

It is both. The maths is a single tangent; the coding is in the loops, the tables and the search for the most reliable place to stand, which is the part a learner cannot easily do by hand.

Why does the page give no population for Clondalkin?

District pages carry only facts that named bodies publish about the place itself, and neither the council's tower, library and visitor-centre pages nor Irish Rail publishes a head count.

When are lessons?

On weekdays from after school into the evening, and at weekends during the day. Times are fixed in Irish time. The teachers are in India, whose clocks run five and a half hours ahead of Clondalkin in the winter months and four and a half in the summer ones, so we only propose hours that are sensible at both ends.

Can adults learn too?

Yes, up to the age of sixty-seven and from any level. An adult chooses a small group at the same level or private lessons after the first lesson.

Will my child be with other Clondalkin children?

Only if their level matches. Groups are formed by level, so classmates may be local or far away.

What do coding classes in Clondalkin cost?

The first lesson is free. A group place is then USD 100 a month for around eight live lessons, two a week, with five to ten learners, and one-to-one lessons on the same schedule are USD 150 a month. Terms are agreed before any payment.

How big are groups?

Between five and ten learners, grouped by level, pace and goals rather than age or address. If no group fits a workable hour, lessons are one to one.

Explore Ireland

Around Clondalkin and South Dublin

The South Dublin page covers the council area, Tallaght and Lucan have their own district pages nearby, and learners who like the maths side can look at the problem solving through coding page. The Ireland hub lists everything else.

Free Clondalkin classCall +91 91233 66161

Keep exploring Modern Age Coders

Coding classes in nearby places

Learn more

Free resources

From the blog

Start here