- se merge cu wizz bucharest-kutaisi (zboruri joi sambata) se poate alege sambata - sambata 7 zile sau sambata joi 5 zile - maxim 400 lei/pers
- de la kutaisi exista http://www.georgianbus.com/ - 15 GEL - Kutaisi Batumi
- zona gradina botanica https://www.airbnb.com/s/Batumi--Adjara--Georgia/homes?refinement_paths%5B%5D=%2Fhomes&query=Batumi%2C%20Adjara%2C%20Georgia&allow_override%5B%5D=&map_toggle=true&ne_lat=41.69291694442047&ne_lng=41.71407630652095&sw_lat=41.682032266662944&sw_lng=41.701523568331254&zoom=16&search_by_map=true&room_types%5B%5D=Entire%20home%2Fapt&s_tag=dh6Ke8c1
- e gara la gradina botanica pe ruta batumi - 2-3 statii
- au vita de vie de peste 7000 ani
- muntele se lasa in mare
- 1 GEL = 1.63566 RON
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
{- | An EDSL for defining and printing JSON values | |
-} | |
import Data.List (intercalate) | |
---------------- | |
-- JSON Model -- | |
---------------- | |
-- | The JSONValue data type represents a JSON Value |
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
sed ' | |
s/^>// | |
t | |
s/^ *$// | |
t | |
s/^/-- / | |
' in.lhs > out.hs |
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
{-# LANGUAGE OverloadedStrings #-} | |
import Prelude | |
import qualified Prelude as P | |
import Data.Monoid (mempty) | |
import Text.Blaze.Html5 | |
import qualified Text.Blaze.Html5 as H | |
import Text.Blaze.Html5.Attributes | |
import qualified Text.Blaze.Html5.Attributes as A |
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
{-# LANGUAGE OverloadedStrings #-} | |
import Prelude | |
import qualified Prelude as P | |
import Data.Monoid (mempty) | |
import Text.Blaze.Html5 | |
import qualified Text.Blaze.Html5 as H | |
import Text.Blaze.Html5.Attributes | |
import qualified Text.Blaze.Html5.Attributes as A |
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
<body vocab="http://schema.org/"> | |
... | |
<div property="breadcrumb"> | |
<a href="http://www.ibm.com/developerworks/">IBM developerWorks</a> > | |
<a href="http://www.ibm.com/developerworks/web/">Web development</a> > | |
<a href="http://www.ibm.com/developerworks/views/web/library.jsp" | |
>Technical library</a> | |
</div> | |
<div typeof="Article"> | |
<div property="image" typeof="ImageObject"> |
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
<body vocab="http://schema.org/"> | |
... | |
<div property="breadcrumb"> | |
<a href="http://www.ibm.com/developerworks/">IBM developerWorks</a> > | |
<a href="http://www.ibm.com/developerworks/web/">Web development</a> > | |
<a href="http://www.ibm.com/developerworks/views/web/library.jsp" | |
>Technical library</a> | |
</div> | |
<div typeof="Article"> |
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
{-# LANGUAGE OverloadedStrings #-} | |
module Main where | |
import Control.Applicative | |
import Snap.Core | |
import Snap.Util.FileServe | |
import Snap.Http.Server | |
import Control.Monad.IO.Class | |
import qualified Data.ByteString.Char8 as BS |
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 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |
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
xxx :: Snap () | |
xxx = do | |
req <- getRequest | |
let a = getHeader "user-agent" req | |
told <- maybe pass return a | |
let b = C.pack "Mobile|iP(hone|od|ad)|Android|BlackBerry|IEMobile|Kindle|NetFront|Silk-Accelerated|(hpw|web)OS|Fennec|Minimo|Opera M(obi|ini)|Blazer|Dolfin|Dolphin|Skyfire|Zune" | |
let ii = told =~ b :: Bool | |
case ii of | |
True -> writeBS "adevarat" | |
False -> writeBS "fals" |
NewerOlder