This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILE "" | |
TRACK 1 AUDIO | |
TITLE "Book One: Dune — Chapter 1" | |
INDEX 01 0:0:00 | |
TRACK 2 AUDIO | |
TITLE "Chapter 2" | |
INDEX 01 35:22:46 | |
TRACK 3 AUDIO | |
TITLE "Chapter 3" | |
INDEX 01 62:48:28 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Delays the script execution for a specified amount of time. Returns a promise that gets resolved after `amount` ms. Must be called in an `async` function with `await`. | |
* @param {Number} amount The length in ms. Default: `1000`. | |
* @returns {Promise} The promise. | |
*/ | |
function sleep(amount = 1000) { | |
return new Promise((resolve) => { | |
setTimeout(resolve, amount); | |
}); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Normalizes a `value` between `min` and `max` and then casts it onto a range between `rangeMin` | |
* (defaults to 0) and `rangeMax` (defaults to 1). The initial normalization can be clamped between | |
* 0 and 1 (`clamp`, defaults true). The return value describes where `value` would lay if `min` | |
* and `max` were represented by the `rangeMin` and `rangeMax` range. | |
* | |
* Read as: "value is to min and max as result is to rangeMin and rangeMax" | |
* | |
* @param {number} value The value to cast. | |
* @param {number} min The lower value of the normalization set. `min < max` must be true. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Modes: | |
// "Smooth" spreads the number list so they are as close together as possible (+- 1). E.g. 23 in 6 parts = [ 4, 4, 4, 4, 4, 3 ] | |
// "Tight" has 1 number with a "rest" value, and the remaining numbers identical to each other. E.g. 23 in 6 parts = [ 8, 3, 3, 3, 3, 3 ] | |
const Mode = { | |
Smooth: 1, | |
Tight: 2, | |
}; | |
function getIntParts(number, numParts, mode = Mode.Smooth) { | |
const val = number / numParts; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var sleep = (ms = 1000) => { | |
return new Promise((resolve) => setTimeout(resolve, ms)); | |
}; | |
async function deleteEmptyFolders(startIndex = 0) { | |
const config = { | |
sleepBetweenFolder: 250, | |
sleepAfterLinkClick: 100, | |
sleepAfterEditClick: 500, | |
sleepAfterDeleteClick: 1200, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GIANTS Engine Runtime 5.0.1 (build date: Mar 28 2014) | |
Copyright (c) 2008-2012, GIANTS Software GmbH (www.giants-software.com), All Rights Reserved. | |
Copyright (c) 2003-2012, Christian Ammann and Stefan Geiger, All Rights Reserved. | |
Application: FarmingSimulator2013 | |
Main System | |
Cpu Name: Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz | |
Cpu Core(s): 4 @ 2.4 GHZ | |
OS: Windows NT 6.2 64-bit | |
Physics System | |
Driver: NVIDIA PhysX Runtime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pos | |
[type: string] | |
[accepts: 'flt flt' (2D flt vector)] | |
[desc: position of the waypoint] | |
angle | |
[type: float] | |
[accepts: 'flt'] | |
[desc: vector angle to next waypoint (in degrees) (bearing to the meridian)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function courseplay:openCloseCover(self) | |
--courseplay:debug("self.cp.tipperHasCover = " .. tostring(self.cp.tipperHasCover), 3); | |
if self.cp.tipperHasCover then | |
for i=1, table.getn(self.cp.tippersWithCovers) do | |
local tIdx = self.cp.tippersWithCovers[i]; | |
local tipper = self.tippers[tIdx]; | |
--INFO: setPlane(true) = open / setPlane(false) = closed | |
if tipper.plane.bOpen ~= nil and (self.ai_mode == 1 or self.ai_mode == 2 or self.ai_mode == 5) then | |
--courseplay:debug(string.format("recordnumber=%s, maxnumber=%s, currentTipTrigger=%s, plane.bOpen=%s", tostring(self.recordnumber), tostring(self.maxnumber), tostring(self.currentTipTrigger ~= nil), tostring(tipper.plane.bOpen)), 3); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="es-ES"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width"> | |
<title>Toptaller Newsletter Especial — Horario verano</title> | |
<style type="text/css"> | |
body { | |
background-color:#E9E9E9; |
NewerOlder