code
stringlengths
3
1.01M
repo_name
stringlengths
5
116
path
stringlengths
3
311
language
stringclasses
30 values
license
stringclasses
15 values
size
int64
3
1.01M
<html><body> <h4>Windows 10 x64 (18363.900)</h4><br> <h2>_WHEA_GENERIC_ERROR_DESCRIPTOR_V2</h2> <font face="arial"> +0x000 Type : Uint2B<br> +0x002 Reserved : UChar<br> +0x003 Enabled : UChar<br> +0x004 ErrStatusBlockLength : Uint4B<br> +0x008 RelatedErrorSourceId : Uin...
epikcraw/ggool
public/Windows 10 x64 (18363.900)/_WHEA_GENERIC_ERROR_DESCRIPTOR_V2.html
HTML
mit
1,100
var async = require('async'); function captainHook(schema) { // Pre-Save Setup schema.pre('validate', function (next) { var self = this; this._wasNew = this.isNew; if (this.isNew) { this.runPreMethods(schema.preCreateMethods, self, function(){ next(); }); } else { this.ru...
hackley/captain-hook
lib/index.js
JavaScript
mit
1,881
/** * Copyright (c) <2016> granada <afernandez@cookinapps.io> * * This source code is licensed under the MIT license. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software wi...
webappsdk/granada
Release/include/granada/runner/spidermonkey_javascript_runner.h
C
mit
6,336
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> ...
kuhlenh/port-to-core
Reports/ks/ksp_mods_090.1.0.4/Assembly-CSharp-net35.html
HTML
mit
152,776
<?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) . ' ' . $unit...
gpires/BroadApi
class/functions.php
PHP
mit
5,568
# LearningAkkaJava A distributed key value database. My journey through the Learning Akka book by Jason Goodwin.
dazito/LearningAkkaJavaServer
README.md
Markdown
mit
115
# 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', ...
poulh/tvtime
lib/p3-tv/settings.rb
Ruby
mit
7,815
import * as React from 'react'; function CubeIcon(props) { return ( <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" {...props} > <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} ...
dreamyguy/gitinsight
frontend/src/components/primitives/Icon/Cube.js
JavaScript
mit
442
<ion-header> <ion-navbar> <ion-title>{{'Wallet Color' | translate}}</ion-title> </ion-navbar> </ion-header> <ion-content class="wallet-color-count wallet-color-default"> <ion-list radio-group [(ngModel)]="currentColorIndex"> <ion-item *ngFor="let i of colorCount"> <ion-label> <span class...
bitjson/copay
src/pages/settings/wallet-settings/wallet-color/wallet-color.html
HTML
mit
495
INCLUDE "hardware.inc" INCLUDE "header.inc" SECTION "Main",HOME ;-------------------------------------------------------------------------- ;- Main() - ;-------------------------------------------------------------------------- Main: ld a,$80 ld ...
AntonioND/gbc-hw-tests
interrupts/joy_interrupt_manual_delay/main.asm
Assembly
mit
877
# module Hello class Identity < ActiveRecord::Base module Password extend ActiveSupport::Concern included do validates_presence_of :email, :password, if: :is_password? # email validates_email_format_of :email, if: :is_password? validates_uniqueness_of :email, ...
stulzer/hello
app/models/concerns/identity/password.rb
Ruby
mit
1,455
<!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> ...
capaj/ng-tools
showcase/markCurrentLinks.html
HTML
mit
1,586
var repl = require('repl'); var server = repl.start({}); var con = server.context; con.name='zfpx'; con.age = 5; con.grow = function(){ return ++con.age; }
liushaohua/node-demo
part01/repl.js
JavaScript
mit
160
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- 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"> <...
vangav/vos_backend
doc/com/vangav/backend/exceptions/package-use.html
HTML
mit
9,618
--- layout: page title: Library Students categories: [] tags: [] status: draft type: page published: false meta: _edit_last: '1' --- [nggallery id=8]<br /><br />
nu-lts/jekyll-snippets
_pages/2012-09-18-library-students.html
HTML
mit
164
// // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved // LICENSE: Atomic Game Engine Editor and Tools EULA // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for // license information: https://github.com/AtomicGameEngine/AtomicGameEngine // #include <Atomic/Core/ProcessUtils.h> #i...
nonconforme/AtomicGameEngine
Source/AtomicTool/AtomicTool.cpp
C++
mit
9,385
/* * boatWithSupport.cpp * * Created on: 16 de Abr de 2013 * Author: Windows */ #include "BoatWithSupport.h" BoatWithSupport::BoatWithSupport(int extraCapacity) : Boat() { extraCap = extraCapacity; lastMaxCap = 0; lastTransported = 0; } BoatWithSupport::BoatWithSupport(int capacity, i...
jnadal/CAL
Projecto 1/codigo/source/BoatWithSupport.cpp
C++
mit
1,007
#!/usr/bin/env python import os import sys if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "corponovo.settings") try: from django.core.management import execute_from_command_line except ImportError: # The above import may fail for some other reason. Ensure that th...
hhalmeida/corponovo
manage.py
Python
mit
807
import time t1=.3 t2=.1 path="~/Dropbox/Ingenieria/asignaturas_actuales" time.sleep(t2) keyboard.send_key("<f6>") time.sleep(t2) keyboard.send_keys(path) time.sleep(t1) keyboard.send_key("<enter>")
andresgomezvidal/autokey_scripts
data/General/file manager/asignaturas_actuales.py
Python
mit
200
package org.bitbucket.ytimes.client.main; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Created by andrey on 27.05.17. */ public class Main { public static void main( String[] args ) throws Exception { ClassPathXmlApplicationContext ctx = new ClassPath...
ytimesru/kkm-pc-client
src/main/java/org/bitbucket/ytimes/client/main/Main.java
Java
mit
372
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 ...
mudge/oplogjam
lib/oplogjam/operation.rb
Ruby
mit
698
from charmhelpers.core.hookenv import ( config, unit_get, ) from charmhelpers.contrib.network.ip import ( get_address_in_network, is_address_in_network, is_ipv6, get_ipv6_addr, ) from charmhelpers.contrib.hahelpers.cluster import is_clustered PUBLIC = 'public' INTERNAL = 'int' ADMIN = 'admin'...
jiasir/openstack-trove
lib/charmhelpers/contrib/openstack/ip.py
Python
mit
2,332
# js-base
dingchaolin/js-base
README.md
Markdown
mit
9
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...
ericjin527/MockInterview
src/main/java/alexp/blog/service/ScheduleServiceImpl.java
Java
mit
569
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/dele...
zuiidea/antd-admin
src/services/api.js
JavaScript
mit
388
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); })...
cibernox/ember-power-select
tests/dummy/app/templates/snippets/debounce-searches-1-js.js
JavaScript
mit
534
<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=Materi...
ThaDafinser/UserAgentParserComparison
v4/user-agent-detail/9e/83/9e83503e-6e95-43b7-b451-772876a987e9.html
HTML
mit
45,638
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_24) on Mon Apr 01 21:56:34 EDT 2013 --> <TITLE> BooleanExpressionType (ATG Java API) </TITLE> <META NAME="date" CONTENT="2013-04-01"> <LINK REL ="s...
Smolations/more-dash-docsets
docsets/ATG 10.2.docset/Contents/Resources/Documents/atg/search/routing/command/search/BooleanExpressionType.html
HTML
mit
16,230
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: 'ctrl', contro...
bfunc/AngularWebpack
src/main/item/routes.js
JavaScript
mit
346
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...
Dackng/eh-unmsm-client
node_modules/ng2-validation/dist/not-equal/directive.d.ts
TypeScript
mit
467
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: fle...
rtrigoso/ghost-somepolymath
content/themes/default/assets/css/stylesheet.css
CSS
mit
3,250
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('friendly-errors-webpack-plugin') // add hot-r...
sunpeijun/component
build/webpack.dev.conf.js
JavaScript
mit
1,248
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 [...
lzlarryli/limelight
app/templates/js/treeplot.js
JavaScript
mit
4,263
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, abort...
jpoz/almaz
spec/spec_helper.rb
Ruby
mit
973
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) { thi...
goldoraf/osef
src/storage/event_store.js
JavaScript
mit
1,162
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Numerics; namespace _02_Convert_from_base_N_to_base_10 { public class ConvertFromBaseNToBase10 { public static void Main() { string[] parameters = Consol...
akkirilov/SoftUniProject
01_ProgrammingFundamentals/Homeworks/09_Strings-Ex/02_Convert from base-N to base-10/ConvertFromBaseNToBase10.cs
C#
mit
1,199
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 stri...
avinet/joddgewe
Joddgewe/Form1.cs
C#
mit
7,184
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.as...
palatable/lambda
src/test/java/com/jnape/palatable/lambda/optics/prisms/MapPrismTest.java
Java
mit
1,147
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 15l-5-5h3V9h4v4h...
AlloyTeam/Nuclear
components/icon/esm/assignment-returned.js
JavaScript
mit
355
(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', }); } ...
hawkup/github-stars
angularjs/app/home/config.route.js
JavaScript
mit
326
using OTransport.Factory; using OTransport.Serializer.protobuf; namespace OTransport.Serializer.protobuf { public static class ObjectTransportAssemblyLine_protobufExtension { /// <summary> /// Use Protobuf Serialization to serialize objects /// </summary> /// <returns></returns...
RhynoVDS/ObjectTransport
Implementation/ObjectTransport.Serializer.protobuf/ObjectTransportAssemblyLine_protobufExtension.cs
C#
mit
682
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...
SamyZ/BoomApp
js/views/newChallenge/PrizeView.js
JavaScript
mit
2,598
# tuff One More Web Framework
tuffjs/tuff-chat
tuff-lib-devel/README.md
Markdown
mit
30
/* * Copyright (c) 2012 M. M. Naseri <m.m.naseri@gmail.com> * * Permission is hereby granted, free of charge, to any person obtaining a copy of this * software and associated documentation files (the "Software"), to deal in the Software * without restriction, including without limitation the rights to use, copy, m...
agileapes/jpowerpack
string-tools/src/main/java/com/agileapes/powerpack/string/exception/NoMoreTextException.java
Java
mit
1,068
/* * The MIT License * * Copyright 2014 Kamnev Georgiy (nt.gocha@gmail.com). * * Данная лицензия разрешает, безвозмездно, лицам, получившим копию данного программного * обеспечения и сопутствующей документации (в дальнейшем именуемыми "Программное Обеспечение"), * использовать Программное Обеспечение без огра...
gochaorg/lang2
src/test/java/xyz/cofe/lang2/parser/vref/L2EngineVarRef2.java
Java
mit
4,141
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: [ ...
jefferey/octoviz
src/components/views/RepoUserHeatmap.js
JavaScript
mit
2,707
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"); } }
MrGaoRen/secretProject
cw/src/db/test.java
Java
mit
232
# XHCustom XHCustom
magicalstar/XHCustom
README.md
Markdown
mit
20
:- 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(+Hea...
wouterbeek/plJwt
prolog/jwt/jwt_enc.pl
Perl
mit
1,547
# jsCommon common javascript functionality.
rogovski/jsCommon
README.md
Markdown
mit
44
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; impor...
mseclab/AHE17
Token-Generator/src/main/java/DotNet.java
Java
mit
3,987
using System.Reflection; using System.Runtime.CompilerServices; 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("03...
delian1986/SoftUni-C-Sharp-repo
Old Courses/Programming Fundamentals Old/03. Methods/Methods/03. Printing Triangle/Properties/AssemblyInfo.cs
C#
mit
1,418
#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 createAssetDirectories(); ci::fs::path getWorkingPath(); ci::fs::path getPath( std::string path = "" ); ci::fs::path getPresetsPat...
rezaali/Cinder-Paths
src/Paths.h
C
mit
911
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()
bigeasy/hotspot
jit/less-than.js
JavaScript
mit
304
Netcat-like command agent for MCollective ========================================= Why? ---- Do you need to send commands to a daemon in plaintext over TCP? I do :-) That is the only purpose after this agent plugin, to be able to send commands in plaintext to some daemons. How does it work? ----------------- Simpl...
tripledes/mcollective-netcat-agent
README.md
Markdown
mit
1,290
<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://github.com/Runbook" target="_blank">Runbook</a>. All Rights Reserved.</p> </div> </div> </div> <!-- Bootstrap core JavaScript =======...
Runbook/runbook.io
src/web/templates/dash-footer.html
HTML
mit
1,555
/*! * hybridify-all <https://github.com/hybridables/hybridify-all> * * Copyright (c) 2015 Charlike Mike Reagent, contributors. * Released under the MIT license. */ 'use strict' var reduce = require('object.reduce') var hybridify = require('hybridify') /** * > Hybridifies all the selected functions in an object...
hybridables/hybridify-all
index.js
JavaScript
mit
1,844
/*! p5.dom.js v0.3.3 May 10, 2017 */ /** * <p>The web is much more than just canvas and p5.dom makes it easy to interact * with other HTML5 objects, including text, hyperlink, image, input, video, * audio, and webcam.</p> * <p>There is a set of creation methods, DOM manipulation methods, and * an extended p5.Eleme...
dsii-2017-unirsm/dsii-2017-unirsm.github.io
taniasabatini/10PRINT/libraries/p5.dom.js
JavaScript
mit
70,383
<?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(arra...
izniburak/nur-core
src/Database/Model.php
PHP
mit
489
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 { |pix...
oxoooo/miro
lib/miro/dominant_colors.rb
Ruby
mit
4,361
<?php include_once('Msidcalendar_LifeCycle.php'); class Msidcalendar_Plugin extends Msidcalendar_LifeCycle { /** * See: http://plugin.michael-simpson.com/?page_id=31 * @return array of option meta data. */ public function getOptionMetaData() { // http://plugin.michael-simpson.com/?pa...
bretthamilton/msidcalendar
Msidcalendar_Plugin.php
PHP
mit
6,513
--- layout: blog_by_tag tag: rc permalink: /search/label/rc.html ---
arkarkark/arkarkark.github.io
search/label/rc.md
Markdown
mit
69
<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"> ...
mrkjohnperalta/ITSQ
application/views/USER/user_editorginfo.php
PHP
mit
3,737
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...
filosofianakatemia/qne
server/src/index.ts
TypeScript
mit
482
import { createStore } from '@utils/store.utils'; import placeholderImage from '../images/placeholder.jpeg'; import { getPhotoUrl, getPrefetchedPhotoForDisplay } from './api'; import { getLocalPhotoPath, getRandomLocalPhoto } from './photos.local'; import Settings from './settings'; export const getStateObject = (forc...
emadalam/mesmerized
src/modules/background/utils/store.js
JavaScript
mit
1,498
<!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...
GoC-Spending/data-corporations
html/234567155930.html
HTML
mit
30,978
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 IConnectableO...
KodamaSakuno/ProjectDentan
Dentan/ViewModel/ViewModel`T.cs
C#
mit
1,000
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......
malykhinvi/generator-spa
generators/app/templates/src/pages/TodosPage/CreateTodoForm.js
JavaScript
mit
651
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).with(0).arguments ...
eriksk/shirokuro
spec/shirokuro/ecs/game_object_manager_spec.rb
Ruby
mit
3,298
### 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...
larsbijl/trending_archive
2018-11/2018-11-14.md
Markdown
mit
15,666
CREATE OR REPLACE FUNCTION ts.updatechroncontrolnotes(_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$
NeotomaDB/Neotoma_SQL
function/ts/updatechroncontrolnotes.sql
SQL
mit
283
--- 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><t...
nicedaymore/nicedaymore.github.io
_posts/2017-01-17-Sherri-Hill-Prom-Dresses-Style-50075-Sleeveless-FloorLength-Ballgown.md
Markdown
mit
3,292
--- layout: page title: Snow Lotus Chemical Award Ceremony date: 2016-05-24 author: Lisa Hunter tags: weekly links, java status: published summary: Mauris dapibus interdum quam, in hendrerit mi consectetur non. banner: images/banner/meeting-01.jpg booking: startDate: 08/10/2018 endDate: 08/14/2018 ctyhocn: MERCTH...
KlishGroup/prose-pogs
pogs/M/MERCTHX/SLCAC/index.md
Markdown
mit
1,300
<!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> ...
ThaDafinser/UserAgentParserComparison
v5/user-agent-detail/a5/ce/a5ce5d03-9277-45ee-a20f-dcf6d37b3eda.html
HTML
mit
51,731
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...
cardmagic/dm-core
lib/data_mapper/type.rb
Ruby
mit
4,085
<!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...
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.06.1-2.0.5/released/8.10.1/unimath-ktheory/0.1.0.html
HTML
mit
6,637
<!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" ...
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.06.1-2.0.5/extra-dev/8.10.0/color/1.2.0.html
HTML
mit
8,988
Framework 4.6 properties { $rootNow = Resolve-Path . $nugetexe = "$rootNow/buildTools/nuget.exe" $mahuaDownloadTempDir = "$( $env:TEMP )\Newbe\Newbe.Mahua\Mahua2.Asset" $mahuaFilesJson = "mahua.files.json" } function Get-PlartformName { if ((Test-Path "$rootNow/CQA.exe") -or (Test-Path "$rootNow/C...
Newbe36524/Newbe.Mahua.Framework
src/Newbe.Mahua.Installer/mahua.ps1
PowerShell
mit
2,773
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....
jgrillo/wordcount-service
src/test/java/com/jgrillo/wordcount/api/CountsTest.java
Java
mit
3,572
namespace Archient.Razor.TagHelpers { using Microsoft.AspNet.Razor.Runtime.TagHelpers; using Microsoft.AspNet.Razor.TagHelpers; [TagName("asp-if-authenticated")] [ContentBehavior(ContentBehavior.Modify)] public class AuthenticatedUserTagHelper : ConditionalDisplayTagHelperBase { protec...
ericis/me
Web/src/Archient.Razor.TagHelpers/AuthenticatedUserTagHelper.cs
C#
mit
557
[mol_plot_fill] { stroke: none; stroke-width: 0; opacity: .1; fill: currentColor; pointer-events: none; } [mol_plot_fill_sample] { opacity: .1; background: currentColor; position: absolute; bottom: 0; top: .75em; left: 0; right: 0; }
eigenmethod/mol
plot/fill/fill.view.css
CSS
mit
247
<!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...
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.10.0-2.0.6/released/8.11.2/monae/0.1.2.html
HTML
mit
13,594
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>string_kind</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../index.html" title="Chapter 1....
davehorton/drachtio-server
deps/boost_1_77_0/libs/json/doc/html/json/ref/boost__json__string_kind.html
HTML
mit
5,978
--- 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://skranz.github.io/r/2021/09/24/bundestag2021.html). Bundestag elections are over and acc...
skranz/skranz.github.com
_posts/2021-09-27-bundestag2021_update.md
Markdown
mit
4,954
<!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.mi...
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.06.1-2.0.5/released/8.11.1/graph-theory/0.9.html
HTML
mit
7,594
/** * Automatically generated file. Please do not edit. * @author Highcharts Config Generator by Karasiq * @see [[http://api.highcharts.com/highcharts]] */ package com.highcharts.config import scalajs.js, js.`|` import com.highcharts.CleanJsObject import com.highcharts.HighchartsUtils._ /** * @note JavaScri...
Karasiq/scalajs-highcharts
src/main/scala/com/highcharts/config/PlotOptionsMappointStatesHoverMarkerStatesHover.scala
Scala
mit
6,347
# # Node.js v0.11.x Dockerfile # https://github.com/hden/nodejs-v0.11 # 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.1...
hden/nodejs-v0.11
Dockerfile
Dockerfile
mit
322
<?php /** Telerivet_ScheduledMessage Represents a scheduled message within Telerivet. Fields: - id (string, max 34 characters) * ID of the scheduled message * Read-only - content * Text content of the scheduled message * Read-only ...
Telerivet/telerivet-php-client
lib/scheduledmessage.php
PHP
mit
6,284
import React, { useState, useRef } from 'react'; import { computeOutOffsetByIndex, computeInOffsetByIndex } 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...
lightsinthesky/react-node-graph
index.js
JavaScript
mit
6,053
### 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 anfi...
HPCC-Cloud-Computing/press
prediction/anfis-module/README.md
Markdown
mit
1,069
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(r...
taoyuan/mustem
test/renderer.test.js
JavaScript
mit
5,908
<!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 » \ep_BDL_Wskaznik_Wariacja</title> <meta name="author" conte...
veriKami/ePF_API_doc
ePF_API_phpdoc-0.1.x-dev/classes/ep_BDL_Wskaznik_Wariacja.html
HTML
mit
31,064
<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"> ...
timvk/IssueTracker-AngularJS
app/home/home.html
HTML
mit
5,489
# 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. ## Installa...
masarakki/sprockets
README.md
Markdown
mit
18,185
import { Component ,OnInit} from '@angular/core'; import {GlobalService} from '../_globals/global.service'; import {PermissionService} from './permission.service'; import {ContentTypeService} from '../content_types/content_type.service'; import {Permission} from './permission'; @Component({ selector: 'permission-in...
morfat/angular-quickstart
src/app/permissions/permission.component.ts
TypeScript
mit
3,259
/* * Copyright (c) 2006-2012 Rogério Liesenfeld * This file is subject to the terms of the MIT license (see LICENSE.txt). */ package mockit.integration.junit4; import org.junit.runner.*; import org.junit.runners.*; @RunWith(Suite.class) @Suite.SuiteClasses({MockDependencyTest.class, UseDependencyTest.cla...
borisbrodski/jmockit
main/test/mockit/integration/junit4/DependencyTests.java
Java
mit
366
<!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 &amp; P...
SimonBiggs/SimonBiggs.github.io
qatrackdemodocs/v/0.2.7/deployment/linux/lapp.html
HTML
mit
30,582
## 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...
swgillespie/rust-guideline-lints
README.md
Markdown
mit
1,595
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 [...
jaquadro/Treefrog
Treefrog/Plugins/Tile/Registration.cs
C#
mit
2,521
<!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="../../../../../bootst...
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.03.0-2.0.5/released/8.5.3/mathcomp-character/1.10.0.html
HTML
mit
7,823