Base 64 HW Hack
Base 64 Homework Hack
- Popcorn Hacks Answers
- My Mood Board
- My Mood Board
- Homework Hack 2: Embed a Profile Pic as Base64
- My Profile Pic in Base64
- My Profile Pic in Base64
Popcorn Hacks Answers
1. Which image format is best for logos and transparency?
Answer: PNG
PNG supports transparency and uses lossless compression, making it ideal for logos and graphics with sharp edges.
2. Which format loses quality to make the file size smaller?
Answer: JPG
JPG uses lossy compression, which reduces file size at the cost of some image quality.
3. Which format is used for simple animations, like memes?
Answer: GIF
GIF supports simple animations and limited transparency, and is commonly used for memes.
4. Decode This! What does this Base64 string decode to? U1Q=
Answer: ST
Explanation:
- Binary equivalent of “U1Q=” is split into 6-bit chunks.
- These map to ASCII characters:
U
→ 201
→ 53Q
→ 16- Together they represent the string “ST”.
Homework Hack 1: Mood Board with Hex Colors
<!DOCTYPE html>
My Mood Board
#FF6F61 – Energetic
#6B5B95 – Calm
#88B04B – Grounded
#F7CAC9 – Soft
#92A8D1 – Cool
<!DOCTYPE html>
My Mood Board
#FF6F61 – Energetic
#6B5B95 – Calm
#88B04B – Grounded
#F7CAC9 – Soft
#92A8D1 – Cool
Homework Hack 2: Embed a Profile Pic as Base64
<!DOCTYPE html>
My Profile Pic in Base64
<!DOCTYPE html>
My Profile Pic in Base64
