Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
demo: use FOSDEM videos instead
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentbernat committed Aug 28, 2021
1 parent cdb0844 commit b5164bc
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions lib/db/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,36 +50,36 @@ function initialize() {
return models.Group.unassigned();
})
.then(function() {
var g = new models.Group('Apple Aerial',
{ description: 'Apple aerial videos' });
var g = new models.Group('FOSDEM',
{ description: 'FOSDEM videos' });
return g.create()
.then(function() {
return g
.addDashboard('http://a1.phobos.apple.com/us/r1000/000/Features/atv/AutumnResources/videos/comp_GL_G004_C010_v03_6Mbps.mov',
{ description: 'Greenland',
.addDashboard('https://video.fosdem.org/2021/D.emulator/cycle_perfect.mp4',
{ description: 'Cycle-perfect is an imperfect marketing term',
timeout: 120 });
})
.then(function() {
return g
.addDashboard('http://a1.phobos.apple.com/us/r1000/000/Features/atv/AutumnResources/videos/comp_DB_D011_D009_SIGNCMP_v15_6Mbps.mov',
{ description: 'Dubai',
.addDashboard('https://video.fosdem.org/2021/D.emulator/pcsx2.mp4',
{ description: 'The Playstation 2: from Emotion to Emulation',
timeout: 120 });
})
.then(function() {
return g
.addDashboard('http://a1.phobos.apple.com/us/r1000/000/Features/atv/AutumnResources/videos/comp_LA_A005_C009_v05_t9_6M.mov',
{ description: 'Los Angeles',
.addDashboard('https://video.fosdem.org/2021/D.emulator/ntsc.mp4',
{ description: 'Emulating the full NTSC stack',
timeout: 120 });
})
.then(function() {
return g
.addDashboard('http://a1.phobos.apple.com/us/r1000/000/Features/atv/AutumnResources/videos/b1-4.mov',
{ description: 'San Francisco',
.addDashboard('https://video.fosdem.org/2021/D.emulator/super_mario.mp4',
{ description: 'Do you even emulate, (Super Mario) bro?',
timeout: 120 });
});
})
.then(function() {
var g = new models.Group('Videos',
var g = new models.Group('Youtube',
{ description: 'Youtube videos' });
return g.create()
.then(function() {
Expand Down

0 comments on commit b5164bc

Please sign in to comment.