repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
Jerskouille/options-manager
test/OptionsManager.js
800
/* eslint-env mocha */ import expect from 'expect'; import FunctionChecker from '../src/FunctionChecker.js'; import OptionsManager from '../src/OptionsManager.js'; import Structure from '../src/Structure.js'; describe('optionsManager', () => { let manager; beforeEach(() => { manager = new OptionsManager(); ...
mit
cbeiraod/SkeletonAnalysis
macros/trainMVA.sh
303
#!/bin/bash SIGNAL=~/local-area/Stop4Body/nTuples_v2016-07-12/T2DegStop_300_270_bdt.root BACKGROUND=~/local-area/Stop4Body/nTuples_v2016-07-12/Background_bdt.root if [[ -f ${SIGNAL} && -f ${BACKGROUND} ]] ; then trainMVA --signalFile ${SIGNAL} --backgroundFile ${BACKGROUND} root runTMVAGui.C fi
mit
AuraUAS/aura-props
library/src/pyprops.cpp
21619
/** * C++ interface to a python PropertyNode() */ #include "pyprops.h" #include <string> #include <sstream> using std::string; using std::ostringstream; // 'cache' is a global c-string -> python unicode name cache. This // conversion is relatively costly in python3, so this cache save // repeating the work many t...
mit
olivere/balancers
connection.go
2828
// Copyright (c) 2014-2015 Oliver Eilhard. All rights reserved. // Use of this source code is governed by the MIT license. // See LICENSE file for details. package balancers import ( "net/http" "net/url" "sync" "time" ) // Connection is a single connection to a host. It is defined by a URL. // It also maintains s...
mit
simokhov/schemas44
src/main/java/ru/gov/zakupki/oos/signincoming/_1/BankGuaranteeReturnInvalid.java
2353
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2019.07....
mit
mwthinker/Tetris
nlohmann-json/src/json.hpp
448254
/* __ _____ _____ _____ __| | __| | | | JSON for Modern C++ | | |__ | | | | | | version 2.1.1 |_____|_____|_____|_|___| https://github.com/nlohmann/json Modified by mwthinker, to use tabs in "dump" function and use fifo_map instead of std::map in order to keep the json order. Licensed under the...
mit
NetOfficeFw/NetOffice
Source/MSHTML/DispatchInterfaces/IHTMLDOMNode2.cs
3725
using System; using NetRuntimeSystem = System; using System.ComponentModel; using NetOffice.Attributes; namespace NetOffice.MSHTMLApi { /// <summary> /// DispatchInterface IHTMLDOMNode2 /// SupportByVersion MSHTML, 4 /// </summary> [SupportByVersion("MSHTML", 4)] [EntityType(EntityType.IsDispatchInterface)] ...
mit
jdowner/uuid64
uuid64/__init__.py
23
from . uuid64 import *
mit
xeraseth/Rails-Mongo
app/models/product.rb
262
class Product include Mongoid::Document field :_id, type: String, default: -> { name.to_s.parameterize } field :name, type: String field :price, type: BigDecimal field :released_on, type: Date validates_presence_of :name embeds_many :reviews end
mit
Tweety-FER/tar-polarity
README.md
101
# tar-polarity Aspect-Oriented Sentiment Analysis project for the Text Analysis and Retrieval course
mit
at-dungnguyen/mydocker_lnmp
README.md
946
# mydocker_lnmp A docker config for Linux - Nginx or Apache2 - MySQL5.7 - PHP7. It is divided into 3 containers: 1. Nginx or Apache2 is running as web server Container, which handles requests and makes responses. 2. PHP or PHP-FPM is put in `PHP-FPM` Container, it retrieves php scripts from host, interprets, executes ...
mit
eugyev/extranet-adapter-2
spec/lib/penn_extranet_adapter_spec.rb
965
require 'spec_helper' require 'penn_extranet_adapter.rb' describe PennExtranetAdapter do let(:valid_attributes) { { "username" => "XXXXXXX", "password" => "XXXXXXX" } } describe "valid_agent?" do it "should detect a valid" do x = PennExtranetAdapter.new valid_attributes["username"], "x" authenti...
mit
guivinicius/logistique
db/migrate/20140503135157_create_nodes.rb
258
class CreateNodes < ActiveRecord::Migration def change create_table :nodes do |t| t.string :name t.integer :map_id t.timestamps end add_index :nodes, :map_id add_index :nodes, [:map_id, :name], :unique => true end end
mit
rafialikhan/angular-schema-form-download
src/angular-schema-form-download.js
1602
angular.module('schemaForm').config( ['schemaFormProvider', 'schemaFormDecoratorsProvider', 'sfPathProvider', function(schemaFormProvider, schemaFormDecoratorsProvider, sfPathProvider) { var download = function(name, schema, options) { if (schema.type === 'string' && schema.format ==...
mit
odangitsdjang/CleaningApp
bundle.js
4338
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.ex...
mit
tobeycarman/dvm-dos-tem
scripts/param_util.py
11387
#!/usr/bin/env python # T. Carman # January 2017 import os import json def get_CMTs_in_file(aFile): ''' Gets a list of the CMTs found in a file. Parameters ---------- aFile : string, required The path to a file to read. Returns ------- A list of CMTs found in a file. ''' data = read_paramf...
mit
denkhaus/bitshares
gen/samples/customoperation_2.go
352
//This file is generated by btsgen. DO NOT EDIT. //operation sample data for OperationTypeCustom package samples func init() { sampleDataCustomOperation[2] = `{ "data": "466f6f626172", "fee": { "amount": 164678, "asset_id": "1.3.0" }, "id": 16, "payer": "1.2.30127", "required_auths": [ "1.2....
mit
jomarmar/mavrix-test
app/components/users/users.test.js
606
'use strict'; describe('service', function() { var countKeys = function(data) { var count = 0 for(var k in data) { count++; } return count; } // load modules beforeEach(module('mavrixAgenda')); // Test service availability it('check the existence of Storage factory', in...
mit
silver819/alm-cristina
src/User/UserBundle/Controller/ConsultController.php
8653
<?php namespace User\UserBundle\Controller; use Symfony\Component\Security\Core\Exception\AccessDeniedException; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Reservable\ActivityBundle\Entity\Activity; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\JsonResponse; use...
mit
fjpavm/ChilliSource
Source/ChilliSource/Core/Resource.h
1586
// // Resource.h // Chilli Source // Created by Ian Copland on 07/07/2014. // // The MIT License (MIT) // // Copyright (c) 2014 Tag Games Limited // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // ...
mit
lioneil/pluma
core/submodules/Library/assets/vuetify-dropzone/index.html
676
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>vuetify-dropzone</title> <link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i...
mit
g-yonchev/DarkNStormy-JS-UI-and-DOM-TeamProject
ConnectTheDots/public/scripts/crossBrowsers.js
421
var crossBrowser = function (browser, x, y) { if (browser === 'Firefox 39') { x = x - 490; y = y + 10; } else if (browser === 'MSIE 10') { x = x - 588.7037353; y = y + 3 - 0.32638931; } else if (browser === 'IE 11') { x = x - 641; y = y + 2.5; } else if (b...
mit
greatwitenorth/lumen-doctrine-hateoas
app/Repositories/BaseRepository.php
128
<?php namespace App\Repositories; interface BaseRepository { public function paginateAll($perPage = 15, $pageName = 'page'); }
mit
NucleusPowered/Nucleus
nucleus-core/src/main/java/io/github/nucleuspowered/nucleus/core/scaffold/command/modifier/impl/RequiresEconomyModifier.java
1279
/* * This file is part of Nucleus, licensed under the MIT License (MIT). See the LICENSE.txt file * at the root of this project for more details. */ package io.github.nucleuspowered.nucleus.core.scaffold.command.modifier.impl; import io.github.nucleuspowered.nucleus.core.scaffold.command.ICommandContext; import io....
mit
ocean90/wpfmw-gallery
assets/css/style.css
3786
/** * Custom styles. Loaded after bootstrap. */ html, body { height:100%; } body { background-color: #dde4ec; font-family: 'Lato', sans-serif; color: #6e6e6e; } .container { min-height: 100%; margin-bottom: -200px; /* Height of footer */ height: auto; position: relative; } #content { padding: 40px 0; ...
mit
pawwkm/Pote.CommandLine
Pote.CommandLine.Tests/Mocks/VerbWithOptionalOption.cs
1172
namespace Pote.CommandLine.Mocks { /// <summary> /// A verb with an optional option. /// </summary> public class VerbWithOptionalOption : Verb { /// <summary> /// Some helpful hint on how to use this verb. /// </summary> public override string Help ...
mit
Varriount/Colliberation
libs/twisted/internet/task.py
24723
# -*- test-case-name: twisted.test.test_task,twisted.test.test_cooperator -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Scheduling utility methods and classes. @author: Jp Calderone """ __metaclass__ = type import time from zope.interface import implements from twisted.python imp...
mit
ludens/ludens.kr
tags/branding/index.html
10684
<!DOCTYPE html> <html lang="ko-kr"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="generator" content="Hugo 0.15" /> <title>#Ludens</title> <meta property=...
mit
seven-phases/spectrum-analyzer
libraries/kali/ui/native/widgets.base.h
1149
#ifndef KALI_UI_NATIVE_WIDGETS_BASE_INCLUDED #define KALI_UI_NATIVE_WIDGETS_BASE_INCLUDED #include "kali/function.h" #include "kali/containers.h" #include "kali/ui/base.h" // ............................................................................ namespace kali { namespace ui { namespace native { namespa...
mit
HosseinChibane/CFPMS
src/DUDEEGO/PlatformBundle/Form/EA_DocumentType.php
4433
<?php namespace DUDEEGO\PlatformBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Component\Form\Extension\Core\Type\SubmitType; use Symfony\Component\Form\Extension\Core\Type\TextType; use Vich\Up...
mit
srijannnd/Login-and-Register-App-in-Django
simplesocial/groups/migrations/0001_initial.py
1868
# -*- coding: utf-8 -*- # Generated by Django 1.11.5 on 2017-09-21 12:06 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ migratio...
mit
andrewdefries/Ames_ToxBenchmark
42397-65-9.txt.html
235
<html><img border=0 src=42397-65-9.txt alt=42397-65-9.txt></img><body> "x" "1" "KAZIUS, J, MCGUIRE, R AND BURSI, R. DERIVATION AND VALIDATION OF TOXICOPHORES FOR MUTAGENICITY PREDICTION. J. MED. CHEM. 48: 312-320, 2005" </body></html>
mit
johnspackman/qxcompiler
test/compiler/testapp/source/class/testapp/test/TestPlugins.js
1400
/* ************************************************************************ * * qxcompiler - node.js based replacement for the Qooxdoo python * toolchain * * https://github.com/qooxdoo/qooxdoo-compiler * * Copyright: * 2011-2018 Zenesis Limited, http://www.zenesis.com * * License: * ...
mit
malyusha/kodix
src/Support/Traits/Component/ComplexTrait.php
2709
<?php namespace Kodix\Support\Traits\Component; use CComponentEngine; /** * This trait makes complex class easier to write * You just need to change setUrlTemplates404 method with your paths * * Class ComplexTrait * @package Malyusha\Helpers\Traits * * @property array $arParams */ trait ComplexTrait { p...
mit
philpill/js-canvas-game-architecture
index.html
1222
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>JS Canvas Game Architecture</title> <link rel="stylesheet" type="text/css" href="css/main.css" /> </head> <body> <div id="Container"> <h1> <a href="https://github.com/...
mit
urielsade/urielsade.github.io
flowfield.js
1411
/* * Background sketch * Author: Uriel Sade * Date: Feb. 22, 2017 */ var canvas; var time_x, time_y, time_z, time_inc; var field = []; var particles = []; var rows, cols; var scl = 20; function setup() { canvas = createCanvas(windowWidth, windowHeight); canvas.position(0,0); canvas.style('z-value', '-1...
mit
mmithril/XChange
xchange-bitstamp/src/test/java/org/knowm/xchange/bitstamp/service/marketdata/TickerFetchIntegration.java
929
package org.knowm.xchange.bitstamp.service.marketdata; import static org.fest.assertions.api.Assertions.assertThat; import org.junit.Test; import org.knowm.xchange.Exchange; import org.knowm.xchange.ExchangeFactory; import org.knowm.xchange.bitstamp.BitstampExchange; import org.knowm.xchange.currency.CurrencyPair; i...
mit
inmcm/Zynq_Custom_Core_Templates
example_core_lite_1.0/drivers/example_core_lite_v1_0/src/example_core_lite_selftest.c
4428
/***************************** Include Files *******************************/ #include "example_core_lite.h" #include "xparameters.h" #include <stdio.h> #include <stdlib.h> #include "xil_io.h" /************************** Constant Definitions ***************************/ uint32_t a_tests[] = {1,321097,45,4294967295,0,...
mit
piwam/piwam
spec/factories/statuses.rb
98
FactoryBot.define do factory :status do sequence(:label) { |n| "President #{n}" } end end
mit
stivalet/PHP-Vulnerability-test-suite
URF/CWE_601/unsafe/CWE_601__POST__func_addslashes__header_url-sprintf_%s_simple_quote.php
1224
<?php /* Unsafe sample input : get the field UserData from the variable $_POST sanitize : use of the function addslashes construction : use of sprintf via a %s with simple quote */ /*Copyright 2015 Bertrand STIVALET Permission is hereby granted, without written agreement or royalty fee, to use, copy, modify, and...
mit
guildenstern70/rubyerails
src/AreaDelCerchio.rb
173
print 'Immettere un raggio: ' raggio_stringa = gets raggio = raggio_stringa.to_i area = raggio * raggio * Math::PI puts "L'area del cerchio di raggio #{raggio} e' #{area}"
mit
drejkim/multi-screen-demo
public/js/filters.js
193
'use strict'; /* Filters */ angular.module('multi-screen-demo.filters', [ ]). // create your own filter here filter('yourFilterName', function () { return function () { return; }; });
mit
drennen42/drennen42.github.io
BlackSox/index.html
8552
<!DOCTYPE html> <html> <head> <title>MSL BlackSox</title> <link rel="stylesheet" type="text/css" href="reset.css"/> <link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'> <link rel="stylesheet" type="text/css" href="index.css"/> </head> <body> <div id="header"> <h1>BlackSox...
mit
nathansamson/OMF
omf-aggmgr/ruby/omf-aggmgr/test/test_service.rb
1305
#!/usr/bin/env ruby require 'omf-common/servicecall' #Jabber::debug = true def run connection = OMF::XMPP::Connection.new("dom1", "test5", "123") connection.connect puts "Client connection status = #{connection.connected?}" # dom1 = OMF::ServiceCall.add_domain(:type => :http, :uri => "http://localhost:5051")...
mit
cape-io/redux-graph
test/actions.spec.js
2479
import test from 'tape' import { forEach, get, isArray, isMatch, isNumber, omit } from 'lodash' import { entityDel, ENTITY_DEL, entityPut, ENTITY_PUT, entityPutAll, ENTITY_PUTALL, entityUpdate, ENTITY_UPDATE, pickTypeId, tripleDel, TRIPLE_DEL, triplePut, TRIPLE_PUT, } from '../src' import { agent, creator, item, ma...
mit
gv2011/util
test/src/test/java/com/github/gv2011/util/bytes/DataTypeTest.java
1762
package com.github.gv2011.util.bytes; import static com.github.gv2011.testutil.Assert.assertThat; import static com.github.gv2011.testutil.Matchers.is; import org.junit.Test; import com.github.gv2011.util.BeanUtils; import com.github.gv2011.util.icol.ICollections; import com.github.gv2011.util.json.JsonUtil...
mit
jcderr/loot
blog/templates/listview.html
299
{% extends "base.html" %} {% block body %} <h2>{{ character }}'s Journal</h2> <div class="row"> <div class="col-lg-1">&nbsp;</div> <div class="col-lg-11"> {% for post in posts %} {% include "single_post.html" %} {% endfor %} </div> </div> {% endblock %}
mit
goodwinxp/Yorozuya
library/ATF/CUnmannedTraderGroupDivisionVersionInfo.hpp
1173
// This file auto generated by plugin for ida pro. Generated code only for x64. Please, dont change manually #pragma once #include <common/common.h> #include <std__vector.hpp> START_ATF_NAMESPACE #pragma pack(push, 8) struct CUnmannedTraderGroupDivisionVersionInfo { int m_iType; std::vect...
mit
monkdaf/skuter77-opencart
admin/controller/module/breadcrumb_background_image.php
3475
<?php /* Version: 1.0 Author: Artur Sułkowski Website: http://artursulkowski.pl */ class ControllerModuleBreadcrumbBackgroundImage extends Controller { private $error = array(); public function index() { $this->language->load('module/breadcrumb_background_image'); $this->document->setTitle('Breadcrumb ...
mit
sspony/oop244
documents/OOP-Notes-SAA-master/09-Oct12/mystring.h
783
#ifndef ICT_MYSTRING_H__ #define ICT_MYSTRING_H__ namespace ict{ class MyString{ private: char* data_; int len_; // utility int strlen(const char* str)const; void strcpy(char* des, const char* src)const; void strcat(char* des, const char* src)const; int strcmp(const char*...
mit
tilmanjusten/piedmont
test/fixtures/docs/poster-from-content.md
855
--- class: "vsg-page vsg-page--development" --- # Get poster data from content Jemand musste Josef K. verleumdet haben, denn ohne dass er etwas Böses getan hätte, wurde er eines Morgens verhaftet. »Wie ein Hund!« sagte er, es war, als sollte die Scham ihn überleben. Als Gregor Samsa eines Morgens aus unruhigen Trä...
mit
a-ostrovsky/business_rules_kata
src/main/java/com/kata/businessrules/MainModule.java
895
package com.kata.businessrules; import org.w3c.dom.Document; import com.google.inject.AbstractModule; import com.google.inject.TypeLiteral; import com.kata.businessrules.products.Product; public class MainModule extends AbstractModule { @Override protected void configure() { installDummyModules(); bind(new Ty...
mit
tvinoths/weather
src/app/app.module.ts
518
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { AppComponent } from './app.component'; import { WeatherComponent } from './components/weather.component'; ...
mit
Artem-Romanenia/machine-learning
MachineLearning/CallbackFrequency.cs
200
namespace MachineLearning { public enum CallbackFrequency : byte { Never = 0, EachExample = 1, EachError = 2, EachEpoch = 3, EachNEpochs = 4 } }
mit
afterburnertech/subscribem
spec/spec_helper.rb
2040
# This file is copied to spec/ when you run 'rails generate rspec:install' ENV["RAILS_ENV"] ||= 'test' #require File.expand_path("../../config/environment", __FILE__) #change the above to match the path to the spec/dummy require File.expand_path("../dummy/config/environment", __FILE__) require 'rspec/rails' require 'rs...
mit
mtils/php-ems
src/Ems/Contracts/Foundation/InputNormalizerFactory.php
3811
<?php namespace Ems\Contracts\Foundation; use Ems\Contracts\Core\AppliesToResource; use Ems\Contracts\Validation\ValidatorFactory; use Ems\Contracts\Core\HasMethodHooks; use Ems\Contracts\Core\Extendable; /** * The InputNormalizerFactory is the factory for the InputNormalizer objects. * You should categorize the i...
mit
yorgov/HorseTrack
HorseTrack/Properties/AssemblyInfo.cs
1333
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("HorseTrack")] [assembly: AssemblyDescripti...
mit
camda280/okr
okr/templates/index.html
492
<html> <head> <title>OKRs are cool!</title> </head> <body> <h1>OKRs are cool!</h1> <ul> {% for company in companies %} <li> <a href="{% url 'company' pk=company.id %}">{{ company }}</a> </li> {% endfor %}...
mit
urbanetic/utm-converter
src/converter.js
19752
(function (root, factory) { if (typeof define === 'function' && define.amd) { define([], factory); } else if (typeof exports === 'object') { module.exports = factory(); } else { root.UtmConverter = factory(); } }(this, function () { ////////////////////////////////////////////////////////////////...
mit
Manfred/HTTPauth
test/digest_conversions_test.rb
1918
$LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib' require 'test/unit' require 'httpauth/digest' class DigestConversionsTest < Test::Unit::TestCase cases = {} cases[:quote_string] = { 'word' => '"word"', 'word word' => '"word word"' } cases[:unquote_string] = cases[:quote_string].invert cases[:in...
mit
ProtonMail/WebClient
applications/mail/src/app/components/header/MailHeader.test.tsx
7113
import loudRejection from 'loud-rejection'; import { fireEvent, getByTestId, getByText } from '@testing-library/dom'; import { act, screen } from '@testing-library/react'; import { MAILBOX_LABEL_IDS } from '@proton/shared/lib/constants'; import { addApiMock, clearAll, getDropdown, getHistory, render...
mit
oliviertassinari/material-ui
docs/data/material/components/no-ssr/no-ssr-pt.md
1583
--- product: material title: Componente React Sem SSR components: NoSsr --- # Sem SSR <p class="description">O NoSsr remove intencionalmente componentes do contexto de Server Side Rendering (SSR).</p> Esse componente pode ser útil em várias situações: - Válvula de escape para dependências quebradas que não suportam...
mit
deapplegate/wtgpipeline
adam_do_coadd_batch.sh
37258
#!/bin/bash set -xv #adam-example# ./do_coadd_batch.sh MACS1115+01 W-J-B 'all exposure ' 'none' OCFI 2>&1 | tee -a OUT-coadd_W-J-B.log2 #adam-example# ./do_coadd_batch.sh ${cluster} ${filter} 'good ' 'none' 'OCFR' 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}.log ### new coaddition script ### ### the astro-...
mit
limitist-log/limitist-log.github.io
tags/low-fidelity/index.html
1846
<html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div style="text-align: center; height: 75px; padding:1px; text-transform:capitalize; backgr...
mit
huhai586/learn
slider/index.html
1592
<!DOCTYPE html> <html> <head> <title></title> <meta name="viewport" content="width=device-width"> </head> <body> <script type="text/javascript" src='jquery-1.11.1.js'></script> <div class="num"></div> <div class="slider"> <div class="touch"></div> <div class="bg"></div> </div> <dic class="console"></dic...
mit
hirai-yuki/StoryboardHelper
README.md
2096
# StoryboardHelper StoryboardHelper is a open source plug-in for **Xcode 5**. It lets you search/manage storyboard identifier without opening the .storyboard files. Using StoryboardHelper's almost the same as [Lin-Xcode5](https://github.com/questbeat/Lin-Xcode5). ## Acknowledgment StoryboardHelper is inspired by [L...
mit
hariombalhara/hariombalhara.github.io
_layouts/home-one-smart-code-hosted.html
1886
<!doctype html> <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> <!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--> <!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<!...
mit
varjolintu/muvicre-electron
index.html
1486
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>muvicre</title> <link rel="stylesheet" href="css/muvicre.css"> </head> <body> <div class="window"> <div class="form-group"> <div class="leftArea"> <button id="coverButton" class="cover btn btn-default">Cover file</b...
mit
andyjko/whyline
edu/cmu/hcii/whyline/analysis/FindOverriders.java
1239
package edu.cmu.hcii.whyline.analysis; import java.util.SortedSet; import java.util.TreeSet; import edu.cmu.hcii.whyline.bytecode.MethodInfo; import edu.cmu.hcii.whyline.source.JavaSourceFile; import edu.cmu.hcii.whyline.source.Line; import edu.cmu.hcii.whyline.source.Token; import edu.cmu.hcii.whyline.ui.WhylineUI; ...
mit
gllmt/victorhugo
site/layouts/partials/head_custom.html
127
<link rel="stylesheet" href="css/main.css"/> <script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
mit
CompilerTeaching/CompilerTeaching.github.io
cellatom/doxygen/search/variables_b.js
282
var searchData= [ ['neighbours',['neighbours',['../struct_parser_1_1_cell_atom_grammar.html#a6367dce3041506f4112c82e2ba5998a9',1,'Parser::CellAtomGrammar']]], ['newgrid',['newGrid',['../struct_compiler_1_1_state.html#a3a949d5132b7854fee15d6d13344652c',1,'Compiler::State']]] ];
mit
wissamdagher/Temenos-T24-COB-Monitor
vendor/filp/whoops/src/Whoops/Handler/Handler.php
1572
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ namespace Whoops\Handler; use Whoops\Handler\HandlerInterface; use Whoops\Exception\Inspector; use Whoops\Run; use Exception; /** * Abstract implementation of a Handler. */ abstract class Handler implements Handle...
mit
Itsmadhatter/Exile-Admin-Panel
vendor/composer/autoload_static.php
1768
<?php // autoload_static.php @generated by Composer namespace Composer\Autoload; class ComposerStaticInit1d7f3d8d9f8bff4ff374c7338c3d8879 { public static $files = array( 'ce89ade1b84217abfd74bd4c84863dc1' => __DIR__ . '/..' . '/nizarii/arma-rcon-class/arc.php', ); public static $prefixLengthsPsr...
mit
faithworkcamps/faithworkcamps.github.io
_posts/2015-07-08-joel-and-the-outcome.md
257
--- title: Joel and the Outcome date: 2015-07-08T08:09:52+00:00 layout: post thumbnail_path: 2015/07/joel-and-the-outcome2.jpg videoID: 2015/20150708.mp4 tags: - 2015-rushville-in --- {% include aws.html id=page.videoID poster=page.thumbnail_path %} Day 5
mit
dubzzz/various-algorithms
algorithms/recurse/hanoi-towers/implem_iterative_no_stack.cpp
1956
#include <algorithm> #include <iterator> #include <vector> #include "ihanoi.hpp" #include "aim.hpp" // Algorithm to be tested template <int from, int other, int to> struct ApplyMapping { std::pair<std::size_t, std::size_t> operator()(std::pair<std::size_t, std::size_t> const& move) { static_assert(from != ...
mit
tiedotguy/gostatsd
pkg/statsd/dispatcher.go
3174
package statsd import ( "context" "fmt" "hash/adler32" "sync" "github.com/ash2k/stager/wait" "github.com/atlassian/gostatsd" "github.com/atlassian/gostatsd/pkg/statser" ) // AggregatorFactory creates Aggregator objects. type AggregatorFactory interface { // Create creates Aggregator objects. Create() Aggreg...
mit
jozadaquebatista/WebDevelopment
user-login-v2.html
8289
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Themes Lab - Creative Laborator</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta content="" name="description" /> <meta content="themes-lab" name="author" /> <link re...
mit
housinganywhere/graphql
rules_default_values_of_correct_type_test.go
3502
package graphql_test import ( "testing" "github.com/housinganywhere/graphql" "github.com/housinganywhere/graphql/gqlerrors" "github.com/housinganywhere/graphql/testutil" ) func TestValidate_VariableDefaultValuesOfCorrectType_VariablesWithNoDefaultValues(t *testing.T) { testutil.ExpectPassesRule(t, graphql.Defau...
mit
egorps/run-caoch
test/e2e/scenarios.js
936
'use strict'; /* http://docs.angularjs.org/guide/dev_guide.e2e-testing */ describe('my app', function() { beforeEach(function() { browser().navigateTo('app/index-old.html'); }); it('should automatically redirect to /view1 when location hash/fragment is empty', function() { expect(browser().location()...
mit
palash2264/shopbuffet
app/css/styles.css
101
body { background: red; } body h2 { color: yellow; } /*# sourceMappingURL=styles.css.map */
mit
FubarDevelopment/FtpServer
docs/api/FubarDev.FtpServer.FileSystem.S3.html
5784
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Namespace FubarDev.FtpServer.FileSystem.S3 | FTP Server documentation </title> <meta name="viewport" content="width=device-width"> <meta name="...
mit
YanZhiwei/DotNet.Utilities
YanZhiwei.DotNet2.Utilities.WebFormExamples/FileDownHelperDemo.aspx.designer.cs
1477
//------------------------------------------------------------------------------ // <自动生成> // 此代码由工具生成。 // // 对此文件的更改可能导致不正确的行为,如果 // 重新生成代码,则所做更改将丢失。 // </自动生成> //------------------------------------------------------------------------------ namespace YanZhiwei.DotNet2.Utilities.WebFormExamples { ...
mit
natac13/Markdown-Previewer-React
app/components/Input/index.js
30
export default from './Input';
mit
StoyanVitanov/SoftwareUniversity
Java Web/Web Fundamentals/05.Handmade Web Server/servlet-containers/static-container/src/org/vitanov/container/ContainerConstants.java
161
package org.vitanov.container; public class ContainerConstants { public static String CONTAINER_ROOT_PATH = System.getProperty("user.dir"); }
mit
LazyTarget/Lux
src/Lux.Tests/IO/PathHelperTests.cs
1781
using Lux.IO; using NUnit.Framework; namespace Lux.Tests.IO { [TestFixture] public class PathHelperTests { [TestCase] [Category("ExcludeBuildAgent")] // todo: fix so be able to... public void GetRootParent() { const string expected = "C:/"; const...
mit
coingecko/cryptoexchange
lib/cryptoexchange/exchanges/bit2c/services/pairs.rb
559
module Cryptoexchange::Exchanges module Bit2c module Services class Pairs < Cryptoexchange::Services::Pairs def fetch output = super market_pairs = [] output.each do |pair| market_pairs << Cryptoexchange::Models::MarketPair.new( ...
mit
jh-bate/fantail-bot
lib/Question.go
1207
package lib import ( "log" "strings" ) type ( Question struct { RelatesTo struct { Answers []string `json:"answers"` Save bool `json:"save"` SaveTag string `json:"saveTag"` } `json:"relatesTo"` Context []string `json:"context"` QuestionText string `json:"question"` Possible...
mit
zengfenfei/ringcentral-ts
src/definitions/SyncInfo.ts
177
/* Generated code */ interface SyncInfo { syncType?: 'FSync' | 'ISync'; syncToken?: string; syncTime?: string; olderRecordsExist?: boolean; } export default SyncInfo;
mit
MakerCollider/curie-smartnode-mac
curie-smartnode/smartnode/node_modules/node-red-contrib-smartnode/GroveSensors/groveTemp/groveTemp.html
2337
<!-- Copyright 2015 Maker Collider Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in...
mit
nblenke/buzz-proto
public/assets/js/router.js
1903
app.router = Backbone.Router.extend({ el : $('main'), routes: { // '': 'home', // '!/': 'home', '!/event-list/': function () { app.preRoute('event-list', this.el); new app.eventListView({ el: this.el }); }, '!/event-detail/:key': function (key) { ...
mit
enchev-93/Telerik-Academy
05.CSS/CSS Layout/Problem03.MembersLogin/styles/styles.css
2097
body { font-family: Calibri; padding: 0; margin: 0; } #container { width: 660px; } .login { background: url(../images/logo.png) no-repeat left center, -moz-linear-gradient(top, rgba(59,59,59,0.6) 0%, rgba(59,59,59,0.6) 1%, rgba(42,42,42,1) 95%, rgba(59,59,59,0.9) 100%); /* FF3.6+ */ background: url(../images/lo...
mit
horiajurcut/matchismo
Matchismo/Model/Card.h
395
// // Card.h // Matchismo // // Created by Horia Jurcut on 01/07/16. // Copyright © 2016 Horia Jurcut. All rights reserved. // #import <Foundation/Foundation.h> @interface Card : NSObject @property (strong, nonatomic) NSString *contents; @property (nonatomic, getter=isChosen) BOOL chosen; @property (nonatomic, g...
mit
Sonictherocketman/mirror.microblog
_site/2016/04/01/06ee.html
71090
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Brian Schrader - 06ee</title> <link rel="shortcut icon" href="/assets/images/favicon.ico"> <link rel="sty...
mit
fsy0718/study
node/express/blog/api/db.js
293
"use strict"; const mongoose = require('mongoose'); module.exports = (()=>{ mongoose.connect('mongodb://192.168.56.101:30000/blog'); let db = mongoose.connection; db.on('error', function(err){ console.log(err); }); db.once('open', (err)=> { console.log('connect success'); }) })();
mit
massyas/lychee_ynh
source/php/modules/upload.php
9705
<?php /** * @name Upload Module * @author Philipp Maurer * @author Tobias Reich * @copyright 2014 by Philipp Maurer, Tobias Reich */ if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!'); function upload($files, $albumID) { global $database, $settings; switch($albumID) { // s for public ...
mit
DaoCaoWu/AndroidMVP
README.md
24
# AndroidMVP AndroidMVP
mit
ttn-be/ttnmapper
config.py
1297
from network import WLAN ############################################################################### # Settings for WLAN STA mode ############################################################################### WLAN_MODE = 'off' #WLAN_SSID = '' #WLAN_AUTH = (WLAN.WPA2,'') #################...
mit
bayareawebpro/illumine-framework
Traits/DispatchesJobs.php
613
<?php namespace Illumine\Framework\Traits; use Illuminate\Bus\Dispatcher; trait DispatchesJobs { /** * Dispatch a job to its appropriate handler. * * @param mixed $job * @return mixed */ protected function dispatch($job) { return $this->plugin->make(Dispatcher::class)->di...
mit
ui-router/ui-router.github.io
_ng2_docs/1.0.0-beta.3/interfaces/resolve.resolvableliteral.html
21047
--- --- <!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>ResolvableLiteral | UI-Router</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" hre...
mit
kid551/safsdev.test.github.io
keyref/DDDriverFlowCommandsCallStep.html
3620
<DIV NAME="detail" ID="detail" xmlns="http://www.w3.org/TR/REC-html40"><H3><A NAME='detail_CallStep'></A>DDDriverFlowCommands::<BIG>CallStep</BIG> </H3> <TABLE><TR> <TD class="borderStyle"><SPAN CLASS='Support' TITLE='Rational Robot Classic'>RC</SPAN></TD> <TD class="borderStyle"><SPAN CLASS='Support' TITLE='SAFS TID...
mit