repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
whiskyoo/dva-scaffolding
src/router.js
395
import React from 'react'; import { applyRouterMiddleware, Router, Route } from 'dva/router'; import { useScroll } from 'react-router-scroll'; import App from '@/app/App'; function RouterConfig({ history }) { return ( <Router history={history} render={applyRouterMiddleware(useScroll())}> <Route path="/" c...
mit
sebacorrea33/todoinstitutos
src/containers/ProfilePage/ProfileHeader/SocialIcon.js
602
import React, { Component, PropTypes } from 'react'; import { Image } from 'react-bootstrap'; require('./styles.scss'); class SocialBar extends Component { constructor(props) { super(props); } render() { const { icon, url } = this.props; return ( <a href={url} target="_blank"> ...
mit
iseki-masaya/spongycastle
prov/src/test/java/org/spongycastle/pqc/jcajce/provider/test/McElieceKobaraImaiCipherTest.java
1060
package org.spongycastle.pqc.jcajce.provider.test; import java.security.KeyPairGenerator; import java.security.spec.AlgorithmParameterSpec; import javax.crypto.Cipher; import org.spongycastle.pqc.jcajce.spec.ECCKeyGenParameterSpec; public class McElieceKobaraImaiCipherTest extends AsymmetricHybridCipherTest { ...
mit
guotao2000/ecmall
temp/compiled/wapmall/qhb.success.html.php
3740
<!doctype html> <html> <head> <title>我抢到红包啦</title> <meta charset="utf-8"> <meta name="keywords" content="倍全,倍全商城,倍全订货,社区O2O,社区便利店,网上超市,济南社区020,便利店O2O,济南社区便利店" /> <meta name="description" content="倍全商城-倍全旗下品牌,济南同城最快速的便利店商品订购派送网站" /> <link rel="icon" href="favicon.ico" ...
mit
xsunfeng/cir
password_reset/forms.py
4276
from django import forms from django.core.validators import validate_email from django.db.models import Q from django.utils.translation import ugettext_lazy as _ from .utils import get_user_model class PasswordRecoveryForm(forms.Form): username_or_email = forms.CharField() error_messages = { 'not_fo...
mit
MichaelRandall/heroes-villians
app/hero-list/hero-list.component.spec.js
377
'use strict'; describe('heroList', function(){ //Load module that contains the heroList component beforeEach(module('heroList')); describe('HeroListController', function(){ it('should create a `heroes` model with 6 heroes', inject(function($componentController){ var ctrl = $componentController('heroList'); ...
mit
mamoru-vm/mamoru
mamoru/server/lib/sync.js
9615
// to be used if new modules are added to MSF. Mamoru.Sync.allModules = function(){ var moduleFixtures = { exploit: 'module.exploits', post: 'module.post', auxiliary: 'module.auxiliary', payload: 'module.payloads', encoder: 'module.encoders', nop: 'module.nops', }...
mit
DigitalState/Core
src/System/Query/TenantParameters.php
177
<?php namespace Ds\Component\System\Query; /** * Class TenantParameters * * @package Ds\Component\System */ class TenantParameters implements Parameters { use Base; }
mit
jasnow/aruba
lib/aruba/processes/spawn_process.rb
7406
require 'childprocess' require 'tempfile' require 'shellwords' require 'aruba/errors' require 'aruba/processes/basic_process' require 'aruba/platform' # Aruba module Aruba # Platforms module Processes # Spawn a process for command # # `SpawnProcess` is not meant for direct use - `SpawnProcess.new` - b...
mit
bokand/bokand.github.io
spatnav.html
5000
<!DOCTYPE html> <html> <head> <style> #textbox { margin: 50px; } #range { margin: 50px; } #youtubeScroller { width: 500px; height: 500px; overflow: auto; border: 1px solid black; } .divScroller { width: 200px; ...
mit
hinogi/eternalwinterwars
src/com/github/scaronthesky/eternalwinterwars/view/entities/IMeasureableEntity.java
160
package com.github.scaronthesky.eternalwinterwars.view.entities; public interface IMeasureableEntity { public float getWidth(); public float getHeight(); }
mit
perminder-klair/cms-core
protected/views/demo/update.php
553
<?php /* @var $this DemoController */ /* @var $model Demo */ $this->breadcrumbs=array( 'Demos'=>array('index'), $model->title=>array('view','id'=>$model->id), 'Update', ); $this->menu=array( array('label'=>'List Demo', 'url'=>array('index')), array('label'=>'Create Demo', 'url'=>array('create')), array('label'=...
mit
frodex/LaraManager
src/Philsquare/LaraManager/Http/Controllers/RedirectsController.php
2779
<?php namespace Philsquare\LaraManager\Http\Controllers; use Illuminate\Http\Request; use Philsquare\LaraManager\Http\Requests\CreateRedirectRequest; use Philsquare\LaraManager\Http\Requests\UpdateRedirectRequest; use Philsquare\LaraManager\Models\Redirect; class RedirectsController extends Controller { protect...
mit
stevenliuyi/dotfiles
install/zsh.sh
813
#!/bin/bash # check if zsh is installed if [ -f /bin/zsh -o -f /usr/bin/zsh ]; then # check if oh-my-zsh is installed if [[ ! -d $HOME/.oh-my-zsh/ ]]; then ZSH=~/.oh-my-zsh print_info "downloading oh-my-zsh" git clone https://github.com/robbyrussell/oh-my-zsh.git $ZSH export ZSH...
mit
telekomatrix/e-petitions
features/step_definitions/petition_email_steps.rb
1922
When(/^I fill in the email details$/) do fill_in "Subject", :with => "Petition email subject" fill_in "Body", :with => "Petition email body" end Then(/^the petition should not have any emails$/) do @petition.reload expect(@petition.emails).to be_empty end Then(/^the petition should have the email details I pr...
mit
blinkboxbooks/android-test
features/pages/model/page.rb
1617
module PageObjectModel require 'calabash-android/abase' require_relative '../../../features/pages/actions/common_actions' class Page < Calabash::ABase include PageOperations include UtilityObjects include PageObjectModel::PageActions def initialize(world, transition_duration = 0.5) logger....
mit
davedonaldson/NHibernateCocoon
src/NHibernateCocoon.Tests/Maps/PlaylistTrackMap.cs
293
using FluentNHibernate.Mapping; using NHibernateCocoon.Tests.Entities; namespace NHibernateCocoon.Tests.Maps { public class PlaylistTrackMap : ClassMap<PlaylistTrack> { public PlaylistTrackMap() { Table("PlaylistTrack"); Id(x => x.PlaylistId); Map(x => x.TrackId); } } }
mit
daniel-beck/sorcerer
javac/src/main/java/com/sun/source/util/TaskEvent.java
3433
/* * Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Fou...
mit
GridProtectionAlliance/openXDA
Source/Libraries/openXDA.Model/PQMarkAggregate.cs
1815
//****************************************************************************************************** // PQMarkAggregate.cs - Gbtc // // Copyright © 2017, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See // ...
mit
reed-jones/DiscoverMovies
resources/assets/js/app.js
404
document.getElementById('input_search').onfocus = function () { document.getElementById('search').classList.add('activeSearch'); }; document.getElementById('input_search').onblur = function () { document.getElementById('search').classList.remove('activeSearch'); }; try { window.$ = window.jQuery = require('jqu...
mit
chschenk/SVP
DisagLib/Properties/AssemblyInfo.cs
1392
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("Di...
mit
floooh/oryol
code/Modules/Gfx/private/resourceBase.cc
1349
//------------------------------------------------------------------------------ // resourceBase.cc //------------------------------------------------------------------------------ #include "Pre.h" #include "resourceBase.h" namespace Oryol { namespace _priv { //-------------------------------------------------------...
mit
GSMADeveloper/MobileConnectSDKTestApp
SDKdoc/doc.oneapi.dicovery/com/gsma/android/oneapi/discovery/class-use/DiscoveryProcessEndpoints.html
6186
<!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_33) on Wed Aug 27 10:24:28 CEST 2014 --> <TITLE> Uses of Class com.gsma.android.oneapi.discovery.DiscoveryProcessEndpoints </TITLE> <META NAME="date...
mit
javierv/41cero10asesores
spec/javascripts/fixtures/live_form.html
489
<div id="content"> <div id="extra"></div> <div id="main"> <form action="/posts" id="live_form" method="post" class="pagina"> <div> <label for="post_title">Title</label> <input id="post_title" name="post[title]" type="text" value=""> </div> <div> <input id="post_submit" ...
mit
jdemeuse1204/Jot
Jot/TokenValidationResult.cs
481
/* * Jot v1.1 * License: The MIT License (MIT) * Code: https://github.com/jdemeuse1204/Jot * Email: james.demeuse@gmail.com * Copyright (c) 2016 James Demeuse */ namespace Jot { public enum TokenValidationResult { NotBeforeFailed, TokenExpired, TokenNotCorrectlyFormed, Si...
mit
wekilledit/portfolio-frontend
README.md
799
# Matt Szabo's portfolio This is my portfolio, which is written using **react** components. It's hosted on an Amazon EC2 server using node.js: http://ec2-54-206-69-241.ap-southeast-2.compute.amazonaws.com:3300/ The webpage is a single page app written with a mobile first approach. It is also my first attempt at a full...
mit
nozaq/csa-rs
src/parser/game.rs
28555
use nom::branch::alt; use nom::bytes::complete::{is_a, is_not, tag, take}; use nom::character::complete::{anychar, digit1, one_of}; use nom::combinator::{map, map_res, opt, value}; use nom::multi::{count, many0, separated_list0}; use nom::sequence::{delimited, preceded, separated_pair, terminated, tuple}; use nom::*; u...
mit
toomoresuch/pysonengine
eggs/ipython-0.10.1-py2.6.egg/share/doc/ipython/manual/html/interactive/index.html
9335
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Using IPython for interactive work &mdash; IPython...
mit
csmarton/webshop
src/Frontend/ProfileBundle/Resources/public/css/profile.css
941
/* * Profil szerkesztése */ .profile_edit_form{ margin-left: 50px; } .profile_edit_form .profile_edit_line_left, .profile_edit_form .profile_edit_line_right{ float: left; width: 50%; padding-bottom: 5px; } .profile_edit_form .label_text{ float: left; font-weight: bold; width: 120px; } .p...
mit
badaix/aixlog
README.md
7623
# AixLog Header-only C++ logging library [![Github Releases](https://img.shields.io/github/release/badaix/aixlog.svg)](https://github.com/badaix/aixlog/releases) [![Build Status](https://travis-ci.org/badaix/aixlog.svg?branch=master)](https://travis-ci.org/badaix/aixlog) [![Language grade: C/C++](https://img.shields....
mit
yannliang/PanelTableView
sample project/SampleApp/Classes/SamplePanelView.h
225
// // SamplePanelView.h // SampleApp // // Created by honcheng on 11/27/10. // Copyright 2010 honcheng. All rights reserved. // #import <UIKit/UIKit.h> #import "PanelView.h" @interface SamplePanelView : PanelView @end
mit
go-on/cdncache
example/main.go
2369
package main import ( "flag" "fmt" "net/http" . "gopkg.in/go-on/lib.v2/types" . "gopkg.in/go-on/lib.v2/html" "gopkg.in/go-on/lib.v2/internal/bootstrap/bs3" "gopkg.in/go-on/cdncache.v1" ) var ( port = flag.Int("port", 8083, "port of the http server") mountPoint = flag.String("mountpoint", "", "mount p...
mit
jared/ygo_classic
coverage/-Library-Ruby-Gems-1_8-gems-ruby-openid-2_0_2-lib-openid-dh_rb.html
20506
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'><head><title>/Library/Ruby/Gems/1.8/gems/ruby-openid-2.0.2/lib/openid/dh.rb - C0 code coverage information</title> <style type=...
mit
niki-funky/Telerik_Academy
Web Development/JS_frameworks/04. Reqiure/StudentsDB.WebClient/scripts/app/data-persister.js
505
/// <reference path="lib/jquery-2.0.3.js" /> define(["httpRequester"], function (httpRequester) { function getStudents() { var url = this.url + "api/students/"; return httpRequester.getJSON(url); } function getMarksByStudentId(studentId) { var url = this.url + "api/students/" + st...
mit
cosminrentea/gobbler
server/apns/apns_sender.go
2689
package apns import ( "errors" "github.com/cosminrentea/gobbler/server/connector" "github.com/jpillora/backoff" "github.com/sideshow/apns2" "net" "time" ) const ( // deviceIDKey is the key name set on the route params to identify the application deviceIDKey = "device_token" userIDKey = "user_id" ) var ( ...
mit
VaskoViktorov/SoftUni-Homework
01. Programming Basics - 20.08.2016/Other unsorted/time +15 min.cs
763
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication21 { class Program { static void Main(string[] args) { int hour = int.Parse(Console.ReadLine()); int min = int.Parse(Console.R...
mit
mrkmarron/ChakraCore
lib/Common/DataStructures/BigInt.cpp
15350
//------------------------------------------------------------------------------------------------------- // Copyright (C) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. //---------------------------------------------------------...
mit
way2muchnoise/refinedstorage
src/main/java/com/raoulvdberge/refinedstorage/block/enums/ControllerType.java
557
package com.raoulvdberge.refinedstorage.block.enums; import net.minecraft.util.IStringSerializable; public enum ControllerType implements IStringSerializable { NORMAL(0, "normal"), CREATIVE(1, "creative"); private int id; private String name; ControllerType(int id, String name) { this.id...
mit
fulcrumapp/fulcrum-ruby
spec/lib/client_spec.rb
2850
require 'spec_helper' describe Fulcrum::Client do let(:client) { Fulcrum::Client.new } it 'has a default url' do expect(client.url).to eq(Fulcrum::Client::DEFAULT_URL) end it 'can query' do url = "#{client.url}/query" response = 'audio,system,,,,,' stub_request(:post, url) .with(body: ...
mit
tutsplus/recreating-the-animated-circle-effect-as-seen-on-google-design
index.html
874
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>CodePen - A Pen by jcutrell</title> <link rel="stylesheet" href="css/reset.css"> <link rel="stylesheet" href="css/style.css" media="screen" type="text/css" /> </head> <body> <div class="row"> <div class="col col-1-3 blue"></div> <div clas...
mit
valerypatorius/Likely
source/services/whatsapp.js
155
/** * WhatsApp service provider */ module.exports = { popupUrl: 'whatsapp://send?text={title}%0A{url}', popupWidth: 600, popupHeight: 450 };
mit
ArcherSys/ArcherSys
Rust/share/doc/rust/html/std/vec/index.html
8868
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `vec` mod in crate `std`."> <meta name="keywords" content="...
mit
3203317/cj
caiji/views/portal/1.0.1/_pagelet/panel_view_count.html
632
<div class='panel panel-default olx-panel'> <div class='panel-heading'> <h3 class='panel-title glyphicon glyphicon-fire'>&#8201;人气排行</h3> </div> <div class='panel-body'> <ul class='list-group'> #foreach($doc in $!{data.view_count})<li class='list-group-item'> <span class='badge'>#numToMoney($!{doc.VIEW_CO...
mit
jimbo00000/Flickercladding
deploy/lua/scene_old/hybrid_scene.lua
1655
--[[ hybrid_scene.lua A combination of two scenes with two different rendering techniques and a font renderer to label each type of object. All rendering code is owned by the respective scene types and is simply invoked from this module. ]] hybrid_scene = {} local sts = require("scene.shadertoy_scene...
mit
gazzlab/LSL-gazzlab-branch
liblsl/external/lslboost/interprocess/containers/flat_set.hpp
1073
////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2008-2011. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.lslboost.org/LICENSE_1_0.txt) // // See http://www.lslboost.org/libs/i...
mit
yoanngern/gospelcenter
web/css/adminLocations.css
1193
table { overflow: auto; border: 1px solid #313131; width: 100%; } @media only screen and (min-width: 1441px) { table { max-width: 1100px; } } @media only screen and (min-width: 1701px) { table { max-width: 1150px; } } @media only screen and (min-width: 1921px) { table { max-wid...
mit
nayan92/ic-hack
OpenOMR/openomr/omr_engine/XProjection.java
4106
/*************************************************************************** * Copyright (C) 2006 by Arnaud Desaedeleer * * arnaud@desaedeleer.com * * * * Thi...
mit
selvasingh/azure-sdk-for-java
sdk/eventgrid/mgmt-v2020_04_01_preview/src/main/java/com/microsoft/azure/management/eventgrid/v2020_04_01_preview/NumberGreaterThanOrEqualsAdvancedFilter.java
1359
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */ package com.microsoft.azure.management.eventgrid.v2020_04_01_preview; import com.faster...
mit
orapow/x.rbt
src/Web/Data/RbtDB.designer.cs
119265
#pragma warning disable 1591 //------------------------------------------------------------------------------ // <auto-generated> // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // </auto-generated> //-----------------------------------------------------...
mit
maesse/DerpStream
src/derpstream/ChunkInfo.java
5842
package derpstream; import java.io.FileOutputStream; import java.io.IOException; import java.util.PriorityQueue; import java.util.TimerTask; import java.util.concurrent.LinkedBlockingDeque; import java.util.logging.Level; import java.util.logging.Logger; /** * * @author Mads */ public final class ChunkInfo extends...
mit
PiranhaCMS/piranha.core
core/Piranha/Models/Param.cs
1301
/* * Copyright (c) .NET Foundation and Contributors * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. * * https://github.com/piranhacms/piranha.core * */ using System; using System.ComponentModel.DataAnnotations; namespace Piranha.Models...
mit
rajanmayekar/e2e-protractor-setup
protractor.conf.js
1883
var path = require('path'), HtmlReporter = require('protractor-html-screenshot-reporter'); exports.config = { chromeDriver: 'node_modules/chromedriver/bin/chromedriver', // seleniumAddress: 'http://localhost:4444/wd/hub', // Boolean. If true, Protractor will connect directly to the browser Drivers ...
mit
frasertheking/ChrisAndroid
README.md
26
ChrisAndroid ============
mit
zmj1316/MIPS-Simulator
src/cpu.h
298
#ifndef CPU_H #define CPU_H #include "Type.h" #include "memory.h" #include "stages.h" class cpu_core { public: cpu_core(); ~cpu_core(); void run(); word PC = 0; memory mem; word reg[32]; IFS ifs; IDS ids; EXS exs; MYS mys; WBS wbs; }; #endif /* CPU_H */
mit
solus-project/toolchain-cruft
master.sh
2924
#!/bin/bash # # Copyright (c) 2015 Ikey Doherty # # 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, modify, merge, ...
mit
teengoz/inventory-management
server/src/config/routes/AuthRoutes.ts
850
import express = require("express"); import passport = require('passport'); import jwt = require('express-jwt'); import AuthController = require("../../controllers/AuthController"); import IUser = require('../../app/model/interfaces/IUser'); import User = require('../../app/model/User'); var router = express.Router()...
mit
ai-ku/langvis
doc/edu/cmu/cs/stage3/alice/core/behavior/package-tree.html
14167
<!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_29) on Sun Dec 11 02:01:58 EET 2011 --> <TITLE> edu.cmu.cs.stage3.alice.core.behavior Class Hierarchy </TITLE> <META NAME="date" CONTENT="2011-12-11...
mit
ananswam/bioscrape
bioscrape/pid_interfaces.py
13998
from bioscrape.inference import DeterministicLikelihood as DLL from bioscrape.inference import StochasticTrajectoriesLikelihood as STLL from bioscrape.inference import StochasticTrajectories from bioscrape.inference import BulkData import warnings import numpy as np class PIDInterface(): ''' PID Interface : Pa...
mit
ndaidong/paypal-nvp-api
src/helpers/formatCurrency.js
369
/** * format currency * @ndaidong **/ const { isNumber, } = require('bellajs'); const formatCurrency = (num) => { const n = Number(num); if (!n || !isNumber(n) || n < 0) { return '0.00'; } return n.toFixed(2).replace(/./g, (c, i, a) => { return i && c !== '.' && (a.length - i) % 3 === 0 ? ',' + c...
mit
JeroenVinke/FilesToDatabaseImporter
FilesToDatabaseImporter/ViewModels/SqlServerViewModel.cs
6773
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Runtime.CompilerServices; using FilesToDatabaseImporter.Annotations; using FilesToDatabaseImporter.Helpers; using FilesToDatabaseImporter.Interfaces; namespace FilesToDatabaseImporter.ViewModels { public c...
mit
edbiler/BazaarCorner
module/log/install/version/3.0.0beta1.xml.php
1794
<upgrade> <phpfox_update_settings> <setting> <group>server_settings</group> <module_id>log</module_id> <is_hidden>0</is_hidden> <type>integer</type> <var_name>active_session</var_name> <phrase_var_name>setting_active_session</phrase_var_name> <ordering>2</ordering> <version_id>2.0.0alpha1</ve...
mit
rokka-io/rokka-dashboard
src/components/options/ColorStackOption.js
884
import React from 'react' import PropTypes from 'prop-types' import FormGroup from '../forms/FormGroup' import InputColor from '../forms/InputColor' const ColorStackOption = ({ label, name, value, definitions, required, onChange, error }) => { // default value may be null if (value === null) { value = '' } ...
mit
Chingu-Dolphins-3/9ball-scoring-app
client/src/components/TextBox/TextBox.tsx
723
import * as React from 'react'; import './TextBox.css'; interface Props { className: string; onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void; placeholder: string; } class TextBox extends React.Component<Props, {}> { public constructor(props: Props) { super(props); this.handleChange = this...
mit
lignertys/lignertys.github.io
_posts/2016-09-08-a-line-empire-waist-sweetheart-beading-floor-length-satin-chiffon-lace-wedding-dress.md
1368
--- layout: post date: '2016-09-08' title: "A-line Empire Waist Sweetheart Beading Floor Length Satin Chiffon Lace Wedding Dress" category: A-Line tags: ["floor","line","length","star","bride"] image: http://www.starbrideapparel.com/426-thickbox_default/a-line-empire-waist-sweetheart-beading-floor-length-satin-ch...
mit
wkgg/typingMaster
app/client/views/main.html
364
<template name="main"> <head> <title>Typing Master</title> </head> <body> <h1>Typing Master!</h1> {{> loginButtons}} <ul> <li> <a href="/">Play</a> </li> <li> <a href="/addDocument">Add a new document</a> </li> <li> <a href="/rooms">Create or join a game room</a> </li>...
mit
tmds/Tmds.DBus
test/Tmds.DBus.Tests/PingPong.cs
1208
using System; using System.Threading; using System.Threading.Tasks; namespace Tmds.DBus.Tests { class PingPong : IPingPong { public static readonly ObjectPath Path = new ObjectPath("/tmds/dbus/tests/pingpong"); public event Action<string> OnPing; public event Action OnPingNoArg; ...
mit
ahtn/keyplus
src/key_handlers/key_normal.c
4365
// Copyright 2017 jem@seethis.link // Licensed under the MIT license (http://opensource.org/licenses/MIT) #include "key_handlers/key_normal.h" #include "core/matrix_interpret.h" #include "hid_reports/keyboard_report.h" /* TODO: fn keycode */ bit_t is_layer_keycode(keycode_t keycode) { return ( keycode >= KC_L0 ...
mit
VaSe7u/Supernutrient_0_5
hash_check.py
195
from flask_bcrypt import generate_password_hash # Change the number of rounds (second argument) until it takes between # 0.25 and 0.5 seconds to run. generate_password_hash('password1', 8)
mit
anas-ambri/androidcompat
docs/com/google/android/gms/drive/ExecutionOptions.html
41249
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width" /> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico...
mit
Windstalker/nest-test-app
src/index.html
349
<!DOCTYPE html> <html> <head> <meta name="format-detection" content="telephone=no"> <meta name="viewport" content="initial-scale=1, minimum-scale=1, width=device-width"> <title>Nest API Test App</title> </head> <body> <div id="app"></div> <div id="overlay"></div> <script type="text/javascript" src="bundle.j...
mit
vimofthevine/grid
classes/grid/core.php
2048
<?php defined('SYSPATH') OR die('No direct script access.'); /** * Grid modeling library for creating data tables * * @package Grid * @author Kyle Treubig * @copyright (C) 2010 Kyle Treubig * @license MIT */ class Grid_Core { /** Array of table columns */ private $columns = array(); /** Array...
mit
honjow/XDroidMvp_hzw
app/src/main/java/cn/honjow/leanc/ui/Fragment/ChoQueListFragment.java
1611
package cn.honjow.leanc.ui.Fragment; import cn.honjow.leanc.adapter.QuestionListAdapter; import cn.honjow.leanc.ui.Activice.ChoQueActivity; import cn.droidlover.xdroidmvp.base.SimpleRecAdapter; import cn.honjow.leanc.model.QuestionItem; import cn.honjow.leanc.ui.BaseLeancFragment; import cn.droidlover.xrecyclerview.Re...
mit
martijn00/VlcXamarin
VlcXamarin.Sample/Resources/Resource.designer.cs
2159
#pragma warning disable 1591 // ------------------------------------------------------------------------------ // <autogenerated> // This code was generated by a tool. // Mono Runtime Version: 4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code ...
mit
edosgn/colossus-sit
src/JHWEB/SeguridadVialBundle/Entity/SvCfgTipoVictima.php
1536
<?php namespace JHWEB\SeguridadVialBundle\Entity; use Doctrine\ORM\Mapping as ORM; /** * SvCfgTipoVictima * * @ORM\Table(name="sv_cfg_tipo_victima") * @ORM\Entity(repositoryClass="JHWEB\SeguridadVialBundle\Repository\SvCfgTipoVictimaRepository") */ class SvCfgTipoVictima { /** * @var int * * ...
mit
jonkb/TicTrainer-node
src/webroot/session/index.html
1489
<!DOCTYPE html> <html lang="en-us"> <head> <title>Start TicTrainer Session</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="/stylesheets/bgStyle.css"> <link rel="stylesheet" type="text/css" href="/stylesheets/normalize.css"> </head> <bo...
mit
wporter82/gw2armory
accountInfo.html
618
<div>{{error}}</div> <div><h3>{{account.name}}</h3></div> <div>Created on: {{account.created | date}}</div> <div>Server: {{world.name}} Population: {{world.population}}</div> <div class="panel panel-default"> <div class="panel-heading">Characters</div> <div class="panel-body"> <div ng-repeat="character in charact...
mit
jfamestad/julia
pyjulia.c
1532
#include <Python.h> #include <stdio.h> #include <complex.h> #include "julia.c" static PyObject *_julia_Julia(PyObject *self, PyObject *args){ double min_r, max_r, min_i, max_i, resolution; Py_complex z; double complex Z; if(!PyArg_ParseTuple(args, "ddddDd", &min_r, &max_r, &min_i, &max_i, &z, &resolu...
mit
joaojusto/jose-gomes-landing-page
Data/events/ecb43511-985d-4ff2-a134-f31b162639c0.md
565
--- location: 'Auditório Municipal - Lagoa ' title: P.L.I.N.T. - Pablo Lapidusas International Trio & Orquestra Clássica do Sul description: >- Piano: Pablo Lapidusas (Argentina) ; Baixo: Leo Espinosa (Cuba) ; Bateria: Marcelo Araújo (Portugal) ; Maestro: José Eduardo Gomes ; Orquestra Clássica do Sul des...
mit
jsvennevid/tbl-4edges
Shared/External/ps2emu/Log.cpp
2995
// (C) 2004 by Khaled Daham, <khaled@w-arts.com> // // Singleton // #include <iterator> #include "Log.h" #include <stdio.h> #include <stdarg.h> #include <windows.h> namespace ps2emu { typedef std::map<int32, std::string>::iterator m_mapIterator; /////////////////////////////// PUBLIC /////////////////////////////...
mit
SpiderJack/cit
app/models/post.rb
1537
class Post < ActiveRecord::Base belongs_to :forum, :counter_cache => true belongs_to :user, :counter_cache => true belongs_to :topic, :counter_cache => true has_one :event_log, :as => :target, :dependent => :destroy acts_as_ferret :fields => ['company_id', 'project_id', 'body', 'forum_id'] format_attr...
mit
KriBetko/rating.npu
src/UserBundle/Security/GoogleService.php
1146
<?php namespace UserBundle\Security; use Symfony\Component\DependencyInjection\ContainerInterface as Container; use Symfony\Component\Routing\Router; class GoogleService { protected $container; protected $router; protected $redirectRouteName = 'google_check'; protected $scopes = ['email', 'profile'];...
mit
Lotpath/Querify
src/Querify/Advanced/AdvancedQueryableExtensions.cs
3810
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; namespace Querify.Advanced { public static class AdvancedQueryableExtensions { public interface IAdvancedQueryable<out T> { IQueryable<T> Query { get; } } private cla...
mit
AntonioSoler/bga-incangold
gameinfos.inc.php
3249
<?php $gameinfos = array( // Game designer (or game designers, separated by commas) 'designer' => 'Bruno Faidutti, Alan R. Moon', // Game artist (or game artists, separated by commas) 'artist' => 'Matthias Catrein, Paul Mafayon', // Year of FIRST publication of this game. Can be negative. 'year' =>...
mit
olliemaitland/comparcel-regression
src/index.html
3975
<!DOCTYPE html> <html ng-app="comparcelTester" ng-controller="AppCtrl"> <head> <title>Comparcel Regression Tester</title> <!-- social media tags --> <meta name="twitter:card" content="summary"> <meta name="twitter:site" content="@comparcel"> <meta name="twitter:title" content="comparcelTester"> ...
mit
tuturto/pyherc
src/herculeum/ui/gui/mainwindow.py
8099
# -*- coding: utf-8 -*- # Copyright (c) 2010-2017 Tuukka Turto # # 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,...
mit
ballpointcarrot/docker-dev-env
README.md
1033
Docker Development Environment ============================== I've seen a lot of things on the Internet about "How to launch *x* in Docker," but I've never seen anything that actually makes *use* of the things that are being launched. In an effort to change that, I've captured my development environment requirements ...
mit
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.11.2-2.0.7/released/8.12.1/ptsf/8.8.0.html
7092
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>ptsf: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" r...
mit
KarlGW/fo
src/Comments/CommentsController.php
3992
<?php namespace Anax\Comments; /** * A controller for comments and such events. */ class CommentsController implements \Anax\DI\IInjectionAware { use \Anax\DI\TInjectable; /** * Initialize the controller. * * @return void */ public function initialize() { $this->comments = new \Anax\Comments\Comment(...
mit
horacioMartinez/dakara-client
client/menus/boveda.html
2347
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="../css/main.css" type="text/css"> </head> <style> body { background: green; } </style> <body> <article id="boveda" title="BOVEDA"> <div class="dialogContent"> <div class="styledDiv"> <div class="horizonta...
mit
Kore-Core/kore
doc/init.md
5086
Sample init scripts and service configuration for kored ========================================================== Sample scripts and configuration files for systemd, Upstart and OpenRC can be found in the contrib/init folder. contrib/init/kored.service: systemd service unit configuration contrib/init/kore...
mit
joshiejack/Progression
src/main/java/joshie/progression/api/gui/ICustomDrawGuiDisplay.java
449
package joshie.progression.api.gui; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; /** Implement this on rewards, triggers, filters, conditions, * if you wish to draw something special on them, other than default fields. */ public interface ICustomDrawGuiDisplay {...
mit
khan-git/pialarmclock
faces/alarmsetting.py
3537
from utils.face import Face import pygame from utils.message import Message from utils.alarm import Alarm class Button(pygame.sprite.Sprite): def __init__(self, rect, color=(0,0,255), action=None): pygame.sprite.Sprite.__init__(self) self.color = color self.action = action self...
mit
stebogit/turf
packages/turf-helpers/README.md
10558
# @turf/helpers # feature Wraps a GeoJSON [Geometry](http://geojson.org/geojson-spec.html#geometry) in a GeoJSON [Feature](http://geojson.org/geojson-spec.html#feature-objects). **Parameters** - `geometry` **[Geometry](http://geojson.org/geojson-spec.html#geometry)** input geometry - `properties` **[Object](htt...
mit
isleofcode/corber
node-tests/unit/targets/android/tasks/install-app-device-test.js
1696
const td = require('testdouble'); const expect = require('../../../../helpers/expect'); const RSVP = require('rsvp'); const Promise = RSVP.Promise; const adbPath = 'adbPath'; const deviceUUID = 'uuid'; const apkPath = 'apk-path'; const spawnArgs = [ad...
mit
i3l/NuTrack
src/edu/gatech/nutrack/Home.java
2842
package edu.gatech.nutrack; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.support.v4.app.NavUtils; import android.view.Menu; import android.view.MenuItem; import android.view.View; public class Home extends Activity { @Override protected void onCreate(Bundle ...
mit
yanlyan/si_ibuhamil
system/plugins/smarty/libs/sysplugins/smarty_internal_template.php
23765
<?php /** * Smarty Internal Plugin Template * This file contains the Smarty template engine * * @package Smarty * @subpackage Template * @author Uwe Tews */ /** * Main class with template data structures and methods * * @package Smarty * @subpackage Template * * @property Smarty_Template_Source|...
mit
vassilevsky/rails
guides/source/caching_with_rails.md
22553
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON http://guides.rubyonrails.org.** Caching with Rails: An Overview =============================== This guide is an introduction to speeding up your Rails application with caching. Caching means to store content generated during the request-response cycle and ...
mit
wenhulove333/ScutServer
Sample/Koudai/Server/src/ZyGames.Tianjiexing.BLL/Action/Action6103.cs
6232
/**************************************************************************** Copyright (c) 2013-2015 scutgame.com http://www.scutgame.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 ...
mit
mc706/task-burndown
assets/apps/main/config/routes.js
4692
app.config(function ($routeProvider, $locationProvider) { "use strict"; $routeProvider.when('/', { controller: 'HomeController', templateUrl: '/static/apps/main/views/home.html', resolve: { tasks: function (TaskService) { return Tas...
mit
Bien-CV/CP_BranchAndLydia
CP propre/Domain.h
411
#ifndef DEF_DOMAIN #define DEF_DOMAIN #include <iostream> #include <list> #include <set> using namespace std; class Domain { public: Domain(); Domain(int newn); void afficher(); bool isEmpty(); int smallestDom(); list<int> * getLDomain(); void setLDomain(list<int> ...
mit