<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel><generator>http://textpattern.com/?v=4.0.4</generator>
<title>Higher</title>
<link>https://higher.com.ua/</link>

<pubDate>Fri, 09 Jan 2009 21:00:01 GMT</pubDate>
<item><title>DD_belatedPNG</title>
<description>
<![CDATA[Небольшой скрипт, который опять же исправляет альфа-прозрачность .png изображений. Поддерживает свойства background-image, background-position и background-repeat.]]>
</description>
<link>https://higher.com.ua/news/134/dd_belatedpng</link>
<pubDate>Tue, 16 Dec 2008 22:17:45 GMT</pubDate>
<dc:creator>higher</dc:creator>
<guid isPermaLink="false">tag:higher.com.ua,2008-12-17:565e529644eef1c7230225c0c1730830/e65a1f06a5e46fb3ffcd8b197d4ec6ad</guid>

<category>png</category>
<category>vml</category>
<category>javascript</category>
</item>
<item><title>Aligning inline images with the vertical-align property</title>
<description>
<![CDATA[Очень полезная статья о вертикальном выравнивании inline-изображений.]]>
</description>
<link>https://higher.com.ua/news/133/aligning-inline-images-with-the-vertical-align-property</link>
<pubDate>Sat, 11 Oct 2008 22:11:26 GMT</pubDate>
<dc:creator>higher</dc:creator>
<guid isPermaLink="false">tag:higher.com.ua,2008-10-12:565e529644eef1c7230225c0c1730830/0b031327aed752c068d8fe7e20585b23</guid>

<category>css</category>
</item>
<item><title>CSS Systems</title>
<description>
<![CDATA[<div style="width:425px;text-align:left" id="__ss_623386"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/nataliedowne/css-systems-presentation?type=powerpoint" title="CSS Systems">CSS Systems</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=csssystemsslides-1222639135449752-9&stripped_title=css-systems-presentation" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=csssystemsslides-1222639135449752-9&stripped_title=css-systems-presentation" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object><div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View SlideShare <a style="text-decoration:underline;" href="http://www.slideshare.net/nataliedowne/css-systems-presentation?type=powerpoint" title="View CSS Systems on SlideShare">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/bulletproof">bulletproof</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/robustness">robustness</a>)</div></div>]]>
</description>
<link>https://higher.com.ua/news/132/css-systems</link>
<pubDate>Sat, 11 Oct 2008 21:54:31 GMT</pubDate>
<dc:creator>higher</dc:creator>
<guid isPermaLink="false">tag:higher.com.ua,2008-10-12:565e529644eef1c7230225c0c1730830/bd4c13d7442067feb83994995b9e10cb</guid>

<category>css</category>
</item>
<item><title>TextMate и Windows-1251</title>
<description>
<![CDATA[<p>TexMate можно заставить работать с этой кодировкой. </p>
<p>Скачиваем <a href="http://lists.macromates.com/textmate/attachments/20060414/bd7f2a89/attachment.zip">Encodings.tmbundle</a>. Распаковываем в папку Library/App.Support/Textmate/Bundles, перегружаем bundles, открываем bundle editor и добавляем команду "Save with CP1251" для сохранения файла в этой  кодировке:</p>
<code>
<pre>
if [[ -n "$TM_FILEPATH" ]];
   then iconv >"$TM_FILEPATH" -f utf-8 -t CP1251
   else exit_show_tool_tip "No file saved."
fi
</pre>
</code>
<p>Вешаем любой удобный хоткей и пользуемся. Решение конечно не идеальное, но рабочее.</p>
<p>Собственно, при необходимости можно написать собственный bundle, подобный <a href="http://code.google.com/p/mblsha-textmate-bundle/source/browse/trunk/mblsha.tmbundle/Commands/cp1251%20-%3E%20utf8.tmCommand?spec=svn15&r=15">этому</a> (приведен ниже):</p>
<pre>
<code>
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
&lt;plist version="1.0"&gt;
	&lt;dict&gt;
		&lt;key&gt;beforeRunningCommand&lt;/key&gt;
		&lt;string&gt;nop&lt;/string&gt;
		&lt;key&gt;command&lt;/key&gt;
		&lt;string&gt;cat "$TM_FILEPATH" | dos2unix | iconv -f cp1251 -t utf-8&lt;/string&gt;
		&lt;key&gt;input&lt;/key&gt;
		&lt;string&gt;document&lt;/string&gt;
		&lt;key&gt;name&lt;/key&gt;
		&lt;string&gt;cp1251 -&gt; utf8&lt;/string&gt;
		&lt;key&gt;output&lt;/key&gt;
		&lt;string&gt;replaceSelectedText&lt;/string&gt;
		&lt;key&gt;uuid&lt;/key&gt;
		&lt;string&gt;3740F9CA-52A4-4071-AFF2-821BDD48F0A6&lt;/string&gt;
	&lt;/dict&gt;
&lt;/plist&gt;
</code>
</pre>]]>
</description>
<link>https://higher.com.ua/news/131/textmate-i-windows-1251</link>
<pubDate>Fri, 10 Oct 2008 08:23:41 GMT</pubDate>
<dc:creator>higher</dc:creator>
<guid isPermaLink="false">tag:higher.com.ua,2008-10-10:565e529644eef1c7230225c0c1730830/7a2639f335ffb52828e1960570322544</guid>

<category>textmate</category>
</item>
<item><title>Полезные ссылки (23/09/08)</title>
<description>
<![CDATA[<ul>
		<li><a href="http://snook.ca/technical/jquery-bg/">Using jQuery for Background Image Animations</a></li>
		<li><a href="http://webdev.stephband.info/parallax.html">jParallax</a></li>
		<li><a href="http://www.xrite.com/custom_page.aspx?PageID=77">Test your color IQ</a></li>
		<li><a href="http://www.webdesignerwall.com/trends/80-large-background-websites/">80 Large Background Websites</a></li>
		<li><a href="http://designm.ag/resources/free-page-analysis-tools/">20 Free Page Analysis Tools</a></li>
	</ul>]]>
</description>
<link>https://higher.com.ua/links/130/poleznye-ssylki-230908</link>
<pubDate>Tue, 23 Sep 2008 18:46:42 GMT</pubDate>
<dc:creator>higher</dc:creator>
<guid isPermaLink="false">tag:higher.com.ua,2008-09-23:565e529644eef1c7230225c0c1730830/290fe2d8ba38d0df34d73fc65349c482</guid>


</item></channel>
</rss>