Uploaded February 2017 | Updated September 2026, 2 weeks ago
https://itvraag.nl
This video shows how to make your own 10 cell battery pack using a BMS (battery management system) and a dedicated charger from an electric bike. This battery will use lithium ion batteries of the type 18650. As mentioned 10 cells connected in series, but also another 10 cell connected in parallel (10S2P).
10S2P Battery pack diagram:
https://itvraag.nl/wp-content/uploads/2023/02/10S2P-battery-pack-diagram.pdf
BMS list: goo.gl/AhOKMu
About balance lead cables: youtu.be/j9-0WwdAxvw
Comparing 18650 cells: youtu.be/AHzZooVKYWE
Spot welders: goo.gl/0lfqPV
Nickel strips: goo.gl/oObzIX
https://itvraag.nl
This video shows how to make your own 10 cell battery pack using a BMS (battery management system) and a dedicated charger from an electric bike. This battery will use lithium ion batteries of the type 18650. As mentioned 10 cells connected in series, but also another 10 cell connected in parallel (10S2P).
10S2P Battery pack diagram:
https://itvraag.nl/wp-content/uploads/2023/02/10S2P-battery-pack-diagram.pdf
BMS list: goo.gl/AhOKMu
About balance lead cables: youtu.be/j9-0WwdAxvw
Comparing 18650 cells: youtu.be/AHzZooVKYWE
Spot welders: goo.gl/0lfqPV
Nickel strips: goo.gl/oObzIX

![One Prompt for a Self-Planned Trip Using ChatGPT!
Looking to conquer the world, but dont want to spend time planning it? Use this prompt for ChatGPT to do the planning for you!
#artificialintelligence #ai #chatgpt #vacationplanner
https://itvraag.nl
ChatGPT Vacation Prompt
Please act as a seasoned travel advisor and help me create a personalized itinerary. My destination is [Thailand Central], and Ill be departing from [New York, USA]. I plan to travel from [January 2024] for a duration of [14 Days] and I have a budget of [$2000]. Im mainly interested in [adventure, nature] and prefer to stay in [hostels, budget hotels]. I have some specific [vegetarian]. Id like my itinerary to be [Packed] and Im looking for [off-the-beaten-path]. Im considering [International travel] and prefer to use [public transport]. Id say my travel experience level is [Seasoned]. I have some [vegan-friendly] to consider. Ill be traveling [solo]. Currently, I have to consider these travel restrictions: [unvanccinated]. I am [25] years old, identify as [male], and my sexual orientation is [straight]. Id like to spend [5hr/3hr/1hr] on travel, activities, and relaxation each day. Start by giving me safety tips and the emergency numbers of both destination and departure country. Help me plan a daily itinerary for my trip, by including wake-up and check-out times, a variety of activities and sightseeing options, transport types, next destinations, travel duration, daily budget estimates, accommodation choices, and estimated daily walking distance.
ChatGPT Vacation Checklist
Help me create a checklist for things to pack and tasks to complete before the solo backpack trip, based on the previous information.
Timestamp:
0:00 Intro
0:24 Perfect prompt for planning vacation/trip
0:50 Changing itinerary prompt based on your needs
1:31 Instructional part of itinerary prompt
1:54 Examples for testing the itinerary prompt
2:10 Vacation safety tips from ChatGPT
2:23 ChatGPT planning vacation for solo backpacker
2:35 ChatGPT planning family vacation
2:52 ChatGPT planning vacation for retired couple
3:07 ChatGPT creating a vacation checklist
Related videos:
8 Unknown Emotions, Future AI Might Feel (According To GPT4)
https://youtu.be/fZTa-9UTe08
Whos Really in Charge? You or AI?
https://youtu.be/dROi1oB4unE
AI in Mental Health: Double-Edged Sword
https://youtu.be/dQAiVMCF560
AI-Generated Influencers of Social Media & Employment
https://youtu.be/4AReyKCS65k
Will We Survive the Dual Nature of AI and Nuclear Energy?
https://youtu.be/0LFoiXTU_kI
What Do Nuclear Fuel and AI Have in Common?
https://youtu.be/iIL2e8aTeRg
AI Alignment Problem: Extremes of Optimization
https://youtu.be/iW-fvcO_1yg
GPT-4 vs. Crosswords, Riddles, and Anagrams - Whats Next?
https://youtu.be/_irRw6nsbbo One Prompt for a Self-Planned Trip Using ChatGPT!](https://i.ytimg.com/vi/NPdXc9-uR9c/mqdefault.jpg)





![Git #5 - reset hard & clean
Lets get right into resetting your git repository in different ways!
#git
https://itvraag.nl
git reset
git reset hard
git clean -fdi -n
git reset hard && git clean -df
git reset [commit id]
git reset hard [commit id] Git #5 - reset hard & clean](https://i.ytimg.com/vi/Oh_xvOrM8iQ/mqdefault.jpg)


![Bash #14 - while / until loops (with port scan example)
In this video well go through while and until loops in bash scripting and test this using examples like a port scan.
#bashscripting #terminal
https://itvraag.nl
Related videos:
Bash #1 - Basics: https://youtu.be/C-HwzPVLo1c
Bash #3 - Script files: https://youtu.be/ajpTOFyeDH4
Bash #4 - Variables: https://youtu.be/mOSnZ7zOF3g
Bash #5 - Arithmetic operators: https://youtu.be/DMPfEq6YAq8
Bash #10 - Combining commands: https://youtu.be/ixPZOoONsAs
Used scripts:
#!/bin/bash
n=0
while [ $n -lt 9 ]
do
echo This number is less than 9: $n
((n++))
done
#!/bin/bash
n=0
until [ $n -gt 9 ]
do
echo This number is NOT greater than 9: $n
((n++))
done
#!/bin/bash
n=0
i=12
while [[ $n -lt 9 && i -lt 14 ]]
do
echo This number $n is less than 9 and this number $i is less than 14
((n++))
((i++))
done
Port scan script (angled brackets are removed, due to video description limitations):
#!/bin/bash
i=0
while [ $i -lt 5000 ]
do
(echo /dev/tcp/127.0.0.1/$i) &/dev/null && printf Open Port at:$i || printf .
((++i))
done
Timestamp:
0:27 while & until loops in general
0:43 while loop with example
1:01 logical conditions
1:34 until loop with example
1:47 loops with multiple conditions
2:25 while loop with port scan
2:58 endless loops Bash #14 - while / until loops (with port scan example)](https://i.ytimg.com/vi/PN8EMuUx5NM/mqdefault.jpg)