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 findSeleniumJar = function(dir) { | |
var fs = require('fs'); | |
var _ = require('underscore'); | |
var files = fs.readdirSync(dir); | |
var found; | |
var count = 0; | |
_.each(files, function (file) { | |
if (file.match('^selenium-server-standalone-(.+)\.jar$')) { | |
count++; | |
found = file; |
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
span(data-bind='reactElement: someElement') |
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
// Type definitions for RouteRecognizer 0.1.4 | |
// Project: https://github.com/tildeio/route-recognizer | |
declare class RouteRecognizer { | |
add(routes: Object[], options?: Object): void; | |
map(callback: RouteRecognizer.Callback): void; | |
recognize(path: string): RouteRecognizer.Result; | |
} | |
declare module RouteRecognizer { |
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
module something { | |
// inspired by https://github.com/acdlite/flummox/blob/master/docs/api/FluxComponent.md | |
/* example usage | |
class SimpleContainer extends FluxSimpleContainer { | |
stores = { | |
userStore: App.userStore, | |
} | |
getState = () => ({ | |
users: this.stores.userStore.getUsers(), |
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
case <<"first middle last">> of | |
<<"first", Bin/binary>> | |
when binary_part(Bin, {byte_size(Bin), -4}) =:= <<"last">> -> | |
ok | |
end. |
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
1) главной целью, ценностью, вектором развития общества должно стать ЛЮБОВЬ К БЛИЖНЕМУ ради ПРОДОЛЖЕНИЯ ЖИЗНИ (как первый принцип рбототехники «Не навреди человеку») | |
2) все идеи, проекты и новые системы не соответствующие п.1 НЕПРИЕМЛИМЫ так как ведут к самоуничтожению | |
3) ГОСУДАРСТВЕННОСТЬ как общественный институт себя ИЗЖИЛА.т.к. функция защиты от диких народов местных территорий НЕ АКТУАЛЬНА а прочие ее функции лишь преграда на пути развития человечества | |
4) В процессе развития нового общество НЕЛЬЗЯ противопоставлять его зачатки действующим системам, но нужно пытаться быть максимально автономными от систем | |
5) необходимо отфильтровать догмы религий, законы государств и общественные порядки на предмет соответствия основным общечеловеческим ценностям (например неприятие иных религий) я про те ценности что в 10 заповедях христиан, 5 столпах ислама и т.д. | |
6) необходимо возродить благостные народные традиции (к примеру обычаи гостеприимства, куначества и т.д.) на базе культурных автономий, а также этим способо |
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
<?php | |
include ("config.php"); | |
include ('db.php'); | |
$db = opendb(); | |
?> | |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<title> NAFTорг - Торговля и Склад</title> |
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
id 758960 | |
mac 00:e0:29:2e:82:88 | |
ip 10.0.144.1 | |
src_ntb mahalex | |
src_mls mahalex | |
dst_mac ff:ff:ff:ff:ff:ff | |
dst_ntb 14 | |
dst_mls 14 | |
time 2008-11-27 23:41:07 | |
msg From 92.61.66.11 # http://jlarky.dorms.spbu.ru/gate |
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
(gdb) bt | |
#0 0xb6efdc89 in QString::operator==(QString const&) const () from /usr/lib/libQtCore.so.4 | |
#1 0x081353dd in EmoticonFactory::load() () | |
#2 0x08279685 in SettingsGUI::ok() () | |
#3 0x080dca05 in SettingsGUI::qt_metacall(QMetaObject::Call, int, void**) () | |
#4 0xb6fb87da in QMetaObject::metacall(QObject*, QMetaObject::Call, int, void**) () from /usr/lib/libQtCore.so.4 | |
#5 0xb6fc71eb in QMetaObject::activate(QObject*, QMetaObject const*, int, void**) () from /usr/lib/libQtCore.so.4 | |
#6 0x080dc5c9 in Settings::timeToDie() () | |
#7 0x080dc621 in Settings::qt_metacall(QMetaObject::Call, int, void**) () | |
#8 0xb6fb87da in QMetaObject::metacall(QObject*, QMetaObject::Call, int, void**) () from /usr/lib/libQtCore.so.4 |
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
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*- | |
%% ex: ts=4 sw=4 et | |
%% @author Kevin Smith <kevin@opscode.com> | |
%% @copyright 2011 Opscode, Inc. | |
-module(example). | |
-behaviour(gen_server). | |
-export([start_link/0]). |
OlderNewer