Welcome to the TEST DAY! This collection is designed to challenge and enhance your skills in various technical domains, ranging from SQL and Regex to full-stack development and text processing. Each test is self-contained, focusing on a specific area to assess your proficiency and problem-solving abilities.
- Update your Github repository with the new changes you added.
- For each exercise, read the README.md file, follow the steps to complete the exercise, put the answer on
AWSWERS.md
file .and save your work. - Commit your work and push it to on the branch you created.
Before starting your work, make sure you are executing everything using the ec2-user, if not, execute the command :
su ec2-user
Follow these steps to connect your GitHub account to your EC2 machine.
Set your global Git configuration with your name and email:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Generate a new SSH key pair for authentication:
ssh-keygen -t ed25519 -C "[email protected]"
- Save the key to the default location (e.g.,
/home/ec2-user/.ssh/id_ed25519
). - Optionally, set a passphrase or leave it blank.
Start the SSH agent and add your new key:
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
- Display the public key:
cat ~/.ssh/id_ed25519.pub
- Copy the output of the above command.
- Go to your GitHub account; on your local machine:
- Navigate to Settings > SSH and GPG Keys.
- Click New SSH Key.
- Paste the key and give it a title (e.g., "EC2 Machine").
- Click Add SSH Key.
Verify that your EC2 instance is successfully connected to GitHub:
ssh -T [email protected]
You should see a message like this:
Hi username! You've successfully authenticated, but GitHub does not provide shell access.
-
Navigate to your project directory:
cd ~/home/ec2-user/K-Internship-2025
-
Initialize the repository:
git init
This creates a new
.git
directory in your project folder.
-
Check the status of your repository:
git status
-
Add files to the staging area:
git add .
This stages all files in the current directory for the next commit. You can also add specific files:
git add filename
-
Commit the changes:
git commit -m "Initial commit"
- Log in to your GitHub account.
- Click the New button to create a new repository.
- Provide a repository name, optional description, and choose visibility (Public/Private).
- Do not initialize with a README (we already have local files).
- Click Create Repository.
-
Copy the repository's SSH or HTTPS URL from GitHub.
-
Add the remote repository to your local Git repository:
git remote add origin <repository-url>
Example:
git remote add origin [email protected]:username/repository-name.git
-
Verify the remote URL:
git remote -v
-
Push your local changes to the GitHub repository:
git push -u origin main
Replace
main
withmaster
if your default branch is namedmaster
. -
For subsequent pushes, you can simply use:
git push
- Objective: Test your ability to write efficient SQL queries.
- Contents:
- Tasks related to data retrieval, aggregation, and manipulation.
- Real-world datasets to simulate practical scenarios.
- Skills Assessed:
- Data base architecture.
- Use of SQL functions and joins.
- Objective: Work on a simple full-stack application.
- Contents:
- Frontend: Basic UI/UX implementation.
- Backend: Server setup and API integration.
- Database: CRUD operations with a database.
- Skills Assessed:
- Frontend and backend integration.
- RESTful API design.
- Debugging skills.
- Objective: Solve a series of quick programming and problem-solving challenges.
- Contents:
- Short tasks across multiple domains, such as math, algorithms, and puzzles.
- Skills Assessed:
- Logical reasoning.
- Time management.
- Objective: Work with XML and XSLT for data transformation.
- Contents:
- Transform XML data into readable formats (HTML, text, etc.) using XSLT.
- Skills Assessed:
- Understanding of XML structure.
- Mastery of XSLT templates and functions.
- Formatting and data transformation techniques.
- Objective: Solve complex text matching and extraction tasks using Regular Expressions.
- Contents:
- Exercises involving pattern matching, data validation, and string manipulation.
- Skills Assessed:
- Proficiency with Regex syntax.
- Advanced text processing techniques.
- Objective: Use Linux command-line tools like
grep
to extract and process data. - Contents:
- Real-world log file analysis tasks.
- Data filtering and transformation using Linux commands.
- Skills Assessed:
- Mastery of
grep
,awk
,sed
, and other CLI tools. - Automation of text processing tasks.
- Mastery of
Good luck and happy coding!
—
The Keiken Team