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
<?php | |
if(!defined('__IN_SYMPHONY__')) die('<h2>Error</h2><p>You cannot directly access this file</p>'); | |
require_once(TOOLKIT . '/class.event.php'); | |
define('DIR', rtrim(dirname(__FILE__), '\\/')); | |
Class eventemailTestCase extends Event { | |
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 http = require('http'); | |
var request = function (options) { | |
var req = http.request({ | |
hostname: 'PLEASE ENTER YOUR HOST NAME HERE, WITHTOUT http://', | |
port: 80, | |
path: options.path, | |
method: options.verb || 'GET', | |
headers: options.headers |
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
find . -iname .git -follow -exec svn rm {} \; |
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
// Forked: https://gist.github.com/nitriques/6583457 | |
(function addXhrProgressEvent() { | |
var originalXhr = $.ajaxSettings.xhr; | |
$.ajaxSetup({ | |
progress: $.noop, | |
upload: $.noop, | |
xhr: function () { | |
var self = this; | |
var req = originalXhr(); | |
if (req) { |
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
@echo off | |
rem go to s: | |
s: | |
rem echo banner | |
echo Ubuntu backup manager | |
echo. | |
pause |
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
alias l='ls -CF' | |
alias home='cd ~/' | |
alias apt-get='aptget' | |
alias egrep='egrep --color=auto' | |
alias fgrep='fgrep --color=auto' | |
alias grep='grep --color=auto' | |
alias o='nautilus .' | |
alias c='xdg-open' |
This file has been truncated, but you can view the full file.
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
["5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36", | |
{"startTime":1370463270804.2058,"data":{},"children":[{"startTime":1370463270804.2058,"stackTrace":[{"functionName":"$.fn.symphonyDuplicator","url":"http://ent.288dev.com/symphony/assets/js/symphony.duplicator.js","lineNumber":63,"columnNumber":11},{"functionName":"","url":"http://ent.288dev.com/symphony/assets/js/admin.js","lineNumber":187,"columnNumber":40},{"functionName":"f.Callbacks.o","url":"http://ent.288dev.com/symphony/assets/js/jquery.js","lineNumber":2,"columnNumber":14733},{"functionName":"f.Callbacks.p.fireWith","url":"http://ent.288dev.com/symphony/assets/js/jquery.js","lineNumber":2,"columnNumber":15502},{"functionName":"e.extend.ready","url":"http://ent.288dev.com/symphony/assets/js/jquery.js","lineNumber":2,"columnNumber":9594},{"functionName":"c.addEventListener.B","url":"http://ent.288dev.com/symphony/assets/js/jquery.js","lineNumber":2,"columnNumber":14290}],"frameId":"10444.2","data":{ |
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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<link href="http://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet" type="text/css"> | |
<style> | |
body { | |
font-family: 'Ubuntu', Helvetica, Arial, sans-serif; | |
width: 960px; | |
height: 500px; |
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
Starting from version 26, Chrome as been making angry a lot... | |
Chrome | |
1. CSS3 animation are not as fluid as they used to be. IE10 is not more fluid than Chrome! | |
2. CSS3 gradiants are making the render glitchy: sometimes going under 5 FPS. | |
3. It seems like there is a problem with images cache: On the canvas, if you do not paint a image for one frame, then its cache gets deleted, which cause a performance problem (renders usually took 1 to 2 ms, but it jumps to 200 ms sometimes, and there's a blank in the devtools timeline. In the profile view, we only get (system) as feedback) | |
4. The video API throws errors when everything should be working fine. It plays the video only 50% of the time (even though it's the same video all the times) | |
5. Decoding images (especially base64 ones) is sometimes really slow, especially if the image is going in and out of the viewport (again, a image cache problem) ?? |
NewerOlder