hadi123
Test Debutant
- Joined
- Oct 19, 2010
- Runs
- 15,247
- Post of the Week
- 1
Good luck for people receiving A-Level results tomorrow!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Good luck for people receiving A-Level results tomorrow!

They came out yesterday![]()
Trying to be smart I see. A level results day here in UK is tomorrow.

My sister gave her A-levels this year and she got her result on the 14th.![]()
![]()
My sister gave her A-levels this year and she got her result on the 14th.![]()
![]()
My sister gave her A-levels this year and she got her result on the 14th.![]()
![]()
I also got mine yesterday....
Wasn’t really worried about them this time as I already got admission into local universities.
Hi guys,
I need help or advise if possible....
Received my IGCSE / O-LEVELS results couple of days ago.......
I studied at Ace Academy in Bahria Town and got the following:
A - English Language (o-level)
B - Physics (IGCSE Ext)
B - Biology (IGCSE Ext)
C - Chemistry (o-level)
D - Maths (IGCSE Ext)
Im back in the UK (London) and want to do 3 A-Levels in Chemistry, Physics and Biology at a sixth form....
Any advise if this is possible or what are my options? and do i need to convert my results?
Many Thanks in advance.....
Hi guys,
I need help or advise if possible....
Received my IGCSE / O-LEVELS results couple of days ago.......
I studied at Ace Academy in Bahria Town and got the following:
A - English Language (o-level)
B - Physics (IGCSE Ext)
B - Biology (IGCSE Ext)
C - Chemistry (o-level)
D - Maths (IGCSE Ext)
Im back in the UK (London) and want to do 3 A-Levels in Chemistry, Physics and Biology at a sixth form....
Any advise if this is possible or what are my options? and do i need to convert my results?
Many Thanks in advance.....
CREATE VIEW product_variation_stock_view AS
SELECT
product_variations.product_id AS product_id,
product_variations.id as product_variation_id,
COALESCE(SUM(stocks.quantity) - COALESCE(SUM(product_variation_order.quantity), 0), 0) as stock,
case when COALESCE(SUM(stocks.quantity) - COALESCE(SUM(product_variation_order.quantity), 0), 0) > 0
then true
else false
end in_stock
FROM product_variations
LEFT JOIN (
SELECT
stocks.product_variation_id as id,
SUM(stocks.quantity) as quantity
FROM stocks
GROUP BY stocks.product_variation_id
) AS stocks USING (id)
LEFT JOIN (
SELECT
product_variation_order.product_variation_id as id,
SUM(product_variation_order.quantity) as quantity
FROM product_variation_order
GROUP BY product_variation_order.product_variation_id
) AS product_variation_order USING (id)
GROUP BY product_variations.id

Which university are you going to?

Hi bro, good for u. Try to go through git hub sample projects. Log in to git hub and search for "python school library project" like that. It will fetch u few sample codes. Try to execute them, understand how its working and what's written.As u r new/fresher, pls try to do back track of the code .understand the functionality through ui and then go through the respective page code.Software Engineers on this forum, I am studying Python now as regular upskill. I created couple of very small projects -
1. A BMI calculator which takes weight, gender, age, ethnicity and gives the result.
2. A guessing game by importing Shuffle from Random library where I take user input and if his value matches my shuffled number he wins. I also show the user how many attempts he took to guess it right.
Basically pretty basic stuff for more intelligent people here.
My question is, how do I build an browser UI out of it using my code?
I know basic HTML, JS but how do I hook up to the backened server (my .py code)?
Thanks in advance and apols if my question is very basic/silly.
![]()
Yeah bro...learning from udemy only. Pierian course from zero to hero in Python.Hi bro, good for u. Try to go through git hub sample projects. Log in to git hub and search for "python school library project" like that. It will fetch u few sample codes. Try to execute them, understand how its working and what's written.As u r new/fresher, pls try to do back track of the code .understand the functionality through ui and then go through the respective page code.
U can quote me here whenever you need.
Try to get any good udemy python course.just google for the best one in a.i