This file contains 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
require 'formula' | |
class Imgo <Formula | |
url 'git://github.com/imgo/imgo.git' | |
homepage 'http://imgcomp.com' | |
md5 '' | |
version '0.4' | |
depends_on 'imagemagick' | |
depends_on 'pngout' |
This file contains 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
require 'formula' | |
class Imgo <Formula | |
url 'git://github.com/imgo/imgo.git' | |
homepage 'http://imgcomp.com' | |
md5 '' | |
version '0.4' | |
depends_on 'imagemagick' | |
depends_on 'pngout' |
This file contains 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
<form> | |
<input type="search" onfocus="onfocus1()"/> | |
<input type="submit"/> | |
</form> |
This file contains 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
<form> | |
<input type="search" onfocus="onfocus1()"/> | |
<input type="submit"/> | |
</form> |
This file contains 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
all: _index.ru.js | |
_index.%.js: index.%.js | |
touch $@ | |
index.%.js: | |
touch $@ | |
.PHONY: all |
This file contains 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
.p:first-letter { | |
color: red; | |
} |
This file contains 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 calcFletcherSum(data) { | |
var length = data.length, i = 0, sum1 = 0xFF, sum2 = 0xFF; | |
while (length) { | |
var tlen = length > 21 ? 21 : length; | |
length -= tlen; | |
do { | |
var ch = data.charCodeAt(i++); | |
if (ch > 255) { | |
var ch2 = ch >> 8; | |
ch &= 0xFF; |
This file contains 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 text = "var a = '"; | |
for (var i = text.length; i < 114686; i++) { | |
text += '1'; | |
} | |
text += "';"; | |
console.log('text size:', text.length); | |
var blob = new Blob([text], {type: 'text/javascript'}); | |
var url = URL.createObjectURL(blob); | |
var script = document.createElement('script'); |
This file contains 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
.messages-thead { | |
display: flex; | |
flex-direction: column-reverse; | |
} |
This file contains 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
.popup { | |
position: absolute; | |
top: 10px; | |
left: 10px; | |
width: 150px; | |
height: 200px; | |
border: 1px solid #000; | |
overflow: hidden; | |
} |
OlderNewer