Click here to Skip to main content
15,898,134 members

Comments by TaRoshka (Top 3 by date)

TaRoshka 5-Dec-15 6:04am View    
Let me explain how it works. I have buit a script that executes the import. If the import is not done, this script tells me the reason why it happened. so i easily can isolate the problem from the back-end (if is the problem in the backend ).This system is integrated with Dynamic NAV, so i dont mess up with database,there is a service that gives me the data i want to export, and my script brings them into a temporary database, than a cron job updates this temporary database everyday. Even this part is easy for me to monitor the process, if an error happens.Now i need to automate further the system.The imported files have a path in server. suppose...import/archive/file1.txt...In those cases that import is not completed, than the import files are located....import/file1.txt. I have to create "an agent" who checks this path for me, if the txt files are located into the second path i provided.And in case it finds any file there, than notify me:"Hello, i have found that import has problems.... Lucky you..." :D
TaRoshka 4-Nov-15 8:50am View    
nope it didnt:(
When i added the code below the html page it worked perfectly. dont know why isnt working .
TaRoshka 3-Nov-15 10:47am View    
var $bubble = $('.bubble');

function bubbles() {

// Settings

// Calculate a random number of bubbles based on our min/max
var bubbleCount = min_bubble_count + Math.floor(Math.random() * (max_bubble_count + 1));

// Create the bubbles
for (var i = 0; i < bubbleCount; i++) {
$bubble.append('<div class="bubble-container"><div class="bubble"></div></div>');
}

// Now randomise the various bubble elements
$bubble.find('.bubble-container').each(function(){

// Randomise the bubble positions (0 - 100%)
var pos_rand = Math.floor(Math.random() * 101);

// Randomise their size
var size_rand = min_bubble_size + Math.floor(Math.random() * (max_bubble_size + 1));

// Randomise the time they start rising (0-15s)
var delay_rand = Math.floor(Math.random() * 16);

// Randomise their speed (3-8s)
var speed_rand = 3 + Math.floor(Math.random() * 9);

// Random blur
var blur_rand = Math.floor(Math.random() * 3);

// Cache the this selector
var $this = $(this);

// Apply the new styles
$this.css({
'left' : pos_rand + '%',

'-webkit-animation-duration' : speed_rand + 's',
'-moz-animation-duration' : speed_rand + 's',
'-ms-animation-duration' : speed_rand + 's',
'animation-duration' : speed_rand + 's',

'-webkit-animation-delay' : delay_rand + 's',
'-moz-animation-delay' : delay_rand + 's',
'-ms-animation-delay' : delay_rand + 's',
'animation-delay' : delay_rand + 's',

'-webkit-filter' : 'blur(' + blur_rand + 'px)',
'-moz-filter' : 'blur(' + blur_rand + 'px)',
'-ms-filter' : 'blur(' + blur_rand + 'px)',
'filter' : 'blur(' + blur_rand + 'px)',
});

$this.children('.bubble').css({
'width' : size_rand + 'px',
'height' : size_rand + 'px'
});

});
}

// In case users value their laptop battery life
// Allow them to turn the bubbles off
$('.bubble-toggle').click(function(){
if($bubble.is(':empty')) {
bubble();
$bubble.show();
$(this).text('Bubbles Off');
} else {
$bubble.fadeOut(function(){
$(this).empty();
});
$(this).text('Bubble On');
}

return false;
});

bubble();