answer stringlengths 15 1.25M |
|---|
<!DOCTYPE html>
<html xmlns:msxsl="urn:<API key>:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="<API key>">.NET Portability Report</title>
<style>
/* Body style, for the entire document */... |
<?php
function formatBytes($bytes, $precision = 2) {
$units = array('B', 'KB', 'MB', 'GB', 'TB');
$bytes = max($bytes, 0);
$pow = floor(($bytes ? log($bytes) : 0) / log(1024));
$pow = min($pow, count($units) - 1);
$bytes /= pow(1024, $pow);
return round($bytes, $precision) . ' ' . $units[$pow];... |
# Namespace for library
module P3
module TV
# Settings for P3 TV
class Settings
attr_accessor :path
DEFAULT_PATH = File::expand_path( "~/.p3tv/p3tv" )
EPISODES_JSON = 'episodes.json'
DEFAULTS = {
:library_path => '~/Movies/P3TV',
:download_path => '~/Downloads',
... |
import * as React from 'react';
function CubeIcon(props) {
return (
<svg
xmlns="http:
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
{...props}
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M20 7l-8-4-8 4m16 0... |
<ion-header>
<ion-navbar>
<ion-title>{{'Wallet Color' | translate}}</ion-title>
</ion-navbar>
</ion-header>
<ion-content class="wallet-color-count <API key>">
<ion-list radio-group [(ngModel)]="currentColorIndex">
<ion-item *ngFor="let i of colorCount">
<ion-label>
<span class="<API key> wal... |
INCLUDE "hardware.inc"
INCLUDE "header.inc"
SECTION "Main",HOME
;
;- Main() -
;
Main:
ld a,$80
ld [rNR52],a
ld a,$FF
ld [rNR51],a
ld a,$77
ld [rNR50],a
ld a,$C0
ld [rNR11],a
ld a,... |
# module Hello
class Identity < ActiveRecord::Base
module Password
extend ActiveSupport::Concern
included do
<API key> :email, :password, if: :is_password?
# email
<API key> :email, if: :is_password?
<API key> :email,
message: 'already ex... |
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<script src="http://code.angularjs.org/1.2.16/angular.min.js"></script>
<script src="http://code.angularjs.org/1.2.16/angular-route.min.js"></script>
<script src="/ng-tools/src/module.js"></script>
<script src="/ng-tools/src/mark-current-links.js"></script>
... |
var repl = require('repl');
var server = repl.start({});
var con = server.context;
con.name='zfpx';
con.age = 5;
con.grow = function(){
return ++con.age;
} |
<!DOCTYPE HTML PUBLIC "-
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_92) on Sat Oct 22 19:44:39 CEST 2016 -->
<title>Uses of Package com.vangav.backend.exceptions</title>
<meta name="date" content="2016-10-22">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title=... |
layout: page
title: Library Students
categories: []
tags: []
status: draft
type: page
published: false
meta:
_edit_last: '1'
[nggallery id=8]<br /><br /> |
// Please see <API key>.md in repository root for
#include <Atomic/Core/ProcessUtils.h>
#include <Atomic/IO/Log.h>
#include <Atomic/IO/FileSystem.h>
#include <Atomic/Engine/Engine.h>
#include <Atomic/Resource/ResourceCache.h>
#include <ToolCore/ToolSystem.h>
#include <ToolCore/ToolEnvironment.h>
#include <ToolCore/Buil... |
#include "BoatWithSupport.h"
BoatWithSupport::BoatWithSupport(int extraCapacity) :
Boat() {
extraCap = extraCapacity;
lastMaxCap = 0;
lastTransported = 0;
}
BoatWithSupport::BoatWithSupport(int capacity, int extraCapacity) :
Boat(capacity) {
extraCap = extraCapacity;
lastMaxCap = 0;
... |
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("<API key>", "corponovo.settings")
try:
from django.core.management import <API key>
except ImportError:
# The above import may fail for some other reason. Ensure that the
# issue is really th... |
import time
t1=.3
t2=.1
path="~/Dropbox/Ingenieria/<API key>"
time.sleep(t2)
keyboard.send_key("<f6>")
time.sleep(t2)
keyboard.send_keys(path)
time.sleep(t1)
keyboard.send_key("<enter>") |
package org.bitbucket.ytimes.client.main;
import org.springframework.context.support.<API key>;
public class Main {
public static void main( String[] args ) throws Exception {
<API key> ctx =
new <API key>("root-context.xml");
}
} |
require 'oplogjam/noop'
require 'oplogjam/insert'
require 'oplogjam/update'
require 'oplogjam/delete'
require 'oplogjam/command'
require 'oplogjam/apply_ops'
module Oplogjam
InvalidOperation = Class.new(ArgumentError)
class Operation
def self.from(bson)
op = bson.fetch(OP, UNKNOWN)
case op
whe... |
from charmhelpers.core.hookenv import (
config,
unit_get,
)
from charmhelpers.contrib.network.ip import (
<API key>,
<API key>,
is_ipv6,
get_ipv6_addr,
)
from charmhelpers.contrib.hahelpers.cluster import is_clustered
PUBLIC = 'public'
INTERNAL = 'int'
ADMIN = 'admin'
_address_map = {
PUBLIC... |
package alexp.blog.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import alexp.blog.repository.*;
import alexp.blog.model.Schedule;
@Service("ScheduleService")
public class ScheduleServiceImpl implements ScheduleService{
@Autowired
private... |
export default {
queryRouteList: '/routes',
queryUserInfo: '/user',
logoutUser: '/user/logout',
loginUser: 'POST /user/login',
queryUser: '/user/:id',
queryUserList: '/users',
updateUser: 'Patch /user/:id',
createUser: 'POST /user',
removeUser: 'DELETE /user/:id',
removeUserList: 'POST /users/delete... |
import Controller from '@ember/controller';
import { debounce } from '@ember/runloop';
import fetch from 'fetch';
import RSVP from 'rsvp';
export default class extends Controller {
searchRepo(term) {
return new RSVP.Promise((resolve, reject) => {
debounce(_performSearch, term, resolve, reject, 600);
});... |
<html>
<head>
<title>User agent detail - Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.11) /Kyocera-E4000</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" ... |
<!DOCTYPE HTML PUBLIC "-
<!--NewPage
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_24) on Mon Apr 01 21:56:34 EDT 2013 -->
<TITLE>
<API key> (ATG Java API)
</TITLE>
<META NAME="date" CONTENT="2013-04-01">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="te... |
import controller from './controller';
import template from './template.pug';
routes.$inject = ['$stateProvider', '$urlRouterProvider'];
export default function routes($stateProvider, $urlRouterProvider){
$stateProvider.state('main.item', {
url: '/:id/item',
template: template,
controllerAs:... |
import { OnInit, SimpleChanges, OnChanges } from '@angular/core';
import { Validator, AbstractControl } from '@angular/forms';
export declare class NotEqualValidator implements Validator, OnInit, OnChanges {
notEqual: any;
private validator;
private onChange;
ngOnInit(): void;
ngOnChanges(changes: S... |
html, body{
width: 100%;
height: 100%;
padding: 0px;
margin: 0px;
font: 14px 'Merriweather', 'serif';
color: rgb(20, 20, 20);
}
body, header{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
body{
flex-flow: row wrap;
-webkit-box-pack: flex... |
var config = require('./config')
var webpack = require('webpack')
var merge = require('webpack-merge')
var utils = require('./utils')
var baseWebpackConfig = require('./webpack.base.conf')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var FriendlyErrors = require('<API key>')
// add hot-reload related code to ... |
var margin = {top: 0, right: 0, bottom: 0, left: 130},
width = 1500 - margin.right - margin.left,
height = 470 - margin.top - margin.bottom;
var i = 0,
duration = 750,
root;
var tree = d3.layout.tree()
.size([height, width]);
var diagonal = d3.svg.diagonal()
.projection(function(d) { return [d.y... |
require 'rubygems'
gem 'rspec', '>= 1.2.8'
require 'spec'
require File.join(File.dirname(__FILE__), '..', 'lib', 'almaz')
require 'base64'
require 'timecop'
require 'logger'
Spec::Runner.configure do |config|
config.before(:all) {
result = RedisRunner.start_detached
raise("Could not start redis-server, aborti... |
import { EventBus } from '../wires/event_bus';
class EventStore {
constructor(storeAdapter) {
this.adapter = storeAdapter;
}
appendToStream(streamId, expectedVersion, events) {
if (events.length === 0) {
return;
}
events.forEach(function(event) {
this.... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Numerics;
namespace <API key>
{
public class <API key>
{
public static void Main()
{
string[] parameters = Console.ReadLine()
.Split()
... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Collections;
using System.Threading;
namespace Joddgewe
{
public partial class Form1 : Form
{
private string ... |
package com.jnape.palatable.lambda.optics.prisms;
import org.junit.Test;
import java.util.HashMap;
import java.util.LinkedHashMap;
import static java.util.Arrays.asList;
import static java.util.Collections.singleton;
import static java.util.Collections.singletonMap;
import static testsupport.assertion.PrismAssert.<API ... |
import { h } from 'omi';
import createSvgIcon from './utils/createSvgIcon';
export default createSvgIcon(h("path", {
d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 <API key> 5z"
})... |
(function () {
'use strict';
angular
.module('app.home')
.config(appRun);
/* @ngInject */
function appRun($stateProvider) {
$stateProvider
.state('root.home', {
url: '/',
templateUrl: 'app/home/home.html',
controller: 'Home',
controllerAs: 'vm',
});
}
})... |
using OTransport.Factory;
using OTransport.Serializer.protobuf;
namespace OTransport.Serializer.protobuf
{
public static class <API key>
{
<summary>
Use Protobuf Serialization to serialize objects
</summary>
<returns></returns>
public static <API key> <API key>(this <API ... |
import React from 'react';
import {
Text,
View,
TextInput,
} from 'react-native';
import newChallengeStyles from '../../styles/newChallenge/newChallengeStyles';
import mainStyles from '../../styles/main/mainStyles';
import ItemSelectView from './ItemSelectView';
const propTypes = {
onChallengeUpdate: React.Prop... |
package com.agileapes.powerpack.string.exception;
/**
* @author Mohammad Milad Naseri (m.m.naseri@gmail.com)
* @since 1.0 (2012/12/3, 17:47)
*/
public class NoMoreTextException extends <API key> {
private static final long serialVersionUID = -<API key>;
public NoMoreTextException() {
}
public NoMoreT... |
package xyz.cofe.lang2.parser.vref;
import java.net.URL;
import xyz.cofe.lang2.parser.BasicParserTest;
import xyz.cofe.lang2.parser.L2Engine;
import xyz.cofe.lang2.vm.Callable;
import xyz.cofe.lang2.vm.Value;
import org.junit.Test;
import xyz.cofe.log.CLILoggers;
public class L2EngineVarRef2 extends BasicParserTest
{
... |
import React, {PropTypes} from 'react';
import L from 'leaflet';
import gh from '../api/GitHubApi';
import RaisedButton from 'material-ui/RaisedButton';
const REPO_TIMESPAN = {
ALLTIME: 0,
THIRTYDAYS: 1,
SIXTYDAYS: 2,
ONEYEAR: 3
};
const defaultMapConfig = {
options: {
center: [
... |
package db;
import db.*;
public class test {
public static void main(String[] args) {
// TODO Auto-generated method stub
Database.getInstance().register("111", "22");
// Database.getInstance().login("111", "22");
}
} |
:- module(
jwt_enc,
[
jwt_enc/4 % +Header, +Payload, ?Key, -Token
]
).
/** <module> JSON Web Tokens (JWT): Encoding
@author Wouter Beek
@version 2015/06
*/
:- use_module(library(apply)).
:- use_module(library(base64)).
:- use_module(library(sha)).
:- use_module(library(jwt/jwt_util)).
%! jwt_enc(+Header:dict,... |
import java.security.Security;
import java.util.Base64;
import org.bouncycastle.crypto.BlockCipher;
import org.bouncycastle.crypto.BufferedBlockCipher;
import org.bouncycastle.crypto.engines.RijndaelEngine;
import org.bouncycastle.crypto.modes.CBCBlockCipher;
import org.bouncycastle.crypto.paddings.PKCS7Padding;
import... |
#pragma once
#include "cinder/app/App.h"
namespace reza { namespace paths {
bool createDirectory( const ci::fs::path& path );
bool createDirectories( const ci::fs::path& path );
void <API key>();
ci::fs::path getWorkingPath();
ci::fs::path getPath( std::string path = "" );
ci::fs::path getPresetsPath( std::string path ... |
function lessThan (a, b) {
return a < b
}
function main () {
for (var i = 0; i < 10000; i++) {
lessThan(1, 0x7fffffff)
}
for (var i = 0; i < 10000; i++) {
lessThan(1, Infinity)
}
for (var i = 0; i < 10000; i++) {
lessThan(1, 0x7fffffff)
}
}
main() |
<div class="dash-footer container">
<div class="row">
<div class="col-lg-12">
<hr>
<p class="text-muted credit text-right">Powered by <a href="https:
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
===============================================
<!-- Placed at the end of the docu... |
'use strict'
var reduce = require('object.reduce')
var hybridify = require('hybridify')
/**
* > Hybridifies all the selected functions in an object.
*
* **Example:**
*
* ```js
* var hybridifyAll = require('hybridify-all')
* var fs = require('fs')
*
* fs = hybridifyAll(fs)
* fs.readFile(__filename, 'utf8', fun... |
<?php
namespace Nur\Database;
use Illuminate\Database\Eloquent\Model as EloquentModel;
/**
* @mixin \Illuminate\Database\Query\Builder
*/
class Model extends EloquentModel
{
/**
* Create Eloquent Model.
*
* @param array $attributes
*
* @return void
*/
function __construct(array $... |
module Miro
class DominantColors
attr_accessor :src_image_path
def initialize(src_image_path, image_type = nil)
@src_image_path = src_image_path
@image_type = image_type
end
def to_hex
return histogram.map{ |item| item[1].html } if Miro.histogram?
sorted_pixels.collect { |pixel... |
<?php
include_once('<API key>.php');
class Msidcalendar_Plugin extends <API key> {
public function getOptionMetaData() {
return array(
//'_version' => array('Installed Version'), // Leave this one commented-out. Uncomment to test upgrades.
'MSIDBaseURL' => array(__('Base url to the M... |
<div class="container-fluid">
<div class="page-content">
<div class="portlet-body form">
<!-- BEGIN FORM-->
<form action="<?php echo base_url(); ?>User/user_dashboard/editorginfo" method="POST" role="form" class="horizontal-form">
<div class="form-body">
... |
import {Server, Config} from "./server";
import * as path from "path";
/**
* Load configuration file given as command line parameter
*/
let config: Config;
if (process.argv.length > 2) {
const configPath = path.join(__dirname, process.argv[2]);
console.info("loading configuration file: " + configPath);
config ... |
import { createStore } from '@utils/store.utils';
import placeholderImage from '../images/placeholder.jpeg';
import { getPhotoUrl, <API key> } from './api';
import { getLocalPhotoPath, getRandomLocalPhoto } from './photos.local';
import Settings from './settings';
export const getStateObject = (force = false) => {
... |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code... |
using System;
using System.ComponentModel;
using System.Reactive.Linq;
using System.Reactive.Subjects;
namespace Moen.KanColle.Dentan.ViewModel
{
public abstract class ViewModel<T> : ModelBase, IDisposable
where T : ModelBase
{
public T Model { get; private set; }
public <API key><string... |
import {Component} from 'react';
import {reduxForm} from 'redux-form';
import './CreateTodoForm.styl';
class CreateTodoForm extends Component {
render() {
return (
<form className="create-todo-form" onSubmit={this.props.handleSubmit} autoComplete="off">
<input type="text" placeholder="Todo text..." ... |
require 'spec_helper'
describe SK::GameObjectManager do
it "can create a game_object with a name" do
expect(SK::GameObjectManager.new).to respond_to(:create).with(1).argument
end
it "can not create a game_object without a name" do
expect(SK::GameObjectManager.new).to_not respond_to(:create).... |
2018-11-14
# python
* [s0md3v/XSStrike](https://github.com/s0md3v/XSStrike): Most advanced XSS detection suite.
* [google/uis-rnn](https://github.com/google/uis-rnn): This is the library for the Unbounded Interleaved-State Recurrent Neural Network (UIS-RNN) algorithm, corresponding to the paper Fully Supervised Speaker... |
CREATE OR REPLACE FUNCTION ts.<API key>(_chroncontrolid integer, _notes character varying DEFAULT NULL::character varying)
RETURNS void
LANGUAGE sql
AS $function$
UPDATE ndb.chroncontrols
SET notes = _notes
WHERE chroncontrolid = _chroncontrolid
$function$ |
layout: post
date: 2017-01-17
title: "Sherri Hill Prom Dresses Style 50075 Sleeveless Floor-Length Ballgown"
category: Sherri Hill
tags: [Sherri Hill ,Sherri Hill,Ballgown,Halter,Floor-Length,Sleeveless]
Sherri Hill Prom Dresses Style 50075
Just **$609.99**
Sleeveless Floor-Length Ballgown
<table><tr><td>BRANDS</td><td... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>User agent detail - Lenovo-A269i/S001 Linux/3.4.5 Android/2.3.6 Release/06.02.2013 Browser/AppleWebKit533.1 Profile/MIDP-2.0 Configuration/CLDC-1.1 Mobile Safari/533.1 Mozilla/5.0 (Linux; U; Android 2.3.6; )</title>
<link rel="styleshee... |
module DataMapper
# :include:/QUICKLINKS
# = Types
# Provides means of writing custom types for properties. Each type is based
# on a ruby primitive and handles its own serialization and materialization,
# and therefore is responsible for providing those methods.
# To see complete list of supported types, s... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>unimath-ktheory: Not compatible </title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.m... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>color: Not compatible </title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" re... |
Framework 4.6
properties {
$rootNow = Resolve-Path .
$nugetexe = "$rootNow/buildTools/nuget.exe"
$<API key> = "$( $env:TEMP )\Newbe\Newbe.Mahua\Mahua2.Asset"
$mahuaFilesJson = "mahua.files.json"
}
function Get-PlartformName
{
if ((Test-Path "$rootNow/CQA.exe") -or (Test-Path "$rootNow/CQP.exe"))
... |
package com.jgrillo.wordcount.api;
import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectReader;
import com.fasterxml.jackson.databind.O... |
namespace Archient.Razor.TagHelpers
{
using Microsoft.AspNet.Razor.Runtime.TagHelpers;
using Microsoft.AspNet.Razor.TagHelpers;
[TagName("<API key>")]
[ContentBehavior(ContentBehavior.Modify)]
public class <API key> : <API key>
{
protected override bool IsContentDisplayed
{
... |
[mol_plot_fill] {
stroke: none;
stroke-width: 0;
opacity: .1;
fill: currentColor;
pointer-events: none;
}
[<API key>] {
opacity: .1;
background: currentColor;
position: absolute;
bottom: 0;
top: .75em;
left: 0;
right: 0;
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>monae: 5 m 47 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="styl... |
layout: post
title: "Post election update: Will the German parliament have a gigantic size?"
cover:
date: 2021-09-27 10:20:00
categories: r
tags: [R, RTutor, shiny]
This is just a short update to [my previous post](http:
The main reason is that the Bavarian CSU performed substantially better in terms of 2nd votes than ... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>graph-theory: Not compatible </title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.... |
package com.highcharts.config
import scalajs.js, js.`|`
import com.highcharts.CleanJsObject
import com.highcharts.HighchartsUtils._
/**
* @note JavaScript name: <code><API key></code>
*/
@js.annotation.ScalaJSDefined
class <API key> extends com.highcharts.<API key> {
/**
* <p>Animation when hovering over the ... |
# Node.js v0.11.x Dockerfile
FROM dockerfile/python
MAINTAINER Haokang Den <haokang.den@gmail.com>
ENV PATH $HOME/.nodebrew/current/bin:$PATH
RUN cd /data && \
curl -L git.io/nodebrew | perl - setup && \
nodebrew install-binary v0.11.13 && \
nodebrew use v0.11.13 |
<?php
class <API key> extends Telerivet_Entity
{
/**
$scheduled_msg->save()
Saves any fields or custom variables that have changed for this scheduled message.
*/
function save()
{
parent::save();
}
/**
$scheduled_msg->delete()
Cancels this scheduled messag... |
import React, { useState, useRef } from 'react';
import { <API key>, <API key> } from './lib/Util';
// import { SVGComponent } from './lib-hooks/svgComp-hooks';
import Spline from './lib/Spline';
import DragNode from './lib/Node';
const index = ({
data,
onNodeDeselect,
onNodeMove,
onNodeStartMove,
o... |
ANFIS model
## Prerequisites
* OS: Ubuntu 18.04 or 16.04
* Software: conda (lastest version)
## Preparing environments
1. Go to project directory and onstalling conda environments
conda env create --name anfis-module -f=environments.yml
2. Activate environments and use after this:
source activate anfis-module
## Cores
... |
var t = require('chai').assert;
var P = require('bluebird');
var Renderer = require('../').Renderer;
var view = {
"name": {
"first": "Michael",
"last": "Jackson"
},
"age": "RIP",
calc: function () {
return 2 + 4;
},
delayed: function () {
return new P(function (resolve) {
setTimeout(re... |
<!DOCTYPE html><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<meta charset="utf-8">
<title>phpDocumentor » \<API key></title>
<meta name="author" content="Mike van Ri... |
<div ng-if="!identity.isAuthenticated()">
<div class="col-md-5 col-md-offset-1">
<div class="well bs-component">
<form name="loginForm" class="form-horizontal">
<fieldset>
<legend>Login</legend>
<div class="form-group">
... |
# Sprockets: Rack-based asset packaging
Sprockets is a Ruby library for compiling and serving web assets.
It features declarative dependency management for JavaScript and CSS
assets, as well as a powerful preprocessor pipeline that allows you to
write assets in languages like CoffeeScript, Sass and SCSS.
## Installatio... |
package mockit.integration.junit4;
import org.junit.runner.*;
import org.junit.runners.*;
@RunWith(Suite.class)
@Suite.SuiteClasses({MockDependencyTest.class, UseDependencyTest.class})
public final class DependencyTests {} |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deploying QATrack+ with Linux Apache & PostgreSQ... |
## Rust Guideline lints ##
This repository will contain some lints that try to enforce some of the guidelines documented at http://aturon.github.io/.
These lints aren't super useful, they are more interesting as learning projects instead of providing useful information.
Right now the only lint provided is a lint that w... |
using Treefrog.Extensibility;
using Treefrog.Framework.Model;
using Treefrog.Plugins.Tiles.Layers;
using Treefrog.Presentation;
using Treefrog.Presentation.Layers;
using Treefrog.Render.Layers;
namespace Treefrog.Plugins.Tiles
{
public static class Registration
{
// Layer Presenter Creation
[<AP... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-character: Not compatible </title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstra... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>corn: Not compatible </title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel... |
import collections
import re
import urlparse
class DSN(collections.MutableMapping):
DSN_REGEXP = re.compile(r'^\S+:
FIELDS = ('scheme', 'netloc', 'path', 'params', 'query', 'fragment')
def __init__(self, dsn, **defaults):
''' Parse a dsn to parts similar to urlparse.
This is a nuts function ... |
<script>
var visibilityChanged = function() {
steroids.logger.log("FROM PRELOADED VIEW window.location: " + window.location.href + ", document.visibilityState == " + document.visibilityState + " && document.hidden ==" + document.hidden);
alert("FROM PRELOADED VIEW window.location: " + window.location.href + "... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-finmap: Not compatible </title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.m... |
/**
* Pre Tests
* Check to make sure jQuery and Zest are loaded
*/
module("Setup");
test("jQuery is loaded", function() {
expect(3);
ok( jQuery,
"jQuery is defined." );
ok( $,
"$ is defined.");
equal( typeof jQuery, "function",
"jQuery is a function." );
});
test("Zest is load... |
package org.ebaloo.itkeeps.core.domain.vertex;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
import org.ebaloo.itkeeps.api.enumeration.enAclAdmin;
import org.ebaloo.itkeeps.api.enumeration.enAclData;
import org.ebaloo.itkeeps.api.model.jAclGroup;
import org.ebaloo.itkeeps.api.mo... |
import { expect } from 'chai';
import 'mocha';
import { Integer, TestContext } from '../../..';
import { makeInteger } from './make-integer';
describe('make-integer', () => {
it('should handle single digits', () => {
const ctx = new TestContext("test");
const delayedValue = makeInteger("5");
const value =... |
<!DOCTYPE html>
<html xmlns:msxsl="urn:<API key>:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="<API key>">.NET Portability Report</title>
<style>
/* Body style, for the entire document */... |
<html><body>
<h4>Windows 10 x64 (18363.476)</h4><br>
<h2><API key></h2>
<font face="arial"> +0x000 ExclusivePowerMw : Uint4B<br>
+0x004 PeakPowerMw : Uint4B<br>
</font></body></html> |
<?php
namespace GSSimpleOcr\Service;
use GSImage\Entity\Image;
use GSOcr\Service\OcrServiceInterface;
use GSSimpleOcr\Exception;
use GSSimpleOcr\Entity\Font;
use GSSimpleOcr\Entity\BWImage;
/**
* This class provides a simple OCR service.
*
* @author Gordon Schmidt <schmidt.gordon@web.de>
*/
class SimpleOcrService i... |
package com.vexus2.jenkins.chatwork.<API key>.api;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.codehaus.jackson.annotate.<API key>;
import org.codehaus.jackson.annotate.JsonProperty;
@<API key>(ignoreUnknown=true)
public class Room {
@JsonPr... |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><API key>: 1 m 9 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="s... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>pi-agm: Not compatible </title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" r... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><API key>: Not compatible </title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.