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
| [19:05:45] melvina.ejide: Im bored and wanted to meet new people... 23,female here..u ?? | |
| среда, 8 апреля 2015 г. | |
| [3:30:41] melvina.ejide: hi there :) | |
| четверг, 9 апреля 2015 г. | |
| [5:48:36] melvina.ejide: hi ^.^ | |
| [21:12:40] melvina.ejide: Im bored and wanted to meet new people... 23,female here....u?? | |
| [21:14:05] il.zoff: What do you wanna talk about? :) | |
| [21:17:28] melvina.ejide: I'm feeling a little naughty wanna have some fun?? :) |
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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2"> | |
| <Document><Folder><name>batch.kml</name> | |
| <Schema name="batches.kml" id="batches_kml"> | |
| <SimpleField name="ID" type="int"></SimpleField> | |
| <SimpleField name="UID" type="string"></SimpleField> | |
| </Schema> | |
| <Style id="initialStyle"> |
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
| Наш пол предопределен нашими генами, которые у человека хранятся в каждой клетке в 23 парах микроскопических структур, которые называются хромосомы. В каждой паре хромосом одна унаследована от отца, а другая от матери. Все 23 пары хромосом внешне отличаются одна от другой, и их можно пронумеровать. В парах 1-22 обе хромосомы одинаковы, и лишь в 23-й паре хромосомы (их называют также половыми хромосомами) отличаются одна от другой, причем различие это наблюдается лишь у мужчин. Одна «половинка» пары — хромосома большего размера (ее называют X-хромосома), а другая меньшего (Y-хромосома). У женщин пара № 23 состоит из двух одинаковых X-хромосом. | |
| Какую роль играют половые хромосомы? Многие гены Х-хромосом отвечают за признаки, не связанные с полом, — такие, например, как способность различать красный и зеленый цвета. Однако Y-хромосома содержит гены, которые контролируют развитие семенников. Примерно на пятой неделе после зачатия у человеческого эмбриона появляются «бипотенциальные» гонады — половые клетки, кото |
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
| require "feast_fast" | |
| (2013..2099).each do |year| | |
| fasts = (Date.new(year,1,1)..Date.new(year,12,31)).inject([]){|ary, day| day.fast? ? ary << day : ary}.size | |
| ordinary = Date.new(year,12,31).yday - fasts | |
| puts "\nYEAR: #{year}\nfasts: #{fasts}\nordinary: #{ordinary}\n\n" if fasts < ordinary | |
| end | |
| # YEAR: 2013 | |
| # fasts: 181 | |
| # ordinary: 184 |
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
| # require "bundler/gem_tasks" | |
| require 'bundler/gem_helper' | |
| module Bundler | |
| class GemHelper | |
| def rubygem_push(path) | |
| Bundler.ui.confirm "Pushed #{name} #{version} to NOWHERE" | |
| end | |
| end | |
| end |
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
| /* | |
| Функция для одновременной подсветки ссылок с одинаковым href, | |
| на вход принимает: | |
| 1) selector — джеквери-селектор ссылок, чтобы | |
| была возможность включить дублирующую подсветку в определённом фрагменте; | |
| 2) hoverClass — какой класс добавить по ховеру и псевдо-ховеру. | |
| Инициализация для всего документа: | |
| doubleHover('a', 'hover'); |
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
| # coding: utf-8 | |
| require 'pony' | |
| require 'fastercsv' | |
| Pony.options = { | |
| :from => 'me@gmail.com', | |
| :via => :smtp, | |
| :via_options => { | |
| :address => 'smtp.gmail.com', | |
| :port => '587', | |
| :enable_starttls_auto => true, |
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
| # stolen from http://github.com/cschneid/irclogger/blob/master/lib/partials.rb | |
| # and made a lot more robust by me | |
| # this implementation uses erb by default. if you want to use any other template mechanism | |
| # then replace `erb` on line 13 and line 17 with `haml` or whatever | |
| module Sinatra::Partials | |
| def partial(template, *args) | |
| template_array = template.to_s.split('/') | |
| template = template_array[0..-2].join('/') + "/_#{template_array[-1]}" | |
| options = args.last.is_a?(Hash) ? args.pop : {} | |
| options.merge!(:layout => false) |
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
| require 'uri' | |
| require 'net/https' | |
| require 'net/http' | |
| require 'cgi' | |
| uri = URI.parse("https://www.googleapis.com/language/translate/v2") | |
| params = { :q => phrase, | |
| :target => target, | |
| :key => 'AIzaSyCdvwN5tXYrMMcyp2in7ZaUdAwxRujVZow' | |
| } |
NewerOlder