Leiti 141 vastet.

ID Kanal Video Kustutatud Kuupäev Kirjeldus Subtiitrid Avalik Ülekanne HD URL PRIVATE TitleMUI_en TitleMUI_et KirjeldusMUI_en KirjeldusMUI_et Filename Category CategoryMUI_en Tags OdyseeURL KanalMUI_en KanalMUI_et Translated has_thumbnail local_stream ytdlp_meta est_subs eng_subs
891 Press any key to continue... Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] 0 2025-04-26 Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
0 1 0 1 https://www.youtube.com/watch?v=FBDma-tPlJw 0 Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
2025-04-26 16-12-25.mkv Videomängude analüüs Video game analysis N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/891.jpg N/A N/A N/A N/A
892 Press any key to continue... Save file editor for Flipnic [Feature showcase] 0 2025-04-25 Hello world! After 1.5 years of trying to figure out how the save files in this game work, I've finally done it! I just finished making a save editor for a PlayStation 2 video game called Flipnic (a.k.a. Flipnic - Ultimate Pinball/フリップニック).

Compatible game saves: NTSC-U, PAL, NTSC-J* (with some caveats)

I know it's been almost 22 years since the game launched, but I think this save editor may be useful for people regardless. This video shows some of the things this save editor can do.

More info & downloads: https://github.com/MarkusMaal/FlipnicSaveEditor (downloads are in the "Releases" section)

In addtion, if you want to mess with the save binary yourself and want to know what each one of the bytes are for, you can download a hexpat file here: https://raw.githubusercontent.com/MarkusMaal/FlipnicSaveEditor/refs/heads/master/flipnicsave.hexpat

Flipnic™ Save Editor is an enjoyable easy to use save file editor for you.

(re-upload to fix low render quality)
0 1 0 1 https://www.youtube.com/watch?v=Tk6KGdcUYkY 0 Save file editor for Flipnic [Feature showcase] Save file editor for Flipnic [Feature showcase] Hello world! After 1.5 years of trying to figure out how the save files in this game work, I've finally done it! I just finished making a save editor for a PlayStation 2 video game called Flipnic (a.k.a. Flipnic - Ultimate Pinball/フリップニック).

Compatible game saves: NTSC-U, PAL, NTSC-J* (with some caveats)

I know it's been almost 22 years since the game launched, but I think this save editor may be useful for people regardless. This video shows some of the things this save editor can do.

More info & downloads: https://github.com/MarkusMaal/FlipnicSaveEditor (downloads are in the "Releases" section)

In addtion, if you want to mess with the save binary yourself and want to know what each one of the bytes are for, you can download a hexpat file here: https://raw.githubusercontent.com/MarkusMaal/FlipnicSaveEditor/refs/heads/master/flipnicsave.hexpat

Flipnic™ Save Editor is an enjoyable easy to use save file editor for you.

(re-upload to fix low render quality)
Hello world! After 1.5 years of trying to figure out how the save files in this game work, I've finally done it! I just finished making a save editor for a PlayStation 2 video game called Flipnic (a.k.a. Flipnic - Ultimate Pinball/フリップニック).

Compatible game saves: NTSC-U, PAL, NTSC-J* (with some caveats)

I know it's been almost 22 years since the game launched, but I think this save editor may be useful for people regardless. This video shows some of the things this save editor can do.

More info & downloads: https://github.com/MarkusMaal/FlipnicSaveEditor (downloads are in the "Releases" section)

In addtion, if you want to mess with the save binary yourself and want to know what each one of the bytes are for, you can download a hexpat file here: https://raw.githubusercontent.com/MarkusMaal/FlipnicSaveEditor/refs/heads/master/flipnicsave.hexpat

Flipnic™ Save Editor is an enjoyable easy to use save file editor for you.

(re-upload to fix low render quality)
Timeline 1.mp4 Videomängude analüüs Video game analysis save file editor,video game,PlayStation 2,Sony PlayStation,Flipnic,Flipnic: Ultimate Pinball,Flipnic™,フリップニック,is an enjoyable simple-action amazing pinball game for you,Ultimate Pinball,Ubisoft,Capcom,Sony Computer Entertainment Inc.,emulator,PCSX2 N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/892.jpg N/A N/A N/A N/A
895 Press any key to continue... Trying to beat Expert difficulty in Minesweeper be like [Minesweeper Longplay BTS] 0 2025-04-07 Every failed attempt from my PC Longplay video for Minesweeper. 0 1 0 1 https://www.youtube.com/watch?v=KIKZVYEPXLk 0 Trying to beat Expert difficulty in Minesweeper be like [Minesweeper Longplay BTS] Trying to beat Expert difficulty in Minesweeper be like [Minesweeper Longplay BTS] Every failed attempt from my PC Longplay video for Minesweeper. Every failed attempt from my PC Longplay video for Minesweeper. minesweeper_bts.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/895.jpg N/A N/A N/A N/A
897 Press any key to continue... Minesweeper [PC Longplay] 0 2025-04-01 Full gameplay for the Windows XP version of Minesweeper without commentary.

Chapters:
0:00 Beginner
0:46 Intermediate
5:01 Expert
0 1 0 1 https://www.youtube.com/watch?v=NhrS3xDpgPU 0 Minesweeper [PC Longplay] Minesweeper [PC Longplay] Full gameplay for the Windows XP version of Minesweeper without commentary.

Chapters:
0:00 Beginner
0:46 Intermediate
5:01 Expert
Full gameplay for the Windows XP version of Minesweeper without commentary.

Chapters:
0:00 Beginner
0:46 Intermediate
5:01 Expert
minesweeper.mp4 Muud mängimise videod Other gameplay videos Windows XP,Minesweeper,gameplay,longplay,no commentary,Expert difficulty,how to win at minesweeper,why did i spend 4 hours of my life trying to beat the expert difficulty,Intermediate difficulty,Beginner difficulty,speedrun,100% speedrun,Microsoft,Microsoft Minesweeper,flags,question mark N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/897.jpg N/A N/A N/A N/A
887 Press any key to continue... Uninstall Ubuntu Ad Commercial (Unofficial) 0 2025-02-05 *BEFORE YOU COMMENT*
I have nothing against Linux, I just dislike Ubuntu specifically.

This video is an edited version of an Ubuntu ad that makes you think. Made in Windows, but to be fair, the source video probably was as well.

Source: https://www.youtube.com/watch?v=jdoh992pJK0
0 1 0 1 https://www.youtube.com/watch?v=XlbG8HxTlG0 0 Uninstall Ubuntu Ad Commercial (Unofficial) Uninstall Ubuntu Ad Commercial (Unofficial) *BEFORE YOU COMMENT*
I have nothing against Linux, I just dislike Ubuntu specifically.

This video is an edited version of an Ubuntu ad that makes you think. Made in Windows, but to be fair, the source video probably was as well.

Source: https://www.youtube.com/watch?v=jdoh992pJK0
*BEFORE YOU COMMENT*
I have nothing against Linux, I just dislike Ubuntu specifically.

This video is an edited version of an Ubuntu ad that makes you think. Made in Windows, but to be fair, the source video probably was as well.

Source: https://www.youtube.com/watch?v=jdoh992pJK0
potato-2x-RIFE-RIFE3.1-59.94006fps.mkv Naljavideod Joke videos Linux,Ubuntu,14.04 N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/887.jpg N/A N/A N/A N/A
594 Press any key to continue... PlayStation 2 - Delete failed 0 2025-01-04 Demonstrates what happens when PlayStation 2 is unable to delete a save file from the file browser. I've dumped a real memory card from a heavily soft-modded PS2 slim console and used it in an emulator for this video. However, I happened to have made an undeletable save at some point. I suspect it's because the file browser is unable to accurately determine the file size, it refuses to delete it. If this happens on a real console, the only way to fix it is to format the memory card using homebrew, such as Memory Card Annihilator. Doing so will get rid of all your saves tough.

Console: SCPH-90004 (batch: 8D)
0 1 0 1 https://www.youtube.com/watch?v=Mp4vlV2D0NA 0 PlayStation 2 - Delete failed PlayStation 2 - Delete failed Demonstrates what happens when PlayStation 2 is unable to delete a save file from the file browser. I've dumped a real memory card from a heavily soft-modded PS2 slim console and used it in an emulator for this video. However, I happened to have made an undeletable save at some point. I suspect it's because the file browser is unable to accurately determine the file size, it refuses to delete it. If this happens on a real console, the only way to fix it is to format the memory card using homebrew, such as Memory Card Annihilator. Doing so will get rid of all your saves tough.

Console: SCPH-90004 (batch: 8D)
Demonstrates what happens when PlayStation 2 is unable to delete a save file from the file browser. I've dumped a real memory card from a heavily soft-modded PS2 slim console and used it in an emulator for this video. However, I happened to have made an undeletable save at some point. I suspect it's because the file browser is unable to accurately determine the file size, it refuses to delete it. If this happens on a real console, the only way to fix it is to format the memory card using homebrew, such as Memory Card Annihilator. Doing so will get rid of all your saves tough.

Console: SCPH-90004 (batch: 8D)
deletefailed.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/594.jpg N/A /channel_db_lite/web/json/594.json N/A N/A
593 Press any key to continue... Constructor - Flicks and sound effects [DOS FLC RIP] 0 2025-01-01 All incidental video clips and sound effects found in the video game Constructor (1997). The video has been upscaled with nearest neighbor algorithm to compensate for video compression.

Win, Lose and Intro FMVs: https://www.youtube.com/watch?v=QH0Q5yded0s

Extraction tools:
constructor-fil: https://github.com/jimmypw/constructor-fil
fli2gif: https://github.com/bovine/fli2gif
and some custom batch scripts to perform bulk actions

--Timestamps--
00:00 Park
00:10 Homebase
00:22 Hospital
00:35 Gadget Factory
00:45 Gadget: Burglar Alarm
00:50 Gadget: Computer
00:56 Gadget: Rat Trap
01:02 Gadget: Repair Kit
01:08 Gadget: Window Shutters
01:14 Gadget: Double Glazing
01:20 School
01:40 Brick Factory
01:46 Cement Factory
01:58 Steel Factory
02:03 Wood Factory
02:11 Bank Teller
02:18 Prison
02:25 System3 logo
02:28 Haunted House
02:39 House Party
02:48 Squatter
02:58 Mob Boss
03:08 House of Fun
03:16 Mr. Fixit
03:21 Ghost Mansion
03:27 Hippy Commune
03:33 Biker Bar
03:38 Pawn House
03:44 Tenant Block
03:50 Weapons
04:12 Police
--- Phone calls ---
04:17 Child (Call) - Variation 1
04:23 Child (Call) - Variation 2
04:29 Child (Call) - Variation 3
04:35 Clown (Call)
04:40 Delivery (Call)
04:46 Dog (Call)
04:52 Female Tenant (Call)
04:58 Male Tenant (Call)
05:05 Mr. Fixit (Call)
05:10 Foreman (Call)
05:17 Gangster (Call)
05:23 Skeleton (Call)
05:28 Hippy (Call)
05:34 Police (Call)
05:40 Psycho (Call)
05:45 Repairman (Call)
05:57 Roach (Call)
06:01 Thief (Call)
06:07 Thug (Call)
06:13 Builder (Call)
06:19 Zombie (Call)
-- Complaining tenants --
06:26 Stockbrokers (var. 1)
06:32 Stockbrokers (var. 2)
06:38 Stockbrokers (var. 3)
06:44 Greasers (var. 1)
06:51 Greasers (var. 2)
06:57 Greasers (var. 3)
07:04 Hippies (var. 1)
07:12 Hippies (var. 2)
07:19 Hippies (var. 3)
07:27 Major (var. 1)
07:35 Major (var. 2)
07:43 Major (var. 3)
07:51 Nerds (var. 1)
08:00 Nerds (var. 2)
08:08 Nerds (var. 3)
08:16 Professors (var. 1)
08:22 Professors (var. 2)
08:29 Professors (var. 3)
08:36 Punks (var. 1)
08:41 Punks (var. 2)
08:45 Punks (var. 3)
08:50 Slobs (var. 1)
08:59 Slobs (var. 2)
09:08 Slobs (var. 3)
09:17 Sloanes (var. 1)
09:26 Sloanes (var. 2)
09:34 Sloanes (var. 3)
09:43 Yuppies (var. 1)
09:51 Yuppies (var. 2)
09:59 Yuppies (var. 3)
10:06 Bathroom 1
10:16 Bathroom 2
10:26 Bathroom 3
10:36 Bathroom 4
10:54 Bathroom 5
11:11 Bedroom 1
11:21 Bedroom 2
11:39 Bedroom 3
11:49 Bedroom 4
12:07 Bedroom 5
12:24 Kitchen 1
12:42 Kitchen 2
12:52 Kitchen 3
13:09 Kitchen 4
13:27 Kitchen 5
13:37 Living Room 1
13:54 Living Room 2
14:04 Living Room 3
14:22 Living Room 4
14:39 Living Room 5
14:49 Building
-- Vacant Buildings --
15:06 House: 1920s
15:24 House: Adams
15:42 Arcade
16:00 House: Atlandic
16:18 Biker Bar
16:36 House: Bungalow
16:54 House: Cabin
17:12 Apartment Block
17:30 more house
17:48 even more house
18:06 House: Dutch
18:24 Fighting
18:32 Flood
18:40 House: Georg
18:58 House: Gothic
19:16 House: Japan
19:34 House: Lodge
19:52 House: Midwest
20:10 House: NewYork
20:28 House: North
20:46 House: Ohio
21:04 Pawn House
21:23 Hospital
21:41 Pub
21:59 House: Pyramid
22:17 House: Russian
22:35 House: Scottish
22:53 Mr. Fixit
23:11 noob house
23:29 Commune
23:47 funny house
24:05 House: Welsh
-- LoopFX---
24:23 Lose game
24:28 Happy tenants
24:36 Unhappy tenants
24:44 Sad tenants
24:52 Win game
24:59 Council
25:13 Infestation
25:20 Other sound effects
1 1 0 1 https://www.youtube.com/watch?v=KwRIcbXnGkQ 0 Constructor - Flicks and sound effects [DOS FLC RIP] Constructor - Flicks and sound effects [DOS FLC RIP] All incidental video clips and sound effects found in the video game Constructor (1997). The video has been upscaled with nearest neighbor algorithm to compensate for video compression.

Win, Lose and Intro FMVs: https://www.youtube.com/watch?v=QH0Q5yded0s

Extraction tools:
constructor-fil: https://github.com/jimmypw/constructor-fil
fli2gif: https://github.com/bovine/fli2gif
and some custom batch scripts to perform bulk actions

--Timestamps--
00:00 Park
00:10 Homebase
00:22 Hospital
00:35 Gadget Factory
00:45 Gadget: Burglar Alarm
00:50 Gadget: Computer
00:56 Gadget: Rat Trap
01:02 Gadget: Repair Kit
01:08 Gadget: Window Shutters
01:14 Gadget: Double Glazing
01:20 School
01:40 Brick Factory
01:46 Cement Factory
01:58 Steel Factory
02:03 Wood Factory
02:11 Bank Teller
02:18 Prison
02:25 System3 logo
02:28 Haunted House
02:39 House Party
02:48 Squatter
02:58 Mob Boss
03:08 House of Fun
03:16 Mr. Fixit
03:21 Ghost Mansion
03:27 Hippy Commune
03:33 Biker Bar
03:38 Pawn House
03:44 Tenant Block
03:50 Weapons
04:12 Police
--- Phone calls ---
04:17 Child (Call) - Variation 1
04:23 Child (Call) - Variation 2
04:29 Child (Call) - Variation 3
04:35 Clown (Call)
04:40 Delivery (Call)
04:46 Dog (Call)
04:52 Female Tenant (Call)
04:58 Male Tenant (Call)
05:05 Mr. Fixit (Call)
05:10 Foreman (Call)
05:17 Gangster (Call)
05:23 Skeleton (Call)
05:28 Hippy (Call)
05:34 Police (Call)
05:40 Psycho (Call)
05:45 Repairman (Call)
05:57 Roach (Call)
06:01 Thief (Call)
06:07 Thug (Call)
06:13 Builder (Call)
06:19 Zombie (Call)
-- Complaining tenants --
06:26 Stockbrokers (var. 1)
06:32 Stockbrokers (var. 2)
06:38 Stockbrokers (var. 3)
06:44 Greasers (var. 1)
06:51 Greasers (var. 2)
06:57 Greasers (var. 3)
07:04 Hippies (var. 1)
07:12 Hippies (var. 2)
07:19 Hippies (var. 3)
07:27 Major (var. 1)
07:35 Major (var. 2)
07:43 Major (var. 3)
07:51 Nerds (var. 1)
08:00 Nerds (var. 2)
08:08 Nerds (var. 3)
08:16 Professors (var. 1)
08:22 Professors (var. 2)
08:29 Professors (var. 3)
08:36 Punks (var. 1)
08:41 Punks (var. 2)
08:45 Punks (var. 3)
08:50 Slobs (var. 1)
08:59 Slobs (var. 2)
09:08 Slobs (var. 3)
09:17 Sloanes (var. 1)
09:26 Sloanes (var. 2)
09:34 Sloanes (var. 3)
09:43 Yuppies (var. 1)
09:51 Yuppies (var. 2)
09:59 Yuppies (var. 3)
10:06 Bathroom 1
10:16 Bathroom 2
10:26 Bathroom 3
10:36 Bathroom 4
10:54 Bathroom 5
11:11 Bedroom 1
11:21 Bedroom 2
11:39 Bedroom 3
11:49 Bedroom 4
12:07 Bedroom 5
12:24 Kitchen 1
12:42 Kitchen 2
12:52 Kitchen 3
13:09 Kitchen 4
13:27 Kitchen 5
13:37 Living Room 1
13:54 Living Room 2
14:04 Living Room 3
14:22 Living Room 4
14:39 Living Room 5
14:49 Building
-- Vacant Buildings --
15:06 House: 1920s
15:24 House: Adams
15:42 Arcade
16:00 House: Atlandic
16:18 Biker Bar
16:36 House: Bungalow
16:54 House: Cabin
17:12 Apartment Block
17:30 more house
17:48 even more house
18:06 House: Dutch
18:24 Fighting
18:32 Flood
18:40 House: Georg
18:58 House: Gothic
19:16 House: Japan
19:34 House: Lodge
19:52 House: Midwest
20:10 House: NewYork
20:28 House: North
20:46 House: Ohio
21:04 Pawn House
21:23 Hospital
21:41 Pub
21:59 House: Pyramid
22:17 House: Russian
22:35 House: Scottish
22:53 Mr. Fixit
23:11 noob house
23:29 Commune
23:47 funny house
24:05 House: Welsh
-- LoopFX---
24:23 Lose game
24:28 Happy tenants
24:36 Unhappy tenants
24:44 Sad tenants
24:52 Win game
24:59 Council
25:13 Infestation
25:20 Other sound effects
All incidental video clips and sound effects found in the video game Constructor (1997). The video has been upscaled with nearest neighbor algorithm to compensate for video compression.

Win, Lose and Intro FMVs: https://www.youtube.com/watch?v=QH0Q5yded0s

Extraction tools:
constructor-fil: https://github.com/jimmypw/constructor-fil
fli2gif: https://github.com/bovine/fli2gif
and some custom batch scripts to perform bulk actions

--Timestamps--
00:00 Park
00:10 Homebase
00:22 Hospital
00:35 Gadget Factory
00:45 Gadget: Burglar Alarm
00:50 Gadget: Computer
00:56 Gadget: Rat Trap
01:02 Gadget: Repair Kit
01:08 Gadget: Window Shutters
01:14 Gadget: Double Glazing
01:20 School
01:40 Brick Factory
01:46 Cement Factory
01:58 Steel Factory
02:03 Wood Factory
02:11 Bank Teller
02:18 Prison
02:25 System3 logo
02:28 Haunted House
02:39 House Party
02:48 Squatter
02:58 Mob Boss
03:08 House of Fun
03:16 Mr. Fixit
03:21 Ghost Mansion
03:27 Hippy Commune
03:33 Biker Bar
03:38 Pawn House
03:44 Tenant Block
03:50 Weapons
04:12 Police
--- Phone calls ---
04:17 Child (Call) - Variation 1
04:23 Child (Call) - Variation 2
04:29 Child (Call) - Variation 3
04:35 Clown (Call)
04:40 Delivery (Call)
04:46 Dog (Call)
04:52 Female Tenant (Call)
04:58 Male Tenant (Call)
05:05 Mr. Fixit (Call)
05:10 Foreman (Call)
05:17 Gangster (Call)
05:23 Skeleton (Call)
05:28 Hippy (Call)
05:34 Police (Call)
05:40 Psycho (Call)
05:45 Repairman (Call)
05:57 Roach (Call)
06:01 Thief (Call)
06:07 Thug (Call)
06:13 Builder (Call)
06:19 Zombie (Call)
-- Complaining tenants --
06:26 Stockbrokers (var. 1)
06:32 Stockbrokers (var. 2)
06:38 Stockbrokers (var. 3)
06:44 Greasers (var. 1)
06:51 Greasers (var. 2)
06:57 Greasers (var. 3)
07:04 Hippies (var. 1)
07:12 Hippies (var. 2)
07:19 Hippies (var. 3)
07:27 Major (var. 1)
07:35 Major (var. 2)
07:43 Major (var. 3)
07:51 Nerds (var. 1)
08:00 Nerds (var. 2)
08:08 Nerds (var. 3)
08:16 Professors (var. 1)
08:22 Professors (var. 2)
08:29 Professors (var. 3)
08:36 Punks (var. 1)
08:41 Punks (var. 2)
08:45 Punks (var. 3)
08:50 Slobs (var. 1)
08:59 Slobs (var. 2)
09:08 Slobs (var. 3)
09:17 Sloanes (var. 1)
09:26 Sloanes (var. 2)
09:34 Sloanes (var. 3)
09:43 Yuppies (var. 1)
09:51 Yuppies (var. 2)
09:59 Yuppies (var. 3)
10:06 Bathroom 1
10:16 Bathroom 2
10:26 Bathroom 3
10:36 Bathroom 4
10:54 Bathroom 5
11:11 Bedroom 1
11:21 Bedroom 2
11:39 Bedroom 3
11:49 Bedroom 4
12:07 Bedroom 5
12:24 Kitchen 1
12:42 Kitchen 2
12:52 Kitchen 3
13:09 Kitchen 4
13:27 Kitchen 5
13:37 Living Room 1
13:54 Living Room 2
14:04 Living Room 3
14:22 Living Room 4
14:39 Living Room 5
14:49 Building
-- Vacant Buildings --
15:06 House: 1920s
15:24 House: Adams
15:42 Arcade
16:00 House: Atlandic
16:18 Biker Bar
16:36 House: Bungalow
16:54 House: Cabin
17:12 Apartment Block
17:30 more house
17:48 even more house
18:06 House: Dutch
18:24 Fighting
18:32 Flood
18:40 House: Georg
18:58 House: Gothic
19:16 House: Japan
19:34 House: Lodge
19:52 House: Midwest
20:10 House: NewYork
20:28 House: North
20:46 House: Ohio
21:04 Pawn House
21:23 Hospital
21:41 Pub
21:59 House: Pyramid
22:17 House: Russian
22:35 House: Scottish
22:53 Mr. Fixit
23:11 noob house
23:29 Commune
23:47 funny house
24:05 House: Welsh
-- LoopFX---
24:23 Lose game
24:28 Happy tenants
24:36 Unhappy tenants
24:44 Sad tenants
24:52 Win game
24:59 Council
25:13 Infestation
25:20 Other sound effects
ConstructorFlicks.mp4 FMV klipid FMV clips N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/593.jpg N/A /channel_db_lite/web/json/593.json N/A N/A
591 MarkusTegelane Top 100 minu tehtud TrackMania rada - The Movie 0 2024-12-26 Selles videos näitan ja hindan 100 erinevat rada, mida ma olen teinud aastate jooksul erinevates TrackMania mängudes. See video pidi algselt välja tulema 2017. aasta märtsis, kuid mitmed tehnilised väljakutsed takistasid sel ajal video reaalsuseks saamist (peamiselt seoses kõvakettaruumiga).

See video avardab ka algset ideed, sest algselt tahtsin ainult näidata TMNF ja TMUF radasid, kuid selles videos näitan ka asju, mida ma tegin TrackMania² mängudes ja samuti uues TrackMania mängus.

■ Lingid ■
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

❖ Teised kanalid ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markuse asjad: @markuseasjad
Markus Maal: @MarkusMaal

◙ Peatükid ◙
0:00 Intro
0:27 100
3:54 99
4:44 98
5:17 97
5:33 96
6:35 95
7:06 94
8:13 93
9:02 92
9:22 91
10:10 90
11:38 89
12:07 88
14:40 87
14:51 86
15:23 85
16:30 84
17:01 83
18:30 82
19:39 81
20:21 80
21:38 79
22:04 78
22:37 77
29:32 76
31:12 75
33:59 74
36:51 73
38:07 72
38:53 71
39:33 70
40:37 69
42:15 68
43:05 67
44:38 66
45:01 65
45:51 64
50:21 63
51:10 62
51:37 61
52:45 60
54:28 59
55:25 58
58:02 57
58:40 56
1:00:38 55
1:05:02 54
1:05:37 53
1:07:13 52
1:08:37 51
1:09:36 50
1:13:47 49
1:16:29 48
1:17:00 47
1:17:24 46
1:21:01 45
1:22:05 44
1:23:19 43
1:24:50 42
1:27:28 41
1:35:43 40
1:36:19 39
1:37:34 38
1:39:20 37
1:41:18 36
1:44:09 35
1:45:11 34
1:47:29 33
1:51:50 32
1:52:58 31
1:54:09 30
1:56:31 29
2:04:51 28
2:05:19 27
2:06:17 26
2:07:12 25
2:13:15 24
2:17:17 23
2:18:51 22
2:20:14 21
2:24:15 20
2:27:06 19
2:28:03 18
2:31:40 17
2:34:45 16
2:35:38 15
2:36:37 14
2:39:05 13
2:41:29 12
2:43:25 11
2:47:07 10
2:47:54 9
2:51:45 8
2:53:02 7
2:55:13 6
2:58:44 5
3:01:48 4
3:05:42 3
3:09:48 2
3:12:39 1
3:19:45 Lõputiitrid

? Lisainfo ?
Faili nimi: tm100.mp4
Renderdamise aeg: 3 tundi, 39 minutit, 58 sekundit
Protsessor: AMD Ryzen 7 5700X
Tarkvara: Kdenlive 24.08.3, TrackMania United Forever, ManiaPlanet, TrackMania (2020), Windows 11

? Video koostas: Markus Maal ?
© 2024 Markuse videod
1 1 0 1 https://www.youtube.com/watch?v=Ru_FvMuFr5o 0 Top 100 TrackMania maps I've ever made - The Movie Top 100 minu tehtud TrackMania rada - The Movie In this video I'm showcasing and ranking 100 different tracks I've made in various TrackMania games over the years. The video was originally supposed to come out in March 2017, but several technical challenges prevented my from making the video back then (mainly related to very hard disk space).

This video expands on the original idea tough, since I originally only wanted to showcase TMNF and TMUF tracks, this video will also showcase stuff I've made in TrackMania² games as well as the new TrackMania game.

■ Links ■
Website: https://markustegelane.eu
Blog: https://markustegelane-en.blogspot.com

❖ Other channels ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markus' stuff: @markuseasjad
Markus Maal: @MarkusMaal

◙ Chapters ◙
0:00 Intro
0:27 100
3:54 99
4:44 98
5:17 97
5:33 96
6:35 95
7:06 94
8:13 93
9:02 92
9:22 91
10:10 90
11:38 89
12:07 88
14:40 87
14:51 86
15:23 85
16:30 84
17:01 83
18:30 82
19:39 81
20:21 80
21:38 79
22:04 78
22:37 77
29:32 76
31:12 75
33:59 74
36:51 73
38:07 72
38:53 71
39:33 70
40:37 69
42:15 68
43:05 67
44:38 66
45:01 65
45:51 64
50:21 63
51:10 62
51:37 61
52:45 60
54:28 59
55:25 58
58:02 57
58:40 56
1:00:38 55
1:05:02 54
1:05:37 53
1:07:13 52
1:08:37 51
1:09:36 50
1:13:47 49
1:16:29 48
1:17:00 47
1:17:24 46
1:21:01 45
1:22:05 44
1:23:19 43
1:24:50 42
1:27:28 41
1:35:43 40
1:36:19 39
1:37:34 38
1:39:20 37
1:41:18 36
1:44:09 35
1:45:11 34
1:47:29 33
1:51:50 32
1:52:58 31
1:54:09 30
1:56:31 29
2:04:51 28
2:05:19 27
2:06:17 26
2:07:12 25
2:13:15 24
2:17:17 23
2:18:51 22
2:20:14 21
2:24:15 20
2:27:06 19
2:28:03 18
2:31:40 17
2:34:45 16
2:35:38 15
2:36:37 14
2:39:05 13
2:41:29 12
2:43:25 11
2:47:07 10
2:47:54 9
2:51:45 8
2:53:02 7
2:55:13 6
2:58:44 5
3:01:48 4
3:05:42 3
3:09:48 2
3:12:39 1
3:19:45 Credits

? Additional information ?
Filename: tm100.mp4
Render time: 3 hours, 39 minutes, 58 seconds
Processor: AMD Ryzen 7 5700X
Software: Kdenlive 24.08.3, TrackMania United Forever, ManiaPlanet, TrackMania (2020), Windows 11

? Created by: Markus Maal ?
© 2024 Markuse videod
Selles videos näitan ja hindan 100 erinevat rada, mida ma olen teinud aastate jooksul erinevates TrackMania mängudes. See video pidi algselt välja tulema 2017. aasta märtsis, kuid mitmed tehnilised väljakutsed takistasid sel ajal video reaalsuseks saamist (peamiselt seoses kõvakettaruumiga).

See video avardab ka algset ideed, sest algselt tahtsin ainult näidata TMNF ja TMUF radasid, kuid selles videos näitan ka asju, mida ma tegin TrackMania² mängudes ja samuti uues TrackMania mängus.

■ Lingid ■
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

❖ Teised kanalid ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markuse asjad: @markuseasjad
Markus Maal: @MarkusMaal

◙ Peatükid ◙
0:00 Intro
0:27 100
3:54 99
4:44 98
5:17 97
5:33 96
6:35 95
7:06 94
8:13 93
9:02 92
9:22 91
10:10 90
11:38 89
12:07 88
14:40 87
14:51 86
15:23 85
16:30 84
17:01 83
18:30 82
19:39 81
20:21 80
21:38 79
22:04 78
22:37 77
29:32 76
31:12 75
33:59 74
36:51 73
38:07 72
38:53 71
39:33 70
40:37 69
42:15 68
43:05 67
44:38 66
45:01 65
45:51 64
50:21 63
51:10 62
51:37 61
52:45 60
54:28 59
55:25 58
58:02 57
58:40 56
1:00:38 55
1:05:02 54
1:05:37 53
1:07:13 52
1:08:37 51
1:09:36 50
1:13:47 49
1:16:29 48
1:17:00 47
1:17:24 46
1:21:01 45
1:22:05 44
1:23:19 43
1:24:50 42
1:27:28 41
1:35:43 40
1:36:19 39
1:37:34 38
1:39:20 37
1:41:18 36
1:44:09 35
1:45:11 34
1:47:29 33
1:51:50 32
1:52:58 31
1:54:09 30
1:56:31 29
2:04:51 28
2:05:19 27
2:06:17 26
2:07:12 25
2:13:15 24
2:17:17 23
2:18:51 22
2:20:14 21
2:24:15 20
2:27:06 19
2:28:03 18
2:31:40 17
2:34:45 16
2:35:38 15
2:36:37 14
2:39:05 13
2:41:29 12
2:43:25 11
2:47:07 10
2:47:54 9
2:51:45 8
2:53:02 7
2:55:13 6
2:58:44 5
3:01:48 4
3:05:42 3
3:09:48 2
3:12:39 1
3:19:45 Lõputiitrid

? Lisainfo ?
Faili nimi: tm100.mp4
Renderdamise aeg: 3 tundi, 39 minutit, 58 sekundit
Protsessor: AMD Ryzen 7 5700X
Tarkvara: Kdenlive 24.08.3, TrackMania United Forever, ManiaPlanet, TrackMania (2020), Windows 11

? Video koostas: Markus Maal ?
© 2024 Markuse videod
tm100.mp4 MarkuStation 1 MarkuStation 1 markustegelane,TheMarkusGuy,trackmania,trackmania (video game series),trackmania top 100,trackmania 2: canyon (video game),top 100,trackmania nations forever,trackmania random map,trackmania drift,trackmania speedrun,trackmania ice,trackmania club,trackmania best,trackmania 2021,trackmania ranked,movie,trackmania exchange,gaming,MarkuStation,trackmania 2: valley (video game),trackmania 2 lagoon,trackmania united forever,trackmania sunrise,stadium,coast,valley N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/591.jpg N/A /channel_db_lite/web/json/591.json N/A /channel_db_lite/web/stream/591.en.ass
588 MarkusTegelane Sunlight PowerPoint OS (2024) #PPTOS #PowerPointOS #MadeInPowerPoint 0 2024-12-15 Kõige modulaarsem ja arendajasõbralikum PowerPoint OS! Pärast mitme kuu pikkust arendust, Light OS Technologies esitleb - Sunlight OS 1.0!

▲ *Lisamärkused* ▲
See PowerPoint OS-i jaoks tuleb makrod sisse lülitada. Kui näete akent esitluse kuvamisel, mis küsib kas soovite makrod või ActiveX sisse lülitada, tehke seda.

See PPTOS ei toimi PowerPointi mobiili või veebiversioonides. Samuti ei toimi see Office for Mac-iga. Kui olete Linuxi või Maci kasutaja, soovitame teha Windowsi virtuaalmasin, kuhu on Microsoft Office paigaldatud.

Office 2016 või hilisem versioon on vajalik täieliku funktsionaalsuse tagamiseks, kuid Office 2010-2013 peaksid ka toimima, kuid esineda võivad mõned ühilduvusprobleemid (Office 2007 peaks teoorias toimima, aga ma pole seda versiooni katsetanud).


■ Lingid ■
Allalaadimise link: https://markustegelane.eu/markustegelane/?doc=dload.md&id=62
Loo enda rakendusi (inglise keeles): https://github.com/MarkusMaal/OrangePath/blob/main/README.md
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

❖ Teised kanalid ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markuse asjad: @markuseasjad
Markus Maal: @MarkusMaal

♫ Muusika♫
ELPHNT - Ravines
Audionautix - Drifting2
Kevin MacLeod - Takeover of the 8-bit Synths
Kevin MacLeod - Who Likes to Party
Raigon - Hyperstar
Yoshinobo Hiraiwa, Noriyuki Iwadare, feat. Raigon - King of the River (Ranger-X Remix)
Raigon - Rails
Davic Yackley - One Stop
Huma-Huma - Smart Riot
Jimmy Fontanez/Media Right Productions - Dub Hub
Stevia Sphere - Nostalgia

? Lisainfo ?
Failinimi: LetThereBeSunlight.mp4
Renderdamise aeg: 5 minutit, 59 sekundit
Videokaart: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Tarkvara: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, Aegisub, YTSubConverter, Microsoft PowerPoint 2024

? Video koostas: Markus Maal ?
© 2024 Markuse videod
1 1 0 1 https://www.youtube.com/watch?v=KdfOI-mtnuA 0 Sunlight PowerPoint OS (2024) #PPTOS #PowerPointOS #MadeInPowerPoint Sunlight PowerPoint OS (2024) #PPTOS #PowerPointOS #MadeInPowerPoint The most modular and developer friendly PowerPoint OS ever made! After several months of development, Light OS Technologies is ready to present Sunlight OS 1.0!

▲ *Additional notes* ▲
This PowerPoint OS requires macros to be enabled in order to operate. If you see a prompt when launching the presentation asking if you want to enable Macros or ActiveX, you need to enable them.

This PPTOS will NOT work on mobile or web versions of PowerPoint. In addition, it's not compatible with Office for Mac. If you're a Linux or Mac user, we recommend creating a Windows virtual machine with Microsoft Office installed on it.

Office 2016 or later required for full functionality, but it should boot with Office 2010-2013 as well, tough you may experience compatiblity some issues (Office 2007 might work in theory, but I haven't tested it).


■ Links ■
Download link: https://markustegelane.eu/markustegelane/?doc=dload.md&id=62
Create your own apps: https://github.com/MarkusMaal/OrangePath/blob/main/README.md
Website: https://markustegelane.eu
Blog: https://markustegelane-en.blogspot.com

❖ Other channels ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markus' stuff: @markuseasjad
Markus Maal: @MarkusMaal

♫ Music ♫
ELPHNT - Ravines
Audionautix - Drifting2
Kevin MacLeod - Takeover of the 8-bit Synths
Kevin MacLeod - Who Likes to Party
Raigon - Hyperstar
Yoshinobo Hiraiwa, Noriyuki Iwadare, feat. Raigon - King of the River (Ranger-X Remix)
Raigon - Rails
Davic Yackley - One Stop
Huma-Huma - Smart Riot
Jimmy Fontanez/Media Right Productions - Dub Hub
Stevia Sphere - Nostalgia

? Additional information ?
Filename: LetThereBeSunlight.mp4
Render time: 5 minutes, 59 seconds
Video card: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Software: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, Aegisub, YTSubConverter, Microsoft PowerPoint 2024

? Created by: Markus Maal ?
© 2024 Markuse videod
Kõige modulaarsem ja arendajasõbralikum PowerPoint OS! Pärast mitme kuu pikkust arendust, Light OS Technologies esitleb - Sunlight OS 1.0!

▲ *Lisamärkused* ▲
See PowerPoint OS-i jaoks tuleb makrod sisse lülitada. Kui näete akent esitluse kuvamisel, mis küsib kas soovite makrod või ActiveX sisse lülitada, tehke seda.

See PPTOS ei toimi PowerPointi mobiili või veebiversioonides. Samuti ei toimi see Office for Mac-iga. Kui olete Linuxi või Maci kasutaja, soovitame teha Windowsi virtuaalmasin, kuhu on Microsoft Office paigaldatud.

Office 2016 või hilisem versioon on vajalik täieliku funktsionaalsuse tagamiseks, kuid Office 2010-2013 peaksid ka toimima, kuid esineda võivad mõned ühilduvusprobleemid (Office 2007 peaks teoorias toimima, aga ma pole seda versiooni katsetanud).


■ Lingid ■
Allalaadimise link: https://markustegelane.eu/markustegelane/?doc=dload.md&id=62
Loo enda rakendusi (inglise keeles): https://github.com/MarkusMaal/OrangePath/blob/main/README.md
Veebisait: https://markustegelane.eu
Ajaveeb: https://markustegelane.blogspot.com

❖ Teised kanalid ❖
MarkusTegelane+: @markusTegelanePlus
MarkusTegelane++: @markusTegelanePlusPlus
Markuse asjad: @markuseasjad
Markus Maal: @MarkusMaal

♫ Muusika♫
ELPHNT - Ravines
Audionautix - Drifting2
Kevin MacLeod - Takeover of the 8-bit Synths
Kevin MacLeod - Who Likes to Party
Raigon - Hyperstar
Yoshinobo Hiraiwa, Noriyuki Iwadare, feat. Raigon - King of the River (Ranger-X Remix)
Raigon - Rails
Davic Yackley - One Stop
Huma-Huma - Smart Riot
Jimmy Fontanez/Media Right Productions - Dub Hub
Stevia Sphere - Nostalgia

? Lisainfo ?
Failinimi: LetThereBeSunlight.mp4
Renderdamise aeg: 5 minutit, 59 sekundit
Videokaart: Sapphire NITRO+ AMD Radeon™ RX 7800 XT 16GB
Tarkvara: DaVinci Resolve 19.0.2, VLC Player, PaintDotNET, Windows 11, Aegisub, YTSubConverter, Microsoft PowerPoint 2024

? Video koostas: Markus Maal ?
© 2024 Markuse videod
LetThereBeSunlight.mp4 PowerPoint PowerPoint Markus Maal,computers,Sunlight,Light OS Technologies,Light OS,Light OS Modern,Sunlight OS,PPTOS,PowerPoint OS,VBA,macros,jeff,movable windows,resizable windows,in PowerPoint,Made in PowerPoint,OS simulator,multitasking,advanced,custom apps,make custom apps for PowerPoint OS,Software Development Kit,Application Programming Interface,API,SDK,Microsoft PowerPoint,PPSM,PowerPoint VBA,CursorAPI,HSL color picker,PPTGames,common dialogs,file system,ShapeFS N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/588.jpg N/A /channel_db_lite/web/json/588.json /channel_db_lite/web/stream/588.et.ass N/A
568 MarkusTegelane++ Light OS with draggable windows is really broken [Fun Experiments 0x00] 0 2024-03-15 For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
0 1 0 1 https://www.youtube.com/watch?v=RwAvwf8xYeA 0 Light OS with draggable windows is really broken [Fun Experiments 0x00] Light OS with draggable windows is really broken [Fun Experiments 0x00] For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
2024-03-15 21-10-42.mkv PowerPoint PowerPoint PPTOS,Light OS,PowerPoint OS,movable windows,draggable,droppable,VBA,Visual Basic for Applications,Microsoft PowerPoint,ppsm,Light OS Technologies,macro,scripting N/A MarkusTegelane++ MarkusTegelane++ 1 /channel_db_lite/web/thumbs/568.jpg N/A /channel_db_lite/web/json/568.json N/A N/A
561 Press any key to continue... Flipnic, but it's REALLY LOUD 0 2024-01-20 Did you know that in Flipnic (PS2), the volume levels are stored as a 16-bit signed integer? And that the maximum value the game uses is actually 127?
In this video, we'll find out what happens if you increase the volume from 127 to 32767!

Note that the specific memory address for changing the volume may be different accross various regional versions of the game.

Emulator: PCSX2 (Nightly)

Timestamps:
0:00 Increasing the volume
0:23 Biology
11:08 Evolution
12:30 Metallurgy
19:16 Optics
26:17 Biology 2P
27:23 Geometry
42:18 Geometry 2P
0 1 0 1 https://www.youtube.com/watch?v=w4VzUiEuH10 0 Flipnic, but it's REALLY LOUD Flipnic, but it's REALLY LOUD Did you know that in Flipnic (PS2), the volume levels are stored as a 16-bit signed integer? And that the maximum value the game uses is actually 127?
In this video, we'll find out what happens if you increase the volume from 127 to 32767!

Note that the specific memory address for changing the volume may be different accross various regional versions of the game.

Emulator: PCSX2 (Nightly)

Timestamps:
0:00 Increasing the volume
0:23 Biology
11:08 Evolution
12:30 Metallurgy
19:16 Optics
26:17 Biology 2P
27:23 Geometry
42:18 Geometry 2P
Did you know that in Flipnic (PS2), the volume levels are stored as a 16-bit signed integer? And that the maximum value the game uses is actually 127?
In this video, we'll find out what happens if you increase the volume from 127 to 32767!

Note that the specific memory address for changing the volume may be different accross various regional versions of the game.

Emulator: PCSX2 (Nightly)

Timestamps:
0:00 Increasing the volume
0:23 Biology
11:08 Evolution
12:30 Metallurgy
19:16 Optics
26:17 Biology 2P
27:23 Geometry
42:18 Geometry 2P
FlipnicButLoudMinified.mp4 Videomängude analüüs Video game analysis N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/561.jpg N/A /channel_db_lite/web/json/561.json N/A N/A
603 BerylRose How do you replace the boot screen in every (old) version of Windows? 0 2024-01-01 A long video for a long project. Somewhere in-between a story time and a video essay, I hope you enjoy listening to it while doing chores or falling asleep... or maybe you're genuinely interested in what's going on, in which case, strap in.

Music:

00:00 : Lasertooth - Rule of Three (https://lasertooth.bandcamp.com/album/neat-gunk)
11:24 : Launchable Socks - Archives (https://launchablesocks.bandcamp.com/album/qbeh-1-ost)
18:53 : Purely Grey - Witches (https://taperealms.bandcamp.com/album/27-006)
26:47 : Calavera - Dancing on Our Disasters (https://calaveralovesyou.bandcamp.com/album/kintsugi)
34:03 : Lifeformed - Frozen Hot Sauce (https://lifeformed.bandcamp.com/album/fastfall)
40:00 : Foewi - Lone Critter (Minimal Jam) (https://foewi.bandcamp.com/album/rosebud)
49:37 : Vince Kaichan - Geoconstruct 1998 (https://vincekaichan.bandcamp.com/album/tracker-works-2014-2018)
57:14 : Vince Kaichan - Yosemite Valley (https://vincekaichan.bandcamp.com/album/tracker-works-2014-2018)
1:06:56 : fluidvolt - Smiling Sigh (https://fluidvolt.bandcamp.com/album/clay-memory)
1:10:05 : PROTODOME - Astronomica (https://protodome.bandcamp.com/album/computer-music-2020-2023)

All of this music is provided under Creative Commons licenses. Please visit the albums to see the exact license for each. Please consider as well supporting these artists. Their work is incredible and inspiring.

The gory details:
https://docs.google.com/document/d/166A6tMRgUUME77T05kWE2p-S-g6uxUy5JO9KMcX9THk/edit?usp=sharing

The art:
https://drive.google.com/file/d/1dJTR-dJBIJR6vKuSh251Q62Jx3mbHOxg/view?usp=sharing

The Windows 9x [de]compressor:
https://github.com/pierce-smith1/io7

My website:
https://fractalthorns.com
1 0 0 1 https://www.youtube.com/watch?v=Qoy2ztu39es 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 /channel_db_lite/web/thumbs/603.jpg N/A N/A N/A N/A
557 Press any key to continue... Beetle Crazy Cup - Subaru Impreza STI Rally [PC Mod Gameplay] 0 2023-12-22 This is a mod, which adds Subaru Impreza STI Rally car to Beetle Crazy Cup (a.k.a. Beetle Buggin). This mod requires Beetle Crazy Cup Tool for repacking game files. The car replaces some of the vehicles in the cross game mode.

Download links: https://www.moddb.com/games/beetle-crazy-cup/downloads
0 1 0 1 https://www.youtube.com/watch?v=CLzYv0smZco 0 Beetle Crazy Cup - Subaru Impreza STI Rally [PC Mod Gameplay] Beetle Crazy Cup - Subaru Impreza STI Rally [PC Mod Gameplay] This is a mod, which adds Subaru Impreza STI Rally car to Beetle Crazy Cup (a.k.a. Beetle Buggin). This mod requires Beetle Crazy Cup Tool for repacking game files. The car replaces some of the vehicles in the cross game mode.

Download links: https://www.moddb.com/games/beetle-crazy-cup/downloads
This is a mod, which adds Subaru Impreza STI Rally car to Beetle Crazy Cup (a.k.a. Beetle Buggin). This mod requires Beetle Crazy Cup Tool for repacking game files. The car replaces some of the vehicles in the cross game mode.

Download links: https://www.moddb.com/games/beetle-crazy-cup/downloads
BeetleImprezza.mp4 Muud mängimise videod Other gameplay videos Beetle Buggin,Beetle Crazy Cup,car,impreza,mod,modification,rally car,subaru N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/557.jpg N/A /channel_db_lite/web/json/557.json N/A N/A
550 Press any key to continue... Flipnic - all in-game videos [PS2 FMV Rip/Full quality 60 FPS] 0 2023-10-01 This video contains every single video clip from the Flipnic video game across various regions (including NTSC-U, NTSC-J and PAL regions). Compared to my previous video, this time I've used a different ripping process, through which I've converted the PSS files directly to a standard video format and not just recorded the emulator screen. There are now even more FMVs, which weren't originally included in my previous video.

The low-res FMVs have been composited with a checkerboard pattern, so that you can see that they do in fact have a transparent background.

Technical information:

Video container: Interleaved audio/video streams, PSS file extension
Low-res video format: IPU, 256x512 (full frame) or 256x256 (visible display)
High-res video format: IPU, 512x448 (NTSC) or 512x512 (PAL)
Audio format: Compressed Sony ADPCM, 44100kHz, interleave 0x400

Extraction commands:
STR.BIN extraction: FlipnicBinExtractor /e STR.BIN STR
TUTO.BIN extraction: FlipnicBinExtractor /e TUTO.BIN TUTO
Video container: FlipnicBinExtractor /est [filename].PSS
IPU conversion (high-res format, PAL): ffmpeg -r 25 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (high-res format, NTSC): ffmpeg -r 29.97-i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, PAL): ffmpeg -r 50 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, NTSC): ffmpeg -r 59.94 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
Audio conversion: MFAudio /IF44100 /IC2 /II400 /IH0 /OTWAVU "[input filename].PSS.INT[stream ID, usually 1]" "[output filename].WAV"

Extraction tools:
FlipnicBinExtractor: https://github.com/MarkusMaal/FlipnicBinExtractor
FFmpeg: https://ffmpeg.org/
MFAudio: https://www.zophar.net/utilities/ps2util/mfaudio-1-1.html

Chapters:
0:00 SHUKYAKUDEMO.PSS (Audio 1)
1:23 SHUKYAKUDEMO.PSS (Audio 2)
2:48 SHUKYAKUDEMO.PSS (Audio 3)
4:13 SHUKYAKUDEMO.PSS (Audio 4)
5:38 SHUKYAKUDEMO.PSS (Audio 5)
7:03 TITLE_.PSS (NTSC-U)
7:19 TITLE_.PSS (PAL)
7:35 TITLE_.PSS (NTSC-J)
7:51 SILVER_DROP.PSS
8:07 CIRCLE_OF_LIFE.PSS
8:29 FREEZE_OVER.PSS
8:45 TAKIWARI.PSS
8:58 SILVER_DROP2.PSS
9:14 CIRCLE_OF_LIFE2.PSS
9:35 FREEZE_OVER2.PSS
9:51 TAKIWARI2.PSS
10:04 UFO_QUIZ_SHOW.PSS
10:14 LUCKEY_FLAMINGOS.PSS
10:20 POINT_OF_NO_RETURN.PSS
10:29 COLOR_PUZZLE2.PSS
10:36 HUNGLY_MONKEY.PSS
10:45 MULTIBALL.PSS
10:53 MULTIBALL03.PSS
10:59 MULTIBALL04.PSS
11:04 MULTIBALL05.PSS
11:14 SHOWTIME.PSS
11:18 MOVE_ON01.PSS
11:24 WATCH_OUT.PSS
11:29 MISSING.PSS
11:38 TILT2.PSS
11:44 EXTRABALL.PSS
11:49 EXTRABALL2.PSS
11:57 EXTRA_CREDIT.PSS
12:05 EXTRA_CREDIT02.PSS
12:13 NEXT_STAGE.PSS
12:33 CONGRATULATIONS01.PSS
12:40 CONGRATULATIONS02.PSS
12:46 CONGRATULATIONS03.PSS
12:55 CONGRATULATIONS04.PSS
13:04 CONGRATULATIONS05.PSS
13:13 CONGRATULATIONS06.PSS
13:22 CONGRATULATIONS07.PSS
13:31 CONGRATULATIONS08.PSS
13:39 CONGRATULATIONS09.PSS
13:46 CONGRATULATIONS10.PSS
13:58 GAME_OVER2.PSS
14:13 GAME_OVER3.PSS
14:21 GAME_OVER4.PSS
14:32 GAME_OVER5.PSS
14:46 GAME_OVER6.PSS (NTSC-J only)
14:58 STAFF_ROLL1.PSS (NTSC-U)
17:02 STAFF_ROLL1.PSS (NTSC-J)
19:06 STAFF_ROLL1.PSS (PAL)
21:10 STAFF_ROLL2.PSS (NTSC-U)
23:14 STAFF_ROLL2.PSS (NTSC-J)
25:18 STAFF_ROLL2.PSS (PAL)
27:22 UBI.PSS (PAL only)
27:30 BAD_LUCK.PSS (NTSC-U/PAL)
28:03 SMALL_LUCK.PSS (NTSC-U/PAL)
28:46 GOOD_LUCK.PSS (NTSC-U/PAL)
29:24 GREAT_LUCK.PSS (NTSC-U/PAL)
30:02 MIRACULOUS.PSS (NTSC-U/PAL)
30:40 CHAP01.PSS (NTSC-U/PAL)
33:59 CHAP02.PSS (NTSC-U/PAL)
37:52 CHAP03.PSS (NTSC-U/PAL)
41:57 CHAP04.PSS (NTSC-U/PAL)
44:39 CHAP05.PSS (NTSC-U/PAL)
49:50 CHAP06.PSS (NTSC-U/PAL)
53:21 CHAP07.PSS (NTSC-U/PAL)
55:28 CHAP01.PSS (NTSC-J)
58:49 CHAP02.PSS (NTSC-J)
1:02:42 CHAP03.PSS (NTSC-J)
1:06:48 CHAP04.PSS (NTSC-J)
1:09:31 CHAP05.PSS (NTSC-J)
1:14:44 CHAP06.PSS (NTSC-J)
1:18:16 CHAP07.PSS (NTSC-J)
1:20:24 BAD_LUCK.PSS (NTSC-J)
1:21:04 SMALL_LUCK.PSS (NTSC-J)
1:21:44 GOOD_LUCK.PSS (NTSC-J)
1:22:24 GREAT_LUCK.PSS (NTSC-J)
1:23:04 MIRACULOUS
1 1 0 1 https://www.youtube.com/watch?v=ZaA8-H71-3U 0 Flipnic - all in-game videos [PS2 FMV Rip/Full quality 60 FPS] Flipnic - all in-game videos [PS2 FMV Rip/Full quality 60 FPS] This video contains every single video clip from the Flipnic video game across various regions (including NTSC-U, NTSC-J and PAL regions). Compared to my previous video, this time I've used a different ripping process, through which I've converted the PSS files directly to a standard video format and not just recorded the emulator screen. There are now even more FMVs, which weren't originally included in my previous video.

The low-res FMVs have been composited with a checkerboard pattern, so that you can see that they do in fact have a transparent background.

Technical information:

Video container: Interleaved audio/video streams, PSS file extension
Low-res video format: IPU, 256x512 (full frame) or 256x256 (visible display)
High-res video format: IPU, 512x448 (NTSC) or 512x512 (PAL)
Audio format: Compressed Sony ADPCM, 44100kHz, interleave 0x400

Extraction commands:
STR.BIN extraction: FlipnicBinExtractor /e STR.BIN STR
TUTO.BIN extraction: FlipnicBinExtractor /e TUTO.BIN TUTO
Video container: FlipnicBinExtractor /est [filename].PSS
IPU conversion (high-res format, PAL): ffmpeg -r 25 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (high-res format, NTSC): ffmpeg -r 29.97-i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, PAL): ffmpeg -r 50 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, NTSC): ffmpeg -r 59.94 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
Audio conversion: MFAudio /IF44100 /IC2 /II400 /IH0 /OTWAVU "[input filename].PSS.INT[stream ID, usually 1]" "[output filename].WAV"

Extraction tools:
FlipnicBinExtractor: https://github.com/MarkusMaal/FlipnicBinExtractor
FFmpeg: https://ffmpeg.org/
MFAudio: https://www.zophar.net/utilities/ps2util/mfaudio-1-1.html

Chapters:
0:00 SHUKYAKUDEMO.PSS (Audio 1)
1:23 SHUKYAKUDEMO.PSS (Audio 2)
2:48 SHUKYAKUDEMO.PSS (Audio 3)
4:13 SHUKYAKUDEMO.PSS (Audio 4)
5:38 SHUKYAKUDEMO.PSS (Audio 5)
7:03 TITLE_.PSS (NTSC-U)
7:19 TITLE_.PSS (PAL)
7:35 TITLE_.PSS (NTSC-J)
7:51 SILVER_DROP.PSS
8:07 CIRCLE_OF_LIFE.PSS
8:29 FREEZE_OVER.PSS
8:45 TAKIWARI.PSS
8:58 SILVER_DROP2.PSS
9:14 CIRCLE_OF_LIFE2.PSS
9:35 FREEZE_OVER2.PSS
9:51 TAKIWARI2.PSS
10:04 UFO_QUIZ_SHOW.PSS
10:14 LUCKEY_FLAMINGOS.PSS
10:20 POINT_OF_NO_RETURN.PSS
10:29 COLOR_PUZZLE2.PSS
10:36 HUNGLY_MONKEY.PSS
10:45 MULTIBALL.PSS
10:53 MULTIBALL03.PSS
10:59 MULTIBALL04.PSS
11:04 MULTIBALL05.PSS
11:14 SHOWTIME.PSS
11:18 MOVE_ON01.PSS
11:24 WATCH_OUT.PSS
11:29 MISSING.PSS
11:38 TILT2.PSS
11:44 EXTRABALL.PSS
11:49 EXTRABALL2.PSS
11:57 EXTRA_CREDIT.PSS
12:05 EXTRA_CREDIT02.PSS
12:13 NEXT_STAGE.PSS
12:33 CONGRATULATIONS01.PSS
12:40 CONGRATULATIONS02.PSS
12:46 CONGRATULATIONS03.PSS
12:55 CONGRATULATIONS04.PSS
13:04 CONGRATULATIONS05.PSS
13:13 CONGRATULATIONS06.PSS
13:22 CONGRATULATIONS07.PSS
13:31 CONGRATULATIONS08.PSS
13:39 CONGRATULATIONS09.PSS
13:46 CONGRATULATIONS10.PSS
13:58 GAME_OVER2.PSS
14:13 GAME_OVER3.PSS
14:21 GAME_OVER4.PSS
14:32 GAME_OVER5.PSS
14:46 GAME_OVER6.PSS (NTSC-J only)
14:58 STAFF_ROLL1.PSS (NTSC-U)
17:02 STAFF_ROLL1.PSS (NTSC-J)
19:06 STAFF_ROLL1.PSS (PAL)
21:10 STAFF_ROLL2.PSS (NTSC-U)
23:14 STAFF_ROLL2.PSS (NTSC-J)
25:18 STAFF_ROLL2.PSS (PAL)
27:22 UBI.PSS (PAL only)
27:30 BAD_LUCK.PSS (NTSC-U/PAL)
28:03 SMALL_LUCK.PSS (NTSC-U/PAL)
28:46 GOOD_LUCK.PSS (NTSC-U/PAL)
29:24 GREAT_LUCK.PSS (NTSC-U/PAL)
30:02 MIRACULOUS.PSS (NTSC-U/PAL)
30:40 CHAP01.PSS (NTSC-U/PAL)
33:59 CHAP02.PSS (NTSC-U/PAL)
37:52 CHAP03.PSS (NTSC-U/PAL)
41:57 CHAP04.PSS (NTSC-U/PAL)
44:39 CHAP05.PSS (NTSC-U/PAL)
49:50 CHAP06.PSS (NTSC-U/PAL)
53:21 CHAP07.PSS (NTSC-U/PAL)
55:28 CHAP01.PSS (NTSC-J)
58:49 CHAP02.PSS (NTSC-J)
1:02:42 CHAP03.PSS (NTSC-J)
1:06:48 CHAP04.PSS (NTSC-J)
1:09:31 CHAP05.PSS (NTSC-J)
1:14:44 CHAP06.PSS (NTSC-J)
1:18:16 CHAP07.PSS (NTSC-J)
1:20:24 BAD_LUCK.PSS (NTSC-J)
1:21:04 SMALL_LUCK.PSS (NTSC-J)
1:21:44 GOOD_LUCK.PSS (NTSC-J)
1:22:24 GREAT_LUCK.PSS (NTSC-J)
1:23:04 MIRACULOUS.PSS (NTSC-J)
This video contains every single video clip from the Flipnic video game across various regions (including NTSC-U, NTSC-J and PAL regions). Compared to my previous video, this time I've used a different ripping process, through which I've converted the PSS files directly to a standard video format and not just recorded the emulator screen. There are now even more FMVs, which weren't originally included in my previous video.

The low-res FMVs have been composited with a checkerboard pattern, so that you can see that they do in fact have a transparent background.

Technical information:

Video container: Interleaved audio/video streams, PSS file extension
Low-res video format: IPU, 256x512 (full frame) or 256x256 (visible display)
High-res video format: IPU, 512x448 (NTSC) or 512x512 (PAL)
Audio format: Compressed Sony ADPCM, 44100kHz, interleave 0x400

Extraction commands:
STR.BIN extraction: FlipnicBinExtractor /e STR.BIN STR
TUTO.BIN extraction: FlipnicBinExtractor /e TUTO.BIN TUTO
Video container: FlipnicBinExtractor /est [filename].PSS
IPU conversion (high-res format, PAL): ffmpeg -r 25 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (high-res format, NTSC): ffmpeg -r 29.97-i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, PAL): ffmpeg -r 50 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
IPU conversion (low-res format, NTSC): ffmpeg -r 59.94 -i [filename].PSS.IPU0 -c:v qtrle -pix_fmt rgb24 [filename].mov
Audio conversion: MFAudio /IF44100 /IC2 /II400 /IH0 /OTWAVU "[input filename].PSS.INT[stream ID, usually 1]" "[output filename].WAV"

Extraction tools:
FlipnicBinExtractor: https://github.com/MarkusMaal/FlipnicBinExtractor
FFmpeg: https://ffmpeg.org/
MFAudio: https://www.zophar.net/utilities/ps2util/mfaudio-1-1.html

Chapters:
0:00 SHUKYAKUDEMO.PSS (Audio 1)
1:23 SHUKYAKUDEMO.PSS (Audio 2)
2:48 SHUKYAKUDEMO.PSS (Audio 3)
4:13 SHUKYAKUDEMO.PSS (Audio 4)
5:38 SHUKYAKUDEMO.PSS (Audio 5)
7:03 TITLE_.PSS (NTSC-U)
7:19 TITLE_.PSS (PAL)
7:35 TITLE_.PSS (NTSC-J)
7:51 SILVER_DROP.PSS
8:07 CIRCLE_OF_LIFE.PSS
8:29 FREEZE_OVER.PSS
8:45 TAKIWARI.PSS
8:58 SILVER_DROP2.PSS
9:14 CIRCLE_OF_LIFE2.PSS
9:35 FREEZE_OVER2.PSS
9:51 TAKIWARI2.PSS
10:04 UFO_QUIZ_SHOW.PSS
10:14 LUCKEY_FLAMINGOS.PSS
10:20 POINT_OF_NO_RETURN.PSS
10:29 COLOR_PUZZLE2.PSS
10:36 HUNGLY_MONKEY.PSS
10:45 MULTIBALL.PSS
10:53 MULTIBALL03.PSS
10:59 MULTIBALL04.PSS
11:04 MULTIBALL05.PSS
11:14 SHOWTIME.PSS
11:18 MOVE_ON01.PSS
11:24 WATCH_OUT.PSS
11:29 MISSING.PSS
11:38 TILT2.PSS
11:44 EXTRABALL.PSS
11:49 EXTRABALL2.PSS
11:57 EXTRA_CREDIT.PSS
12:05 EXTRA_CREDIT02.PSS
12:13 NEXT_STAGE.PSS
12:33 CONGRATULATIONS01.PSS
12:40 CONGRATULATIONS02.PSS
12:46 CONGRATULATIONS03.PSS
12:55 CONGRATULATIONS04.PSS
13:04 CONGRATULATIONS05.PSS
13:13 CONGRATULATIONS06.PSS
13:22 CONGRATULATIONS07.PSS
13:31 CONGRATULATIONS08.PSS
13:39 CONGRATULATIONS09.PSS
13:46 CONGRATULATIONS10.PSS
13:58 GAME_OVER2.PSS
14:13 GAME_OVER3.PSS
14:21 GAME_OVER4.PSS
14:32 GAME_OVER5.PSS
14:46 GAME_OVER6.PSS (NTSC-J only)
14:58 STAFF_ROLL1.PSS (NTSC-U)
17:02 STAFF_ROLL1.PSS (NTSC-J)
19:06 STAFF_ROLL1.PSS (PAL)
21:10 STAFF_ROLL2.PSS (NTSC-U)
23:14 STAFF_ROLL2.PSS (NTSC-J)
25:18 STAFF_ROLL2.PSS (PAL)
27:22 UBI.PSS (PAL only)
27:30 BAD_LUCK.PSS (NTSC-U/PAL)
28:03 SMALL_LUCK.PSS (NTSC-U/PAL)
28:46 GOOD_LUCK.PSS (NTSC-U/PAL)
29:24 GREAT_LUCK.PSS (NTSC-U/PAL)
30:02 MIRACULOUS.PSS (NTSC-U/PAL)
30:40 CHAP01.PSS (NTSC-U/PAL)
33:59 CHAP02.PSS (NTSC-U/PAL)
37:52 CHAP03.PSS (NTSC-U/PAL)
41:57 CHAP04.PSS (NTSC-U/PAL)
44:39 CHAP05.PSS (NTSC-U/PAL)
49:50 CHAP06.PSS (NTSC-U/PAL)
53:21 CHAP07.PSS (NTSC-U/PAL)
55:28 CHAP01.PSS (NTSC-J)
58:49 CHAP02.PSS (NTSC-J)
1:02:42 CHAP03.PSS (NTSC-J)
1:06:48 CHAP04.PSS (NTSC-J)
1:09:31 CHAP05.PSS (NTSC-J)
1:14:44 CHAP06.PSS (NTSC-J)
1:18:16 CHAP07.PSS (NTSC-J)
1:20:24 BAD_LUCK.PSS (NTSC-J)
1:21:04 SMALL_LUCK.PSS (NTSC-J)
1:21:44 GOOD_LUCK.PSS (NTSC-J)
1:22:24 GREAT_LUCK.PSS (NTSC-J)
1:23:04 MIRACULOUS.PSS (NTSC-J)
FlipnicFMVfullquality.mp4 FMV klipid FMV clips Flipnic,pinball,PlayStation,PlayStation 2,game over,cutscene,FMV,full motion video,PSS,playstation stream,PAL,congratulations,Lisle Wilkerson,Randy Goins,Lemmy Constantine,no camera,electromechanical game simulator,poisonous,pinball is not dead,new game machine,van gogh,UFO,aliens,flying saucer,flamingo,monkey,freeze over,steel ball,weird,surreal,biology,optics,metallurgy,geometry,theology,evolution,puzzle,multiball,see you again,skeleton,skull,invasion,omg,tilt N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/550.jpg N/A /channel_db_lite/web/json/550.json N/A N/A
548 Press any key to continue... an intro? 0 2023-08-08 Potentially an intro for my future videos... that is if you like it.
Made with Microsoft Clipchamp
0 1 0 1 https://www.youtube.com/watch?v=_mb0RlmgMp0 0 an intro? an intro? Potentially an intro for my future videos... that is if you like it.
Made with Microsoft Clipchamp
Potentially an intro for my future videos... that is if you like it.
Made with Microsoft Clipchamp
paktc newintro – Clipchampiga loodud.mp4 Introd Intros N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/548.jpg N/A /channel_db_lite/web/json/548.json N/A N/A
543 Press any key to continue... Obtaining the Buzz lure in Fishing Fantasy: Buzzrod [Save file modification tutorial] 0 2023-07-01 In this video, I'm going to walk you through the process of fixing a bug in this game, which normally makes it impossible to finish the game. And the best part - you can do it with your own save!

Prerequesties:
Python 3: https://www.python.org/downloads/ (in Windows, make sure that "Add to PATH" is checked during installation)
BuzzrodSaveEditor: https://github.com/MarkusMaal/BuzzrodSaveEditor/archive/refs/heads/main.zip (extract to a folder)
A USB flash drive (if the PS2 freezes/errors out while opening/copying to the mass:/ folder, try a different flash drive, USB 2.0 drives are preferred if possible)

w/uLaunchElf entrypoints:
- If you have a completely unmodified PS2 slim console, you can use FreeDVDboot. Full instructions and ISO files here: https://github.com/CTurt/FreeDVDBoot
- If you have a FreeMcBoot memory card or FreeHDboot hard drive, you can navigate to uLaunchElf in the main menu
- If you have a Fortuna exploited memory card, just navigate to browser, go to exploited memory card, back out twice and you should be in uLaunchElf
- If you have a modchipped PS2 or have MechaPwn with force unlock (disable it after modifying the save to be able to load this game), you can burn this copy of wLaunchElf to a CD or DVD: https://gbatemp.net/download/wlaunchelf-v4-43x_isr-iso-elf.37723/version/39334/download?file=337077

Commands:
To list all saves: python save_editor.py -f [filename] -saves
To list items in a save: python save_editor.py -f [filename] -save[num] -li
To patch a game save: python save_editor.py -f [filename] -p [byte address] -iv 3 -o [patched save filename]

Chapters:
0:00 Describing the bug
0:58 Getting the save out of a memory card
2:38 Patching the save file
4:31 Copying the patched save file back to a memory card
5:30 Testing the modified save
0 1 0 1 https://www.youtube.com/watch?v=fSE4aCLbXPQ 0 Obtaining the Buzz lure in Fishing Fantasy: Buzzrod [Save file modification tutorial] . In this video, I'm going to walk you through the process of fixing a bug in this game, which normally makes it impossible to finish the game. And the best part - you can do it with your own save!

Prerequesties:
Python 3: https://www.python.org/downloads/ (in Windows, make sure that "Add to PATH" is checked during installation)
BuzzrodSaveEditor: https://github.com/MarkusMaal/BuzzrodSaveEditor/archive/refs/heads/main.zip (extract to a folder)
A USB flash drive (if the PS2 freezes/errors out while opening/copying to the mass:/ folder, try a different flash drive, USB 2.0 drives are preferred if possible)

w/uLaunchElf entrypoints:
- If you have a completely unmodified PS2 slim console, you can use FreeDVDboot. Full instructions and ISO files here: https://github.com/CTurt/FreeDVDBoot
- If you have a FreeMcBoot memory card or FreeHDboot hard drive, you can navigate to uLaunchElf in the main menu
- If you have a Fortuna exploited memory card, just navigate to browser, go to exploited memory card, back out twice and you should be in uLaunchElf
- If you have a modchipped PS2 or have MechaPwn with force unlock (disable it after modifying the save to be able to load this game), you can burn this copy of wLaunchElf to a CD or DVD: https://gbatemp.net/download/wlaunchelf-v4-43x_isr-iso-elf.37723/version/39334/download?file=337077

Commands:
To list all saves: python save_editor.py -f [filename] -saves
To list items in a save: python save_editor.py -f [filename] -save[num] -li
To patch a game save: python save_editor.py -f [filename] -p [byte address] -iv 3 -o [patched save filename]

Chapters:
0:00 Describing the bug
0:58 Getting the save out of a memory card
2:38 Patching the save file
4:31 Copying the patched save file back to a memory card
5:30 Testing the modified save
. BuzzrodFixFinal.mp4 Videomängude analüüs Video game analysis N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/543.jpg N/A /channel_db_lite/web/json/543.json N/A N/A
532 Press any key to continue... Menu re-ordering in Flipnic (Warning: Cursed!!!) [W.I.P.] 0 2023-03-14 So, I have decided to mess around with the MAINMENU.MLB file using cheat engine (since it gets loaded into RAM, I can mess with it basically in real time with exceptions).

I was successfully able to change the order of the menu options and the menu options, while maintaining the ability to linearly move straight up and down without suddenly jumping to another menu option. I was not able to change the action of each button yet, so the button actions are shifted upwards.

And just because I can, I decided to shift the exit button 0x100 units to the left.

Technical details, tutorial, and modified MAINMENU.MLB: https://docs.google.com/document/d/1HSP2JH3JfvSXh3FjCa6lXJYfjBHpNOsX6JfqYgwSBC8/edit?usp=sharing
0 1 0 1 https://www.youtube.com/watch?v=f7mQJwsqA-8 0 Menu re-ordering in Flipnic (Warning: Cursed!!!) [W.I.P.] . So, I have decided to mess around with the MAINMENU.MLB file using cheat engine (since it gets loaded into RAM, I can mess with it basically in real time with exceptions).

I was successfully able to change the order of the menu options and the menu options, while maintaining the ability to linearly move straight up and down without suddenly jumping to another menu option. I was not able to change the action of each button yet, so the button actions are shifted upwards.

And just because I can, I decided to shift the exit button 0x100 units to the left.

Technical details, tutorial, and modified MAINMENU.MLB: https://docs.google.com/document/d/1HSP2JH3JfvSXh3FjCa6lXJYfjBHpNOsX6JfqYgwSBC8/edit?usp=sharing
. cursed1.mp4 Videomängude analüüs Video game analysis N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/532.jpg N/A /channel_db_lite/web/json/532.json N/A N/A
523 Press any key to continue... Trying to play TrackMania (2020) with joystick drift be like... 0 2023-01-16 My controller has pretty bad drifting on the right joystick, so I though what would happen if I mapped that to steering in TrackMania and try playing some training maps. There were some I couldn't beat and others I could beat, but it is unquestionably really difficulty to play TrackMania maps with joystick drift. I used OpenPlanet plugins to display medal times and joystick inputs. 0 1 0 1 https://www.youtube.com/watch?v=TGBN8qjHnJ8 0 Trying to play TrackMania (2020) with joystick drift be like... . My controller has pretty bad drifting on the right joystick, so I though what would happen if I mapped that to steering in TrackMania and try playing some training maps. There were some I couldn't beat and others I could beat, but it is unquestionably really difficulty to play TrackMania maps with joystick drift. I used OpenPlanet plugins to display medal times and joystick inputs. . Trackmania 2023.01.15 - 20.23.02.01.mp4 Muud mängimise videod Other gameplay videos TrackMania,joystick,mechanical failure,drifting,false read,false inputs,cheating scandal,I am not riolu!,airbrake,strategies,analog stick failure,graphite pad,joycon drift,joystick drift,drifting issue,level 2 drift,unusable,unplayable N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/523.jpg N/A /channel_db_lite/web/json/523.json N/A N/A
512 Press any key to continue... Flipnic - Evolution D (Hard difficulty gameplay) [feat. Staff credits] 0 2022-12-06 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

This is the final boss stage in Flipnic, which you unlock after completing the Geometry A stage. After completing the stage, you get a special staff credits FMV with fireworks, which I am also showcasing here.

For these stages, the difficulty doesn't matter that much, except for the number of balls and credits, but I'm playing on the hard difficulty nevertheless.

To complete this stage, you have to do the following:
1. Hit entities with ball and avoid losing balls. You can hit shiny targets to spawn more balls
2. If you manage to destroy a red skull, you'll complete the stage
0 1 0 1 https://www.youtube.com/watch?v=EZbm-NMU5t4 0 Flipnic - Evolution D (Hard difficulty gameplay) [feat. Staff credits] . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

This is the final boss stage in Flipnic, which you unlock after completing the Geometry A stage. After completing the stage, you get a special staff credits FMV with fireworks, which I am also showcasing here.

For these stages, the difficulty doesn't matter that much, except for the number of balls and credits, but I'm playing on the hard difficulty nevertheless.

To complete this stage, you have to do the following:
1. Hit entities with ball and avoid losing balls. You can hit shiny targets to spawn more balls
2. If you manage to destroy a red skull, you'll complete the stage
. 2022-12-06 23-04-04.mkv Muud mängimise videod Other gameplay videos gameplay,Evolution,Theology,credits,Flipnic,pinball,PlayStation 2 N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/512.jpg N/A /channel_db_lite/web/json/512.json N/A N/A
510 Press any key to continue... Flipnic - Geometry A (Hard difficulty gameplay) [no sound] 0 2022-12-06 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

The Geometry stages provide a different type of gameplay with 2D-ish graphics, which is more similar to a brick breaker game, rather than a pinball game. Altough the video is shorter, this stage was actually more difficult than the Optics B stage for me.

I'm apologize for no sound in this video. I was recording this with OBS and during recording the audio level meter did show activity, so I have no idea why it decided not to output sound to the final file. I might upload a version with sound in the future, but for now I wanted to get the video out, so this will have to do.

At the minimum, to complete this stage, you have to do the following:1. Collect all purple keys
2. After collecting all the keys, you'll unlock the Space Warp mission, which lets you warp through the game field.
3. Warp 5 times to summon Area 74 flag, warp even more to summon the Alien Hill flag
4. We'll assume you hit the Area 74 flag first. In this mission, you must destroy the UFOs several times, while trying to avoid losing any balls.
5. If you hit the A-flag, you'll go to the Alien Hill mission. The goal here is to collect all blue keys and progress upwards until the counter reaches 0.
6. If you complete both Alien Hill and Area 74 missions, another flag, which is marked with E, appears. Collect it to start the Galaxy Tennis mission
7. (Optional) Try to hit your ball to the enemy position 3 times, while also defending your own position.
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=M7R03-vNb7s 0 Flipnic - Geometry A (Hard difficulty gameplay) [no sound] . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

The Geometry stages provide a different type of gameplay with 2D-ish graphics, which is more similar to a brick breaker game, rather than a pinball game. Altough the video is shorter, this stage was actually more difficult than the Optics B stage for me.

I'm apologize for no sound in this video. I was recording this with OBS and during recording the audio level meter did show activity, so I have no idea why it decided not to output sound to the final file. I might upload a version with sound in the future, but for now I wanted to get the video out, so this will have to do.

At the minimum, to complete this stage, you have to do the following:1. Collect all purple keys
2. After collecting all the keys, you'll unlock the Space Warp mission, which lets you warp through the game field.
3. Warp 5 times to summon Area 74 flag, warp even more to summon the Alien Hill flag
4. We'll assume you hit the Area 74 flag first. In this mission, you must destroy the UFOs several times, while trying to avoid losing any balls.
5. If you hit the A-flag, you'll go to the Alien Hill mission. The goal here is to collect all blue keys and progress upwards until the counter reaches 0.
6. If you complete both Alien Hill and Area 74 missions, another flag, which is marked with E, appears. Collect it to start the Galaxy Tennis mission
7. (Optional) Try to hit your ball to the enemy position 3 times, while also defending your own position.
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. 2022-12-06 21-42-10.mkv Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/510.jpg N/A /channel_db_lite/web/json/510.json N/A N/A
511 Press any key to continue... Flipnic - Geometry 2P gameplay 0 2022-12-06 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

In addition to normal stages, I've also decided to upload some 2 player versions! The 2P modes are completely different in terms of gameplay and they try to imitate sports games in a pinball format.

The 2P stages are playable in Free play/2P match gamemode after unlocking the A version of the corresponding 2P stage (e.g. if you unlock Metallurgy A, you'll be able to play Metallurgy 2P).

In Geometry 2P, each player has a goal, which the opponent is trying to defend. Each time a ball reaches the goal, a point is awarded.
0 1 0 1 https://www.youtube.com/watch?v=LWL_ziwHlkE 0 Flipnic - Geometry 2P gameplay . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

In addition to normal stages, I've also decided to upload some 2 player versions! The 2P modes are completely different in terms of gameplay and they try to imitate sports games in a pinball format.

The 2P stages are playable in Free play/2P match gamemode after unlocking the A version of the corresponding 2P stage (e.g. if you unlock Metallurgy A, you'll be able to play Metallurgy 2P).

In Geometry 2P, each player has a goal, which the opponent is trying to defend. Each time a ball reaches the goal, a point is awarded.
. 2022-12-06 22-54-25.mkv Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/511.jpg N/A /channel_db_lite/web/json/511.json N/A N/A
509 Press any key to continue... Flipnic - Optics B (Hard difficulty gameplay) 0 2022-12-04 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

It took me a long time to upload the Optics B gameplay, because my initial victory didn't have sound, so I had to beat it again (and this stage is really difficult).

At the minimum, to complete this stage, you have to do the following:
1. Hit a flying target to trigger a "Point of No Return" mission
2. Collect all of the rings required, which have been placed all around the stage (some rings are only at specific areas, such as Yellow, Magenta, and Cyan)
3. Go back to the spawn location, a multiball mission will then start
4. (Optional) Complete a required task for the multiball mission
5. Repeat steps 1-4 two more times
6. After completing the third multiball mission, you'll be teleported to a Zero Gravity mission area
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=VahRvD_2iyY 0 Flipnic - Optics B (Hard difficulty gameplay) . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

It took me a long time to upload the Optics B gameplay, because my initial victory didn't have sound, so I had to beat it again (and this stage is really difficult).

At the minimum, to complete this stage, you have to do the following:
1. Hit a flying target to trigger a "Point of No Return" mission
2. Collect all of the rings required, which have been placed all around the stage (some rings are only at specific areas, such as Yellow, Magenta, and Cyan)
3. Go back to the spawn location, a multiball mission will then start
4. (Optional) Complete a required task for the multiball mission
5. Repeat steps 1-4 two more times
6. After completing the third multiball mission, you'll be teleported to a Zero Gravity mission area
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. FlipnicOpticsBHard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/509.jpg N/A /channel_db_lite/web/json/509.json N/A N/A
508 MarkusTegelane Windows 8.1 tootetugi lõpeb 12. jaanuaril 2023 0 2022-11-20 Microsoft lõpetab nende toote elütsükli poliitika tõttu Windows 8.1 toe. See tähendab, et tootele ei pakuta rohkem uuendusi ega ametlikku Microsofti tuge pärast seda kuupäeva.

► *Seotud lingid*
Microsofti artikkel sellel teemal: https://support.microsoft.com/et-ee/windows/windows-8-1-tugi-l%C3%B5peb-10-jaanuaril-2023-3cfd4cde-f611-496a-8057-923fba401e93
Microsofti elütsükli poliitika: https://learn.microsoft.com/et-ee/lifecycle/

► *Teised lingid*
Kogukonna vahekaart: https://www.youtube.com/@markusTegelane/community
Veebileht: https://markustegelane.online
Juhuslik video: https://markustegelane.online/markustegelane/random/?c=mt

► *Muusika*
Hello Windows 8 - 8.1 with Vista Remix

► *Lisainfo*
Failinimi: _MetroEndOfLife.mp4_
Renderdamise aeg: 9 minutit, 44 sekundit
Stiil: Metro
Kasutatud tarkvara: DaVinci Resolve 18.1, Aegisub, YTSubConverter, Mozilla Firefox

► *Kanalid*
Põhikanal: youtube.com/@markusTegelane
Lisakanal: youtube.com/@markusTegelaneLite
Programmeerimise kanal: youtube.com/@hashMarkusTegelane
Markuse asjad: youtube.com/@markuseasjad
Press any key to continue: youtube.com/@PAKTC
Markuse videod: youtube.com/@MarkusMaal

► *Aitäh, et vaatasite!*
© 2022 Markuse videod

► *Hashtags*
#toelõpp #Windows8 #os
1 1 0 1 https://www.youtube.com/watch?v=OTQMoJEa04U 0 Windows 8.1 reaches end of support on 12th January 2023 . Due to their product lifecycle policy, Microsoft are ending extended support for Windows 8.1. This means that it will not recieve any updates nor official technical support from Microsoft after this date.

► *Related links*
Microsoft article about the topic: https://support.microsoft.com/en-us/windows/windows-8-1-support-will-end-on-january-10-2023-3cfd4cde-f611-496a-8057-923fba401e93
Microsoft Lifecycle policy: https://learn.microsoft.com/en-us/lifecycle/

► *Other links*
Community tab: https://www.youtube.com/@markusTegelane/community
Website: https://markustegelane.online
Random video: https://markustegelane.online/markustegelane/random/?c=mt

► *Music*
Hello Windows 8 - 8.1 with Vista Remix

► *Additional information*
Filename: _MetroEndOfLife.mp4_
Render time: 9 minutes, 44 seconds
Style: Metro
Software used: DaVinci Resolve 18.1, Aegisub, YTSubConverter, Mozilla Firefox

► *Channels*
Main channel: youtube.com/@markusTegelane
Secondary channel: youtube.com/@markusTegelaneLite
Programming channel: youtube.com/@hashMarkusTegelane
Markus' stuff: youtube.com/@markuseasjad
Press any key to continue: youtube.com/@PAKTC
Markus' videos: youtube.com/@MarkusMaal

► *Thank you for watching!*
© 2022 Markus' videos

► *Hashtags*
#endofsupport #Windows8 #os
. MetroEndOfLife.mp4 Operatsioonsüsteemid Operating systems markustegelane,Markus Maal,Tegelane Markus,mmaal,TheMarkusGuy,computers,Windows 8.1,end of life,end of support,tootetugi,product support,elutsükli lõpp,Microsofti elutsükkel,Microsoft Lifecycle https://odysee.com/@MarkusTegelane:8/windows-8.1-reaches-end-of-support-on:6 MarkusTegelane . 1 /channel_db_lite/web/thumbs/508.jpg N/A /channel_db_lite/web/json/508.json N/A /channel_db_lite/web/stream/508.en.ass
493 Press any key to continue... Loading a PS1 game [Real time capture \w disc seeking sounds] 0 2022-10-10 If you have ever owned a PS1 or any other early CD-based games console, you know very well that games take a very long time to load. One reason is due to the slower disc speed, another is due to the fact that game data is fragmented around the disc, so the laser assembly needs to seek around the disc to find the required data. This means that loading a game can take several minutes. This video demonstrates that.

Captured using a real console, which is outputting composite, which is connected into an HDMI upscaler, which then is connected to a capture device, which is connected to my computer, which saves the output into a video file. This video is, at least for most part, uncut, except for parts, where I navigate around in menus, insert the game disc, play, etc, but every load screen is uncut.

The game that is showcased in this video is Colin McRae Rally 2.0 (PS1, PAL version).

Timestamps:
0:00 Opening disc tray, removing existing disc, inserting another game disc, closing tray, power on
0:11 Power-on, disc check
0:15 BIOS screen
0:31 Exit BIOS screen
0:35 Copyright screen
2:35 Black screen
2:52 Codemasters FMV
3:01 Black screen
3:46 Intro FMV (cut)
4:08 Black screen
4:16 Title screen/language selection
4:30 Loading demo mode
5:34 Exit demo mode
6:09 Navigating menus
6:21 Loading service area
6:31 Loading single stage
6:50 Single stage gameplay (cut)
7:08 Exit single stage

P.S. At the beginning, the video is in mono. That's because I forgot to change my microphone into mono mode, so it was outputting only to one side, and I only realized that mid-recording.
0 1 0 1 https://www.youtube.com/watch?v=5RzOn7rjeD8 0 Loading a PS1 game [Real time capture \w disc seeking sounds] . If you have ever owned a PS1 or any other early CD-based games console, you know very well that games take a very long time to load. One reason is due to the slower disc speed, another is due to the fact that game data is fragmented around the disc, so the laser assembly needs to seek around the disc to find the required data. This means that loading a game can take several minutes. This video demonstrates that.

Captured using a real console, which is outputting composite, which is connected into an HDMI upscaler, which then is connected to a capture device, which is connected to my computer, which saves the output into a video file. This video is, at least for most part, uncut, except for parts, where I navigate around in menus, insert the game disc, play, etc, but every load screen is uncut.

The game that is showcased in this video is Colin McRae Rally 2.0 (PS1, PAL version).

Timestamps:
0:00 Opening disc tray, removing existing disc, inserting another game disc, closing tray, power on
0:11 Power-on, disc check
0:15 BIOS screen
0:31 Exit BIOS screen
0:35 Copyright screen
2:35 Black screen
2:52 Codemasters FMV
3:01 Black screen
3:46 Intro FMV (cut)
4:08 Black screen
4:16 Title screen/language selection
4:30 Loading demo mode
5:34 Exit demo mode
6:09 Navigating menus
6:21 Loading service area
6:31 Loading single stage
6:50 Single stage gameplay (cut)
7:08 Exit single stage

P.S. At the beginning, the video is in mono. That's because I forgot to change my microphone into mono mode, so it was outputting only to one side, and I only realized that mid-recording.
. PS1-seeking.mp4 Varia Miscellaneous N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/493.jpg N/A /channel_db_lite/web/json/493.json N/A N/A
489 MarkusTegelane Mis juhtub, kui avate 6000 Chrome vahekaarti Windowsiga sülearvutis? [Markuse arvuti meelelahutus] 0 2022-09-25 Selles videos avame 6000 vahekaarti Google Chrome-is ning vaatame, kuidas Windowsiga arvuti sellele reageerib. Kuid, seekord ei kasuta me enam enda HP Stream sülearvutit, vaid hoopis teist rüperaali, mida ma sellel kanalil varem näidanud pole.

Järgmine video: Samsung Dex

► Seotud lingid
Google Chrome brauser: https://www.google.com/chrome
AutoHotkey skript: https://pastebin.com/AHhXYynZ
Monteerimata ekraanisalvestus: https://www.youtube.com/watch?v=gqhbM_lyqD0

► Teised lingid
Veebileht: https://markustegelane.online
Ajaveeb: https://markustegelane.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane_ee)

► Muusika
AIRGLOW – Cepheid Disk: https://youtu.be/p6iZ2_Q_MUc
Markus Maal – Harmoy
Professor Kliq – Tickly Me Pink (CC-BY-NC-SA)
Professor Kliq – Electric Telepathy (CC-BY-SA)
Alex Barbarian – Slices: https://youtu.be/dSrIGrPxmFQ
Professor Kliq – Surfs Up
Three Chain Links – Die Historic: https://youtu.be/ZyVq4HF8oRw
Markus Maal – Base Theme
Professor Kliq – Synapse (CC-BY-NC-SA)

Cipher Kevin MacLeod (incompetech.com)
Litsents: Creative Commons: autorile viitamine 3.0 Litsents
http://creativecommons.org/licenses/by/3.0/

► Lisainfo
Failinimi: GoogleOver6000.mp4
Stiil: MCE-2.0
Renderdamise aeg: 38 minutit, 37 sekundit
Lindistamise kuupäev: 28. august 2022

► Aitäh, et vaatasite!
© 2022 Markuse videod

► Teemaviited
#GoogleChrome #Üle6000 #eksperiment
1 1 0 1 https://www.youtube.com/watch?v=O8nuECU6p0I 0 What happens, when you open 6000 Chrome tabs in a Windows laptop? [Markus computer entertainment] . In this video, we are going to open 6000 tabs in Google Chrome and seeing how a Windows computer is going to respond. However, in this video, we are not going to be using our HP Stream laptop, but instead, another laptop I haven't shown on this channel before.

Next video: Samsung Dex

► Related links
Google Chrome browser: https://www.google.com/chrome
AutoHotkey script: https://pastebin.com/AHhXYynZ
Unedited screen recording: https://www.youtube.com/watch?v=gqhbM_lyqD0

► Other links
Website: https://markustegelane.online
Blog: https://markustegelane-en.blogspot.com (Feedburner/RSS: https://feeds.feedburner.com/markustegelane)

► Music
AIRGLOW – Cepheid Disk: https://youtu.be/p6iZ2_Q_MUc
Markus Maal – Harmoy
Professor Kliq – Tickly Me Pink (CC-BY-NC-SA)
Professor Kliq – Electric Telepathy (CC-BY-SA)
Alex Barbarian – Slices: https://youtu.be/dSrIGrPxmFQ
Professor Kliq – Surfs Up
Three Chain Links – Die Historic: https://youtu.be/ZyVq4HF8oRw
Markus Maal – Base Theme
Professor Kliq – Synapse (CC-BY-NC-SA)

Cipher Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

► Additional information
Filename: GoogleOver6000.mp4
Style: MCE-2.0
Render time: 38 minutes, 37 seconds
Recording date: 28th August 2022

► Thank you for watching!
© 2022 Markus' videos

► Hashtags
#GoogleChrome #Over6000 #experiment
. GoogleOver6000.mp4 Markuse arvuti meelelahutus Markus computer entertainment Google Chrome,what happens if you open 6000 tabs,Windows,Windows 11,OBS,Open Broadcaster Software,waiting,loading,Markuse arvuti meelelahutus,Markus computer entertainment N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/489.jpg N/A /channel_db_lite/web/json/489.json N/A /channel_db_lite/web/stream/489.en.ass
475 MarkusTegelane Windows 10 Ameliorated Edition [Markuse arvuti meelelahutus] 0 2022-07-31 See video demonstreerib erilist modifitseeritud Windows 10 versiooni, mis on palju kergekaalulisem ja eemaldab suure osa jälgimisteenustest ja telemeetriast. 1 1 0 1 https://www.youtube.com/watch?v=Te14YFJ5qUw 0 Windows 10 Ameliorated Edition [Markus Computer Entertainment] . This video talks about a special modified version of Windows 10, which makes it much more lightweight and removes most of the tracking and telemetry.

► Links
Create your own Windows 10 AME .iso: https://wiki.ameliorated.info/documentation_21H1
Website: https://markustegelane.ml/
Blog: https://markustegelane-en.blogspsot.com/
Other channels: https://www.youtube.com/c/MarkusMaal/channels

► Software
Windows 10 (21H1)
Aegisub and YTSubConverter (for creating subtitles)
kdenlive (for editing some earlier parts of the video)
DaVinci Resolve 18 (for editing the video)
paint.NET (for creating the thumbnail)

► Music
Professor Kliq - Surfs Up
Elwood Productions - Low Horizon
Swing (PS1) OST - Track 3
Windows Medley (channel: https://www.youtube.com/user/crocz)
RAIGON inc. - Blazing Heat

► Other info
Original filename: Windows 10 AME.mp4
Style: LaservalgusV3
Render time: 7 minutes, 18 seconds
Recording date: 17th May 2022

► Thank you for watching!
© 2022 Markus' videoss
See video demonstreerib erilist modifitseeritud Windows 10 versiooni, mis on palju kergekaalulisem ja eemaldab suure osa jälgimisteenustest ja telemeetriast.

► Lingid
Looge enda Windows 10 AME .iso: https://wiki.ameliorated.info/documentation_21H1
Veebileht: https://markustegelane.ml/
Ajaveeb: https://markustegelane.blogspsot.com/
Teised kanalid: https://www.youtube.com/c/MarkusMaal/channels

► Tarkvara
Windows 10 (21H1)
Aegisub ja YTSubConverter (subtiitrite loomiseks)
kdenlive (osaliselt selle programmiga monteeritud esimene veerand videost)
DaVinci Resolve 18 (video monteerimiseks)
paint.NET (pisipildi koostamiseks)

► Muusika
Professor Kliq - Surfs Up
Elwood Productions - Low Horizon
Swing (PS1) OST - Track 3
Windows Medley (kanalilt: https://www.youtube.com/user/crocz)
RAIGON inc. - Blazing Heat

► Lisainfo
Originaalne failinimi: Windows 10 AME.mp4
Stiil: LaservalgusV3
Renderdamise aeg: 7 minutit, 18 sekundit
Lindistamise kuupäev: 17. mai 2022

► Aitäh, et vaatasite!
© 2022 Markuse videod
Windows 10 AME.mp4 Markuse arvuti meelelahutus Markus computer entertainment Windows 10,Ameliorated,leevendatud,sinine HP sülearvuti,HP Stream laptop,blue laptop,sinine sülearvuti,Mozilla Thunderbird,Firefox,parandatud,Microsoft Windows,Windows 11 alternative,alternatiiv Windows 11 asemel,Windows for people who hate Windows,Windows inimestele kes vihkavad Windowsit,dislike,dino https://odysee.com/@MarkusTegelane:8/windows-10-ameliorated-edition-markus:2 MarkusTegelane . 1 /channel_db_lite/web/thumbs/475.jpg N/A /channel_db_lite/web/json/475.json N/A /channel_db_lite/web/stream/475.en.ass
474 Press any key to continue... Flipnic - Biology B (Hard difficulty gameplay) 0 2022-07-28 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time I'm playing the very first B-version of a stage in this game - Biology B. These secondary versions are mirrored and have modified textures and color pallettes. You need to complete these B-versions before unlocking the final stage, which is Geometry A.

At the minimum, to complete this stage, you have to do the following:
1. Get to the "Slot chance" area
2. Go to the right lane
3. Once you get to the middle section with the flipper, you need to aim for the lane on the left
4. Hit bumpers, until all of them have butterflies. This will complete the "Freeze Over" mission
5. Go back to the "Slot chance" area. You should now see 2 platforms. Try to make the ball jump over these ramps a certain number of times. If the counter reaches 0, the "Hidden path discovery" will start
6. Go up the mountain and collect all of the shiny coins. Once you reach the very top, the "Zero Gravity" mission will start.
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=cTGeJ3Yr3_c 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time I'm playing the B-version of the Metallurgy stage. These secondary versions are mirrored and have modified textures and color pallettes. You need to complete these B-versions before unlocking the final stage, which is Geometry A.

At the minimum, to complete this stage, you have to do the following:
1. Go through the first lane after spawning on the stage
2. Take a color coded lane
3. If you chose the magenta lane, you'll end up in an area with a UFO trying to shoot lasers at you. Try to hit the purple circuit board certain number of times, which will complete the first "Move On" mission
4. Take the lane, which you just uncovered after completing this mission
5. You'll now be at another area. Try to hit another purple circuit board certain number of times, which will complete the second "Move On" mission
6. Take the lane, which you just uncovered
7. Go through the non-colorcoded lanes until you find a color-coded lane, which you haven't taken
8. If you chose the green lane, you'll end up in the air spinning around cylinders. If you press circle, you'll move forward in that direction
9. Take a specific path until you get to an area with four shafts. Hit one shaft while it's active to start a "Shut Down the Shafts" mission
10. Shut down all shafts within the time limit
11. Repeat steps 9-10
12. You can go back to the lane selection area if you go through a portal
13. Repeat step 7
14. If you chose the blue lane, you'll end up in another area, where a giant spider crab mini-boss spawns. If you hit the spider crab with the ball, you'll remove some of its health. Try to do this until the spider crab explodes. Then you can take a specific lane to go back
15. Take the non-colorcoded lanes until you get back to the spawn area.
16. Take the white lane, that was previously covered by a pillar before. This will start he "Zero gravity" mission
17. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
18. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)

P.S. I already finished the Optics B stage, but due to some garbage with pulseaudio, the recording was missing audio, which is really annoying. This means that it'll take some time before I can upload a finished Optics B run :(
. MetallurgyB_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/474.jpg N/A /channel_db_lite/web/json/474.json N/A N/A
464 Press any key to continue... Flipnic - Evolution A (Hard difficulty gameplay) 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

This is the first boss stage in Flipnic, which you unlock after completing the Biology A stage. For this stage, the difficulty doesn't matter that much, except for the number of balls and credits, but I'm playing on the hard difficulty nevertheless.

To complete this stage, you have to do the following:
1. Hit entities with ball and avoid losing balls. You can hit shiny targets to spawn more balls
2. If you manage to destroy a red skull, you'll complete the stage
0 1 0 1 https://www.youtube.com/watch?v=HABD6EgdWqc 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

This is the first boss stage in Flipnic, which you unlock after completing the Biology A stage. For this stage, the difficulty doesn't matter that much, except for the number of balls and credits, but I'm playing on the hard difficulty nevertheless.

To complete this stage, you have to do the following:
1. Hit entities with ball and avoid losing balls. You can hit shiny targets to spawn more balls
2. If you manage to destroy a red skull, you'll complete the stage
. EvolutionA_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/464.jpg N/A /channel_db_lite/web/json/464.json N/A N/A
465 Press any key to continue... Flipnic - Evolution B (Hard difficulty gameplay) 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

This is the second boss stage in Flipnic, which you unlock after completing the Metallurgy A stage. For these stages, the difficulty doesn't matter that much, except for the number of balls and credits, but I'm playing on the hard difficulty nevertheless.

To complete this stage, you have to do the following:
1. Hit entities with ball and avoid losing balls. You can hit shiny targets to spawn more balls
2. If you manage to destroy a red skull, you'll complete the stage
0 1 0 1 https://www.youtube.com/watch?v=eTFOdl_DLNY 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

This is the second boss stage in Flipnic, which you unlock after completing the Metallurgy A stage. For these stages, the difficulty doesn't matter that much, except for the number of balls and credits, but I'm playing on the hard difficulty nevertheless.

To complete this stage, you have to do the following:
1. Hit entities with ball and avoid losing balls. You can hit shiny targets to spawn more balls
2. If you manage to destroy a red skull, you'll complete the stage
. EvolutionB_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/465.jpg N/A /channel_db_lite/web/json/465.json N/A N/A
466 Press any key to continue... Flipnic - Evolution C (Hard difficulty gameplay) 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

This is the third boss stage in Flipnic, which you unlock after completing the Optics A stage. For these stages, the difficulty doesn't matter that much, except for the number of balls and credits, but I'm playing on the hard difficulty nevertheless.

To complete this stage, you have to do the following:
1. Hit entities with ball and avoid losing balls. You can hit shiny targets to spawn more balls
2. If you manage to destroy a red skull, you'll complete the stage
0 1 0 1 https://www.youtube.com/watch?v=RcTUQig43M0 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

This is the third boss stage in Flipnic, which you unlock after completing the Optics A stage. For these stages, the difficulty doesn't matter that much, except for the number of balls and credits, but I'm playing on the hard difficulty nevertheless.

To complete this stage, you have to do the following:
1. Hit entities with ball and avoid losing balls. You can hit shiny targets to spawn more balls
2. If you manage to destroy a red skull, you'll complete the stage
. EvolutionC_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/466.jpg N/A /channel_db_lite/web/json/466.json N/A N/A
467 Press any key to continue... Flipnic - Metallurgy A (Hard difficulty gameplay) 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time it's Metallurgy A, which is unlocked after defeating the first boss.

At the minimum, to complete this stage, you have to do the following:
1. Go through the first lane after spawning on the stage
2. Take a color coded lane
3. If you chose the magenta lane, you'll end up in an area with a UFO trying to shoot lasers at you. Try to hit the purple circuit board certain number of times, which will complete the first "Move On" mission
4. Take the lane, which you just uncovered after completing this mission
5. You'll now be at another area. Try to hit another purple circuit board certain number of times, which will complete the second "Move On" mission
6. Take the lane, which you just uncovered
7. Go through the non-colorcoded lanes until you find a color-coded lane, which you haven't taken
8. If you chose the green lane, you'll end up in the air spinning around cylinders. If you press circle, you'll move forward in that direction
9. Take a specific path until you get to an area with four shafts. Hit one shaft while it's active to start a "Shut Down the Shafts" mission
10. Shut down all shafts within the time limit
11. Repeat steps 9-10
12. You can go back to the lane selection area if you go through a portal
13. Repeat step 7
14. If you chose the blue lane, you'll end up in another area, where a giant spider crab mini-boss spawns. If you hit the spider crab with the ball, you'll remove some of its health. Try to do this until the spider crab explodes. Then you can take a specific lane to go back
15. Take the non-colorcoded lanes until you get back to the spawn area.
16. Take the white lane, that was previously covered by a pillar before. This will start he "Zero gravity" mission
17. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
18. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=pftgH8DNink 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time it's Metallurgy A, which is unlocked after defeating the first boss.

At the minimum, to complete this stage, you have to do the following:
1. Go through the first lane after spawning on the stage
2. Take a color coded lane
3. If you chose the magenta lane, you'll end up in an area with a UFO trying to shoot lasers at you. Try to hit the purple circuit board certain number of times, which will complete the first "Move On" mission
4. Take the lane, which you just uncovered after completing this mission
5. You'll now be at another area. Try to hit another purple circuit board certain number of times, which will complete the second "Move On" mission
6. Take the lane, which you just uncovered
7. Go through the non-colorcoded lanes until you find a color-coded lane, which you haven't taken
8. If you chose the green lane, you'll end up in the air spinning around cylinders. If you press circle, you'll move forward in that direction
9. Take a specific path until you get to an area with four shafts. Hit one shaft while it's active to start a "Shut Down the Shafts" mission
10. Shut down all shafts within the time limit
11. Repeat steps 9-10
12. You can go back to the lane selection area if you go through a portal
13. Repeat step 7
14. If you chose the blue lane, you'll end up in another area, where a giant spider crab mini-boss spawns. If you hit the spider crab with the ball, you'll remove some of its health. Try to do this until the spider crab explodes. Then you can take a specific lane to go back
15. Take the non-colorcoded lanes until you get back to the spawn area.
16. Take the white lane, that was previously covered by a pillar before. This will start he "Zero gravity" mission
17. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
18. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. MetallurgyA_hard.mp4 Teised skriptimiskeeled Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/467.jpg N/A /channel_db_lite/web/json/467.json N/A N/A
468 Press any key to continue... Flipnic - Biology A (Hard difficulty gameplay) 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time I'm playing the very first stage in this game - Biology A. It also has a little introduction sequence, which other stages don't have.

At the minimum, to complete this stage, you have to do the following:
1. Get to the "Slot chance" area
2. Go to the left lane
3. Once you get to the middle section with the flipper, you need to aim for the lane on the right
4. Hit bumpers, until all of them have butterflies. This will complete the "Freeze Over" mission
5. Go back to the "Slot chance" area. You should now see 2 platforms. Try to make the ball jump over these ramps a certain number of times. If the counter reaches 0, the "Hidden path discovery" will start
6. Go up the mountain and collect all of the shiny coins. Once you reach the very top, the "Zero Gravity" mission will start.
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=wwQiDW8WaDA 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time I'm playing the very first stage in this game - Biology A. It also has a little introduction sequence, which other stages don't have.

At the minimum, to complete this stage, you have to do the following:
1. Get to the "Slot chance" area
2. Go to the left lane
3. Once you get to the middle section with the flipper, you need to aim for the lane on the right
4. Hit bumpers, until all of them have butterflies. This will complete the "Freeze Over" mission
5. Go back to the "Slot chance" area. You should now see 2 platforms. Try to make the ball jump over these ramps a certain number of times. If the counter reaches 0, the "Hidden path discovery" will start
6. Go up the mountain and collect all of the shiny coins. Once you reach the very top, the "Zero Gravity" mission will start.
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. BiologyA_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/468.jpg N/A /channel_db_lite/web/json/468.json N/A N/A
469 Press any key to continue... Flipnic - Metallurgy 2P gameplay 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

In addition to normal stages, I've also decided to upload some 2 player versions! The 2P modes are completely different in terms of gameplay and they try to imitate sports games in a pinball format.

The 2P stages are playable in Free play/2P match gamemode after unlocking the A version of the corresponding 2P stage (e.g. if you unlock Metallurgy A, you'll be able to play Metallurgy 2P).

In Metallurgy 2P, each player has a basket they need to get balls to. Each time you drop a ball through a basket, the corresponding player scores a point. Both players are allowed to shoot balls to each other's baskets without penalty. The first player to reach 10 points or have the most points after the time runs out wins.
0 1 0 1 https://www.youtube.com/watch?v=-Y7b3hBQOB8 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

In addition to normal stages, I've also decided to upload some 2 player versions! The 2P modes are completely different in terms of gameplay and they try to imitate sports games in a pinball format.

The 2P stages are playable in Free play/2P match gamemode after unlocking the A version of the corresponding 2P stage (e.g. if you unlock Metallurgy A, you'll be able to play Metallurgy 2P).

In Biology 2P, each player has a goal they need to defend. Each player can press the circle button to lower/increase the bumper height. The goal is to either reach 5 points first or have more points than the other player before the time's up.
. ZZ_Biology2P.mkv Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/469.jpg N/A /channel_db_lite/web/json/469.json N/A N/A
470 Press any key to continue... Flipnic - Optics 2P gameplay 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

In addition to normal stages, I've also decided to upload some 2 player versions! The 2P modes are completely different in terms of gameplay and they try to imitate sports games in a pinball format.

The 2P stages are playable in Free play/2P match gamemode after unlocking the A version of the corresponding 2P stage (e.g. if you unlock Metallurgy A, you'll be able to play Metallurgy 2P).

In Optics 2P, each player tries to have balls fall off the opponent's side, after which they score a point. First player to score 10 points or the player with most points after the time runs out wins the match.
0 1 0 1 https://www.youtube.com/watch?v=rSNMO5QCGrc 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

In addition to normal stages, I've also decided to upload some 2 player versions! The 2P modes are completely different in terms of gameplay and they try to imitate sports games in a pinball format.

The 2P stages are playable in Free play/2P match gamemode after unlocking the A version of the corresponding 2P stage (e.g. if you unlock Metallurgy A, you'll be able to play Metallurgy 2P).

In Optics 2P, each player tries to have balls fall off the opponent's side, after which they score a point. First player to score 10 points or the player with most points after the time runs out wins the match.
. ZZ_Optics2P.mkv Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/470.jpg N/A /channel_db_lite/web/json/470.json N/A N/A
471 Press any key to continue... Flipnic - Biology 2P gameplay 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

In addition to normal stages, I've also decided to upload some 2 player versions! The 2P modes are completely different in terms of gameplay and they try to imitate sports games in a pinball format.

The 2P stages are playable in Free play/2P match gamemode after unlocking the A version of the corresponding 2P stage (e.g. if you unlock Metallurgy A, you'll be able to play Metallurgy 2P).

In Biology 2P, each player has a goal they need to defend. Each player can press the circle button to lower/increase the bumper height. The goal is to either reach 5 points first or have more points than the other player before the time's up.
0 1 0 1 https://www.youtube.com/watch?v=gmvZKETSn44 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

In addition to normal stages, I've also decided to upload some 2 player versions! The 2P modes are completely different in terms of gameplay and they try to imitate sports games in a pinball format.

The 2P stages are playable in Free play/2P match gamemode after unlocking the A version of the corresponding 2P stage (e.g. if you unlock Metallurgy A, you'll be able to play Metallurgy 2P).

In Optics 2P, each player tries to have balls fall off the opponent's side, after which they score a point. First player to score 10 points or the player with most points after the time runs out wins the match.
. ZZ_Optics2P.mkv Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/471.jpg N/A /channel_db_lite/web/json/471.json N/A N/A
463 Press any key to continue... Flipnic - Optics A (Hard difficulty gameplay) 0 2022-07-24 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

I've decided to go with Optics A first, because it's my favorite stage in this game and I've praticed a lot on it.

At the minimum, to complete this stage, you have to do the following:
1. Hit a flying target to trigger a "Point of No Return" mission
2. Collect all of the rings required, which have been placed all around the stage (some rings are only at specific areas, such as Yellow, Magenta, and Cyan)
3. Go back to the spawn location, a multiball mission will then start
4. (Optional) Complete a required task for the multiball mission
5. Repeat steps 1-4 two more times
6. After completing the third multiball mission, you'll be teleported to a Zero Gravity mission area
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=XudtUvFv-r8 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

I've decided to go with Optics A first, because it's my favorite stage in this game and I've praticed a lot on it.

At the minimum, to complete this stage, you have to do the following:
1. Hit a flying target to trigger a "Point of No Return" mission
2. Collect all of the rings required, which have been placed all around the stage (some rings are only at specific areas, such as Yellow, Magenta, and Cyan)
3. Go back to the spawn location, a multiball mission will then start
4. (Optional) Complete a required task for the multiball mission
5. Repeat steps 1-4 two more times
6. After completing the third multiball mission, you'll be teleported to a Zero Gravity mission area
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. OpticsA_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/463.jpg N/A /channel_db_lite/web/json/463.json N/A N/A
454 MarkusTegelane Veidrad PlayStation 1 BIOS-i rikutused (feat. CD Pleier) 0 2022-06-13 See video on idee poolest väga sarnane sellele, mida ma tegin PlayStation 2 BIOS-i rikutuste videos, aga seekord teen seda originaalse PlayStation konsooliga (täpsemalt emulaatoriga). Erinevalt teistest rikutuste videotest, mille leiate YouTube-st, näitan ma siin ka mälukaardihalduri ja CD pleieri rikutusi.

Ma kasutasin BIOS-i failide rikkumiseks Vinesauce ROM Corruptor, ePSXe ja XEBRA PS1 riistvara imiteerimiseks (Ma kasutan mõnedes kohtades XEBRA emulaatorit, sest see võimaldas mul sisestada mängu plaadi, siis kui olin CD pleieri menüüs) ning mõningeid kohandatud skripte, et rikutusi testida.
1 1 0 1 https://www.youtube.com/watch?v=4n0S_0iojxg 0 Weird PlayStation 1 BIOS Corruptions (feat. CD Player) . *** Warning ***
Intense strobe lights from 9:46 to 10:04

This video is very similar in concept to what I did with the PlayStation 2 BIOS corruption video, but this time it's for the original PlayStation console. Unlike other corruptions you can find on YouTube, I also showcase memory card manager and CD player corruptions.

I used Vinesauce ROM Corruptor to corrupt the BIOS files, ePSXe and XEBRA for emulating the PS1 (XEBRA allowed me to insert the game disc, while in CD player, which is why I used it sometimes), and a handful of custom scripts to test these corruptions.

Links:
Website (recently updated): https://markustegelane.ml
Blog: https://markustegelane-en.blogspot.com
Random video: https://markustegelane.ml/markustegelane/random?c=mt
My other channels: https://www.youtube.com/c/MarkusMaal/channels
Weird PS2 BIOS Corruptions video: https://www.youtube.com/watch?v=5ZLEjfJtqd0
Channel page: https://www.youtube.com/c/MarkusTegelane

© 2022 Markus' videos
Thank you for watching!
*** Hoiatus ***
Intensiivne strobovalgus ajavahemikus 9:46 kuni 10:04

See video on idee poolest väga sarnane sellele, mida ma tegin PlayStation 2 BIOS-i rikutuste videos, aga seekord teen seda originaalse PlayStation konsooliga (täpsemalt emulaatoriga). Erinevalt teistest rikutuste videotest, mille leiate YouTube-st, näitan ma siin ka mälukaardihalduri ja CD pleieri rikutusi.

Ma kasutasin BIOS-i failide rikkumiseks Vinesauce ROM Corruptor, ePSXe ja XEBRA PS1 riistvara imiteerimiseks (Ma kasutan mõnedes kohtades XEBRA emulaatorit, sest see võimaldas mul sisestada mängu plaadi, siis kui olin CD pleieri menüüs) ning mõningeid kohandatud skripte, et rikutusi testida.

Lingid:
Veebileht (hiljuti uuendatud): https://markustegelane.ml
Ajaveeb: https://markustegelane.blogspot.com
Juhuslik video: https://markustegelane.ml/markustegelane/random?c=mt
Teised kanalid: https://www.youtube.com/c/MarkusMaal/channels
Veidrate PS2 BIOS-i rikutuste video: https://www.youtube.com/watch?v=5ZLEjfJtqd0
Kanali avaleht: https://www.youtube.com/c/MarkusTegelane

© 2022 Markuse videod
Aitäh, et vaatasite!
ps1corruptions.mp4 Rikutused Corruptions PlayStation,BIOS,corruption,Vinesauce ROM Corruptor,ePSXe,emulation,emulator,XEBRA,Sony,Sony Computer Entertainment,Sony Interactive Entertainment,Personified Fear,Fearful Harmony,visualizations,CD Player,memory card,browser,MarkuStation,markustegelane,Markus Maal https://odysee.com/@MarkusTegelane:8/weird-playstation-1-bios-corruptions:8 MarkusTegelane . 1 /channel_db_lite/web/thumbs/454.jpg N/A /channel_db_lite/web/json/454.json /channel_db_lite/web/stream/454.et.ass N/A
453 Press any key to continue... The most broken flash game I've played - Ower Web (Part I) 0 2022-05-24 This series of videos will cover various glitches I've found just from playing this game. Part 2 will definitely be released at some point, but I am unsure if I'll make a part 3.

The objective in this game is to finish levels with a spider, but the unique thing about this game is that you can draw webs using your mouse, which your spider can stand on. The only problem - the physics in this game are really broken and it seems like the developers may have rushed to release this game.
0 1 0 1 https://www.youtube.com/watch?v=ry7sky-ZCmg 0 . . This series of videos will cover various glitches I've found just from playing this game. Part 2 will definitely be released at some point, but I am unsure if I'll make a part 3.

The objective in this game is to finish levels with a spider, but the unique thing about this game is that you can draw webs using your mouse, which your spider can stand on. The only problem - the physics in this game are really broken and it seems like the developers may have rushed to release this game.
. owerweb1.mp4 Videomängude analüüs Video game analysis N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/453.jpg N/A /channel_db_lite/web/json/453.json N/A N/A
445 MarkusTegelane Kuidas näha täpset graafikakaardi informatsiooni? [Arvuti nõuanded] 0 2022-05-05 See video näitab, kuidas näha täpsemat informatsiooni enda arvuti graafikakaardi kohta sisse-ehitatud Windowsi tööriistadega võrreldes. 0 1 0 1 https://www.youtube.com/watch?v=PVZoCcEBko0 0 How to see specific graphics card information? [Computer tips] . This video shows you how to see more specific information about your graphics card, than the built-in Windows tools.

GPU-Z download: https://www.techpowerup.com/download/techpowerup-gpu-z/
Website: https://markustegelane.ml
Random video: https://markustegelane.ml/markustegelane/random?c=mt
Blog: https://markustegelane-en.blogspot.com

Music from bensound.com
See video näitab, kuidas näha täpsemat informatsiooni enda arvuti graafikakaardi kohta sisse-ehitatud Windowsi tööriistadega võrreldes.

GPU-Z allalaadimine: https://www.techpowerup.com/download/techpowerup-gpu-z/
Veebisait: https://markustegelane.ml
Juhuslik video: https://markustegelane.ml/markustegelane/random?c=mt
Ajaveeb: https://markustegelane-en.blogspot.com

Muusika veebisaidilt bensound.com
gpu_info_advanced.mp4 Arvuti nõuanded Computer tips https://odysee.com/@MarkusTegelane:8/how-to-see-specific-graphics-card:b MarkusTegelane . 1 /channel_db_lite/web/thumbs/445.jpg N/A /channel_db_lite/web/json/445.json N/A N/A
427 MarkusTegelane FreeBSD - esimene paigaldamine ja töölaua seadistamine [Markuse arvuti meelelahutus] 0 2022-04-19 Selles videos paigaldan ma esimest korda FreeBSD operatsioonsüsteemi ja seadistan lihtsa töölaualiidese. Pange tähele, et tegemist EI OLE ÕPETUSEGA!!! Palun lugege ametlikku FreeBSD dokumentatsiooni ja veebisaiti põhjalike juhiste jaoks.

Videos näidatud FreeBSD versioon on 13.0. Olenevalt sellest, millal te videot vaatate, hilisem versioon võib olla saadaval.
1 1 0 1 https://www.youtube.com/watch?v=GtUZG-60tCg 0 FreeBSD - first time installation and desktop setup [Markus computer entertainment] . In this video, I'm going to experience the FreeBSD operating for the first time and setup a basic desktop interface. Please keep in mind that this video IS NOT A TUTORIAL!!! Please refer to official FreeBSD documentation and website for detailed instructions.

The version of FreeBSD show in the video is 13.0. Depending on the time you're watching this, a newer version may be available.

More about FreeBSD: https://www.freebsd.org/
Channel website: https://markustegelane.ml
Want to see how many people disliked this video? Then install this browser extension: https://returnyoutubedislike.com/
Random video: https://markustegelane.ml/markustegelane/random/?c=mt

Chapters:
0:00 Intro (the weird version)
0:28 Setting up virtual machine
2:15 Setting up and installing FreeBSD
8:03 Failing to create a user account
8:58 Booting FreeBSD for the first time and trying some commands
10:25 Trying to install display server, session manager and desktop environment
13:46 Finally on the desktop
14:55 No internet connection
15:18 Web browsing: Playing YouTube videos
15:49 Other stuff
16:40 Conclusion
17:07 Credits
18:00 End screen

Creative Commons background music references:

Airport Lounge - Disco Ultralounge and Chee Zee Lab - Netherworld Shanty from Kevin MacLeod are licences under Creative Commons Attribution 4.0. https://creativecommons.org/licenses/by/4.0/

Sources:
Airport Lounge: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100806 (http://incompetech.com/)
Chee Zee Lab: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100683 (http://incompetech.com/)

Additional background music is referenced in the credits of the video and by YouTube under the video description.

Thank you for watching!
© 2022 Markus' Videos Productions
Selles videos paigaldan ma esimest korda FreeBSD operatsioonsüsteemi ja seadistan lihtsa töölaualiidese. Pange tähele, et tegemist EI OLE ÕPETUSEGA!!! Palun lugege ametlikku FreeBSD dokumentatsiooni ja veebisaiti põhjalike juhiste jaoks.

Videos näidatud FreeBSD versioon on 13.0. Olenevalt sellest, millal te videot vaatate, hilisem versioon võib olla saadaval.

Lisainfo FreeBSD kohta: https://www.freebsd.org/
Kanali veebisait: https://markustegelane.ml
Tahate näha kui paljud on pannud sellele videole dislike? Siis paigaldage see brauserilaiendus: https://returnyoutubedislike.com/
Juhuslik video: https://markustegelane.ml/markustegelane/random/?c=mt

Peatükid:
0:00 Intro (veider versioon)
0:28 Virtuaalarvuti seadistamine
2:15 FreeBSD seadistamine ja paigaldamine
8:03 Kasutajakonto loomise ebaõnnestumine
8:58 FreeBSD esimest korda käivitamine ja mõningate käskluste katsetamine
10:25 Kuvaserveri, sessioonihalduri ja töölaua paigaldamine
13:46 Lõpuks ometi töölaual
14:55 Puudub võrguühendus
15:18 Veebi sirvimine: YouTube videote esitamine
15:49 Muu värk
16:40 Kokkuvõte
17:07 Lõputiitrid
18:00 Lõpuekraan

Creative Commons muusikapalade viited:

Airport Lounge - Disco Ultralounge ja Chee Zee Lab - Netherworld Shanty esitajalt Kevin MacLeod on litsentsitüübiga Creative Commons Attribution 4.0. https://creativecommons.org/licenses/by/4.0/

Allikad:
Airport Lounge: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100806 (http://incompetech.com/)
Chee Zee Lab: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100683 (http://incompetech.com/)

Täiendavad muusikapalad on mainitud video lõputiitrites ning märgitud YouTube poolt video kirjelduse all.

Aitäh, et vaatasite!
© 2022 Markuse Videod Productions
freebsd.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markuse arvuti meelelahutus,Markus computer entertainment,MarkuStation,eesti keeles,English subtitles,FreeBSD,Berkeley Software Distribution,red ogre,daemon,xfce4,gdm,xorg,shrek is life,red shrek,crash bandicoot,bush https://odysee.com/@MarkusTegelane:8/mce_freebsd:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/427.jpg N/A /channel_db_lite/web/json/427.json N/A /channel_db_lite/web/stream/427.en.ass
408 MarkusTegelane++ How to convert cursor to icons (and vice versa)? 0 2022-02-03 Yes, it's that simple. 1 1 0 1 https://www.youtube.com/watch?v=yHjQbyRFDCk 0 . Kuidas teisendada kursoreid ikoonideks (ja vastupidi)? Yes, it's that simple. You can read more about the header differences here: https://en.wikipedia.org/wiki/ICO_(file_format)#Outline Jep, see on nii lihtne. Saate lugeda veel faili päiste erinevuste kohta siit: https://en.wikipedia.org/wiki/ICO_(file_format)#Outline cursoricon.mp4 Failiformaadid File formats mmaal,markustegelane,cursor,icon,converter,how to,convert,mspaint,HxD,hex editor,hex code,binary data,file format,ICO,CUR https://odysee.com/@hashMarkusTegelane:3/cursoricon:e MarkusTegelane++ MarkusTegelane++ 1 /channel_db_lite/web/thumbs/408.jpg /channel_db_lite/web/stream/408.mp4 /channel_db_lite/web/json/408.json N/A N/A
372 Press any key to continue... Constructor (DOS/PS1) Low-Res FMV capture [Part 1] 0 2021-03-26 This video contains several FMV-s from the game Constructor (1997). This does not include all of the FMVs since it took me a whole evening just to record these. I may make a part 2 with other FMVs if I have time. 1 0 0 0 https://www.youtube.com/watch?v=nlmbKgy_MTI 0 Constructor (DOS/PS1) Low-Res FMV capture [Part 1] Constructor (DOS/PS1) Low-Res FMV capture [Part 1] This video contains several FMV-s from the game Constructor (1997). This does not include all of the FMVs since it took me a whole evening just to record these. I may make a part 2 with other FMVs if I have time.

Timestamps:
0:00 Human player
0:01 Computer player
0:05 Wood yard
0:07 Call worker
0:09 Call foreman (variation A)
0:11 Call repairman (variation A)
0:13 Call foreman (variation B)
0:15 Empty house 1
0:24 Bedroom 1
0:37 Upgrade room
0:41 Bedroom 2
0:53 Superiour bedroom
1:05 Deluxe bedroom
1:17 Bathroom 1
1:30 Bathroom 2
1:42 Superiour bathroom
1:54 Deluxe bathroom
2:07 Living room 1
2:33 Living room 2
2:43 Superiour living room
2:58 Deluxe living room
3:10 Kitchen 1
3:22 Kitchen 2
3:35 Superiour kitchen
3:47 Deluxe kitchen
4:00 Gadgets: Computer
4:04 Gadgets: Double glazing
4:07 Gadgets: Shutters
4:09 Gadgets: Burglar alarm
4:11 Mouse trap
4:13 Complaining tenants 1
4:21 Unhappy tenants
4:23 Happy tenants / Wooden lodge
4:31 Empty house 3
4:43 System3 logo
4:44 Cement yard
4:49 Call Worker
4:51 Gadget factory: Producing gadgets
4:56 Really unhappy tenants
5:01 Cally repairman (variation B)
5:03 Hippy commune
5:07 Call hippy
5:10 Empty house overtaken by hippy
5:27 Empty hippy commune
5:39 Pawn shop
This video contains several FMV-s from the game Constructor (1997). This does not include all of the FMVs since it took me a whole evening just to record these. I may make a part 2 with other FMVs if I have time. constr_smallfmv.avi FMV klipid FMV clips N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/372.jpg N/A /channel_db_lite/web/json/372.json N/A N/A
732 Cheesy Hfj ONE 5: Rhetorical Molds 0 2021-01-01 Moldy talks about her life before The Plane.

ONE Original Soundtrack: https://youtube.com/playlist?list=PLibm-rpGR0iB2_79z7WKKpAvOjY8o8m2S
1 0 0 1 https://www.youtube.com/watch?v=h_dxq61_G9c 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
313 Press any key to continue... I wonder if YouTube takes down this dumb video 0 2020-06-30 Whatever you do, PLEASE DO NOT watch this video with your eyes closed.

Also, this video IS 13+ ONLY (parental guidance may be required with 13-15 year old audiences). This is an edit of Flipnic's help video, but anything that doesn't talk about balls is removed. I got bored at some point and stopped making the video.
0 0 0 0 https://www.youtube.com/watch?v=kAWTbwuTFrM 0 . . Whatever you do, PLEASE DO NOT watch this video with your eyes closed.
Also, this video IS 13+ ONLY (parental guidance may be required with 13-15 year old audiences).

This is an edit of Flipnic's help video, but anything that doesn't talk about balls is removed. I got bored at some point and stopped making the video.
. balls.wmv Naljavideod Joke videos YouTube poop,parody,YTP,edit,help N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/313.jpg N/A /channel_db_lite/web/json/313.json N/A N/A
296 MarkusTegelane Playlist 404 - Credits 0 2020-06-28 Thanks for enjoying the 404 playlist. If you have any feedback about this playlist, leave it in the comments. You may also leave a rating and if you are interested in this playlist, you may add it to your collection and finally, if you like the content I produce, consider subscribing :yt: (it's free, you can unsubscribe at any time). Have a nice day! (or night if you're watching this late at night) 0 0 0 1 https://www.youtube.com/watch?v=KUC-xpEbCKw 0 &#9199 Playlist 404 - Credits . Thanks for enjoying the 404 playlist. If you have any feedback about this playlist, leave it in the comments &#128172&#11015. You may also leave a rating (&#128077 or &#128078) and if you are interested in this playlist, you may add it to your collection &#10133 and finally, if you like the content I produce, consider subscribing :yt: (it's free, you can unsubscribe at any time). Have a nice day! &#128522 (or night if you're watching this late at night &#127747)

This video is exclusive to this playlist &#9199 and most likely available anywhere else (I can't prevent people from adding it to their own playlists or uploads, but this 404 playlist is the only official place you can find this video)
. 404.MP4 Varia Miscellaneous Markus Maal,MarkusTegelane,TheMarkusGuy,mitmekülgne tehnoloogia,diverse technology,secret playlist,stuff I watch on YouTube,actually this playlist is public on my channel page,you can also find it in the suggestions,if it is relevant to what you're watching,I really don't know how tagging works,but this could possibly do,this doesn't even rhyme,what is the reason of this,...,madness,the video is processing,YAY,I can now go to sleep,that is if I want to...,eleven,two N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/296.jpg N/A /channel_db_lite/web/json/296.json N/A N/A
324 Press any key to continue... Park 0 2020-06-15 I like this song loop and animation... 0 1 0 0 https://www.youtube.com/watch?v=ycVFUXBmkYU 0 . . . . cons.mpg Varia Miscellaneous video game,original soundtrack,10 minute loop,PlayStation,funky graphics,full motion video,FMV,Constructor,building,nature,dog,bite,ball,decoration,resting place,loop,wind,bench,grass,green,aaaah,ouch,woof,bark,sweating,exhausted,tree,nearest neighbour,bicubic (plz no),sun,jacket,white car,white legged dog,brown dog,tarmac surface,questionable life decisions,sitting person,tongue,sunrise,branches,light reflection on a red and black striped ball,hair color?,British N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/324.jpg N/A /channel_db_lite/web/json/324.json N/A N/A
336 MarkusTegelane Windows 10 Pro Hero (Microsoft reupload, not my video) 0 2019-07-23 **NOT CREATED OR ENDORSED BY ME**

An amusing explainer kind of video for Windows 10 Pro. This video was originally uploaded to the official Windows YouTube channel, before they made it private. After a lot of digging, I found it on the Video Explainers's website and decided to upload it. I recall that there was also a similar ad for Windows Server 2016, but I was unable to find it. If Microsoft has any problem with this video, then I am willing to take it down.
0 0 0 1 https://www.youtube.com/watch?v=JmjS25WCMYc 0 . . **NOT CREATED OR ENDORSED BY ME**
An amusing explainer kind of video for Windows 10 Pro. This video was originally uploaded to the official Windows YouTube channel, before they made it private. After a lot of digging, I found it on the Video Explainers's website and decided to upload it. I recall that there was also a similar ad for Windows Server 2016, but I was unable to find it. If Microsoft has any problem with this video, then I am willing to take it down.
. N/A Varia Miscellaneous N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/336.jpg N/A /channel_db_lite/web/json/336.json N/A N/A
823 markustegelane Windows 10 Pro Hero (Microsoft reupload, not my video) 0 2019-01-01 **NOT CREATED OR ENDORSED BY ME**
An amusing explainer kind of video for Windows 10 Pro. This video was originally uploaded to the official Windows YouTube channel, before they made it private. After a lot of digging, I found it on the Video Explainers's website and decided to upload it. I recall that there was also a similar ad for Windows Server 2016, but I was unable to find it. If Microsoft has any problem with this video, then I am willing to take it down.
Random video // Juhuslik video
https://markustegelane.ml/random.html
1 0 0 1 https://www.youtube.com/watch?v=JmjS25WCMYc 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
642 CHM Tech Fun Google Secrets - Part 4 0 2019-01-01 You've been asking for them, so here they are!
These are Fun Google secrets, Part 4!

Here's just a few that you can find in this video:

EASTER EGG #1
If you do a Google search for "Thanos", you will get an Avengers Infinity War/Endgame easter egg.

EASTER EGG #2
If you go to the Google Chrome apps page, right click anywhere on the background, and select inspect, you can find a Lord of the Rings reference in the Elements Section of the developer console.

EASTER EGG #3
Doing a Google search for "Pluto" results with a Knowledge graph describing Pluto as "Our favorite dwarf planet since 2006".

EASTER EGG #4
If you do a search for the phrase "Google logo history" you'll get a slideshow on the top of the results, displaying 7 logos from different time periods of the company's history.

EASTER EGG #5
Search for "earth day quiz" to answer a few questions that will help Google determine which animal you are.

Previous Fun Google Secrets videos:

Part 1
https://www.youtube.com/watch?v=Nsbp0GQHOGc&t=223s

Part 2
https://www.youtube.com/watch?v=7tMePTGolT8&t=1s

Part 3
https://www.youtube.com/watch?v=KW97J8Vgeag&t=107s

Previous video on channel:
https://youtu.be/4s2an-SKZws

____________________________________


► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

______________________________________

Music: " Searching For You", "Hold on a Second", "Tiptoe Out the Back" - YouTube Audio Library

- Echoes of Time v2 by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1300030
Artist: http://incompetech.com/

- Marty Gots a Plan by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1500015
Artist: http://incompetech.com/

- Backed Vibes Clean - Rollin at 5 by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400029
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=hdYiwt5b6ZY 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
643 CHM Tech Fun Google Secrets - Part 4 0 2019-01-01 You've been asking for them, so here they are!
These are Fun Google secrets, Part 4!

Here's just a few that you can find in this video:

EASTER EGG #1
If you do a Google search for "Thanos", you will get an Avengers Infinity War/Endgame easter egg.

EASTER EGG #2
If you go to the Google Chrome apps page, right click anywhere on the background, and select inspect, you can find a Lord of the Rings reference in the Elements Section of the developer console.

EASTER EGG #3
Doing a Google search for "Pluto" results with a Knowledge graph describing Pluto as "Our favorite dwarf planet since 2006".

EASTER EGG #4
If you do a search for the phrase "Google logo history" you'll get a slideshow on the top of the results, displaying 7 logos from different time periods of the company's history.

EASTER EGG #5
Search for "earth day quiz" to answer a few questions that will help Google determine which animal you are.

Previous Fun Google Secrets videos:

Part 1
https://www.youtube.com/watch?v=Nsbp0GQHOGc&t=223s

Part 2
https://www.youtube.com/watch?v=7tMePTGolT8&t=1s

Part 3
https://www.youtube.com/watch?v=KW97J8Vgeag&t=107s

Previous video on channel:
https://youtu.be/4s2an-SKZws

____________________________________


► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

______________________________________

Music: " Searching For You", "Hold on a Second", "Tiptoe Out the Back" - YouTube Audio Library

- Echoes of Time v2 by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1300030
Artist: http://incompetech.com/

- Marty Gots a Plan by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1500015
Artist: http://incompetech.com/

- Backed Vibes Clean - Rollin at 5 by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400029
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=hdYiwt5b6ZY 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
683 CHM Tech Make Websites Dark! 0 2019-01-01 In this video I will show you how to make websites have dark backgrounds.

To do so, we're going to be using a browser extension/add on called Dark Reader.

► Dark Reader website: https://darkreader.org/

► Chrome: https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh

► Firefox: https://addons.mozilla.org/en-US/firefox/addon/darkreader/

► Safari: https://itunes.apple.com/us/app/dark-reader-for-safari/id1438243180

____________________________________


► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

______________________________________

Music:

- Falling (Ft. eSoreni) by Sappheiros https://soundcloud.com/sappheirosmusic
Creative Commons — Attribution 3.0 Unported — CC BY 3.0
http://creativecommons.org/licenses/b...
Music promoted by Audio Library https://youtu.be/0rfzkcQjiFg
1 0 0 1 https://www.youtube.com/watch?v=kdGbGE76mdA 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
169 MarkusTegelane Markuse arvuti meelelahutus: Saifish OS ülevaade (1. osa) 0 2018-05-14 Mis asi on üldse Sailfish OS? Selles videos vaatame huvitavat Linuxil põhinevat mobiilopsüsteemi. Kui teist osa ei tule, siis ma Play Poodi tööle ei saanud. 1 1 0 1 https://www.youtube.com/watch?v=xtsEQSOcSZY 0 Sailfish OS (review) [Markus computer entertainment] Sailfish OS (ülevaade) [Markuse arvuti meelelahutus] What actually is Sailfish OS? In this video, we are taking a look at an interesting Linux based mobile OS. If second part doesn't come out, then it means that I didn't get Google Play Store working.

MAKE SURE TO VISIT MY BLOG: http://themarkusguy.tk

Other channels

TheMarkusGuy+
Markus's stuff
Press any key to continue...


Social

Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal

Music used

All attributions can be found in the credits.

Additional information

RAW filename: sfos.mp4
Software used: kdenlive
Rendering time: 0-2 hours
Mis asi on üldse Sailfish OS? Selles videos vaatame huvitavat Linuxil põhinevat mobiiliopsüsteemi. Kui teist osa ei tule, siis ma Play Poodi tööle ei saanud.

KÜLASTA KINDLASTI MU AJAVEEBI: http://www.

#MarkuseArvutiMeelelahutus #Sailfish OS

Teised kanalid

MarkusTegelane+
Markuse asjad
Press any key to continue...


Sotsiaalvõrgustikud:

Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal


Kasutatud teosed

Kasutatud heliteosed on litsenseeritud Creative Commons (autorile viitamine) litsentsi alusel.

Kõik viited on saadaval video lõputiitrites.


Lisainfo

Video RAW nimi: sfos.mp4
Kasutatud tarkvara: kdenlive
Renderdamise aeg: ~2 tundi
sfos.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markus Maal,MarkusTegelane,TheMarkusGuy,Markuse arvuti meelelahutus,Markus computer entertainment,Sailfish OS,mobile operating system,Operating System,Mobile OS,Jolla,Jolla Store not working https://odysee.com/@MarkusTegelane:8/markuse-arvuti-meelelahutus-sailfish-os:e MarkusTegelane . 1 /channel_db_lite/web/thumbs/169.jpg N/A /channel_db_lite/web/json/169.json N/A N/A
787 ewjxn 1996 Microsoft Windows NT TV Commercial 0 2018-01-01 If you like this commercial *PLEASE SUBSCRIBE*. In the past I have used monetization to cover costs of new content acquisition. Its wasn't much but it did help. It inspired me to add more content. I will keep posting for awhile as long as the subs grow. So thank you and enjoy...

This commercial originally aired on November 5th, 1996. It was shown during "Decision 1996" Election coverage It was broadcast on KPNX Channel 12 in Phoenix. Channel 12 was and is the longtime NBC affiliate.
0 0 0 0 https://www.youtube.com/watch?v=Poel4PbNu_o 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
637 CHM Tech Facebook Shadow Profiles 0 2018-01-01 Start protecting yourself on the web at https://NordVPN.com/CHMTECH or use code ‘'CHMTECH'’ at checkout and save 77%!

Facebook claims it’s not in the business of creating profiles for non-users, however it does collect a lot of their information.

Collections of mostly off-platform information on both users and non-users are commonly referred as ‘’shadow profiles’’, and while Facebook claims that such things don’t exist, it does admit taking actions that would be necessary for them to exist in some shape or form. In other worlds, shadow profile or nor no shadow profile, Facebook has plenty of information on people, whether they signed up or not!

In a recent blog post, Facebook explained why and how it obtains information about people from other websites and apps. That includes information about people who never even made a Facebook profile.

When it comes to the why, it’s pretty much same old-same old - enhancing products and services, improving safety and security and providing services to other websites and apps.

However, in this video, we’re going to focus on the how.

Sources & References

- newsroom.fb.com: ‘’Hard Questions: What Data Does Facebook Collect When I’m Not Using Facebook, and Why?’’ https://newsroom.fb.com/news/2018/04/data-off-facebook/

- Gizmodo: ‘’How Facebook Figures Out Everyone You've Ever Met’’ https://gizmodo.com/how-facebook-figures-out-everyone-youve-ever-met-1819822691

- Recode: ‘’This is how Facebook collects data on you even if you don’t have an account’’ https://www.recode.net/2018/4/20/17254312/facebook-shadow-profiles-data-collection-non-users-mark-zuckerberg

- How Stuff Works: ‘’How Internet Cookies Work’’ https://computer.howstuffworks.com/cookie.htm

- allaboutcookies.org: ‘’All About Cookies.’’ http://www.allaboutcookies.org/cookies/

- makeuseof.com: ‘’How Advertisers Use Web Beacons to Track You on the Web and in Emails’’ https://www.makeuseof.com/tag/how-web-beacons-track-web/

- Wikipedia: ‘’Web beacon’’ https://en.wikipedia.org/wiki/Web_beacon

- The Verge: ‘’Shadow profiles are the biggest flaw in Facebook’s privacy defense’’ https://www.theverge.com/2018/4/11/17225482/facebook-shadow-profiles-zuckerberg-congress-data-privacy

- social-engineer.org: ‘’Web Beacons for Social Engineering Reconnaissance’’ https://www.social-engineer.org/general-blog/web-beacons-social-engineering-reconnaissance/

- ‘’Facebook Tracking Through Social Plug-ins’’ https://securehomes.esat.kuleuven.be/~gacar/fb_tracking/fb_plugins.pdf


_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

_____________________________________

Music: ''In The Hall of the Mountain King'', ''Firebrand’’, ‘’Lake George'', ‘’Moth’’, ‘’Red Ant’’, ‘’From Russia With Love’’, ‘’Versace Beat’’, ''Trophy Wife'' (YouTube Audio Library)
0 0 0 1 https://www.youtube.com/watch?v=3ul401dJ7Sk 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
640 CHM Tech Fun Google Secrets - Part 3 0 2018-01-01 Google easter eggs are fun!

Here are just a few that you can find in this video:

EASTER EGG #1
If you open up the Google homepage and search for ‘’snake game’’ or simply ‘’snake’’, you can play a game of snake!

EASTER EGG #2

If ever in need of a random number, do a Google search for ‘’random number generator’’ or ‘’rng’’, set your minimum and maximum value and hit generate.

EASTER EGG #3
Type ‘’wubba lubba dub dub’’ in the Google search box, and hit enter. On the top of the results page, google will ask ‘’Did you mean: i am in great pain please help me’’.

EASTER EGG #4
google.com/heart takes you to a preservation of the old Google interface. If you take a look at the top of this archived page, you'll find a special message.

EASTER EGG #5
Google has some rather interesting options. Here's one:
https://www.google.com/?hl=xx-piglatin
More language easter eggs can be found it the Google Chrome language settings.

____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''TFB3'', ''U Make Me Feel'', ''Black Highway'' (YouTube Audio Library)

- Eyes Gone Wrong by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100362
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=KW97J8Vgeag 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
641 CHM Tech Fun Google Secrets - Part 3 0 2018-01-01 Google easter eggs are fun!

Here are just a few that you can find in this video:

EASTER EGG #1
If you open up the Google homepage and search for ‘’snake game’’ or simply ‘’snake’’, you can play a game of snake!

EASTER EGG #2

If ever in need of a random number, do a Google search for ‘’random number generator’’ or ‘’rng’’, set your minimum and maximum value and hit generate.

EASTER EGG #3
Type ‘’wubba lubba dub dub’’ in the Google search box, and hit enter. On the top of the results page, google will ask ‘’Did you mean: i am in great pain please help me’’.

EASTER EGG #4
google.com/heart takes you to a preservation of the old Google interface. If you take a look at the top of this archived page, you'll find a special message.

EASTER EGG #5
Google has some rather interesting options. Here's one:
https://www.google.com/?hl=xx-piglatin
More language easter eggs can be found it the Google Chrome language settings.

____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''TFB3'', ''U Make Me Feel'', ''Black Highway'' (YouTube Audio Library)

- Eyes Gone Wrong by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100362
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=KW97J8Vgeag 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
671 CHM Tech How Casey Neistat Reviews a Phone 0 2018-01-01 When YouTube's most famous vlogger makes a crossover to the world of tech.

This is how Casey Neistat reviews a smartphone!

#CaseyNeistat #368 #Tech

You can check out all Casey's reviews that I used in this video here:

''my FaVoriTE CELL PhonEs! (tech tuesday intro by Dan Mace)''
https://www.youtube.com/watch?v=SAQLDbFGypU

''Galaxy Note 9 VS iPhone X - ULTIMATE VIDEO CAMERA COMPARISON''
https://www.youtube.com/watch?v=rxso9FJ-nrI&t=1s

''FEEELINGS ABOUT THE IPHONE X''
https://www.youtube.com/watch?v=-7dTzc8kTOY&t=46s

''Samsung Galaxy S8 Review''
https://www.youtube.com/watch?v=n0makpckS8c&t=216s

''iPhone 8 Plus vs. Note 8 ULTIMATE 4K VIDEO COMPARISON''
https://www.youtube.com/watch?v=Yq2sP2Lh5K8

''ABOUT THE NOTE 8''
https://www.youtube.com/watch?v=wZcnM4eMWts&t=292s


_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

_____________________________________

Music: ''The Big Score'', ''California Wind’’, ‘’Shibuya'', ''The Morning After'', ''Beam Me Up'', ''Like a Polaroid'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=0tf3y8YGl8A 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
688 CHM Tech Screensavers 0 2018-01-01 Screensavers appeared in the early 1980s, as programs that would blank the screen or fill it with moving images or patterns, when the computer is not in use.

At the time, most computer screens were based on cathode ray tubes, or CRTs, and this technology had an annoying flaw - screen burn-in. This problem was annoying and worst of all, it was permanent!

Initially, the main purpose of screensavers was to prevent this from happening.

Allegedly, the first screensaver was created by software developer John Socha, who is best known for creating Norton Commander, and who also came up with the term ‘’screen saver’’.

Today, screensavers are mostly used for for decorative purposes, but can also be utilized for password protection and even for activating a useful background task like a virus scan.

Sources and references:

- Het Nieuwe Instituut:

‘’Jack Eastman’’ https://sleepmode.hetnieuweinstituut.nl/en/jack-eastman
‘’John Socha’’ https://sleepmode.hetnieuweinstituut.nl/en/john-socha

- Mental Floss: ‘’A Hypnotic History of Screensavers’’ http://mentalfloss.com/article/74837/hypnotic-history-screensavers

- Wikipedia:

‘’Screensaver’’ https://en.wikipedia.org/wiki/Screensaver
‘’Screen burn-in’’ https://en.wikipedia.org/wiki/Screen_burn-in
‘’Image persistence’’ https://en.wikipedia.org/wiki/Image_persistence
‘’After Dark’’ https://en.wikipedia.org/wiki/After_Dark_(software)

- How-To Geek: ‘’Why Screen Savers Are No Longer Necessary’’ https://www.howtogeek.com/128644/htg-explains-why-screen-savers-are-no-longer-necessary/

- Elisoftware.org: ‘’After Dark 2.0 For Macintosh (Mac, 3 1/2" Disk)
Berkeley Systems - 1990 USA, Canada Release’’ http://elisoftware.org/index.php?title=After_Dark_2.0_For_Macintosh_(Mac,_3_1/2%22_Disk)_Berkeley_Systems_-_1990_USA,_Canada_Release

- ScienceFacts.net: ‘’Cathode Ray Tube (CRT)’’ https://www.sciencefacts.net/cathode-ray-tube-crt.html

- Cracked: ‘’6 Eerily Specific Inventions Predicted in Science Fiction’’ http://www.cracked.com/article_18846_6-eerily-specific-inventions-predicted-in-science-fiction.html

- Monitor Nerds: ‘’OLED PC Monitors 2018 – What’s Taking Them So Long???7 min read’’ https://www.monitornerds.com/oled-pc-monitors/

B-Roll:

- Pixabay: ''Notebook'' https://pixabay.com/en/videos/notebook-keyboard-typing-writing-6378/
____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Mean Streetz'', ''Not For Nothing'', ''Habanera (by Bizet)'', ''Trips'', ''U Make Me Feel'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=aL6O1j0tZUY 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
689 CHM Tech Seeing Through an Image 0 2018-01-01 Start protecting yourself on the web at http://www.NordVPN.com/CHMTECH or use the promo code ‘'CHMTECH’' at checkout and save 77%!

In computer graphics, there are two types of transparency.

The first is full transparency which basically describes something that is completely invisible, and it’s usually applied only to parts of an image. Of course, it can be applied to the entire image, but then there would be nothing to see.

And the second is partial transparency, which describes graphics that are, surprise-surprise, only partially transparent. So they’re visible to an extent, but so are the ones in the background. This kind of transparency is also commonly referred to as translucency, and computers usually simulate it by mixing colors.

In most computer graphics editors, transparency is represented with a distinct pattern, most commonly a checkerboard, and it’s supported in a number of raster or bitmap file formats, including: PNG, GIF, JPEG 2000, BMP and TIFF.

In optics, transparency is the physical property of a material that allows the transmission of light. Here's how that is simulated in computer graphics!

► Sources and references:

- Lesa Snider: ‘’Photoshop CS4: The Missing Manual: The Missing Manual’’
https://books.google.ba/books?id=f38qA2yg0PYC&printsec=frontcover&source=gbs_ge_summary_r&cad=0#v=onepage&q&f=false

- Technopedia: ‘’Alpha Channel’’ https://www.techopedia.com/definition/1945/alpha-channel

- Lynda.com: ‘’Selections, alpha channels, and layer masks, oh my!’’ https://www.lynda.com/Photoshop-tutorials/Selections-alpha-channels-layer-masks-oh-my/126063/138381-4.html

- Wikipedia: ‘’Transparency (graphic)’’
https://en.wikipedia.org/wiki/Transparency_(graphic)
‘’Alpha compositing’’ https://en.wikipedia.org/wiki/Alpha_compositing

Why glass is transparent:
https://www.youtube.com/watch?v=Omr0JNyDBI0
https://www.youtube.com/watch?v=VwRLIt6jgdM


► Used videos:

- Movieclip Extras (youtube): ‘’The Avengers Featurette - Industrial Light & Magic (2012) - Joss Whedon Movie HD’’ https://www.youtube.com/channel/UC4l6ZhkOzxIxvCSzDr4HKqg

- Jason Jones (youtube): ‘’Clipping Paths in Photoshop’’ https://www.youtube.com/watch?v=iy-QyjV8dsI

- Pixabay: https://pixabay.com/en/videos/work-space-meeting-startup-notebook-3132/

- Videvo: ‘’Hacker Glasses 02’’ https://www.videvo.net/video/hacker-glasses-02/4501/

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Red Ant'', ''Not For Nothing'', ''Venetian'', ''U Make Me Feel'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=LGRxOGTNPHM 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
690 CHM Tech Seen 0 2018-01-01 Since long before apps like WhatsApp, Facebook Messenger or iMessage even existed, postal services have been using something called return receipts to notify senders that their letters or packages were successfully delivered.

With the development and expansion of the internet, for many emails provided a much more convenient way of sending letters, so programmers quickly came up with similar delivery verification systems like Delivery Status Notifications and Message Disposition Notifications.

With modern day messaging apps, the process of sending and receiving messages has become quicker than ever. This can also be said for message status notifications, which, in this context, are commonly referred to as read receipts.


Sources and references:

- Lujayn Alhddad: ‘’Read Receipts Feature in Mobile Platform: An Investigation Study Based on Social Tie Between the Sender and Receiver’’ https://goo.gl/yMRmqK

- Ars Tehnica: ‘’Why I hate read receipts’’ https://goo.gl/TkbvVG

- Various authors: ‘’Was my message read?: Privacy and Signaling on Facebook Messenger’’ https://goo.gl/BD6QUa

- Medium: ‘’Why does everyone hate Read Receipts? We did some research to find out.’’ https://goo.gl/Ctu9YA

- Quora:
‘’How does messaging work in WhatsApp?...’’ https://goo.gl/gA9jSS
‘’How do read receipts work in WhatsApp?’’ https://goo.gl/6vwJj2

- Wikipedia: ‘’Return receipt’’ https://goo.gl/Ai3NYY

- Facebook: ‘’How do I know if someone has seen a message I sent in Messenger?’’ https://goo.gl/h8R7so

- WhatsApp: ‘’Checking Read Receipts’’ https://goo.gl/LwV1Ni

Stock footage used in this video:

- Videvo:
‘’Scrolling on Iphone’’ https://goo.gl/AB5VnP
‘’Using Smartphone Whilst Reading ‘’ https://goo.gl/nVb8p8
‘’City Mailbox At Night’’ https://goo.gl/gdFcBn
‘’Typing on Keyboard 2’’ https://goo.gl/FT5f4K
‘’Hacker Glasses 08’’ https://goo.gl/A9H94Z
‘’Texting on Smartphone’’ https://goo.gl/XJUAoL
‘’Legs of Crowd Crossing Road’’ https://goo.gl/oL38hy
‘’Couple At Fountain’’ https://goo.gl/GkndLb

- Pexels
‘’Man Texting On The Street’’ https://goo.gl/Hm731n
‘’Video Of People Walking’’ https://goo.gl/ShXcTt
‘’Working Station’’ https://goo.gl/u2tdwp

- Archive.org
‘’Mailman’’ https://goo.gl/eaAytb

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Lake George'', ''Cloud Wheels, Castle Builder'', ''Trophy Wife'' (YouTube Audio Library)

- Backed Vibes Clean - Rollin at 5 by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400029
Artist: http://incompetech.com/

- Candlepower by Chris Zabriskie is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://chriszabriskie.com/divider/
Artist: http://chriszabriskie.com/
1 0 0 1 https://www.youtube.com/watch?v=wDfCBOBq2SQ 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
693 CHM Tech Splinter Cell [Post]Classics - They Don't Make 'em Like These Anymore... 0 2018-01-01 After a long time, we're back with a new episode of Splinter Cell Classics! Well, to be more accurate, it's ''Post Classics'', since this one is a bit different.

Recently Sam Fisher made an appearance in a Ghost Recon Wildlands special mission, so I think now is as good a time as any to talk about this iconic Ubisoft gaming franchise.

They don't make 'em like these anymore. But hopefully, that will change!


For more Splinter Cell Classics, check out the videos in the playlist below:

https://www.youtube.com/watch?v=7AHyQ3OIba0&list=PLCNnBbKeYchrh0DQecHdcGnn0_xy5KlAo&index=4

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
1 0 0 1 https://www.youtube.com/watch?v=bQPOQ9wvmBk 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
695 CHM Tech The App That Did Nothing 0 2018-01-01 Released on August the 5th 2008, under the category of "Lifestyle", and weighing in at just 0.1 MB, "I Am Rich" was described as ‘’a work of art with no hidden function at all’’.

Of course, that was just the developers way of saying that it didn't really do anything!

Price tag - 999 dollars and 99 cents!

____________________________________


► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

______________________________________

Music: ''Ride of the Valkyries (by Wagner)'', (YouTube Audio Library)

- Dance of the Sugar Plum Fairies by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100270
Artist: http://incompetech.com/

- Fun in a Bottle by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1300047
Artist: http://incompetech.com/

- Transcend by Audionautix is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Artist: http://audionautix.com/

- Falling (Ft. eSoreni) by Sappheiros https://soundcloud.com/sappheirosmusic
Creative Commons — Attribution 3.0 Unported — CC BY 3.0
http://creativecommons.org/licenses/b...
Music promoted by Audio Library https://youtu.be/0rfzkcQjiFg
1 0 0 1 https://www.youtube.com/watch?v=LiJG1GT2_HQ 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
705 CHM Tech What's On My Phone (2018) 0 2018-01-01 I could tell you how you guys requested this video so many times, but that’s really not the case! I’m making this video because I thought it would be fun, and it gives me an opportunity to (sorta) justify spending probably much more money than I should have on a phone, by doing something (sorta) productive with it.

For my new phone, I decided to go for the Google Pixel 2 XL, and in this video, I’m gonna show you what’s on it!

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Clean Break'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=xnTvxsQr5BA 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
752 Copy-Me The Creativity Delusion: We're All Geniuses 0 2018-01-01 Ideas only seem magical and the product of genius because we refuse to see all the work, knowledge and remix that’s behind that complete and polished product. In this second part of our mini-series, we'll find out that minds do not operate differently to different people.

FULL SOURCES, STUDIES, CREDITS:
http://copy-me.org/2018/06/the-creativity-delusion-part-2-were-all-geniuses/

WATCH THE ENTIRE SERIES
https://www.youtube.com/playlist?list=PLuneugIOGabVdTyQJs75mNVptng1c8fMP

BECOME OUR BELOVED PATRON:
https://www.patreon.com/copyme

FIND US HERE:
Facebook: https://www.facebook.com/copymeorg
Twitter: https://twitter.com/copymeorg
Instagram: https://www.instagram.com/copy.me.web.series/
Our website: http://copy-me.org/
1 0 0 1 https://www.youtube.com/watch?v=FYHky4CYq0Q 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
162 MarkusTegelane Markuse arvuti meelelahutus: Android Oreo ülevaade ja Firefox'i röst (II osa) 0 2017-11-23 Eelmises videos vaatasime Android Oreo põhifunktsioone. Video jäi pooleli enne Firefoxi rösti. Loodan, et video tuli hästi välja. 0 1 0 1 https://www.youtube.com/watch?v=tnFr7u5PpYo 0 Android Oreo overview and Firefox roast (Part II) [Markus computer entertainment] (No CC) Android Oreo ülevaade ja Firefox'i röst (II osa) [Markuse arvuti meelelahutus] In the last video, we looked at Android Oreo's main features. Video got spilt out before the Firefox roast. I hope, the video turned out good.


Stay up to date


Blog: http://www.themarkusguy.tk
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal


Other channgels


TheMarkusGuy+ : https://www.youtube.com/channel/UCGGM...
TheMarkusGuy++ : https://www.youtube.com/channel/UC_ah...
Markus's stuff: https://www.youtube.com/channel/UCMD2...


Music used


Music is licenced under the Creative Commons (author credit) licence.

Music used can be found in the credits


Additional information

RAW filename: mamo2.mp4
Software used: Sony Vegas Pro 11, Android operating system, ROM Nitrogen OS
Render time: NA, left over night
Eelmises videos vaatasime Android Oreo põhifunktsioone. Video jäi pooleli enne Firefoxi rösti. Loodan, et video tuli hästi välja.

#MarkuseArvutiMeelelahutus #Android

Ole kursis


Ajaveeb: http://www.
Google+: https://plus.google.com/115914313352149705046
Twitter: @MarkusMaal


Teised kanalid


MarkusTegelane+ : https://www.youtube.com/channel/UCGGM...
MarkusTegelane++ : https://www.youtube.com/channel/UC_ah...
Markuse asjad: https://www.youtube.com/channel/UCMD2...


Kasutatud teosed


Kasutatud teosed on litsenseeritud Creative Commons (autorile viitamine) litsentsi alusel.

Kasutatud muusika nimed leiate video lõputiitritest


Lisainfo

Video RAW nimi: mamo2.mp4
Kasutatud tarkvara: Sony Vegas Pro 11, Android operatsioonisüsteem, ROM Nitrogen OS
Renderdamise aeg: NA, jätsin ööseks tegema
mamo2.mp4 Markuse arvuti meelelahutus Markus computer entertainment Markus Maal,MarkusTegelane,TheMarkusGuy,android,linux,operating system,overviews,unboxing videos,Oreo,küpsised,cookies,bisquits https://odysee.com/@MarkusTegelane:8/sisaldab-vandumist-markuse-arvuti-2:9 MarkusTegelane . 1 /channel_db_lite/web/thumbs/162.jpg N/A /channel_db_lite/web/json/162.json N/A N/A
145 MarkusTegelane Windows Vista tootetugi on lõppenud! (feat. Windows Vista reklaami remaster) 0 2017-03-27 WIndows Vista on Microsofti operatsioonsüsteem, järeltulija Windows XP-le. Väga vähese kasutuse tõttu on paljud rakenduste tegijad lõpetanud selle toetamise ja Windowsi elutsükli tõttu, lõppes Vista tugi 11. aprillil 2017. aastal. 1 1 0 1 https://www.youtube.com/watch?v=JPk4JlQ0s-k 0 Windows Vista support enda on 11th of April (feat. Windows Vista commercial remaster) . Windows Vista is Microsoft's operating system, predicessor to Windows XP. Due to low market share, program developers have ended supporting it and due to Windows Lifecycle, Vista support ends on 11th of April in 2017.

Check out my blog: http://markustegelane-en.blogspot.com
WIndows Vista on Microsofti operatsioonisüsteem, järeltulija Windows XP-le. Väga vähese kasutuse tõttu on paljud rakenduste tegijad lõpetanud selle toetamise ja Windowsi elutsükli tõttu, lõppes Vista tugi 11. aprillil 2017. aastal.

Vaata mu ajaveebi: http://markustegelane.blogspot.com
vista.mxf Operatsioonsüsteemid Operating systems lõppeb,lõpeb,lõpp,Windows Vista (Operating System),11 Aprill,11. aprill,11th of April,windows vista and windows 7,windows vista end,windows vista end of life,windows vista end of life goanimate,windows vista end of life message,windows vista end of support,windows vista end of support countdown,windows vista end of support date,windows vista end of support goanimate,windows vista end of support message,windows vista end of support news,windows vista end support https://odysee.com/@MarkusTegelane:8/windows-vista-tootetugi-on-l-ppenud-feat:5 MarkusTegelane . 1 /channel_db_lite/web/thumbs/145.jpg N/A /channel_db_lite/web/json/145.json N/A N/A
144 MarkusTegelane Mis juhtub, kui te kustutate System32 ReactOS-is? 0 2017-03-26 Lihtsalt huvi pärast proovisin seda teha. Tulemuse saad teada videost. Kui te ei tea, siis ReactOS on iseseisev operatsioonsüsteem (isegi mitte Linux-i põhine), mis peaks binraarselt ühilduma Windowsi rakendustega ja samuti välja nägema ja funktsioneerima nagu Windows.

Kas te pole mu ajaveebi uues kuues näinud? Miks mitte seda vaadata siit: http://markustegelane.blogspot.com
1 0 0 1 https://www.youtube.com/watch?v=rJxSpWdSIm0 0 What happens if you delete System32 in ReactOS? Mis juhtub, kui te kustutate System32 ReactOS-is? Just for curiousity, I tried it out. And you can see the result in the video. If you don't know, ReactOS is a standalone operating system (not even Linux based) that is meant to be binary compatible with Windows applications and also look and function like Windows.

Hey, you haven't been on my blog in its new look? Why not check it out here:: http://markustegelane-en.blogspot.com
Lihtsalt huvi pärast proovisin seda teha. Tulemuse saad teada videost. Kui te ei tea, siis ReactOS on iseseisev operatsioonsüsteem (isegi mitte Linux-i põhine), mis peaks binraarselt ühilduma Windowsi rakendustega ja samuti välja nägema ja funktsioneerima nagu Windows.

Kas te pole mu ajaveebi uues kuues näinud? Miks mitte seda vaadata siit: http://markustegelane.blogspot.com
system32.mxf Operatsioonsüsteemid Operating systems ReactOS,System32,rd C:WindowsSystem32 /s /q,delete System32,eemaldama,eemaldada,mis juhtub,kui,what happens,if,Open Source,Linux,Wine,Wine Is Not an Emulator https://odysee.com/@MarkusTegelane:8/what-happens-if-you-delete-system32-in:2 MarkusTegelane . 1 /channel_db_lite/web/thumbs/144.jpg N/A /channel_db_lite/web/json/144.json N/A N/A
140 MarkusTegelane Markuse arvuti meelelahutus: Ubuntu Touch Nexus 4-s [I osa] 0 2017-03-01 Selles videos näitan Ubuntu Touch'i enda nutitelefonis (Google/LG Nexus 4). Samuti seletan, mis see on. Teine osa tuleb peagi… 1 1 0 1 https://www.youtube.com/watch?v=OxrRPQ9b-tI 0 Ubuntu Touch in Nexus 4 (Part I) [Markus computer entertainment] Ubuntu Touch Nexus 4-s (I osa) [Markuse arvuti meelelahutus] In this video I show Ubuntu Touch in my smartphone (Google/LG Nexus 4). I also explain, what it is. Next part coming soon...

I made video two part, because in that way, making subtitles is way easier and its better for a viewer to watch shorter videos.

Blog: http://markustegelane-en.blogspot.com

Video info
RAW-file: n4ut.mxf
Rendering time: 2 hours, 2 minutes
Quality: 1080i
CC: Yes

There was a problem with the motherboard in my tablet.
Selles video näitan Ubuntu Touch'i enda nutitelefonis (Google/LG Nexus 4). Samuti seletan, mis see on. Teine osa tuleb peagi...

Tegin video kaheosaliseks, sest nii on subtiitrite tegemine palju lihtsam ning vaatajal on ka mugavam lühemat videot vaadata.

#MarkuseArvutiMeelelahutus #Ubuntu #Linux

Ajaveeb: http://markustegelane.blogspot.com

Video info:
RAW-fail: n4ut.mxf
Renderdamisaeg: 2 tundi, 2 minutit
Kvaliteet: 1080i
CC: Jah

Tahvelarvutis oli probleem emaplaadiga.
n4ut.mxf Markuse arvuti meelelahutus Markus computer entertainment markuse,arvuti,meelelahutus,ubuntu,touch,Ubuntu,Linux,kernel,Linux Operating System,Blogger,blog,Nexus,Nexus 4,Google,Google Nexus 4,LG,Life's good,LG Nexus 4,Part I,Part one,Part https://odysee.com/@MarkusTegelane:8/markuse-arvuti-meelelahutus-ubuntu-2:0 MarkusTegelane . 1 /channel_db_lite/web/thumbs/140.jpg N/A /channel_db_lite/web/json/140.json N/A N/A
611 CHM Tech 10 Long Gone YouTube Features 0 2017-01-01 This video is sponsored by Squarespace!
Start your free trial today, at http://www.squarespace.com/chmtech to get 10% off your first purchase.

Over the years, the YouTube layout has changed a lot.

When you compare YouTube today and the YouTube from the old days, you can really see a big difference.

As the platform evolved, from year to year we would see a variety of new features, options and policies.

But we would also witness many features disappear!

YouTube has no trouble getting rid of features and options they feel are no longer needed, and next on the list will be their inbuilt video editor as well as Photo Slideshows which will soon join other discontinued features like branding intros, video responses, annotations, groups, honors...

So in this video, we'll take a quick trip down YouTube's memory lane.

Sources and References:

- Google Product Forums:
‘’youtube.com/editor and Photo slideshows is going away’’ https://productforums.google.com/forum/#!msg/youtube/dx5xKn6v6rM/nvB59bbZBwAJ

‘’Coming soon: Friends will be merging with Subscriptions’’ https://productforums.google.com/forum/#!category-topic/youtube/sharing-and-connecting-on-youtube/4zYFRXJRWS4

- YouTube Creator Blog:
‘’So long, video responses... Next up: better ways to connect’’ https://youtube-creators.googleblog.com/2013/08/so-long-video-responsesnext-up-better.html

‘’Keep fans engaged with Cards & End Screens as we say goodbye to Annotations Editor’’ https://youtube-creators.googleblog.com/2017/03/keep-fans-engaged-with-cards-end.html

‘’Five Stars Dominate Ratings’’ https://youtube.googleblog.com/2009/09/five-stars-dominate-ratings.html

- Fullscreen Media: ‘’YouTube Discontinues Branding Intros’’ https://fullscreenmedia.co/2015/02/25/youtube-discontinues-branding-intros/

- The Verge: ‘’YouTube videos will no longer get stuck at 301+ views’’ https://www.theverge.com/2015/8/5/9100759/youtube-301-view-count-freeze-going-away

- Google Support: ‘’Upload audio or image files’’ https://support.google.com/youtube/answer/1696878

- Wikipedia: ‘’YouTube/View Counts’’ https://en.wikipedia.org/wiki/YouTube#View_counts

Credits for B-Roll footage:

- Videezy: ‘’Free Youtube Url Address Stock Video Clip in HD’’ by shawn https://www.videezy.com/technology/255-free-youtube-url-address-stock-video-clip-in-hd

- Mazwai: VIDEO BY GRAND THEORY http://mazwai.com/#/grid/videos/8

- Videvo: ‘’ Awesome Abstract Digital Numbers’’ https://www.videvo.net/video/awesome-abstract-digital-numbers/792/
____________________________________


► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Chances’’, ‘’Floor Plan’’, ''Rollin Through Osaka'', ‘’Cloud Wheels, Castle Builder'', ‘’Vespers’’ (YouTube Audio Library)

- Firebrand by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100830
Artist: http://incompetech.com/

- Backed Vibes - Rollin at 5 by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100422
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=LWKWefw-C-w 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
621 CHM Tech A Dinosaur Story 0 2017-01-01 Watch Part 2 - ''A Dinosaur Story - Extras''
https://www.youtube.com/watch?v=K3_UKtnZWuI

In 2013 Google updated the Chrome web browser with a brand new error screen, that would pop up whenever users would experience an internet shortage.

Besides the message that there is no internet connection, and a few suggestions for diagnostics, the screen also displayed an image of a T-Rex standing still on a desert plain.

The next year, Chrome users would find that they could actually activate an easter egg game with the dinosaur, simply by pressing the space-bar on their keyboard, or tapping on the screen if they were using a smartphone.

The Google Chrome T-Rex icon was designed by Sebastien Gabriel, a visual designer who is also known for designing other Chrome icons, one of them being the ‘’Chrome Repair Bot’’.

The offline game was entirely coded by Google developer Edward Jung.

The dinosaur game is an infinite runner that has no time limitations or scripted epilogue. You basically go for as long as you can, and while doing so, hopefully forget about the frustrations of dealing with one of the biggest first world problems.

____________________________________


Sources and references:

- OMG Chrome: ‘’Interview with Sebastien Gabriel, a Google Chrome Visual Designer’’ http://www.omgchrome.com/interview-with-sebastien-gabriel-google-chrome-visual-designer/

- Softpedia: ‘’Chrome's Cute Offline Dinosaur Now Comes as Standard’’ http://webscripts.softpedia.com/blog/Chrome-s-Cute-Offline-Dinosaur-Now-Comes-as-Standard-392981.shtml

- Dribble:
‘’Chrome lonely T-rex’’ https://dribbble.com/shots/1280869-Chrome-lonely-T-rex

‘’Chrome lonely T-rex reloaded’’ https://dribbble.com/shots/1832973-Chrome-lonely-T-rex-reloaded

- Wikipedia:
‘’Google Chrome’’ https://en.wikipedia.org/wiki/Google_Chrome#T-Rex

‘’Specimens of Tyrannosaurus’’ https://en.wikipedia.org/wiki/Specimens_of_Tyrannosaurus

- Quora: ‘’Why does Google Chrome show a dinosaur when you are offline?’’ https://www.quora.com/Why-does-Google-Chrome-show-a-dinosaur-when-you-are-offline

- Chromium.org:
‘’Disable Chrome offline game (T-Rex) if device is enrolled’’ https://bugs.chromium.org/p/chromium/issues/detail?id=462221

‘’add policy to disable dinosaur game on the network error screen on desktop/mobile platforms’’ https://bugs.chromium.org/p/chromium/issues/detail?id=471738

____________________________________


Footage used in the video

YouTube:
- Marques Brownlee: https://www.youtube.com/watch?v=2iObySa91b0
- Unbox Therapy: https://www.youtube.com/watch?v=cMiBhvV0Dm8&t=3s
- JerryRigEverything: https://www.youtube.com/watch?v=enaBiv2j91U&t=9s
- Computerphile: https://www.youtube.com/watch?v=PZRI1IfStY0&t=102s

Pixabay:
- Pencil clip https://pixabay.com/en/videos/pencil-write-author-education-pen-8256/
- Exsersize clip: https://pixabay.com/en/videos/yoga-health-woman-mountain-445/
- Keyboard clip: https://pixabay.com/en/videos/keyboard-typing-computer-office-8246/

Videezy:
- ‘’Bad TV Reception Stock Video Clip’’ by recroom https://www.videezy.com/elements-and-effects/244-bad-tv-reception-stock-video-clip

- ‘’Reading book pages’’ by padrinan https://www.videezy.com/abstract/5713-reading-book-pages

Mazwai:
- Grass clip http://mazwai.com/#/grid/videos/8

____________________________________


► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''U Make Me Feel'', ''TFB3'', ''Habanera (by Bizet)''
(YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=Icz1UAc0iW8 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
626 CHM Tech Assassin's Creed Origins Time-Lapse 0 2017-01-01 Assassin's Creed Origins has turned out to be a very pleasant surprise. I really haven't had as much fun playing this game ever since I finished Assassin's Creed 2. The game map has been so immersive for me, and I really hope you'll enjoy these great scenes from the beautiful open world.

____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music from Assassin’s Creed Origins (Original Game Soundtrack) Music by Sarah Schachner
Label : Ubisoft Music (Ubiloud)
0 0 0 1 https://www.youtube.com/watch?v=-CKErqPhlQ0 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
886 SpongeBob Time Cards 2000 Years Later | SpongeBob Time Card #2 0 2017-01-01 "2000 Years Later" time card from SpongeBob episode "SB-129" in Season 1. (12/31/1999)
http://www.nick.com/ -------
This video was uploaded by The Bronze Cat! Donate to his Ko-fi page if you want to support him ▶ https://ko-fi.com/thebronzecat
0 0 0 1 https://www.youtube.com/watch?v=vbb9MPYT23Y 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
635 CHM Tech Don't Forget The Scroll Lock 0 2017-01-01 In an interview from the early 1980s, PC magazine asked an executive of keyboard manufacturer Key Tronic what was the key's purpose, to which the executive replied: "I don't know, but we put it on ours, too".

The scroll lock key dates back from the original IBM keyboard and is a feature that other keyboard manufacturers simply adopted in the years after. It was initially intended to modify the behavior of the arrow keys. More specifically, it would toggle between two different modes of scrolling. When the scroll lock was on, the arrow keys would scroll the content of the entire window. When it was off, the arrows would only move the cursor.

But this is not the only thing the scroll lock is known to be used for. Depending on the operating system or application that is utilizing it, it can have other functions as well.

____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

_____________________________________

Sources and References:

- PC Magazine: ''The PC's Keys'' (November 1982, page 175) - https://books.google.ba/books?id=vy3cBZkjbZgC&lpg=PP1&pg=RA2-PA347&redir_esc=y#v=onepage&q&f=true

- PC Magazine: ''Key Tronic's Soft Touch'' (January 1983, page 347) - https://books.google.ba/books?id=vy3cBZkjbZgC&lpg=PP1&pg=RA2-PA347&redir_esc=y#v=onepage&q&f=true

- Wikipedia: ''Scroll lock'' - https://en.wikipedia.org/wiki/Scroll_lock

- Tech Central: ''Evolutionary Leftovers'' - https://www.techcentral.co.za/evolutionary-leftovers/48151/

- Stack Exchange: ''Why do modern keyboards have Scroll Lock?'' - http://ux.stackexchange.com/questions/64623/why-do-modern-keyboards-have-scroll-lock

- youtube.com/EverySteveJobsVideo: ''Steve Jobs on his legacy (1994)'' - https://www.youtube.com/watch?v=zut2NLMVL_k&t=1s

Credit for the beautiful satellite dish time-lapse footage goes to Beachfront:

https://www.videezy.com/members/beachfront

Used under CC Licence - https://creativecommons.org/licenses/by/3.0/

-Chrome Experiments used as BRoll: https://www.chromeexperiments.com/experiment/black-rain

https://www.chromeexperiments.com/experiment/medusae

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ‘’Righteous’’, ‘’Rollin Through Osaka’’, ’Clout Wheels’’(YouTube Audio Library)

- Comfortable Mystery 2 - Film Noire by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)

Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100537
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=oabs2NUfZsU 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
645 CHM Tech Fun Google Secrets - Part 2 0 2017-01-01 It’s been almost a full year since I uploaded my Fun Google Secrets video, which quite a few people took the time to watch. Of course, that video doesn't include all the easter eggs you could possibly find on Google, and in the meantime I’ve had the opportunity to play around with some other ones. It’s that time of the year again, so here are some easter eggs!

These are just a few from this video, that are working as of spring 2017:

EASTER EGG #1
If you search for ‘’bletchley park’’, Google will display it’s name decoded in the Knowledge graph;

EASTER EGG #2
"www.google.com/teapot’’ displays the message, "418. I’m a teapot. The requested entity body is short and stout. Tip me over and pour me out." Click on the teapot or tilt your phone, and see what happens;

EASTER EGG #3
If you search for ‘’Sonic the hedgehog’’, you’ll get a knowledge graph with the popular Sega hero on it. Click on him several times and see what happens;

EASTER EGG #4
Searching for ‘’The loneliest number’’ will have Google’s calculator display the number 1;

EASTER EGG #5
Type ‘’tic tac toe’’ in the search box, and hit enter for a game against Google’s computer.

Credit for the digital clock time-lapse footage goes to Beachfront:

https://www.videezy.com/members/beachfront

Used under CC Licence - https://creativecommons.org/licenses/by/3.0/


_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Rollin Through Osaka'', ''Monitors'', (YouTube Audio Library)

- Digital Voyage by Twin Musicom is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Artist: http://www.twinmusicom.org/

- Balzan Groove - Vadodara by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100311
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=7tMePTGolT8 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
646 CHM Tech Fun Google Secrets - Part 2 0 2017-01-01 It’s been almost a full year since I uploaded my Fun Google Secrets video, which quite a few people took the time to watch. Of course, that video doesn't include all the easter eggs you could possibly find on Google, and in the meantime I’ve had the opportunity to play around with some other ones. It’s that time of the year again, so here are some easter eggs!

These are just a few from this video, that are working as of spring 2017:

EASTER EGG #1
If you search for ‘’bletchley park’’, Google will display it’s name decoded in the Knowledge graph;

EASTER EGG #2
"www.google.com/teapot’’ displays the message, "418. I’m a teapot. The requested entity body is short and stout. Tip me over and pour me out." Click on the teapot or tilt your phone, and see what happens;

EASTER EGG #3
If you search for ‘’Sonic the hedgehog’’, you’ll get a knowledge graph with the popular Sega hero on it. Click on him several times and see what happens;

EASTER EGG #4
Searching for ‘’The loneliest number’’ will have Google’s calculator display the number 1;

EASTER EGG #5
Type ‘’tic tac toe’’ in the search box, and hit enter for a game against Google’s computer.

Credit for the digital clock time-lapse footage goes to Beachfront:

https://www.videezy.com/members/beachfront

Used under CC Licence - https://creativecommons.org/licenses/by/3.0/


_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Rollin Through Osaka'', ''Monitors'', (YouTube Audio Library)

- Digital Voyage by Twin Musicom is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Artist: http://www.twinmusicom.org/

- Balzan Groove - Vadodara by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100311
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=7tMePTGolT8 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
649 CHM Tech How Free Internet Calls Work 0 2017-01-01 Today internet voice and video calls are commonly made using apps like the already mentioned Skype, Viber, Facebook Messenger, WhatsApp and others, over a high speed internet connection.

Whether you’re calling someone in your own neighborhood or someone on the other side of the planet, if you’re both using the same app, the calls are typically free!

It’s all thanks to a technology called VoIP - Voice over Internet Protocol!

Sources & references:

- How Stuff Works Tech: ‘’How VoIP Works’’ http://computer.howstuffworks.com/ip-telephony.htm

- Explain That Stuff: ‘’VoIP’’ http://www.explainthatstuff.com/how-voip-works.html

- It Still Works:
‘’How Digital Phone Systems Work?’’ http://itstillworks.com/how-digital-phone-systems-work-4885232.html

‘’What Is Internet Telephone?’’ http://itstillworks.com/internet-telephone-6301577.html

- Wikipedia:
‘’Voice over IP https://en.wikipedia.org/wiki/Voice_over_IP

‘’Packet switching’’ https://en.wikipedia.org/wiki/Packet_switching

‘’Circuit switching’’ https://en.wikipedia.org/wiki/Circuit_switching

- Viber Support: ‘’Is Viber Free?’’ https://support.viber.com/customer/portal/articles/1335503-is-viber-free-

- Skype Support https://support.skype.com/en/faq/FA10917/can-i-call-people-in-other-countries-with-skype

Credits for B-Roll:

- Videezy.com

Vidmonster: ''College Girl Checks Phone''
https://www.videezy.com/people/5544-college-girl-checks-phone

Vidmonster: ''Pay Phone''
https://www.videezy.com/technology/7100-pay-phone

- Archive.org: ‘’Telephone Operator 1937’’ https://archive.org/details/Telephone_Operator_1937

Intro

Devil Cube Designs:
https://www.youtube.com/channel/UCt0L4zh1nkUKz36L8PsgCGw
https://www.youtube.com/channel/UClpaXmCnNMskK6-CFRmFd4Q

____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Tobaggan'', ''Righteous'', ''Vespers'', ''Cold Killa'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=PCzPX7N5gso 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
650 CHM Tech How iPhone X Face ID Works 0 2017-01-01 With iPhone X, Apple is introducing a new identification system that will replace Touch ID. They're calling it Face ID, a system that identifies you and unlocks your phone when you look at it.

And here's how it works...

When you glance at your iPhone X, the flood illuminator lights up your face, and this is done using infrared light which is invisible to the human eye.

Once the system detects the position of your face the dot projector cicks in. This component is reported to shoot 30.000 infrared dots on your face in order to create a unique 3D map of it.

The infrared camera captures the 3D pattern created by the dots which is used to create a mathematical model of your face.

That model is then checked against the one that was previously set up on the device. If it’s a match, you’ll be identified, the phone will unlock, and you’ll be granted access to the particular action you wanted to engage in.

The backbone of this system is located in the A11 Bionic chip, which includes a dedicated neural network hardware, a Neural Engine as Apple calls it.

It’s able to perform up to 600 billion operations per second and it is used for machine learning processes that are necessary for Face ID to learn about different changes on your face.

Used video footage:

- youtube.com/apple - ''iPhone X — Introducing iPhone X — Apple''
https://www.youtube.com/watch?v=K4wEI5zhHB0&t=126s

- youtube.com/apple - ''Meet iPhone X - Apple'' https://www.youtube.com/watch?v=mW6hFttt_KE&t=24s

-youtube.com/iGadgetPro - ''Apple iPhone X Presentation Extended Highlights''
https://www.youtube.com/watch?v=mMV_LcrZtLg&t=1277s

____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

____________________________________


► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ‘’Flow Sting’, ''Righteous'', ''Ticker'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=MEtnGwXYVa8 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
682 CHM Tech I'm Feeling Lucky 0 2017-01-01 The concept of the ''I'm feeling lucky'' button has always been very simple. When a user typed in a search query on Google and clicked on the button, it would take them to the page listed on the top of the results!

The idea behind the button was that a user would have to have a dose of confidence that they would be directed to the exact page they were thinking of, or at least a relevant one, in a single try. In other words they would have to feel pretty lucky – hence how the button got it's name.

On the other hand, ''I'm Feeling Lucky'' has also been labeled as a display of Google's own confidence - that they can take you to the desired page in one try!

Today, the way the ''I'm Feeling Lucky'' button works depends on a feature called ''Google Instant''.

When Google Instant is enabled and working, you really have no time to click on the button, as you start seeing suggestions and results the moment you begin typing a query. However, if you hover over a suggestion beneath the search box, the ''I'm Feeling Lucky'' feature will appear to the right!

When Google Instant is disabled the ''I'm Feeling Lucky'' button goes back to normal, and behaves the way it previously did!
But whether Google instant is enabled or disabled, clicking on the button while the search box is empty always takes the user to the Google Doodles gallery.

Sources and references:

- Steven Levy: ''In The Plex: How Google Thinks, Works, and Shapes Our Lives'' https://books.google.ba/books?id=V1u1f8sv3k8C&pg

- Janet Lowe: ''Google Speaks: Secrets of the World's Greatest Billionaire Entrepreneurs, Sergey Brin and Larry Page'' https://books.google.ba/books?id=NfkonH0VcT0C&pg

- Wikipedia:

"I'm Feeling Lucky" https://en.wikipedia.org/wiki/Google_Search#.22I.27m_Feeling_Lucky.22

''Instant search'' https://en.wikipedia.org/wiki/Google_Search#Instant_Search

- Quora:

''Why was the "I'm Feeling Lucky" button introduced on Google's homepage?'' https://www.quora.com/Why-was-the-Im-Feeling-Lucky-button-introduced-on-Googles-homepage

''What does Google's "I'm Feeling Lucky" feature do?'' https://www.quora.com/What-does-Googles-Im-Feeling-Lucky-feature-do

- MARKETPLACE: ''Are you feeling lucky? Google is'' https://www.marketplace.org/2007/11/19/world/are-you-feeling-lucky-google

Footage used in the video:

- youtube.com/Google:

''Google Instant Launch Event'' https://www.youtube.com/watch?v=i0eMHRxlJ2c

''How Search Works'' https://www.youtube.com/watch?v=BNHR6IQJGZs

''Google interns' first week'' https://www.youtube.com/watch?v=9No-FiEInLA

- youtube.com/erazer02 (LeoNERDo): ''Google Easter egg I'm Feeling Lucky'' https://www.youtube.com/watch?v=cLhl8zbSuog

Credit for the time-lapse footage goes to Beachfront:

https://www.videezy.com/members/beachfront

Used under CC Licence - https://creativecommons.org/licenses/by/3.0/

____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Minor Mush'', ''Righteous'', (YouTube Audio Library)

- Marxist Arrow by Twin Musicom is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Artist: http://www.twinmusicom.org/

-Looked Back, Saw Nothing by Twin Musicom is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://www
1 0 0 1 https://www.youtube.com/watch?v=4qeGFMP-Ahw 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
714 CHM Tech WinRAR And The Infinite 40-Day Trial 0 2017-01-01 In 1993 the world was introduced to Roshal Archive, or RAR – a proprietary archive file format that supports data compression, error recovery and file spanning. It was developed by Russian software engineer, Eugene Lazarevich Roshal, but the copyright for the file format is held by his brother Alexander.

Two years later, we got WinRAR - a file archiver utility for Windows, which would be used to create and view archives in RAR or ZIP file formats, and also unpack a whole bunch of other archive file formats.

WinRAR is distributed as a ''try before you buy'' software. According to the terms of use, you can use it for free during a 40 day trial period, after which you are required to buy a license.

However, if you ever used WinRAR, you know that you can continue using it for free even after the 40 day trial period ends.

Quick disclaimer: This is not a sponsored video!

Sources and references:

- Softonic:

''WinRAR 5.0: Interview with CEO Burak Canboy'' https://features.en.softonic.com/winrar-5-0-interview-with-ceo-burak-canboy

- win-rar.com:
''General Terms and Conditions of Business (GTB) for Consumers'' http://www.win-rar.com/gtb_priv.html?&L=0

''Compress, Encrypt, Package and Backup with only one utility'' http://www.win-rar.com/start.html?&L=0

- http://www.winrar.com.cn: WinRAR Software Introduction'' http://www.winrar.com.cn/about.htm

- Wikipedia:

''RAR (file format)'' https://en.wikipedia.org/wiki/RAR_(file_format)

''WinRAR'' https://en.wikipedia.org/wiki/WinRAR

''Eugene Roshal'' https://en.wikipedia.org/wiki/Eugene_Roshal

- Blog by the crator of RAR and WinRAR: http://free-rar.free.bg/

- Reddit:

''When my WinRar™ free trial ran out, why didn't it do anything?'' https://www.reddit.com/r/NoStupidQuestions/comments/2ldreo/when_my_winrar_free_trial_ran_out_why_didnt_it_do/

''Why does the winrar trial period never expire?'' https://www.reddit.com/r/explainlikeimfive/comments/2ifcfe/eli5_why_does_the_winrar_trial_period_never_expire/

- Quora:

''Why is WinRAR's "40-day trial" unlimited?'' https://www.quora.com/Why-is-WinRARs-40-day-trial-unlimited#_=_

''How does WinRar make money?'' https://www.quora.com/How-does-WinRar-make-money#_=_

Credit for the beautiful time-lapse footage goes to Beachfront:

https://www.videezy.com/members/beachfront

Used under CC Licence - https://creativecommons.org/licenses/by/3.0/

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/chmtech

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Cielo'', ''Cold Killa'', ''Rollin Through Osaka'', ''Floor Plan'', ''If I Had a Chicken'' (YouTube Audio Library)

-Industrial Music Box by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100812
Artist: http://incompetech.com/

- Firebrand by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100830
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=fTgZRVVr3_Y 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
717 CHM Tech youtube.com vs. youtu.be 0 2017-01-01 youtube.com vs. youtu.be... What's the difference?

URL shortening is a technique that makes it possible to take an existing URL, modify it in a way that will make it substantially shorter, and still have it direct to the same web page.

The way this is achieved is very simple. Every shortened URL basically uses a redirect which links to the initial web page that has a long URL.

It’s common for redirects to contain domain names that are shorter than the original ones. This is done not only for the purpose of shortening the URL, but sometimes even for creating something that is known as a domain hack which can be achieved by connecting two or more adjacent domain levels that form a name, word or phrase.

For example: inter.net uses the generic top level domain .net in order to complete the word ‘’internet’’, and youtu.be uses the country code top level domain for Belgium .be in order to complete the name of ‘’YouTube’’.

Sources and references:

- Youtube.googleblog.com: ‘’Make Way for youtu.be Links’’
https://goo.gl/uduF3b

- Cis.upenn.edu: ‘’What Is a URL?’’ https://goo.gl/mb35bq

- Differencebetween.net: ‘’Difference Between Youtube.com and Youtu.be’’ https://goo.gl/NTzD2L

- PCWorld: ‘’Link Shortening Mania: Goo.gl, Fb.me and Bit.ly Join Fray’’ https://goo.gl/Xiuqa5

- Independent: ‘’Things get sh.rt on the web with a new URL shortening trend’’ https://goo.gl/UnSbLc

- Wikipedia:

‘’URL shortening’’ https://goo.gl/yQiLoH
‘’URL’’ https://goo.gl/RszXpb
‘’Domain Hack’’ https://goo.gl/7tsgf5

B-Roll:

- Videezy:

‘’Free Youtube Url Address Stock Video Clip In HD’’
https://goo.gl/SGPpLx

- Pond5:

‘’Two Lumberjacks Sawing Felled Tree’’ https://goo.gl/kz69QW

- Videvo:

‘’Push Mower Slow Motion’’ https://goo.gl/gh9QTn

‘’Office Electric Pencil Sharpener’’ https://goo.gl/R9CvGJ

- Pixabay:

https://goo.gl/1aLw2j
https://goo.gl/SgVDRM
https://goo.gl/oepf2N

- Vimeo/Bitly:

‘’Why Optimizing the Link is Key to Customer Experience’’ https://goo.gl/JR1uY1

____________________________________

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

____________________________________


► SUBSCRIBE: https://goo.gl/C2FecS

► FOLLOW ME ON TWITTER: https://goo.gl/XQ82tH

► GOOGLE +: https://goo.gl/NXpHtz

_____________________________________

Music: ''U Make Me Feel'', ''Rollin Through Osaka'', ''Cloud Wheels, Castle Builder'', ''TFB3'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=xZgZLOq1JKU 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
760 TheDevelopmentOfWindows Moving to a new channel - Different direction for me 0 2017-01-01 I apologize if this is sad, but it's something I had to do.

My new channel:
DanDoesYoutube:
https://www.youtube.com/channel/UChUPavDkr5DlBx4K0uSokqA

Other Channels based on what this channel does:
CHM Tech:
https://www.youtube.com/user/hotmonkey000
Michael MJD:
https://www.youtube.com/user/mjd7999
Terabyte Coyote:
https://www.youtube.com/channel/UCvBP7IADaHRkoD_MpIe1F3Q
Windows on Windows (Inspiration for my channel)
https://www.youtube.com/user/MajorSky17

Q&A: (Same as in Video)
- Will there be anymore videos uploaded on this channel?
-- Probably not, if anything, I will upload a video based on what this channel is about on my new one.

- I still want to watch videos on Windows builds, etc. Now what?
-- There are many really great channels that I watch out there. And those channels are: CHM Tech, Michael MJD, Terabyte Coyote and Windows on Windows. Those channels are who I am subscribed to on my new channel and I think they make brilliant videos on the same subjects I make videos on.

- What about all the videos on this channel?
-- The videos on this channel will stay, I will not be deleting the channel, nor will I be removing any videos from this channel, unless they have no reason to be there.

- Program OS?
-- I am currently in the process of working on a version, as a personal practice project to learn programming, but since the project isn't massively supported, and doesn't really need to exist, it is not a full time project, and probably won't make an appearance for a while if not several years.

- I still want to watch videos you make, now what?
-- As I explained before, you'll have to Subscribe to my new channel DanDoesYoutube.
1 0 0 1 https://www.youtube.com/watch?v=_P6dOVYDbFA 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
121 MarkusTegelane Kõik-ühes Windows 3.11 Virtuaalmasin [VHD] 0 2016-12-14 PALUN VAJUTAGE LIKE VÕI MU KANAL HÄVITATAKSE!
Palun, või muidu viga tapab mu kanali. Tõis jutt.

VHD, mille tegin kaua aega tagasi. Ma loodan, et see teile meeldib. See tegemine võttis tegelikult natuke aega. See on minu oma ja sa võiksid seda muuta ainult loaga. Kui sulle meeldivad dos-i asjad rohkem, kui see mida sellel VM-il on pakkuda, saad sa lihtsalt keelata menüü käivitamisel või täielikult.

Allalaadimise lingid:
Enne alla laadimist LUGEGE SEDA ESIMESENA: https://drive.google.com/open?id=16-YiTlrlgjY_6Fifc2_Ge-TkLKADHBgRtopk-8I00Yk
Kui sa lugesid eelmist linki, palun laadige see alla SIIT: https://drive.google.com/open?id=0B_igBtlvxUYpU3NkOHdkaDkwUjg

Palun teavitage katkistest linkidest!
0 0 0 1 https://www.youtube.com/watch?v=10uRJM0G230 0 Ultimate Windows 3.11 Virtual Machine [VHD] Kõik-ühes Windows 3.11 Virtuaalmasin [VHD] PLEASE LIKE OR MY CHANNEL WILL DIE!
Please, or the glitch will kill my channel. True story.

The VHD that I made a long time ago. I hope you like it. It actually took me some time to make. This is owned by me and you should modify it only with permission. If you like dos more than all the things this VM has to offer, you can easily disable the menu at startup or completely.

Download links:
Before you download this thing, READ THIS FIRST: https://drive.google.com/open?id=16-YiTlrlgjY_6Fifc2_Ge-TkLKADHBgRtopk-8I00Yk
If you read the previous link, please download it HERE: https://drive.google.com/open?id=0B_igBtlvxUYpU3NkOHdkaDkwUjg

Please report broken links!
PALUN VAJUTAGE LIKE VÕI MU KANAL HÄVITATAKSE!
Palun, või muidu viga tapab mu kanali. Tõis jutt.

VHD, mille tegin kaua aega tagasi. Ma loodan, et see teile meeldib. See tegemine võttis tegelikult natuke aega. See on minu oma ja sa võiksid seda muuta ainult loaga. Kui sulle meeldivad dos-i asjad rohkem, kui see mida sellel VM-il on pakkuda, saad sa lihtsalt keelata menüü käivitamisel või täielikult.

Allalaadimise lingid:
Enne alla laadimist LUGEGE SEDA ESIMESENA: https://drive.google.com/open?id=16-YiTlrlgjY_6Fifc2_Ge-TkLKADHBgRtopk-8I00Yk
Kui sa lugesid eelmist linki, palun laadige see alla SIIT: https://drive.google.com/open?id=0B_igBtlvxUYpU3NkOHdkaDkwUjg

Palun teavitage katkistest linkidest!
2016-12-14-1658-23.flv Operatsioonsüsteemid Operating systems ultimate,Windows,Can it replace,Can it replace Windows 7,Windows 7,Windows 8,Windows 8.1,Windows 10,Windows 3.11,free VHD download,VHD,Virtual Hard Disk format,modern OS,Virtual Machine,.vmc,Virtual Machine Configuration format,Virtuaalmasin,Virtuaalketas,modernne OS,kõik-ühes,tasuta VHD allalaadimine,Kas see saab asendada Windows 7-t N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/121.jpg N/A /channel_db_lite/web/json/121.json N/A N/A
784 TheDevelopmentOfWindows [Archived] Windows Home Server 2003 0 2016-01-01 This is some archived footage that I recorded on Windows Home Server 2003. I'm sorry for not uploading regularly, it's just difficult having only my laptop. (This video took 2 hrs 30 mins to render in 480p) Sorry about the low quality too. 1 0 0 0 https://www.youtube.com/watch?v=lYN59TcWROk 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
786 TheDevelopmentOfWindows [Nostalgia.win] The Development of Windows 98 0 2016-01-01 Nostalgia.win is at it again. This time bringing you another The Development of Windows... but looking at an older version of Windows. Let me know what you think of the new intro, I made it the night before making this video. Which was 06/12/2016 (DD/MM/YYYY) {Just in case your dates are different}

Wiki: https://en.wikipedia.org/wiki/Windows_98

Music (Direct): http://audionautix.com/Music/Drifting2.mp3

Music site: http://audionautix.com/ (Select Soundtrack as the genre and scroll down until you find 'Drifting', it should be there unless it changes)
1 0 0 1 https://www.youtube.com/watch?v=6-BMTZdh5NU 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
815 ScoopWhoop ScoopWhoop: How Software Piracy Can Kill Your Startup 0 2016-01-01 Have you ever used pirated software to get your work done? When you are a startup founder, have you ever felt the need to indulge in software piracy? Well, this video is the reason why you should not.

ScoopWhoop Videos in association with Microsoft present - How Software Piracy Can Kill Your Startup.

Check whether you're using a genuine Microsoft software or not- http://bit.ly/1qIIWzG


Subscribe and get notified of new episodes - https://www.youtube.com/c/s...

For more interesting stories, log on to - http://www.scoopwhoop.com/

Like us on Facebook - https://www.facebook.com/ScoopWhoopTa...

Follow us on Twitter - https://twitter.com/ScoopwhoopVideo
1 0 0 1 https://www.youtube.com/watch?v=aQCrvoZ3k9c 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
618 CHM Tech 5 Things You Need To Know About Screen Recording on a PC 0 2016-01-01 I've done my fair share of videos on different screen recorders, in which I showed you guys how to use particular programs and how to set them up to meet your requirements and needs.

But this video is going to be a little bit different. This is not going to be a tutorial, review or anything similar. Instead of getting into technical aspects of any specific programs by showing you how to use them, in this video I wanted to talk about some of the fundamental things about screen recording in general, things that you should know if you're just getting into it, or if you've been recording for a while, but it's kind of turning out to be a frustrating process for you. Which it shouldn't be, by no means!

Doing something you love and enjoy, and sharing it with other people should be a fun thing. And I'm sure that for the great majority of people - it certainly is. But when when you're having trouble because the tool that is supposed to help you share those things with the world doesn't work the way you expected it to work, it can be a frustrating thing. And when it comes to screen recording, at some point probably everyone who has ever recorded a game, tutorial, educational video or what not, has experienced that frustration.

So here are some of the most important things you should know about screen recording, that will hopefully help you bring any possible frustrations to the lowest possible level, and focus on what's important, and that is having fun with what you're doing and sharing it with the world.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ‘’Moth'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=Jiiknlx4Vyo 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
631 CHM Tech COMPUTERS THAT CHANGED THE WORLD 0 2016-01-01 In this video we’re going to take a quick look at the history of computers. They are everywhere around us, and without them life as we know it would be a whole different story. So in this video we’ll go back and take a look at the ones that had the greatest impact not just on the industry, but on how we live.


Did you know:

- The Colossus was designed by engineer Tommy Flowers, and influenced by Alan Turing’s use of probability in crypt-analysis. Colossus used vacuum tubes in order to perform Boolean operation, and also required the physical manipulation of telephone jack plugs, cords and switches in order for it to be programmed for new tasks.

- ENIAC: Funded by the US Army, the construction for ENIAC was done in top secrecy. It was built at the Moore School of Electrical Engineering of the University of Pennsylvania, between 1943 and 1945.

- Manchester Baby: Initially not being intended for practical use, it was used as a test for the Williams tube, an early form of computer memory. Unlike previous computers that required physical manipulation for reprogramming, the Manchester Baby was capable of storing program instructions in electronic memory.

- The Xerox Alto is considered to be the first computer to combine a graphical user interface with a mouse driven input, invented by Douglas Engelbart.

- The Altair 8800 was recognized as the spark that ignited the PC revolution! Designer Ed Roberts initially intended to sell just a few hundred kits to hobbyists, but was taken by surprise after the sales were counted by the thousands in just the first month.

- Apple II: In 1976 Apple released the Apple Computer 1, which was designed by Steve Wozniak. But the real boom from this company came one year later, with the release of Apple 2, the computer that would set the standards for PCs for that time.

- IBM 5150: Even though the generic term "personal computer" was in use before, because of the success of the IBM Personal Computer, the term "PC" came to mean more specifically a desktop microcomputer compatible with IBM's PC products.

- Macintosh: Before the Mac, using computers was not as simple as we know today. To access any program, you would have to have knowledge of proper command lines. Once you had them running, the only way you could interact with them was using the keyboard. With the Mac, starting a program would simply depend on you finding a program icon and double-clicking it using your mouse.

The history of modern computers is filled with many grate machines that had a great impact on the world around us, and the way people get things done in everyday life. Because of their impact on the world, we can say without a doubt that they truly are one of the most important things that man invented.

SOURCES:

-ALPHR: 13 computers that changed the world
http://www.alphr.com/features/389986/...

- MakeUseOf: A Brief History Of Computers That Changed The World
http://www.makeuseof.com/tag/a-brief-...

- Computer History Museum: ENIAC
http://www.computerhistory.org/revolu...

- CNET: How IBM's 5150 PC shaped the computer industry
http://www.cnet.com/news/how-ibms-515...

- MacWorld: The Mac revolutions: from the Macintosh 128k to the iMac and the MacBook Air
http://www.macworld.co.uk/feature/mac...

- Oldcomputers.net
http://www.oldcomputers.net/

- Wikipedia.org
https://www.wikipedia.org/

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ‘’Righteous’’, ‘’Far The Days Come’’, ‘’Cielo’’, ‘’Pressure’’, ‘’Tobaggan’’, ‘’In The Hall Of The Mountain King’’

- Frost Waltz (Alternate) by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/...)
Source: http://incompetech.com/music/royalty-...
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=SE_0e-zt4zk 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
639 CHM Tech Fun Google Secrets 0 2016-01-01 GOOGLE HAS SOME REALLY COOL SECRET FEATURES THAT YOU CAN HAVE FUN WITH.

When we think Google, most of us think search engine – a website where you type words and phrases in a text box and it gives you a bunch of search results that you might find useful.

But not everything that Google’s search engine can do is necessarily useful. If you type in the right phrase, you can find different Easter eggs that are there simply for the fun of it.

Here's are just some of the secret Google Easter eggs that are working as of spring 2016.

EASTER EGG #1
Type ''Do a barrel roll'' in the Google search box and hit enter! The page will do a single spin.

EASTER EGG #2
Type in ‘’Google gravity’’, click on the first search result and watch the tumble to the ground.

EASTER EGG #3
Google has a hidden game incorporated in its Chrome browser. You know that sad little dinosaur that shows up when there’s no internet connection. You can actually start a game with him by simply pressing the space button on your keyboard.

EASTER EGG #4
Searching for "Super Mario Bros" shows a secret info card for Super Mario Bros on the Google search page.

EASTER EGG #5
If you type ‘’Zerg Rush’’ in the search box, a bunch of Google O’s will attack your screen, while you fight them off by clicking on them.

For more fun Google secrets, be sure to watch the full video.
For a list of different easter eggs across different Google services, check out the article on Wikipedia:
https://en.wikipedia.org/wiki/List_of_Google_easter_eggs

If you'd like, you can also watch my video on Google Now easter eggs: https://www.youtube.com/watch?v=uC5OfRREWpM

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ‘’Monitors'', ''Beat Your Competition''(YouTube Audio Library)

- Marxist Arrow by Twin Musicom is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Artist: http://www.twinmusicom.org/
1 0 0 1 https://www.youtube.com/watch?v=Nsbp0GQHOGc 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
651 CHM Tech How To Download and Install WINDOWS 10 Anniversary Update Now! 0 2016-01-01 In this video I'm going to show you how to get the Windows 10 Anniversary update today, without having to wait for it to be available for your system.

Microsoft released the Windows 10 Anniversary update on August 2nd, but a lot of users are still going to have to wait a bit longer for the update to actually be available for them through regular updates.

Normally, to update Windows 10, you would go to your system settings, open up the security updates section and click on check for updates. If the update is available, you would upgrade your system following the steps the OS presents to you.

But if you get a message saying that your device is up to date, you can still force upgrade your system using the Windows 10 Upgrade Assistant that Microsoft offers on their official website.

So here's how you can download and install the Windows 10 Anniversary update, today!

► DOWNLOAD LINK: https://support.microsoft.com/en-us/help/12387/windows-10-update-history

► SYSTEM REQUIREMENTS: https://msdn.microsoft.com/en-us/library/windows/hardware/dn915086(v=vs.85).aspx?tduid=(78fa2800acfaba1e38acef0c3c66ce0f)(256380)(2459594)(TnL5HPStwNw-ZQoUK1BXQ500EAjDPWXO5Q)()

ZDNET article: http://www.zdnet.com/article/windows-10-anniversary-update-will-require-more-ram/

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ‘’Moth'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=aI9jdgs30eA 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
655 CHM Tech How to Enable the Dark Theme in Windows 10 Anniversary Update 0 2016-01-01 The dark mode in Windows 10 is something that you might want to use in very low light environments, where a bright white theme may be hard on your eyes.

Enabling the dark mode was something that was possible in previous builds of Windows 10, but you could only do it by making modifications in your system registry, so it wasn’t really convenient for the average user.

In the Windows 10 Anniversary update, however, switching between the default light theme and the previously hidden dark theme is simply a matter of a few clicks.

If you still haven’t installed the Windows 10 Anniversary update, and you’d like to do it before it becomes available for your system through regular system updates, you can check out this tutorial for instructions:

https://www.youtube.com/watch?v=aI9jdgs30eA

Have in mind that the dark mode in Windows 10 will only affect apps that are capable of running it. For some apps, the dark mode can only be activated from inside their own settings, for example - the Microsoft Edge browser.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Nevada City'', '’Moth'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=zi05dNyzz54 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
659 CHM Tech How to Make ANAGLYPH 3D Text 0 2016-01-01 SIMPLE AND QUICK METHOD OF CREATING ANAGLYPH 3D TEXT USING GIMP!

Anaglyph 3D is the name given to the stereoscopic 3D effect achieved by means of encoding each eye's image using filters of different (usually chromatically opposite) colors, typically red and cyan. Anaglyph 3D images contain two differently filtered colored images, one for each eye.

https://en.wikipedia.org/wiki/Anaglyph_3D

Cyan HTML Notation: 00ffff

Hacked font: http://davidlibeau.fr/Watch_Dogs_Font=HACKED_Title/

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ‘’Monitors'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=54zT_N4ykJs 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
660 CHM Tech HOW TO MAKE WINDOWS 10 FASTER 0 2016-01-01 If you want to know how you can make Windows 10 run faster, in this video I'm going to show you a few things you can do to boost your system performance.

Before you start, there's good news and some bad news. If you're running Windows 10 on a very very old computer, you cant really expect your system to run like a newer and more powerful device only by making certain software tweaks.

Very often on YouTube you'll see videos that tell you how certain software related tricks will make your computer fly. Honestly, the only way you can do that is by getting the latest and greatest hardware components.

But the good news is that, no matter how slow your system may be, there are things you can do to increase it's performance and therefore have a better user experience on your Windows 10 system.

So go ahead and watch the video for a few tips to boost your system performance on Windows 10...

Download link for Cleaner:https://www.piriform.com/ccleaner/download

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Monitors'' (YouTube Audio Library)

- 8-Bit March by Twin Musicom is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Artist: http://www.twinmusicom.org/
1 0 0 1 https://www.youtube.com/watch?v=LJzUWlQIhBw 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
663 CHM Tech How to Record Games With NVIDIA Share Shadowplay 0 2016-01-01 HOW TO RECORD GAMEPLAY USING THE NVIDIA SHARE OPTION, PREVIOUSLY KNOWN AS SHADOWPLAY.

In this video I'm going to show you how to set up the NVIDIA Share option for best gameplay recording.

This is an option that you have if you are running an NVIDIA GTX 600 series graphics card or anything higher. Once called Shadowplay, it is now simply known as NVIDIA Share, and is an inbuilt option in the NVIDIA GeForce Experience app.

GAME:
Hitman Episode 1 - Paris

PC Specs:
Intel Core i7-6700K
Gigabyte GTX 1060 6GB OC
16GB G.SKILL V DDR4
1TB HDD
250GB SSD
_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''So Lost'' (YouTube Audio Library)

- 8-Bit March by Twin Musicom is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Artist: http://www.twinmusicom.org/
1 0 0 1 https://www.youtube.com/watch?v=2sK7e1ox03Q 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
667 CHM Tech How To Record Your Android Screen with AZ SCREEN RECORDER 0 2016-01-01 A few weeks ago I showed you guys how you can record your Android screen for free using a free app called Mobizen. Now for those of you who are still looking for other options, today I’m going to show you how to screen record with another free app, called AZ screen recorder, which works on devices running Android 5.0 and up. And of course no rooting is required!

AZ Screen Recorder for Android can be downloaded for free on the Google Play store, and this free version will offer you practically everything you need in order to record your Android screen without any brand logos or recording restrictions. You can also make an in app purchase if you want the premium version, but in this video, we’re gonna stick to the free one.

Other Android scree recording options:

https://www.youtube.com/watch?v=PoCh06bftoM

https://www.youtube.com/watch?v=1XkIjsnI3B0

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Mean Streetz'', ''Monitors'', ''Young and Old Know Love'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=2lkn22ZmvzM 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
673 CHM Tech How To Turn Off Facebook Notifications In Google Chrome 0 2016-01-01 In this tutorial I show you how you can turn off the Facebook notifications that are displayed by your Google Chrome web browser.

We all like to know when something's going on on our Facebook page, but the browser notifications are pushed even when you are not using Facebook at the moment.

So if you are annoyed by them, no worries, because they can be disabled in a few simple steps.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Cold Killa'', ''In The Hall Of The Mountain King'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=dypMxOaezXE 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
675 CHM Tech Internet's Video Firsts 0 2016-01-01 WHAT WAS THE FIRST VIDEO ON THE INTERNET? This question might be harder than it seems, as it is known that many videos circulated on the internet in the 1990s, and even earlier

In the earlier days of the internet, videos were just files that you could find if you knew where and what to look for. There were no websites like YouTube, so you couldn't really watch videos ON the internet. That is up until the summer of 1993.

But before we get there, let's take it step by step. In this video we'll first take a look at what came before the format called video.

In 1888 French inventor Louis Le Prince recorded his famous Roundhay Garden Scene, which the Guinness Book of Records notes as the oldest surviving film in existence.

Jump form the 19th century to 2005 - and we get YouTube.
The first video ever posted on YouTube was titled ''Me at the Zoo'' and it was uploaded by YouTube co-founder Jawed Karim on April 23 2005.

The first video to hit one million views on YouTube was Nike's Touch of Gold commercial.

The first video to hit one billion views on YouTube was Gangnam Style by the South Korean singer Psy.

But there were plenty viral videos on the internet even before YouTube was founded.

For example one of them was ''The Spirit of Christmas'', a video from 1995 that lead to the creation of the television series ''South Park''. Another one was ''The Dancing Baby'', which was a 3D-rendered animation of a baby dancing, that went viral in the late 1990s.

But what came before all that? What is the first video on the entire internet?

Well, on June 24, 1993, the band played a gig at Xerox PARC which was broadcast live on the internet thanks to a new technology called The MBone. As proof that the technology worked, audio and video information of the band playing was broadcast into cyberspace, and could be seen live in Australia and elsewhere.

It might be a bit of a stretch to say that this was THE first video on the entire internet, but technically it was the first one that could be seen directly on the internet. And in that respect, we could think of it as a precursor of the modern type of video we enjoy today on video hosting websites like YouTube.

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

Sources and references:

Wikipedia:

''Louis Le Prince'' https://en.wikipedia.org/wiki/Louis_Le_Prince

''History of film'' https://en.wikipedia.org/wiki/History_of_film#Birth_of_movies

''Eadweard Muybridge'' https://en.wikipedia.org/wiki/Eadweard_Muybridge#cite_note-Bullough-28

''Viral video'' https://en.wikipedia.org/wiki/Viral_video

''Video hosting service'' https://en.wikipedia.org/wiki/Video_hosting_service

Gudger College Daily: ''The Roundhay Garden mystery'' https://goodmorninggudger.wordpress.com/2010/10/25/the-roundhay-garden-mystery/

Quora:
''What was the first video viewed over the internet?'' https://www.quora.com/What-was-the-first-video-viewed-over-the-internet

''What was the first video to hit one million YouTube views? How long did it take for it to reach one million views?'' https://www.quora.com/What-was-the-first-video-to-hit-one-million-YouTube-views-How-long-did-it-take-for-it-to-reach-one-million-views

The Telegraph: ''The world's first films'': http://www.telegraph.co.uk/culture/culturevideo/8035681/The-worlds-first-films.html

Clips used from:

- ''1888 - Roundhay Garden Scene'' https://www.youtube.com/watch?v=F1i40rnpOsA

- ''Me at the zoo'' https://www.youtube.com/watch?v=jNQXAC9IVRw

- ''Nike Football Presents: Ronaldinho Crossbar Remastered'' https://www.youtube.com/watch?v=Z6JdxaDDzb8

- ''History of the Int
1 0 0 1 https://www.youtube.com/watch?v=yqaOXr_l-6k 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
677 CHM Tech Let's play GEARS OF WAR 4 0 2016-01-01 I can already tell that this is going to be an awesome game. This is the Prologue mission of Gears of War 4, and I really hope that you will enjoy watching, as much as I enjoyed playing it.

Gears of War 4 is a third-person shooter video game developed by The Coalition and published by Microsoft Studios for Microsoft Windows and Xbox One. It is the fifth installment in the Gears of War series (GW, GW2, GW3, GW: Judgement, GW4)

Gears of War 4© Microsoft Corporation. ''Let's play GEARS OF WAR 4 - Episode 1'' was created under Microsoft's "Game Content Usage Rules" using assets from Gears of War 4, and it is not endorsed by or affiliated with Microsoft.

Gaming Content Usage Rules: http://www.xbox.com/en-US/developers/rules

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________
0 0 0 1 https://www.youtube.com/watch?v=jVHP9Qa7cLo 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
678 CHM Tech MICROSOFT EDGE Extensions – Better Late Than Never 0 2016-01-01 With the Windows 10 Anniversary update, Microsoft Edge received some new features that its competitors like Google Chrome and Mozilla Firefox have had for a very long time now.

One of them is the ability to use extensions, which is basically the most important change that was implemented in Edge after the latest update.

Another new feature that was added to the Microsoft Edge browser in the Windows 10 Anniversary update is the ability to pin tabs.

Besides that, Microsoft has also added the option to receive web notifications.

One more new feature in Edge, that is going to be useful for people who are using touch capable devices, is the ability to swipe left or right in order to navigate on a page, which is something that was an option in the Windows 8 version of Internet Explorer.

More videos on Windows 10 Anniversary update:

https://www.youtube.com/watch?v=zi05dNyzz54

https://www.youtube.com/watch?v=aI9jdgs30eA

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ‘’Beat Your Competition'', ''Tobaggan'', ''New Tires'', ''Cielo'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=c8xstZ1OQgY 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
679 CHM Tech Microsoft Expression Encorder Screen Recorder Won't Start Recording - FIX! 0 2016-01-01 In this video, I'll show you how to fix a very common problem with the Microsoft Expression Encoder screen recording software.

Normally when you wish to record your screen using this program, you would click the record button and select the screen region you wish to record, after which the program would give you a countdown telling you that the recording process is about to start.

However, a lot of users never get the countdown, and the recording simply never starts. It can be a frustrating problem, but it can easily be fixed.

Microsoft Expression Encoder Screen recorder has a known issue with certain screen resolutions. This is actually the main reason why some users sometimes can't get the program to start recording.

The problem can actually be solved in two ways.

The first thing you can do to get the screen recorder working is to change the Windows screen resolution settings.

The second way to fix the problem is to adjust the screen region settings for recording in a specific way that is shown in this video. This method may take you a few tries, but you can use it to get the Microsoft Expression Encoder screen recording software to start working again.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ‘’Never Sleep'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=X2UHvBZlwDM 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
697 CHM Tech THE INTERNET AND DEATH 0 2016-01-01 Estimates of the total number of humans who have ever lived, range in the order of 100 billion. With some simple math, we could estimate that the total number of people who have ever died is over 100 billion.But how many dead people are on the internet?

It’s really hard to find any concrete studies that deal with this number on a wider scale. But if we narrow it down, to let’s say a social network level, then it gets much easier to make estimates.

For example, it is estimated that over 30 million Facebook users died within the fires 8 years of the sites existence.

Besides the number of dead people on sites like Facebook, another interesting thing is what these sites do with their accounts and profiles after their owners die. So what happens to your accounts and profiles when you die?

For example, the already mentioned Facebook has the option to turn the deceased user’s profile into a memorial.

Some companies give allow their users to have a say in what happens to their accounts after they die. For example Google!

Because the number of accounts and profiles of the dead is still believed to be much smaller than those of active users who are alive, a lot of web sites don’t have a specific policy for deceased users.

As it is determined by nature, the deceased will eventually outnumber the living on the internet, and service providing sites will eventually have to come up with efficient policies that deal with the inevitable matter.

SOURCES:

- Internet Live Stats: Internet Users
http://www.internetlivestats.com/inte...

- Webpage FX: What Happens to Your Online Presence When You Die?
http://www.webpagefx.com/blog/interne...

- Huffington Post: Death On Facebook Now Common As ‘Dead Profiles’ Create Vast Virtual Cemetery
http://www.huffingtonpost.com/2012/12...

- Population Reference Bureau: How Many People Have Ever Lived on Earth?
http://www.prb.org/Publications/Artic...

- Wikipedia: World Population
https://en.wikipedia.org/wiki/World_p...

- FiveThirtyEight: The Demographics of Heaven
http://fivethirtyeight.com/features/w...

- XKCD: Facebook of the Dead
http://what-if.xkcd.com/69/

- Independent: Internet addresses have officially run out — but we've got some more
http://www.independent.co.uk/life-sty...

- Wikipedia: IPv4 Address Exhaustion
https://en.wikipedia.org/wiki/IPv4_ad...

- Wikipedia: Year 2038 Problem
https://en.wikipedia.org/wiki/Year_20...

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ‘’Righteous’’, ‘’Tobaggan’’, ‘’Vespers’’, ‘’Young and Old Know Love’’ (YouTube Audio Library)

- FairyTale Waltz by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/...)
Source: http://incompetech.com/music/royalty-...
Artist: http://incompetech.com

- Firebrand by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/...)
Source: http://incompetech.com/music/royalty-...
Artist: http://incompetech.com/

- Frost Waltz (Alternate) by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/...)
Source: http://incompetech.com/music/royalty-...
Artist: http://incompetech.com/

- Industrial Music Box by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/...)
Source: http://incompetech.com/music/royalty-...
Artist: http://incompetech.com/

ART FROM THUMBNAIL: http://www.clipartlord.com/category/halloween-clip-art/grim-reaper-clip-art/
1 0 0 1 https://www.youtube.com/watch?v=9m8mrVIzuEQ 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
702 CHM Tech THE UNSUB BUG EXPERIMENT 0 2016-01-01 Recently many YouTube creators have been complaining about something that has become widely known as the YouTube ''unsub bug''.

Basically what people are saying is that every time they upload a video to their YouTube channel, they notice a substantial loss of subscribers.

Some people think that YouTube is unsubscribing people from their channel intentionally, however YouTube has denied this.

That has lead creators to believe that there is a bug in the YouTube algorithm that is making them loose subscribers upon uploading a new video.

Even though this has become a burning topic only in the past few months, many YouTube creators are confirming that this has been happening for at least a couple of years.

With all that in mind, I decided to do a small scale experiment with the purpose of provoking the ''unsub bug'', and recording it's effects in real time.

The experiment took place over the course of three days. I uploaded a series of test videos in order to see if I they would cause a drop in my channel subscriber count.

After three days of testing, and four test videos, I wasn't able to get the results I anticipated. With that said, this experiment didn't manage to prove with out a doubt that a YouTube ''unsub bug'' truly exists, however, it also doesn't disprove anything.

Hopefully YouTube will get to the bottom of this, and issue a fix and/or explanation for why so many creators have been drastically losing subscribers.
_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Moth'', ''Nevada City'', ''Righteous'', ''Cylinder Eight'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=IBG_VR1bUHQ 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
706 CHM Tech WINDOWS 10 is Installing Apps Without Your Permission - Here's How to Stop It! 0 2016-01-01 In this video I'm going to show you how to prevent Windows 10 from installing unwanted apps and games on your computer!

Windows 10 has a feature called ''Microsoft Consumer Experience'', which basically allows Microsoft to put little ads in the form of suggestions on your Start menu, and sometimes even on your lock screen and in toast notifications.

And that's not the only thing ''Microsoft Consumer Experience'' does, because sometimes it will even install third party apps and games on your computer without your approval.

Fortunately, there is something we can do in order to prevent these types of unwanted apps from being installed on our system. And in doing so, we should also get rid of the ads that appear in our operating system.

''Microsoft Consumer Experience'' is a feature that was added in the 1511 update for Windows 10, but some things have changed after the 1607 update, better known as the Anniversary update, so the method you're going to be using to get rid of it will depend on what version you're currently running.

Detailed instructions in the video!

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Monitors'', ‘’Never Sleep'' (YouTube Audio Library)

- ''Dhaka'' by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1400003
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=KGG6mnv7TCc 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
708 CHM Tech WINDOWS 10 Start Menu Without Tiles Vs Start Menu With Tiles 0 2016-01-01 in Windows 10 you can strip down the Start menu to a very minimalistic form, simply by unpinning all the tiles from the right column of the menu.

Of course, by doing this, not only would you be stripping down the appearance of the Start Menu, you would actually be stripping it down when it comes to its productivity value as well.

I this video, we’re going to do a little comparison, to see what you get and what you lose by getting rid of the tile column.

The Windows 10 Start menu basically has two main columns. On the left one you have your most used apps and programs up top, beneath that you have the recently installed section, then you have the system section that contains links to things like the File Explorer, the new Settings panel and the power button. And finally you have the all apps button. The right hand column is completely reserved for tiles, and that’s the part that we are going to be experimenting with in this video.

You can have as many tiles as you want, but if you don’t want any, you can easily get rid of them buy right clicking and simply saying unpin form Start. If you unpin all of them, you will end up with a Start menu with just the right hand column, that in some way resembles the Start menus from older versions of Windows.

To sum up the comparison...

Windows 10 Start menu without tiles:

- Clean and simple
- Limited options for customization
- Limits your productivity

Windows 10 Start Menu with tiles:

- Aesthetically appealing
- More options for customization
- Increases your productivity

For more on the Windows Start menu: https://www.youtube.com/watch?v=tcuSW3fx3xA

Facts about Windows 10: https://www.youtube.com/watch?v=YPtiWS5WrAA

How Safe is Windows 10?: https://www.youtube.com/watch?v=jHojDmIyRlI

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Propeller'', ''Righteous'', ''Far The Days Come'', ''Beat Your Competition'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=iWFOd2fVsZ0 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
64 MarkusTegelane MarkuStation - Minu uus intro? [HD] 0 2015-12-06 HOIATUS! Mõnede jaoks võib see olla hirmuäratav -.-



See on üks mu idee, mille ma võin panna enda uueks introks. Selle intro lõpus oleva heli nimi on Personified Fear (PFear)
1 1 0 1 https://www.youtube.com/watch?v=TKXLUXXEW2c 0 MarkuStation - My new intro? [HD] . WARNING! It may be spooky for some of you -.- This was one of my ideas, that I could use as my new intro. The sound at the end of the intro is known as Personified Fear (PFear) . pfear.MP4 Introd Intros https://odysee.com/@MarkusTegelane:8/markustation-minu-uus-intro-hd:f MarkusTegelane . 1 /channel_db_lite/web/thumbs/64.jpg N/A N/A N/A N/A
41 MarkusTegelane Batch file : The Chatroom [UPDATE] [May 2015] 0 2015-05-05 My made batch file called The Chatroom has got a big update. Watch video if you want to know more... 1 1 0 1 https://www.youtube.com/watch?v=c8RpFrHMVas 0 . Pakkfail : The Chatroom (jututuba) [UUENDUS] [Mai 2015] . Minu enda loodud pakkfail nimega "The Chatroom" (jututuba) on saanud suure uuenduse. Vaadake videot, kui soovite rohkem teada... The Chatroom May 2015 update.mp4 Pakkfailid Batch files Batch File (File Format),Computer File,Update,Windows,Maker,Chatroom,The Chatroo,Markus Maal,Room,Living,People,Bed,Software (Industry),Bedroom,Tub,Locker,Software (album),Stone,Cold,Bath,Logging Time,Industry (Organization Sector),Meet,Austin,Steve,Lap,Quick,Updates,Bypass,Post,Update (Jane Zhang Album),Weekly,Zhang Liangying (Musical Artist),Loss,End,Weight,Band,Greet,The Band (Musical Group),Steve Austin,Week Part,Lap Dance,Cold Steve https://odysee.com/@MarkusTegelane:8/batch-file-the-chatroom-update-may-2015:4 MarkusTegelane . 1 /channel_db_lite/web/thumbs/41.jpg N/A /channel_db_lite/web/json/41.json N/A N/A
772 TheDevelopmentOfWindows Skyscrapersim Multiplayer Launcher Concept 0 2015-01-01 This is the concept for if Mutliplayer was added to Skyscraper simulator 0 0 0 1 https://www.youtube.com/watch?v=cHw0kaQ5QdA 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
776 TheDevelopmentOfWindows Schindler 3300 Capacitive Skyscrapersim 0 2015-01-01 Take a look at the new modern touch operated Schindler 3300 Capacitive life! made in Skyscrapersimulator!
Benobve:
https://www.youtube.com/channel/UCQPh7KX5R7q3fFh548p7rDQ
Original Benobve video:
https://www.youtube.com/watch?v=ALN0OCZGgMU&list=LLZUp4ZohV34NaUnEFvWZQ1g&index=17
Download link:
http://www.mediafire.com/download/hdu39cerdc94eah/Simple+-+3300+Capacitive.zip
0 0 0 1 https://www.youtube.com/watch?v=D-rgYF0z6VE 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
873 Ubisoft Trackmania Turbo - Announcement trailer - E3 2015 [Europe] 0 2015-01-01 Preorder now on: http://trackmania.com
Available 26/11/2015 for the first time on consoles, on PlayStation 4 and Xbox One systems, and also on PC.

Trackmania offers you the ultimate arcade racing universe where everything is about reaching the perfect racing time.

Test your skills in over 200 tracks, experience immediate fun by challenging your friends at home (offline splitscreen) or online.

The competition lasts forever: design and share your own tracks with other players in the Trackbuilder!


• 4 ENVIRONMENTS, 4 DIFFERENT GAMEPLAYS
• CAMPAIGN MODE
• DOUBLE DRIVER
• TRACKBUILDER
0 0 0 1 https://www.youtube.com/watch?v=3piye62BYf4 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
619 CHM Tech 7 Reasons Why Windows Live Movie Maker is Awesome 0 2015-01-01 Windows Live Movie Maker is probably one of the most popular video editing programs for average PC users and video creators who don’t have the time to learn or simply can’t afford some of the higher editing programs. With that in mind I took the time to make a two video special on the good sides and down sides to this video editing program.
You might think that this is a contradictory thing to do, but as any program, this one has its perks, and down sides. So as a frequent user, I will try to be as objective as possible and point out the good as well as the bad. Have in mind, when it comes to WLMM, what you pay for it is what you get. Remember, this is just a side tool for Windows users.

7 Reasons Why Windows Live Movie Maker is Awesome:

- WLMM is free for Windows users

- Simple user interface

- High quality text captions

- Variety of rendering options

- Audio accents

- Stability

- More than meets the eye

If these are reasons enough for you to start or continue using WLMM than great. But if you still need to think about it, stay tuned for the second video of this two video special, to hear some of the biggest down sides of this video editing program.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Eureka'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=fiSlD_p43VE 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
620 CHM Tech 7 Reasons Why Windows Live Movie Maker Sucks! 0 2015-01-01 Windows Live Movie Maker if probably one of the most popular video editing programs for average PC users and video creators who don’t have the time to learn or simply can’t afford some of the higher editing programs. With that in mind I took the time to make a two video special on the good sides and down sides to this video editing program.

You might think that this is a contradictory thing to do, but as any program, this one has its perks, and down sides. So as a frequent user, I will try to be as objective as possible and point out the good as well as the bad. Have in mind, when it comes to WLMM, what you pay for it is what you get. Remember, this is just a side tool for Windows users.

In the first episode we saw seven reasons why this video editing program is awesome. But, as any other program, this one too has its downsides. Here are seven reasons why Windows Live Movie Maker can suck at times.

- No visual overlays

- Only two audio layers

- Audio mess while editing

- No customization for effects

- Poor video enhancing options

- No cropping

7 reasons why Windows Live Movie Maker is Awesome: https://www.youtube.com/watch?v=fiSlD_p43VE

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Time Stops'', ''Eureka'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=ZZP0yo1AMFc 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
627 CHM Tech Audio Effects And Multiple Audio Layers In Windows Live Movie Maker 0 2015-01-01 Using audio effects in Windows Live Movie Maker can be a bit tricky, for two main reasons. Number one, the program doesn't have any audio effects to begin with, and number two - Windows Live Movie Maker only provides you with two audio layers. So if you are working on a project with one audio layer for the speech and another for the background music, even if you did have audio effects, you have no additional layer to add them. Luckily, there is a way to work around these problems, get some free audio effects online, and use them in Windows Live Movie Maker, even if you already have two audio layers used up.

Royalty free audio effects from Soundbible: http://soundbible.com/

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Never Sleep'' (Downloaded from the YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=2x4riFHXfTc 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
638 CHM Tech Free Game Recording Software For Windows 10 0 2015-01-01 If you made a transition to Windows 10, and you're still searching for your ideal game recording software, your search has finally come to an end! In this tutorial I show you how you can use a program called MSI Afterburner to record your gameplay in full HD!
MSI Afterburner is primarily a system overclocking program, but it also has an inbuilt screen recorder, for games only!

MSI Afterburner will allow you to adjust all sorts of settings, from video resolution to frames per second (FPS) in order to get the gameplay footage that you desire.

Download link for MSI Afterburner: https://www.msi.com/page/afterburner

Watch the full tutorial to see how to download and install this program, and how to enter specific settings in order to get the best gameplay footage.

MSI Afterburner has an amazing little screen recording tool, which in my opinion beats programs like Fraps, Windows 10 Game DVR and OBS.

It has a whole variety of settings that will allow you to create the best HD gameplay videos you could imagine, and it's totally free and legal!

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music:

- Exotics by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100233
Artist: http://incompetech.com/

- Bicycle - Reunited by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100870
Artist: http://incompetech.com/

- Ponies and Balloons - YouTube Audio Library

Font:

HACKED http://davidlibeau.fr/Watch_Dogs_Font=HACKED_Title/
1 0 0 1 https://www.youtube.com/watch?v=hOHVLvXJwkY 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
652 CHM Tech History of the Windows Start Menu (1995 - 2015) 0 2015-01-01 The story of the Windows Start menu starts way back in 1992 when Windows 3.1 was the version of the OS in use. Microsoft put together a team of professionals who were tasked with observing users and coming up with an interface that would appeal to non technical people. One of the members of the team was a behavioral psychologist named Danny Oran who joined the company in the mentioned year.

He was the person who came up with the idea of a single button which opens a menu that leads to everything they may be looking for. This was a concept that would overcome the shortcomings of the Windows Program Manager of previous Windows versions, which consisted of a simple multiple document interface (MDI) which allowed users to open separate "program groups" and then execute the shortcuts to programs contained within.

The Start button was originally called System, and was placed at the top of the screen. Because the name sounded too technical, test subjects would often avoid pressing the System Button, so Microsoft decided to go for a different, more inviting name - Start! The rest was history.

Information sources:

Wikipedia - https://en.wikipedia.org/wiki/Start_menu
Business Insider - http://www.businessinsider.com/history-of-the-windows-start-button-2015-7

Video footage:

Internet Archive (www.archive.org):

- NYC Traffic Time Lapse (Free to Use HD Stock Footage)
https://archive.org/details/NycTrafficTimeLapse
Producer: Jeffrey Beach (Beachfront Productions)

- Microsoft2019
https://archive.org/details/microsoft2019pwnage

- American Engineer (Part IV)
https://archive.org/details/American1956_4
Producer: Handy (Jam) Organization
Audio/Visual Sd, C

- Bill Gates, Future Vision: A Microsoft Plus Program
https://archive.org/details/BillGatesFutureVisionAMicrosoftPlusProgramfrom1994t1K6SsJ3UaQ

- Downtown Los Angeles 2008 (time lapse) https://archive.org/details/DowntownLosAngeles2008timeLapse
Producer: Seven Pictures Inc
Production: Company www.SevenPictures.com

- Buld 2014 Microsoft
https://archive.org/details/Win8StartMenu
Producer: Microsoft

- Typing on a keyboard
https://archive.org/details/IMB_SF_R33_C8
Producer: Ivan Bridgewater

- Windows ME Introduction Video
https://archive.org/details/winme_201404

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
Producer: Microsoft

_____________________________________

DISCLAIMER:

This video contains video footage downloaded from the Internet Archive - www.archive.org.

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

Music:

''Open Highway'', ''Far Come The Days'', ''Monitors'', ''Eureka'', ''Had She Stayed'' (YouTube Audio Library)

''Firebrand'' by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)

Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100830
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=tcuSW3fx3xA 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
654 CHM Tech How To See Everything You Have Ever Searched on Google 2015 0 2015-01-01 How to see and download a log of everything you have ever searched for on Google (while being logged in to your Google account).

GOOGLE HISTORY PAGE:
https://history.google.com/

Related articles:

http://www.washingtonpost.com/news/the-intersect/wp/2015/04/20/how-to-see-everything-youve-ever-googled-if-youre-so-brave/

http://elitedaily.com/news/technology/google-feature-see-everything-ever-searched/1008243/

http://time.com/3829686/google-search-history/

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Ether'' & ''Far The Days Come'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=ROL24ecgFD8 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
670 CHM Tech HOW TO STAY SAFE ON WINDOWS XP IN 2016 0 2015-01-01 Almost 15 years after it's released, it seems that Windows XP is still a very popular operating system. Popular, but still very outdated. Now that it's been left without any updates or support from Microsoft, there's a rather big debate happening on the Internet about the safety of this OS.

The mainstream verdict goes something like this: If XP has no support all it's security holes and back doors stay unpatched! This makes it more prone to getting infected by malicious software which means that is a very unsafe OS to be using!

On the other hand, you will also hear a totally different argumentation that goes along the line that all the commotion on how XP is unsafe is mumbo jumbo, orchestrated by Microsoft who only wants you to switch to their newer products! According to this verdict a Windows XP, backed up with a bundle of internet security utilities, is as safe as any other operating system.

Even here on YouTube, you can find advocates of this argumentation, who claim to still be using XP as their every day OS, while having absolutely no problems with malicious software.
Truth be told, there is software out there that you can use to lock down your system and make it 99 percent impenetrable to malware. Why 99 percent? Because there is no system that can't be played by finding or creating a hole! That's why software updates are exist after all!

But using a combination of safety utilities that will give you this level of security will come with the cost of used up system resources! A lot of people who are truly stuck with XP because it came along with the last PC they were able to afford, don't really have that high of a system configuration. So balancing things like basic multitasking and internet security might be a difficulty that they do not know how to efficiently overcome.

Obviously, those people who have no alternative will continue using XP as it is their only option. So what can they do? Well whether you are using XP for those reasons or simply out of sentimentality, you still can secure it to a certain point and keep your system usability.

In this video, I give you my five tips for what you need to do if you are using Windows XP today!

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''New Tires'', ''In The Hall Of The Mountain King'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=Mx9v75ohIk0 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
684 CHM Tech NEW SPLINTER CELL GAME - What We Know And What We Can Expect! (2015) 0 2015-01-01 It’s been almost two years since the first release of the last installment of Ubisoft’s mega successful stealth game series Splinter Cell. With E3 2015 just around the corner, practically every Splinter Cell fan is wondering, when are we finally going to get the new Splinter Cell game and what can we expect form it?

WHAT WE KNOW:

- A new Splinter Cell game is in the works

- Sam Fisher, despite the fact that he’s getting old, will be back as the main character and protagonist of the franchise.

- The game will be released for the next gen platforms.

WHAT CAN WE SPECULATE:

STORY

One thing that is very expectable is that the story of the game will continue where Splinter Cell Blacklist left off (As in the novel Splinter Cell Blacklist Aftermath). Blacklist left a few loose ends, for example the parties that stood behind the Engineers.

If the story continues where it left off, it would be expected that the Fourth Echelon team from Blacklist will be in back in action, maybe even with an additional member. Who you ask? Andriy Kobin!

GAMEPLAY

When it comes to gameplay, Ubisoft might be going for a concept similar to the one in Blacklist, as a great number of the fans loved it. Then again, if you look at the evolution of Splinter Cell, there are really no two installments that are the same. Similar, yes! But identical, no!

RELEASE DATE

It’s impossible to be accurate in making these assumptions, as there are exactly no official statements from Ubisoft, on when the game will be released. The thing that we do know is that E3 2015 is taking place in a month. If we take a look at the release schedule for previous Splinter Cell games, we can see that they come out in about every two to three years. So an announcement in June at E3 is something that is highly expected and anticipated by gamers.

IRONSIDE

Another big question fans are asking is about the voice actor of Sam Fisher. Will Michael Ironside return? If you ask me what I think, than I would have to say that I honestly don’t think he’ll be back, at least not in the next Splinter Cell. Ironside himself stated in a Reddit AMA that since Ubisoft is now using motion capture for Splinter Cell, he doesn’t think that fans would be happy watching a 65 year old man as Sam Fisher.

WANT MORE SPLINTER CELL FAN VIDEOS? TAKE A LOOK AT:

- TEN YEARS OF CHAOS THEORY: https://www.youtube.com/watch?v=4Az6HmhnFsE

- TOP 10 SPLINTER CELL MOMENTS: https://www.youtube.com/watch?v=8tHKtGNQWbk

- THE WOMEN OF SPLINTER CELL: https://www.youtube.com/watch?v=Wa9U1_0WwwE

- THE DARK SIDE OF SPLINTER CELL: https://www.youtube.com/watch?v=GwkQ8VCNOMo

- TAKING DOWN HEAVY GUARDS: https://www.youtube.com/watch?v=-Ezx7hZ7QFY

- SPLINTER CELL BLASKLIST GAMEPLAY SERIES: https://www.youtube.com/playlist?list=PLCNnBbKeYchqQmU4fVzHwJVvOTYAmv-KB

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Cold Killa'' (YouTube Audio Library)

The content in this video is used under the right of fair use.
1 0 0 1 https://www.youtube.com/watch?v=wU-zfXworw8 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
694 CHM Tech Ten Years of Chaos Theory - A Look Back at The Best Game in The Splinter Cell Series! 0 2015-01-01 Ten years ago, Ubisoft released the third installment of their mega successful stealth game series, named Splinter Cell Chaos Theory. With its amazing game play, complex story, and lifelike graphics for its time, it didn’t take long for Chaos Theory to receive praise not only from game critics and developers, but more importantly from millions of fans that the series had already attracted with the previous two releases – Splinter Cell and Splinter Cell Pandora Tomorrow. 10 years later, the game still enjoys praise, being labeled by a mass majority of fans as the best one in the entire Splinter Cell franchise. So in this video we will go back and take a quick look at what made Chaos Theory what it was a decade ago, and still remains today.

WANT MORE SPLINTER CELL FAN VIDEOS? TAKE A LOOK AT:

- TOP 10 SPLINTER CELL MOMENTS: https://www.youtube.com/watch?v=8tHKtGNQWbk

- THE WOMEN OF SPLINTER CELL: https://www.youtube.com/watch?v=Wa9U1_0WwwE

- THE DARK SIDE OF SPLINTER CELL: https://www.youtube.com/watch?v=GwkQ8VCNOMo

- TAKING DOWN HEAVY GUARDS: https://www.youtube.com/watch?v=-Ezx7hZ7QFY

- SPLINTER CELL BLASKLIST GAMEPLAY SERIES: https://www.youtube.com/playlist?list=PLCNnBbKeYchqQmU4fVzHwJVvOTYAmv-KB

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Deep Horrors'' (YouTube Audio Library)

Source: Wikipedia & Splinter Cell Wiki

The content in this video is used under the right of fair use.
1 0 0 1 https://www.youtube.com/watch?v=4Az6HmhnFsE 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
699 CHM Tech The Women Of SPLINTER CELL (2015) 0 2015-01-01 Let’s lay the super spy ass kicking of Sam Fisher aside for a while, cause this Splinter Cell fan video is gonna be all about the ladies!

With all that sneaking around in the shadows, stopping wars and saving the world from terrorists he has on his agenda, Mr. Fisher never really has much time for a little female affection, if you know what I mean. Heck, he barely even had any time for his own daughter, with whom he communicates by phone through most of the series.

But nevertheless, the game is marked by some very influential female characters that make a crucial impact not only on the emotional state of our main protagonist, but even on the outcome of the game play and storyline itself.

Tom Clancy's Splinter Cell is a series of award-winning stealth video games, the first of which was released in 2002, and their tie-in novels. The protagonist, Sam Fisher, is a highly trained agent of a fictional black-ops sub-division within the NSA, dubbed "Third Echelon" (Later ''Fourth Echelon'').

Sources:

The Splinter Cell Wiki http://splintercell.wikia.com/wiki/Splinter_Cell_Wiki

Wikipedia
http://en.wikipedia.org/wiki/Tom_Clancy%27s_Splinter_Cell

TOP 10 Splinter Cell Moments: https://www.youtube.com/watch?v=8tHKtGNQWbk

You can watch my Splinter Cell Blacklist series by clicking here: https://www.youtube.com/playlist?list=PLCNnBbKeYchqQmU4fVzHwJVvOTYAmv-KB

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________


Music: ''From Russia With Love'', ''Gymnopedie'', ''Doll Dancing'' (YouTuBe Audio Library)

Footage/Images: YouTube, Google Images

The content in this video is used under the right of fair use.
1 0 0 1 https://www.youtube.com/watch?v=Wa9U1_0WwwE 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
701 CHM Tech TOP 10 SPLINTER CELL Moments (2015) 0 2015-01-01 Tom Clancy's Splinter Cell is a series of award-winning stealth video games, the first of which was released in 2002, and their tie-in novels. The protagonist, Sam Fisher, is a highly trained agent of a fictional black-ops sub-division within the NSA, dubbed "Third Echelon" (Later ''Fourth Echelon'').

http://en.wikipedia.org/wiki/Tom_Clancy's_Splinter_Cell

Up to this date, the series had six major instalments: Splinter Cell, Splinter Cell Pandora Tomorrow, Splinter Cell Chaos Theory, Splinter Cell Double Agent, Splinter Cell Conviction and Splinter Cell Blacklist

In this video you can see my choice of top 10 moments in the series.

Before watching the video, I would like you to take two important things in consideration:

1. This list is based on a subjective an opinion, so if you don't agree with it, that's perfectly fine!
2. This is not a TOP 10 channel. I'm simply a huge fan of the franchise, who recently did a Blacklist gameplay series on this channel, after which I thought: why not make a TOP 10 video. So please don't mind the lack of fancy TOP 10 erects.

With that in mind, I hope you enjoy these TOP 10 Splinter Cell moments.

DISCLAIMER:

This video contains short clips of gameplay uploaded by other YouTube creators.

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Deep Horrors'' (YouTuBe Audio Library)

Footage/Images: YouTube, Google Images

The content in this video is used under the right of fair use.
1 0 0 1 https://www.youtube.com/watch?v=8tHKtGNQWbk 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
703 CHM Tech TOP 6 Hardest Splinter Cell Missions 0 2015-01-01 MORE SPLINTER CELL FAN VIDEOS https://www.youtube.com/watch?v=8tHKtGNQWbk
SPLINTER CELL BLACKLIST SERIES https://www.youtube.com/watch?v=IRfC6VUoGqE&list=PLCNnBbKeYchqQmU4fVzHwJVvOTYAmv-KB&index=1

It's not a strategy, but it's one hell of a strategic game. Ever since it was first introduced in 2002, Splinter Cell has always been the crown representative of realistic stealth gaming. Even on normal difficulty, it's enough to get shot two or three times and your dead! A gun blazing approach is doable, but very rewarding. The game motivates you to be a ghost and stay undetected. But going from one gameplay style to another, you might ask yourself, which one is harder?

Here's my countdown od the TOP 6 hardest Splinter Cell missions:

#6 Splinter Cell Chaos Theory - Bath House
#5 Splinter Cell Conviction - Third Echelon HQ
#4 Splinter Cell Blacklist - Denver
#3 Splinter Cell Double Agent - Sea of Okhotsk
#2 Splinter Cell Pandora Tomorrow - LAX
#1 Splinter Cell - Abattoir

This video contains short clips of gameplay uploaded by other YouTube creators.

Links for used gameplay footage:

https://www.youtube.com/watch?v=NJl1A8P0Ngg
https://www.youtube.com/watch?v=w699d7dSQM4
https://www.youtube.com/watch?v=Fs5GO6EBNWs

DISCLAIMER:

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ''fair use'' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
The author of this video believes in good faith that it constitutes fair use as per 17 U.S.C § 107.

The countdown consists of one mission per installment. The older Splinter Cell games were much harder than newer ones, like Conviction or Blacklist, so this system was countdown system was applied in order to get something from every installment.

The countdown is based on my opinion and gaming experience. If you disagree, that's perfectly normal!

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music: ''Cylinder Eight'' (YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=5DHaGS-EWjY 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
707 CHM Tech WINDOWS 10 Screen Recorder 0 2015-01-01 Did you know that Windows 10 comes with it's very own screen recording software, which you can use to record your computer screen activity and gameplay.

First off, it's important to say that the screen recording tool that comes with Windows 10 is not a stand alone program, but an extra feature that comes along with the XBOX app.

Even though it's mainly intended for gameplay recording, you can use it the same way to record apps in windows.

Recording with it really cant be more simple. First you need to open your XBOX app and keep it running in the background. Then, while running a certain game or app, you press the windows and G keys on your keyboard, which will cause the Game bar to pop up.

If that's the first time you're recording a particular app, you'll be prompted with a message asking ''Do you want to open game bar'', to which you will reply by clicking on ''Yes this is a game''.

To start capture, you simply press the record button, or the win+alt+r buttons on your keyboard.

To stop you can press that same hotkey combination, or you can simply exit the game or app you were using, and the recording will automatically send. By default, your video will be stored as a mp4 file in the ''Capture'' folder, located in your user videos folder.

You can also find them in the Video DDR section of XBOX, where you are able to share, trim and rename the clip, open it's folder location or delete it.

Besides normal recording, you can also take a screen shot or set a background recording process.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
1 0 0 1 https://www.youtube.com/watch?v=OfPbr1mRDuo 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
709 CHM Tech Windows 10 Game DVR Microphone Recording Option 0 2015-01-01 If you update your Windows 10 OS to the latest version, among other changes, you will find that the screen recorder now has the ability to record your microphone.

So now, if you hit Wing on your keyboard in order to bring up the Game bar, you can click on the gear icon on the left side to open the quick settings. And then if you click on the Audio tab, you can record your voice over by checking ''Record my microphone when I record game clips''.

This option can also be entered through the XBOX app, by going to settings, and accessing the Game DVR tab. When you scroll down to the audio section, you will find the same option right there.
In addition, here it tells you that you can toggle the mic on and off at certain sessions by pressing the win + alt + m hotkey combination.

This is an exciting update to Windows 10 Game DVR, because it's a problem that the gaming community has been emphasizing ever since Windows 10 has been released, and as it turns out, Microsoft lessened, and finally took all the constructive criticism and suggestions into consideration!
_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts
______________________________________

Music:

- Bicycle - Reunited by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)
Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100870
Artist: http://incompetech.com/
1 0 0 1 https://www.youtube.com/watch?v=1NK83nUsLqo 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
742 Copy-Me Copy-Me #4, Finally! 0 2015-01-01 Hey everyone! As you may know, you've worked a lot of months for this latest episode, and even if we've passed all the deadlines imaginable, we're still here, kicking asses. And be sure this next one is going to rock.

Episode #4 is almost complete (still little tinkering to do, here and there) and the launch will be next Monday. So finally something to get excited to :) And thank you so much for waiting!

---------- CREDITS ----------
++ "Rocket" element by Ealancheliyan s from the Noun Project // CC-BY: https://thenounproject.com/term/rocket/36489/
++ Music by Boxcat Games - "Ecommerce" // CC-BY: http://freemusicarchive.org/music/BoxCat_Games/Nameless_the_Hackers_RPG_Soundtrack/BoxCat_Games_-_Nameless-_the_Hackers_RPG_Soundtrack_-_09_eCommerce
1 0 0 1 https://www.youtube.com/watch?v=AE-jeqKuxZc 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
746 Copy-Me Piracy Part 1: Pirates Are The Best Customers 0 2015-01-01 The real, verifiable and independent research data shows us that not only are “pirates” not affecting markets, but that they’re actually positively contributing to it. Pirates are the best customers.

Go see part 2 here: https://www.youtube.com/watch?v=FMo6e7VXKkg

Copy-Me is a webseries debunking the myths of copying.

-------------------------------------------------------------------------------------------
STUDIES, SOURCES, WORKS USED, FURTHER READING & A LARGER ANALYSIS ON PIRACY:
http://copy-me.org/2015/10/ep-4-pirates-anti-piracy-artists

-- We now have a Patreon page! https://www.patreon.com/copyme

-- Learn more about copyright and piracy: http://copy-me.org/resources/recommended-works/

-- Want to help translate the episode? http://copy-me.org/contribute/copy-webseries-subtitles/

-------------------------------------------------------------------------------------------
TRANSLATIONS BY:
Emilia Givropoulou(Greek), Ogat "Thiago Spinardi"(Portuguese-Brazilian). Thank you!

-------------------------------------------------------------------------------------------
FIND US HERE:
https://www.facebook.com/copymeorg
https://twitter.com/copymeorg
http://copy-me.org/
1 0 0 1 https://www.youtube.com/watch?v=XXxzWgl3nHs 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
747 Copy-Me Piracy Part 2: Distribution, Quality & Pricing 0 2015-01-01 If we want less piracy, we have to understand why it’s there in the first place. All “pirates” are underserved customers and insisting only on tougher laws won’t get you more sales.

Go see part 1 here: https://www.youtube.com/watch?v=XXxzWgl3nHs

Copy-Me is a webseries debunking the myths of copying.

-------------------------------------------------------------------------------------------
STUDIES, SOURCES, WORKS USED, FURTHER READING & A LARGER ANALYSIS ON PIRACY:
http://copy-me.org/2015/10/ep-4-pirates-anti-piracy-artists

-- We now have a Patreon page! https://www.patreon.com/copyme

-- Learn more about copyright and piracy: http://copy-me.org/resources/recommended-works/

-- Want to help translate the episode? http://copy-me.org/contribute/copy-webseries-subtitles/

-------------------------------------------------------------------------------------------
TRANSLATIONS BY:
Emilia Givropoulou(Greek). Thank you!

-------------------------------------------------------------------------------------------
FIND US HERE:
https://www.facebook.com/copymeorg
https://twitter.com/copymeorg
http://copy-me.org/
1 0 0 1 https://www.youtube.com/watch?v=FMo6e7VXKkg 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
757 TheDevelopmentOfWindows How to mod a Skyscrapersim Building Part 3 'Lift Texturing' 0 2015-01-01 This is a remake to my first failed attempt of this series. Download links:
Part 1:
Notpad++: https://notepad-plus-plus.org/
Skyscrapersimulator: http://www.skyscrapersim.com/index.shtml
Edited Building: https://www.dropbox.com/s/70dv92yx537sgeq/Simple%20-%20Mod.bld?dl=0
1 0 0 1 https://www.youtube.com/watch?v=TVu3cGb9zoE 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
777 TheDevelopmentOfWindows The Development of Skyscrapersim 0 2014-01-01 I look at the development of the popular lift / elevator simulation Skyscrapersimulator 1 0 0 0 https://www.youtube.com/watch?v=tiOTfNLChlw 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
661 CHM Tech How to make YouTube channel art with Paint and Windows Movie Maker (2014) 0 2014-01-01 Lately I've been seeing a lot of posts in google+ communities where people ask questions like: how do I make my YouTube channel more interesting, how do I make intros, outros, thumbnails and all that cool stuff.

In this video I'm gonna show you how you can make all that cool stuff, using nothing else but Microsoft paint and Windows live movie maker.

Don't get me wrong, this is far from perfect, and I have to say that I got a lot of ideas on how I should of done some things differently after I uploaded the material. The intention in the first place wasn't to make something phenomenal, but to show you that you can make interesting channel art in the simplest of programs, with just a bit of creativity.

It took me no more than 20-25 minutes to make everything shown in this video, so imagine what you could make with a little more devotion. On the other hand, if you decide to learn how to use Photoshop or Gimp, then you're just a few video tutorials away from being able to make very high quality channel art.

Check out the art from this video on this link: https://www.youtube.com/channel/UCUTKYbHlwZFHMAgiX9-E8vg

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Song: ''Parasail'' (Downloaded from the YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=lAhepISghPQ 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
680 CHM Tech Minecraft Speed Art in GIMP 0 2014-01-01 Minecraft characters in the big city. Just some speed art made in GIMP 2.8. Minecraft motivated! Hope you like it. If you'd like me to mail it to you, just drop me a message.

Download pics at:

City street

http://www.1zoom.me/en/wallpaper/354276/z705.7/%26original=1

Minecraft characters

http://www.gfx-bin.com/images/storage/yoyojonas_skin.png

Hope you like the speed art. Leave a comment if you would like to see more YouTube channel art videos.

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Song: ''Smart Riot'' (YouTube Audio Library)
0 0 0 1 https://www.youtube.com/watch?v=8-SUzhdySEg 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
686 CHM Tech Photo Math Review - An App That Does Math! 0 2014-01-01 Photo Math is an app that uses your phone's camera to scan mathematical problems, and then uses its algorithms to calculate the correct result. If you want to see how the app got to the particular result, you simply tap a little button and it's shows you hot it calculated the result, step by step.

Currently it's available on the Apple and Microsoft app stores, and according to the info on the official website, the Android version is going to be online in early 2015.

Photo Math site: https://photomath.net/

For IOS: https://itunes.apple.com/us/app/photomath/id919087726

For Windows Phone: http://www.windowsphone.com/hr-hr/store/app/photomath/1f25d5bd-9e38-43f2-a507-a8bccc36f2e6

_____________________________________

► SUBSCRIBE: https://www.youtube.com/c/channelhotmonkey

► FOLLOW ME ON TWITTER: https://twitter.com/Hotmonkey000

► GOOGLE +: https://plus.google.com/+ChannelHotmonkey/posts

______________________________________

Music: ''Spring In My Step'', ''Space Coast'', (Downloaded from the YouTube Audio Library)

Sound Effects - Sound Bible
http://soundbible.com/
1 0 0 1 https://www.youtube.com/watch?v=WdrVccsQo28 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
716 CHM Tech YouTube Mobile Upload Hack – Prevent a Major Catastrophe on Your YouTube Channel 0 2014-01-01 If you're a YouTube creator with a fully functional channel, than you're given the option to upload videos from a mobile device by simply emailing it to a specific email address. That address is different for every user, and it's displayed in your YouTube settings page.

Now, why am I hiding mine? Thats because anyone who has access to it can upload a video to my channel by simply emailing it to that same address. They don't need to be logged in to my channel, or have my username and password! They can simply upload whatever video to my channel by sending a single email with a video attachment.

This is very important to know especially for tutorial creators like myself, who constantly show activities on your computer screen.

Why did I mention the phrase major catastrophe in the title? For example,if someone knows your address they can upload content that goes against youtube's copyright policy. They can upload sexual content that goes against the community guidelines, or they can simply spam your subscribers with random videos, stating things that aren't your personal opinion. By the time you figure this out, they can possibly cause you quite some problems with your channel.


If you find yourself in this situation, fortunately you can easily erase an unwanted videos that somebody else uploaded to your channel, and change your mobile upload password.

_______________________________________

If you enjoyed this video then...

Subscribe to: http://www.youtube.com/subscription_center?add_user=hotmonkey000

Follow on Google+: https://plus.google.com/u/0/b/112378933174713773825/112378933174713773825/posts

Follow on Twitter: https://twitter.com/Hotmonkey000

______________________________________

Song: ''Space Coast'' (Downloaded from the YouTube Audio Library)
1 0 0 1 https://www.youtube.com/watch?v=H-72btDWd_I 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
814 Windows My Windows 8.1 0 2013-01-01 No matter shape or size, the New Windows adjusts to fit your life. Upgrade to Windows 8.1 today: http://msft.it/GetWindows81 0 0 0 1 https://www.youtube.com/watch?v=2iab5qC_My0 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
761 TheDevelopmentOfWindows My New intro 0 2013-01-01 Hopefully if I remember. I will put this at the start of every video of mine! (Ones that I have already uploaded I will not!) I hope you enjoy it! 0 0 0 1 https://www.youtube.com/watch?v=8DDDX9BO4_I 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
819 internetexplorer Welcome to a more beautiful web - 30 second Internet Explorer commercial 0 2012-01-01 See the newest version of Internet Explorer TV commercial. 0 0 0 1 https://www.youtube.com/watch?v=SzTdgE04uA8 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
820 internetexplorer Welcome to a more beautiful web - 60 second Internet Explorer commercial 0 2012-01-01 See the newest version of Internet Explorer TV commercial. 0 0 0 1 https://www.youtube.com/watch?v=WA8sLsM3McU 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
847 Windows Your PC, Simplified - Windows 7 0 2010-01-01 See every open window right from the taskbar, type to search to find almost anything right from your desktop, snap windows side by side, and personalize your workspace. You asked for a simpler PC, we listened.

http://www.Microsoft.com/Windows
1 0 0 1 https://www.youtube.com/watch?v=-Y6Of6KtOYo 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
607 Rick Astley Rick Astley - Never Gonna Give You Up (Official Music Video) 0 2009-01-01 The official video for “Never Gonna Give You Up” by Rick Astley
Taken from the album ‘Whenever You Need Somebody’ – deluxe 2CD and digital deluxe out 6th May 2022 Pre-order here – https://RickAstley.lnk.to/WYNS2022ID

“Never Gonna Give You Up” was a global smash on its release in July 1987, topping the charts in 25 countries including Rick’s native UK and the US Billboard Hot 100. It also won the Brit Award for Best single in 1988. Stock Aitken and Waterman wrote and produced the track which was the lead-off single and lead track from Rick’s debut LP “Whenever You Need Somebody”. The album was itself a UK number one and would go on to sell over 15 million copies worldwide.

The legendary video was directed by Simon West – who later went on to make Hollywood blockbusters such as Con Air, Lara Croft – Tomb Raider and The Expendables 2. The video passed the 1bn YouTube views milestone on 28 July 2021.

Subscribe to the official Rick Astley YouTube channel: https://RickAstley.lnk.to/YTSubID

Follow Rick Astley:
Facebook: https://RickAstley.lnk.to/FBFollowID
Twitter: https://RickAstley.lnk.to/TwitterID
Instagram: https://RickAstley.lnk.to/InstagramID
Website: https://RickAstley.lnk.to/storeID
TikTok: https://RickAstley.lnk.to/TikTokID

Listen to Rick Astley:
Spotify: https://RickAstley.lnk.to/SpotifyID
Apple Music: https://RickAstley.lnk.to/AppleMusicID
Amazon Music: https://RickAstley.lnk.to/AmazonMusicID
Deezer: https://RickAstley.lnk.to/DeezerID

Lyrics:
We’re no strangers to love
You know the rules and so do I
A full commitment’s what I’m thinking of
You wouldn’t get this from any other guy

I just wanna tell you how I’m feeling
Gotta make you understand

Never gonna give you up
Never gonna let you down
Never gonna run around and desert you
Never gonna make you cry
Never gonna say goodbye
Never gonna tell a lie and hurt you

We’ve known each other for so long
Your heart’s been aching but you’re too shy to say it
Inside we both know what’s been going on
We know the game and we’re gonna play it

And if you ask me how I’m feeling
Don’t tell me you’re too blind to see

Never gonna give you up
Never gonna let you down
Never gonna run around and desert you
Never gonna make you cry
Never gonna say goodbye
Never gonna tell a lie and hurt you

#RickAstley #NeverGonnaGiveYouUp #WheneverYouNeedSomebody #OfficialMusicVideo
1 0 0 1 https://www.youtube.com/watch?v=dQw4w9WgXcQ 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
865 Croash TrackMania 2 Announcement 0 2009-01-01 April 26th 2011 update:
NADEO and Ubisoft have released the first Trackmania² Trailer called "Canyon". Check it out here:
http://www.youtube.com/watch?v=5_-Cq7NgkwQ

====================
This is the first TrackMania 2 video uploaded on Youtube, I've just recorded this 3 hours ago from the "Festival du Jeu Vidéo 2009" held in Paris.

2 videos were shown during this presentation, one showing the new Track creation mode and another one showing what Trackmania 2 will look like ingame.
I've only recorded 3/4 of the video (battery owned me), but still, I hope you enjoy it.

Hope to see the 2 trailers in HD soon.

Sceenshots from the Festival :
http://www.noelshack.com/up/aab/img_2602-216b6a6839.jpg - Florent Castelnérac from NADEO.
http://www.noelshack.com/up/aab/img_2603-9a0f2e9c41.jpg - Florent with the guy from the Festival

http://www.noelshack.com/up/aab/img_2608-ea56db7a66.jpg - Announcing Light Effects everywhere!

http://www.noelshack.com/up/aab/img_2609-156eb15892.jpg - Announcing Split/Screen Multiplayer.

http://www.noelshack.com/up/aab/img_2610-94b3f08a72.jpg - Announcing ManiaScript , a programming Script created for TrackMania 2.

http://www.noelshack.com/up/aab/img_2611-f89adc0579.jpg - Saying that TrackMania 2 is named "2" because now, people can create their own track parts, the entire game is fully customisable now!

Other screens from the conference:
http://www.noelshack.com/up/aab/img_2612-1ce2d80175.jpg

http://www.noelshack.com/up/aab/img_2613-927015bc99.jpg


TrackMania is developped by NADEO, a French game studio.

If you do not know TrackMania, go check the official website and download the full game "TrackMania Forever : Nations" on http://www.trackmania.com/
0 0 0 0 https://www.youtube.com/watch?v=QjpV9DuoXSs 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
644 CHM Tech GOM Player - Universal Media Player 0 2009-01-01 It's known to be one of the most stable media players out there! If you're having trouble playing different audio or video file types with your media players than the GOM Player is a great all in one media player that supports a whole bunch of different audio and video file types.

Download:
http://download.cnet.com/GOM-Media-Player/3000-13632_4-10551786.html?part=dl-GOMMediaP&subj=dl&tag=button&cdlPid=11009157
1 0 0 1 https://www.youtube.com/watch?v=iRyb7QDskcc 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
687 CHM Tech Rocket dock vs Windows Task bar 0 2009-01-01 My opinion on why windows users don't need to use any dock applications. The task bar has all the functions of any dock application plus more while docks are probably more easy on the eyes! Sorry if it ticks you off, it probably will if you are a fan of the MAC look and these sort of apps, it's just my opinion! 1 0 0 1 https://www.youtube.com/watch?v=yEEUuui-mGc 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A
625 CHM Tech AP Guitar Tuner demo 0 2008-01-01 This is a very simple, easy to use guitar tuner that you can download from the net for free and it has so many diferent typs of tunings you can try. 1 0 0 1 https://www.youtube.com/watch?v=O_BdERoB0ho 0 . . . . N/A Kolmanda osapoole videod Third-party videos N/A . . 0 N/A N/A N/A N/A N/A