repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
anthonynguyen/warparse
README.md
136
warparse ======== MIT-licensed, see `LICENSE` warparse is an irc bot and php script that monitors and displays messages from warbot.
mit
Kerollmops/corewar-rs
machine/src/instruction/get_value.rs
246
use machine::Machine; use process::Context; pub trait GetValue { fn get_value(&self, vm: &Machine, context: &Context) -> i32; fn get_value_long(&self, vm: &Machine, context: &Context) -> i32 { self.get_value(vm, context) } }
mit
novstylessee/novstylessee.github.io
_posts/2017-12-21-Jonathan-James-Couture-Micha.md
724
--- layout: post date: 2017-12-21 title: "Jonathan James Couture Micha" category: Jonathan James Couture tags: [Jonathan James Couture] --- ### Jonathan James Couture Micha Just **$319.99** ### <table><tr><td>BRANDS</td><td>Jonathan James Couture</td></tr></table> <a href="https://www.readybrides.com/en/jonathan-...
mit
norman/spanish
lib/spanish.rb
1408
# encoding: utf-8 require "phonology" require File.expand_path("../spanish/orthography", __FILE__) require File.expand_path("../spanish/phonology", __FILE__) require File.expand_path("../spanish/syllable", __FILE__) # This library provides some linguistic and orthographic tools for Spanish # words. module Spanish e...
mit
obs145628/ai-cpp
src/math/lu.cc
2463
#include "math/lu.hh" #include <cassert> #include <cmath> #include "math/vlist.hh" LU::lu_t LU::lu(const Matrix& a) { assert(a.rows() == a.cols()); std::size_t n = a.rows(); auto l = Matrix::id(n); auto u = a; for (std::size_t j = 0; j < n; ++j) for (std::size_t i = j + 1; i < n; ++i) { do...
mit
andrewdefries/ToxCast
Figure3/Tox21_nnm/WorkHere/3810-80-8.smi.png.html
1798
<!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' xml:lang='en' lang='en'><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta> <title>3810-80-8.smi.png.html</title> </head> ...
mit
talkrz/rest-spec
src/RestSpec/Output/ConstraintDescriber/NotBlank.php
242
<?php namespace RestSpec\Output\ConstraintDescriber; use Symfony\Component\Validator\Constraint; class NotBlank { public function describe(Constraint $constraint) { $output = 'is required'; return $output; } }
mit
slawler/slawler.github.io
README.md
60
# slawler.github.io Website Development--Under Construction
mit
mjkillough/hue
cnx-contrib/src/widgets/cpu.rs
4869
use anyhow::{anyhow, Result}; use cnx::text::{Attributes, Text}; use cnx::widgets::{Widget, WidgetStream}; use std::fs::File; use std::io::BufRead; use std::io::BufReader; use std::time::Duration; use tokio::time; use tokio_stream::wrappers::IntervalStream; use tokio_stream::StreamExt; /// Represents CPU widget used t...
mit
hahwul/mad-metasploit
archive/exploits/linux/remote/9954.rb
2217
## # $Id$ ## ## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # Framework web site for more information on licensing and terms of use. # http://metasploit.com/framework/ ## require 'msf/core' class Metasp...
mit
ryanwi/hiringtrends
web/2018/may-node-js-breaks-into-top-5.html
18085
<!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Node.js breaks into the Top 5 - Hacker News Hiring Trends (May 2018)</title> <meta property="og:title" content="Node.js breaks into the Top 5 - Hacker News Hiring Trends (May 2018...
mit
krisquigley/simpl
spec/simpl/url_spec.rb
3724
require "json" require "spec_helper" require_relative "../../lib/simpl" describe Simpl::Url do let(:url) { "http://example.com/test-page" } let(:actual_api_key) { "1234567890abcdef" } before do Simpl.api_key = actual_api_key Simpl.timeout = 30 end subject { Simpl::Url.new(url) } context "w...
mit
go-meson/framework
src/common/meson_constants.h
518
//-*-c++-*- #pragma once namespace meson { // Header to ignore CORS. extern const char kCORSHeader[]; // Strings describing Chrome security policy for DevTools security panel. extern const char kSHA1Certificate[]; extern const char kSHA1MajorDescription[]; extern const char kSHA1MinorDescription[]; extern const char...
mit
granulephp/data-bind
lib/DependencyResolverAware.php
1273
<?php /* * MIT License * * Copyright (c) 2017 Eugene Bogachov * * 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, ...
mit
ket4yii/docker-php-censor
web/Dockerfile
970
FROM php:7.1-fpm-alpine MAINTAINER Alexey Boyko <ket4yiit@gmail.com> ENV PHPCENSOR_VERSION=0.25.0 WORKDIR /var/www/html RUN apk update && \ apk add git nginx openssh postgresql-dev openldap-dev gettext zlib-dev && \ curl -sS https://getcomposer.org/installer | php && \ mv composer.phar /usr/bin/composer...
mit
JordanLittell/lieutenant_governor
lib/lieutenant_governor/generators/js_route_helpers.rb
965
require 'thor/group' require_relative '../routing/extractor' require_relative '../templates/js_paths.rb' require_relative '../templates/js_paths_template_str' module LieutenantGovernor module Generators class JsRouteHelpers < Thor::Group extend Thor::Actions # Use the extractor to get the hash ...
mit
waynestate/waynestate-api-php
src/Connector.php
11839
<?php namespace Waynestate\Api; use Waynestate\Api\ConnectorException; /** * Class Connector * @package Waynestate\Api */ class Connector { public $apiKey; // To obtain an API key: http://api.wayne.edu/ public $parser = 'json'; // Use the included XML parser? Default: true. public $debug = false; // S...
mit
mauricionr/material
src/components/animate/inkCssRipple.js
5058
angular.module('material.animations') .directive('inkRipple', [ '$materialInkRipple', InkRippleDirective ]) .factory('$materialInkRipple', [ '$window', '$$rAF', '$materialEffects', '$timeout', InkRippleService ]); function InkRippleDirective($materialInkRipple) { return function(scope, element, attr...
mit
SpamSlayer/live
src/qt/locale/bitcoin_bs.ts
108067
<?xml version="1.0" ?><!DOCTYPE TS><TS language="bs" version="2.1"> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About SpamSlayer</source> <translation type="unfinished"/> </message> <message> <location lin...
mit
GPUOpen-Tools/RGA
RadeonGPUAnalyzerGUI/Include/Qt/rgViewContainer.h
3078
#pragma once // Qt. #include <QWidget> #include <QSize> // Forward declarations. class QVBoxLayout; class QAbstractButton; // Multi purpose view container to help with maximization, focus management, and titlebar support. class rgViewContainer : public QWidget { Q_OBJECT public: rgViewContainer(QWidget* pPa...
mit
bludit/bludit
bl-themes/blogx/php/head.php
1114
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="generator" content="Bludit"> <!-- Generate <title>...</title> --> <?php echo HTML::metaTagTitle(); ?> <!-- Generate <meta name="description" content="..."> --> <?php echo HTML::metaTagDescription(); ?> <!-- Genera...
mit
LandRegistry/drv-flask-based-prototype
service/api_client.py
898
import math from service.fake_api_results import ALL_TITLES, OFFICIAL_COPY_RESULT, SELECTED_FULL_RESULTS SEARCH_RESULTS_PER_PAGE = 20 def get_title(title_number): return SELECTED_FULL_RESULTS.get(title_number) def _get_titles(page_number): nof_results = len(ALL_TITLES) number_pages = math.ceil(nof_resu...
mit
ncultra/Pegasus-2.5
Schemas/Pegasus/Makefile
2786
#//%2005//////////////////////////////////////////////////////////////////////// #// #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems. #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.; #// IBM Corp.; E...
mit
connellw/Firestorm
src/Firestorm.Stems.Core/Analysis/StemAttributeSetupException.cs
529
using System; namespace Firestorm.Stems.Analysis { /// <summary> /// Exception that is thrown when <see cref="StemAttribute"/>s have been setup incorrectly. /// </summary> public class StemAttributeSetupException : Exception // TODO StemException from Fuel? { public StemAttributeSetupExcept...
mit
przodownikR1/hibernateKata
src/test/java/pl/java/scalatech/basic/SimpleBetterSpringSolutionDaoTest.java
2249
package pl.java.scalatech.basic; import static org.assertj.core.api.Assertions.assertThat; import static org.junit.runners.MethodSorters.NAME_ASCENDING; import java.util.List; import java.util.Map; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.bea...
mit
prl-tokyo/MAPE-controller
src/main/java/jp/ac/nii/prl/mape/controller/service/KnowledgeBaseService.java
277
package jp.ac.nii.prl.mape.controller.service; import jp.ac.nii.prl.mape.controller.model.MAPEKComponent; public interface KnowledgeBaseService { void put(MAPEKComponent kb, String bx, String view, String param); String get(MAPEKComponent kb, String bx, String param); }
mit
MPapus/QuanHiSomTots
js/tweets.js
5021
var boletesPinya = $.merge($.merge($.merge($("#cDB").find("path"), $("#cB4").find("path")), $("#cB3").find("path")), $("#cB2").find("path")); var boletesTronc = $.merge($.merge($("#cB4").find("path"), $("#cB3").find("path")), $("#cB2").find("path")); var usedTweets = {}; $(document).ready(function () { $.each(b...
mit
ryuichiueda/RobotDesign3
docs/demonstration.html
3350
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <meta nam...
mit
famished-tiger/Rley
examples/NLP/nano_eng/nano_grammar.rb
2096
# frozen_string_literal: true # Grammar for a simple subset of English language # It is called nano-English because it has a more elaborate # grammar than pico-English but remains still tiny compared to "real" English require 'rley' # Load the gem ######################################## # Define a grammar for a nan...
mit
simonetripodi/shs
core/src/main/java/org/nnsoft/shs/core/http/parse/ParserTrigger.java
1894
package org.nnsoft.shs.core.http.parse; /* * Copyright (c) 2012 Simone Tripodi (simonetripodi@apache.org) * * 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, includin...
mit
Totopolis/monik.cpp
monik/log/third_party/json/config.h
6266
// Copyright 2007-2010 Baptiste Lepilleur // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #pragma once #ifndef JSON_CONFIG_H_INCLUDED #define JSON_CONFIG_H_INCLUDED #include <stddef.h> ...
mit
prgTW/error-handler-bundle
Command/TestCommand.php
2106
<?php namespace prgTW\ErrorHandlerBundle\Command; use prgTW\ErrorHandler\Error\ErrorException; use prgTW\ErrorHandlerBundle\ErrorHandler; use prgTW\ErrorHandler\Metadata\Metadata; use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component...
mit
juliemh/tatui
application/models/Addsemester_model.php
574
<?php class Addsemester_model extends CI_Model { function validateSem($semesterid) { $this->db->select('semester_id'); $this->db->where('semester_id', $semesterid); $query = $this->db->get('semester'); if ($query->result_array()) { return TRUE; } else { ...
mit
datamade/elpc_bakken
ocr_extracted/W29155_text/page4.html
1277
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W29155_text</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;"> ...
mit
BuzzAcademy/idioms-moe-unformatted-data
all-data/13000-13999/13895-22.html
1388
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>...
mit
dlobser/treejs
sketches/sc27.js
1772
var sc1 = { //funhouse mirror setup:function(){ // videoSetup(); tree = new TREE(); tree.generate({ joints: [5,3,1,10], divs: [1], start: [0,0,2,0], angles: [0,Math.PI/2,1], length: [20,15,4,1], rads: [1,2,1,3], width: [1,2,2,1] }); scene.add(tree); tree.position...
mit
garyhogarth/garyhogarth.com
README.md
44
www.garyhogarth.com ========================
mit
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.09.0-2.0.5/released/8.7.0/canon-bdds/8.9.0.html
7105
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>canon-bdds: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css...
mit
CSCfi/antero
db_archive/sql_archive/415__alter_sproc_amk3b.sql
1238
ALTER PROCEDURE [dw].[p_lataa_f_amk_julkaisut_f_i] AS TRUNCATE TABLE dw.[f_amk_julkaisut_f_i]; INSERT INTO dw.[f_amk_julkaisut_f_i] ( [d_amk_id] ,[d_koulutusala_id] ,[d_ohjauksenala_id] ,d_julkaisutyyppi_id ,d_julkaisun_kansainvalisyys_id ,d_tieteenala_id ,[vuosi] ,[julkaisujen_maara] ,[loadtime] ,[source] ...
mit
sakusimu/mh-skillsimu
test/support/util.js
755
'use strict'; // 頑シミュさんの装飾品検索の結果と比較しやすくする function simplifyDecombs(decombs) { return decombs.map(decomb => { let torsoUp = Object.keys(decomb).map(part => decomb[part]).some(comb => { if (comb == null) return false; return comb.skills['胴系統倍加'] ? true : false; }); let...
mit
uShip/USAsyncBlockOperation
README.md
4573
# USAsyncBlockOperation An NSBlockOperation subclass which can tolerate asynchronous calls from within its block. ## The Problem Calling asynchronous methods from within the block of an `NSBlockOperation` will lead to problems when being used with an operation queue which is concurrency limited (i.e. `NSOperationQueu...
mit
winskie/frogims
application/views/partial_transfer_validation_form.php
11954
<div ng-if="checkPermissions( 'transferValidations', 'view' )"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">Transfer #{{ transferItem.id }}</h3> </div> <div class="panel-body"> <form class="form-horizontal"> <div class="row"> <div class="col-sm-12 col-md-...
mit
DataFire/Integrations
integrations/generated/billbee/index.js
161
"use strict"; let datafire = require('datafire'); let openapi = require('./openapi.json'); module.exports = datafire.Integration.fromOpenAPI(openapi, "billbee");
mit
gustavo94/UVaProblems
README.md
73
# UVaProblems Python code for UVa problems (https://uva.onlinejudge.org)
mit
GndFloor/Ruby-Quest
config/initializers/redis.rb
74
$redis = Redis.new #Redis instance for cron jobs $redis_cron = Redis.new
mit
achingbrain/pem
README.md
7778
pem === Create private keys and certificates with node.js [![Build Status](https://secure.travis-ci.org/andris9/pem.png)](http://travis-ci.org/andris9/pem) [![npm version](https://badge.fury.io/js/pem.svg)](http://badge.fury.io/js/pem) ## Installation Install with npm npm install pem ## Examples Here are som...
mit
foxbunny/ribcage
utils/deserializeform.js
1357
// Generated by CoffeeScript 1.6.3 /*! @author Branko Vukelic <branko@brankovukelic.com> @license MIT */ var _this = this; if (typeof define !== 'function' || !define.amd) { this.require = function(dep) { return (function() { switch (dep) { case 'jquery': return _this.jQuery; def...
mit
grmToolbox/grmpy
docs/conf.py
5902
#!/usr/bin/env python3 # # grmpy documentation build configuration file, created by # sphinx-quickstart on Fri Aug 18 13:05:32 2017. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All ...
mit
giespaepen/react-generator
generators/app/templates/src/client/core/sagas/common/UpdateBodyClassSaga.ts
778
import * as C from "../../actions/ActionCreators"; import * as Routing from "react-router-redux"; import { Effect } from "redux-saga/effects"; import { takeLatest } from "redux-saga"; /** * Saga handler to load the strings */ function* updateBodyClass(action: Routing.RouterAction): IterableIterator<Effect | any> { ...
mit
dwoznicki/phase-0
week-4/concatenate-array/my_solution.rb
551
# Concatenate Two Arrays # I worked on this challenge by myself. # Your Solution Below def array_concat(array_1, array_2) new_array = [] n = 0 array_1.each do |x| new_array[n] = x n = n + 1 end array_2.each do |x| new_array[n] = x n = n + 1 end return new_array end #method 2 (easiest...
mit
glenngillen/dotfiles
.vscode/extensions/ms-python.python-2021.5.842923320/pythonFiles/lib/jedilsp/pydantic/json.py
3365
import datetime import re import sys from collections import deque from decimal import Decimal from enum import Enum from ipaddress import IPv4Address, IPv4Interface, IPv4Network, IPv6Address, IPv6Interface, IPv6Network from pathlib import Path from types import GeneratorType from typing import Any, Callable, Dict, Typ...
mit
ryansukale/svgwikiflow
viewdiagram_timeLapse.html
16402
<!DOCTYPE html> <html lang="en"> <!-- Mirrored from themelize.me/demos/appstrap1.2/index.htm by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 16 Jun 2013 11:12:50 GMT --> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <title>Flow</title> <!-- Bootstrap CSS --> <link ...
mit
steveherrin/PhDThesis
Thesis/scripts/make_bb_spectrum_plot.py
5583
import ROOT from math import pi, sqrt, pow, exp import scipy.integrate import numpy from array import array alpha = 7.2973e-3 m_e = 0.51099892 Z_Xe = 54 Q = 2.4578 def F(Z, KE): E = KE + m_e W = E/m_e Z0 = Z + 2 if W <= 1: W = 1 + 1e-4 if W > 2.2: a = -8.46e-2 + 2.48e-2*Z0 + 2....
mit
ajweeks/FlexEngine
readme.md
4484
![](FlexEngine/screenshots/flex_engine_banner_3.png) [![linux](https://github.com/ajweeks/FlexEngine/actions/workflows/build_linux.yml/badge.svg)](https://github.com/ajweeks/FlexEngine/actions/workflows/build_linux.yml) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.md) [![forthebadge](ht...
mit
russgray/rollbar-logback
README.md
1644
Rollbar Logback ============= [![Build Status](https://travis-ci.org/tapstream/rollbar-logback.svg?branch=master)](https://travis-ci.org/tapstream/rollbar-logback) This is a fork of the ahaid's [Rollbar Logback Appender](https://github.com/ahaid/rollbar-logback) created on July 27th, 2014 for use with the error aggre...
mit
ElemeFE/cooking
packages/cooking/util/load-resolve-path.js
408
'use strict' module.exports = function (config) { if (!process.env.COOKING_PATH) { return } const rootPath = process.env.COOKING_PATH.split(',') config.resolve = config.resolve || {} config.resolveLoader = config.resolveLoader || {} config.resolve.modules = (config.resolve.root || []).concat(rootPath...
mit
GreenHex/Pebble.Anery
src/c/weather_icons.h
2286
// // Copyright (C) 2016, Vinodh Kumar M. <GreenHex@gmail.com> // // Weather icons from Forecast Font <http://forecastfont.iconvau.lt>. // #pragma once #include <pebble.h> #include "global.h" #include "pbl_64_hex_colours.h" #ifdef INCLUDE_WEATHER typedef struct { char glyph; uint32_t colour; } GLYPH; typedef st...
mit
GewoonMaarten/FEP-eindopdracht
UitleenSysteem/src/app/components/cart/cart.component.ts
2736
import { Component, OnInit, Inject } from '@angular/core'; import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material'; import { Materiaal, Reservering } from '../../models/index'; import { Subscription } from 'rxjs/Subscription'; import { MaterialenService, ReserveringService } from '../../services/in...
mit
58bits/dotfiles
tmux-gpakosz/root.sh
292
#!/bin/bash # Adapted from Gregory Pakosz's amazing tmux config at https://github.com/gpakosz/.tmux _root() { tty=${1:-$(tmux display -p '#{pane_tty}')} username=$(_username "$tty" false) if [ x"$username" = x"root" ]; then tmux show -gqv '@root' else echo "" fi } _root
mit
vintyara/my_forum
app/models/my_forum/log_read_mark.rb
66
module MyForum class LogReadMark < ActiveRecord::Base end end
mit
denys-liubushkin/Elemental-Tower
js/xhr.js
147
var xhrGet = function (url, callback) { var xhr = new XMLHttpRequest(); xhr.open('GET', url, true); xhr.onload = callback; xhr.send(); };
mit
mapmeld/mvoter-usage
main.js
4919
/*jslint browser: true*/ /*global Tangram, gui */ map = (function () { 'use strict'; var locations = { 'Yangon': [16.8313077,96.2187007,7] }; var map_start_location = locations['Yangon']; /*** Map ***/ var map = L.map('map', {"keyboardZoomOffset" : .05, maxZoom: 20 } ); ...
mit
Frankri/Frankri.github.io
_posts/2020-02-05-shhigt.md
90
## shhigt [... when you accidentally git commit secrets!](https://shhgit.darkport.co.uk/)
mit
cuckata23/wurfl-data
data/nokia_n8_00_ver1_subua.php
164
<?php return array ( 'id' => 'nokia_n8_00_ver1_subua', 'fallback' => 'nokia_n8_00_ver1', 'capabilities' => array ( 'image_inlining' => 'true', ), );
mit
manoscrafted/Twilio-for-Joomla
Services/Twilio/InstanceResource.php
1373
<?php defined( '_JEXEC' ) or die; /** * Abstraction of an instance resource from the Twilio API. * * @category Services * @package Services_Twilio * @author Neuman Vong <neuman@twilio.com> * @license http://creativecommons.org/licenses/MIT/ MIT * @link http://pear.php.net/package/Services_Twilio */ a...
mit
ismailBsd/cdc
src/helper/CorpDetatHelper.java
1011
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package helper; import bean.CorpDetat; import java.util.List; import javax.swing.JTable; /** * * @author kamal */ p...
mit
testviking/chess-material-search
bin/tag_pgn_file.pl
95418
#!/usr/bin/perl use strict 'vars'; use warnings; use diagnostics; # Author: Rauan Sagit # Beginning Date: 5 June 2013 # Name: tag_pgn_file.pl # Purpose: take a PGN file containing one or more games as input. # Write one material balance sheet per game as output. Use a new # field called "Key = " to connect the PGN fil...
mit
cschalenborgh/php-invoiceocean
src/InvoiceOcean.php
6465
<?php /** * Abstract class InvoiceOcean * * API class to communicate with the InvoiceOcean API * * @abstract * @author Chris Schalenborgh <chris@schalenborgh.be> * @version 1.0 * @link https://github.com/InvoiceOcean/api * */ abstract class InvoiceOcean { /** * @var bool */ private $_debug =...
mit
josh5276/brocade-adx-client
brocade/soap/soap.go
5467
package soap import ( "bytes" "crypto/tls" "fmt" "io/ioutil" "net/http" "encoding/xml" "strings" "encoding/json" ) //BasicAuthGet adds basic auth and perform a request to path func BasicAuthGet(path, username, password string) ([]byte, int, error) { request, err := BasicAuthRequest(path, username, password) ...
mit
mehmetcengiz/BattleTank
Source/BattleTank/Public/TankPlayerController.h
1199
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "GameFramework/PlayerController.h" #include "TankPlayerController.generated.h" class UTankAimingComponent; /** * */ UCLASS() class BATTLETANK_API ATankPlayerController : public APlayerController { GENERATED_BODY...
mit
simonwoerpel/simonwoerpel.github.io
projects/cumexfiles/index.html
3821
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="description" content="Code. Daten. Jou...
mit
bodikqlar/jwt_me
spec/jwt_me_spec.rb
129
require 'spec_helper' RSpec.describe JwtMe do it 'has a version number' do expect(JwtMe::VERSION).not_to be nil end end
mit
devdigital/DatabaseDoc
DatabaseDoc.Library/Properties/AssemblyInfo.cs
1414
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("Da...
mit
Jfmaily/Draw-Guess
public/javascripts/index.js
1201
var height = window.innerHeight; // console.log(height); var main = document.getElementById('main'); var btn = document.getElementById("btn"); main.style.height = height + 'px'; btn.style.top = (height-90) + 'px'; document.getElementById('usr_name').onkeydown = function(e) { e = e || event; if(e.keyCode === 13) { b...
mit
i8degrees/homebrew-formulae
Formula/acpica.rb
486
require 'formula' class Acpica < Formula homepage 'https://www.acpica.org/' url 'https://acpica.org/sites/acpica/files/acpica-unix2-20140424.tar.gz' sha256 '72ece982bbbdfb1b17418f1feb3a9daaa01803d0d41dcf00e19d702cdf751bbc' head 'https://github.com/acpica/acpica.git' def install ENV.deparallelize sy...
mit
peutetre/mobile-button
lib/mouse/default/mouse-push-button.js
3393
/* * default/mouse-push-button.js */ "use strict"; var Q = require('q'), Button = require('./../../button'); var MousePushButton = function (options) { Button.prototype.constructor.call(this, options); this.delay = options.delay > 0 ? options.delay : 0; this.g = null; if(typeof options.g === 'f...
mit
FTChinese/next-signup
client/js/data/industry.js
2311
const industry = [ { "name": "金融", "children": [ { "name": "银行" }, { "name": "保险" }, { "name": "证券公司" }, { "name": "会计/审计" }, { "name": "其它金融服务" } ] }, { "name": "专业服务", "children": [ { "name": "科研/教育" }, { "name": "顾问/咨询服...
mit
chrisallenlane/wit-cms
test/mock/posts/post-2.md
228
{{{ "title" : "Post Two", "author" : "John Doe", "description" : "This is the second post.", "categories" : [ "bar", "baz" ], "tags" : [ "alpha", "bravo" ], "date" : "2016-01-02" }}} This is post two.
mit
tht-krisztian/Szoftlab4
doc/szoftlab4.tex
2016
% Szglab4 % =========================================================================== % % \input{includes/header} \graphicspath{ {images/} } % \csapat{\team}{40} \konzulens{Szabó Ádám Imre} \taga{Kovács Levente Ákos}{CM6UKU}{vazul250@gmail.com } \tagb{Lovász Attila Bence}{INCMI7}{attonet2@gmail.com } \tagc{Graics ...
mit
balazspete/multi-hop-train-journey-booking
doc/node/data/class-use/StaticDataLoader.html
7362
<!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_65) on Fri Dec 06 02:55:14 GMT 2013 --> <TITLE> Uses of Class node.data.StaticDataLoader </TITLE> <META NAME="date" CONTENT="2013-12-06"> <LINK REL...
mit
mhanne/bitcoin-ruby-gui
lib/gui/tx_view.rb
2132
# encoding: ascii-8bit module Bitcoin::Gui class TxView < TreeView def initialize gui, replace = nil super(gui, :tx_view, [ [GObject::TYPE_STRING, "Type"], [GObject::TYPE_STRING, "Hash"], [GObject::TYPE_STRING, "Value", :format_value_col], [GObject::TYPE_INT, "Confi...
mit
mrwolfyu/meteo-bbb
xxx.js
231
onst bcrypt = require('bcrypt-nodejs'); const crypto = require('crypto'); console.log('start'); bcrypt.genSalt(10, (err, salt) => { bcrypt.hash('passwd', salt, null, (err, hash) => { console.log(hash); }); });
mit
jiadaizhao/LeetCode
0201-0300/0203-Remove Linked List Elements/README.md
267
# 203. Remove Linked List Elements Difficulty: Easy https://leetcode.com/problems/remove-linked-list-elements/ Remove all elements from a linked list of integers that have value val. **Example:** ``` Input: 1->2->6->3->4->5->6, val = 6 Output: 1->2->3->4->5 ```
mit
denislaliberte/blog
slides/drupal_ini/index.html
1733
<!-- # remark A simple, in-browser, markdown-driven slideshow tool targeted at people who know their way around HTML and CSS https://github.com/gnab/remark --> <!DOCTYPE html> <html> <head> <title>Initiation a drupal</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <style type...
mit
KlientutvecklingGrupp2/NackademiskaAuktionsframjandet
index.html
1473
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> ...
mit
intercom/ember.js
packages/@ember/-internals/glimmer/lib/component-managers/curly.ts
18111
import { privatize as P } from '@ember/-internals/container'; import { getOwner } from '@ember/-internals/owner'; import { guidFor } from '@ember/-internals/utils'; import { addChildView, OwnedTemplateMeta, setElementView, setViewElement, } from '@ember/-internals/views'; import { assert, debugFreeze } from '@e...
mit
galihmelon/sendgrid-python
sendgrid/helpers/mail/subscription_tracking.py
1603
class SubscriptionTracking(object): def __init__(self, enable=None, text=None, html=None, substitution_tag=None): self._enable = None self._text = None self._html = None self._substitution_tag = None if enable is not None: self.enable = enable if text is...
mit
voodoostudio/One_admin
src/Models/Languages.php
302
<?php namespace TCG\Voyager\Models; use Illuminate\Database\Eloquent\Model; use TCG\Voyager\Facades\Voyager; class Languages extends Model { protected $table = 'admin_language'; public function posts() { return $this->hasMany(Voyager::modelClass('Post'))->published(); } }
mit
aduvoisin13/City-Defense
README.md
350
# City Defense As a powerful, invulnerable ship, defend your city from the aliens invading from space. If three aliens pass your defenses and get into the city, it's game over! [Game Design Doc](GameDesignDoc.md) ## Usage ```shell # Compile qmake -project qmake make # Doxygen doxygen -g config.txt doxygen config.t...
mit
DefactoSoftware/doc2mock
lib/doc2mock/version.rb
40
module Doc2mock VERSION = "0.0.1" end
mit
muarif/regas
application/modules/auction/controllers/auction.php
28463
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Auction extends CI_Controller { public $id_auction; public $tabNav; public function __construct(){ parent::__construct(); if(!$this->session->userdata('admin')){ redirect(site_url()); } $this->load->model('auction_model','am'...
mit
aff3ct/aff3ct
include/Module/Decoder/Turbo/Decoder_turbo.hpp
2569
/*! * \file * \brief Class module::Decoder_turbo. */ #ifndef DECODER_TURBO_HPP_ #define DECODER_TURBO_HPP_ #include <vector> #include <memory> #include <mipp.h> #include "Tools/Code/Turbo/Post_processing_SISO/Post_processing_SISO.hpp" #include "Module/Interleaver/Interleaver.hpp" #include "Module/Decoder/Decoder_S...
mit
mybrocoin/mybrocoin
src/qt/locale/bitcoin_it.ts
116570
<?xml version="1.0" ?><!DOCTYPE TS><TS language="it" version="2.0"> <defaultcodec>UTF-8</defaultcodec> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About MyBroCoin</source> <translation>Info su MyBroCoin</translation> ...
mit
mcls/human_name
README.md
1630
# HumanName [![Gem Version](https://badge.fury.io/rb/human_name.png)](http://badge.fury.io/rb/human_name) [![Build Status](https://travis-ci.org/mcls/human_name.png?branch=master)](https://travis-ci.org/mcls/human_name) Never write `def full_name` again! ## Installation Add this line to your application's Gemfile: ...
mit
wariox3/brasa
src/Brasa/RecursoHumanoBundle/Entity/RhuProyeccion.php
18149
<?php namespace Brasa\RecursoHumanoBundle\Entity; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Table(name="rhu_proyeccion") * @ORM\Entity(repositoryClass="Brasa\RecursoHumanoBundle\Repository\RhuProyeccionRepository") */ class RhuProyeccion { /** * @ORM\Id * @ORM\Column(name="codigo_proyeccion_pk", t...
mit
lamka02sk/wrinche
app/Layouts/Articles/Main.php
757
<?php if(!App\Requests\Request::$ajax) { require ROOT . '/app/Layouts/Admin/Header.php'; require ROOT . '/app/Layouts/Admin/Menu.php'; } ?> <div class="content-wrapper" data-locales="admin_articles"> <div class="content-header"> <div class="header-mainline"> <h2 class="mainline-h...
mit
grantmd/go-coinbase
methods_buys_test.go
468
package coinbase import ( "os" "testing" ) func createBuysClient(t *testing.T) (c *Client) { c = &Client{ APIKey: os.Getenv("COINBASE_API_KEY"), } if c.APIKey == "" { t.Skip("Coinbase api key is missing (should be in the COINBASE_API_KEY environment variable)") } return c } func TestBuys(t *testing.T) {...
mit
manuelstuner/SSPES
SSPES/SSPES/Models/VariableModel.cs
3402
using SSPES.BD; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Web; namespace SSPES.Models { public class VariableModel { private Conexion con = new Conexion(); protected string nombre { get; set; } protected string tipoDato { get; set; ...
mit
unindented/electron-installer-windows
src/spawn.js
913
'use strict' const { spawn } = require('@malept/cross-spawn-promise') const which = require('which') function updateExecutableMissingException (err, hasLogger) { if (hasLogger && err.code === 'ENOENT' && err.syscall === 'spawn mono') { let installer let pkg if (process.platform === 'darwin') { in...
mit
ZENxd/Presidents_Club_Winners_Build
views/home.html
8118
<div class="container heading"> <div> <h4> CONGRATULATIONS, YOU’RE A WINNER OF THE 2015-2016 </h4> <br/> <h1> PRESIDENT'S CLUB </h1> </div> <div class="lead">MARCH 1-5, 2016 <div class="seal" /> HONOLULU, HAWAII </div> </div> <div c...
mit