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 |
|---|---|---|---|---|---|
# notepad-onthecloud
A notepad clone using ASP.NET technology. Basic function only supported. More information, visit https://ijat.my/notepad-onthecloud
| ijat/notepad-onthecloud | README.md | Markdown | gpl-3.0 | 153 |
/*
* Copyright (C) 2012 Christopher Eby <kreed@kreed.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, including without limitation the rights
* to use, ... | owoc/teardrop | app/src/main/java/mp/teardrop/CoverView.java | Java | gpl-3.0 | 14,674 |
<!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_18) on Sun Mar 21 10:29:32 CDT 2010 -->
<TITLE>
cern.jet.random.tdouble.engine (Parallel Colt 0.9.4 - API Specification)
</TITLE>
<META NAM... | Shappiro/GEOFRAME | PROJECTS/oms3.proj.richards1d/src/JAVA/ParallelColt/doc/cern/jet/random/tdouble/engine/package-frame.html | HTML | gpl-3.0 | 1,969 |
# Create ovs bridge, add eth0:
ovs-vsctl add-br br-eth0
# Set IP configuration to ovs bridge interface (br-eth0) instead of eth0 and restart network after settings are changed
# Consider setting MTU to 1546 to interface or reduce it to 1454 in the domains
ovs-vsctl add-port br-eth0 eth0 && service network restart
# C... | racedo/vLab-Files | GRE Tunnels/create-gre-tunnel.sh | Shell | gpl-3.0 | 976 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Con_contactus extends Con_root {
var $table = "citemplate_contactus";
var $pk = "contactus_id_pk";
var $name = "contactus_name";
var $message = "contactus_message";
var $phone ... | tvalentius/MarsColony | MarsColony/application/models/constant/con_contactus.php | PHP | gpl-3.0 | 816 |
/* -*- c++ -*- */
/*
* Copyright 2009,2013 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your o... | atzengin/OCC | ocvc-runtime/include/pmt/pmt_sugar.h | C | gpl-3.0 | 4,168 |
from discord.ext import commands
import discord.utils
def is_owner_check(ctx):
author = str(ctx.message.author)
owner = ctx.bot.config['master']
return author == owner
def is_owner():
return commands.check(is_owner_check)
def check_permissions(ctx, perms):
#if is_owner_check(ctx):
# return... | Jonqora/whiskers | checks.py | Python | gpl-3.0 | 5,290 |
using System;
using System.Threading;
using Hangfire.Server;
using Hangfire.States;
using Hangfire.Storage;
using Moq;
using Xunit;
namespace Hangfire.Core.Tests.Server
{
public class SchedulePollerFacts
{
private const string JobId = "id";
private readonly Mock<JobStorage> _storage;
p... | andrecarlucci/Hangfire | tests/Hangfire.Core.Tests/Server/SchedulePollerFacts.cs | C# | gpl-3.0 | 3,325 |
/* RetroArch - A frontend for libretro.
* Copyright (C) 2015-2017 - Sergi Granell (xerpi)
* Copyright (C) 2011-2017 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* atio... | Scheiker/RetroArch | input/drivers_hid/wiiusb_hid.c | C | gpl-3.0 | 16,373 |
<?php
require_once('../../../config.php');
require_once('../lib.php');
$id = required_param('id', PARAM_INT);
$groupid = optional_param('groupid', 0, PARAM_INT); //only for teachers
$url = new moodle_url('/mod/chat/gui_header_js/index.php', array('id'=>$id));
if ($groupid !== 0) {
$url->param('groupid', $gr... | dpogue/thss-moodle | mod/chat/gui_header_js/index.php | PHP | gpl-3.0 | 3,023 |
package mods.simwir.puremetals.items;
public class ItemBowlIron extends ItemIronDust{
public ItemBowlIron(int par1) {
super(par1);
setUnlocalizedName("bowlIron");
setMaxStackSize(16);
}
}
| simwir/puremetals | items/ItemBowlIron.java | Java | gpl-3.0 | 199 |
var gulp = require('gulp');
var sass = require('gulp-sass');
var auto = require('gulp-autoprefixer');
var sourcemaps = require('gulp-sourcemaps');
var browserSync = require('browser-sync').create();
var plumber = require('gulp-plumber');
gulp.task('scss', function() {
return gulp.src('src/scss/*.scss')
.pi... | JorreSpijker/gulp | gulp_files/tasks/sass.js | JavaScript | gpl-3.0 | 560 |
using SharpDX;
namespace WoWEditor6.Scene
{
class PerspectiveCamera : Camera
{
private float mAspect = 1.0f;
private float mFov = 55.0f;
public float NearClip { get; private set; }
public float FarClip { get; private set; }
public PerspectiveCamera()
{
... | WowDevTools/Neo | WoWEditor6/Scene/PerspectiveCamera.cs | C# | gpl-3.0 | 1,579 |
package com.gerolivo.stargazerdiary.config;
import java.util.concurrent.TimeUnit;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.CacheControl;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.a... | gerolvr/StargazerDiary | src/main/java/com/gerolivo/stargazerdiary/config/WebConfig.java | Java | gpl-3.0 | 710 |
namespace Maticsoft.OAuth
{
using System;
public class Provider
{
private string authUrl;
private string bindUrl;
private int mediaID;
private string mediaName;
public Provider(string authUrl, string bindUrl, int mediaID, string mediaName)
{
this... | 51zhaoshi/myyyyshop | Maticsoft.OAuth_Source/Maticsoft.OAuth/Provider.cs | C# | gpl-3.0 | 1,330 |
package org.rom.myfreetv.view;
import java.awt.Dimension;
import java.awt.Point;
import java.awt.event.WindowAdapter;
import javax.swing.BoxLayout;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JProgressBar;
import org.rom.myfreetv.config.Config;
public class P... | rom1v/myfreetv | src/org/rom/myfreetv/view/PlayerWaiter.java | Java | gpl-3.0 | 2,550 |
package com.taobao.api.domain;
import java.util.Date;
import com.taobao.api.TaobaoObject;
import com.taobao.api.internal.mapping.ApiField;
/**
* 旅游商品图片结构。
*
* @author auto create
* @since 1.0, null
*/
public class TravelItemsImg extends TaobaoObject {
private static final long serialVersionUID = 6615346549... | kuiwang/my-dev | src/main/java/com/taobao/api/domain/TravelItemsImg.java | Java | gpl-3.0 | 1,337 |
# -*- coding: utf-8 -*-
"""
nwdiag.sphinx_ext
~~~~~~~~~~~~~~~~~~~~
Allow nwdiag-formatted diagrams to be included in Sphinx-generated
documents inline.
:copyright: Copyright 2010 by Takeshi Komiya.
:license: BSDL.
"""
from __future__ import absolute_import
import os
import re
import tracebac... | bboalimoe/ndn-cache-policy | docs/sphinx-contrib/nwdiag/sphinxcontrib/nwdiag.py | Python | gpl-3.0 | 10,218 |
<?php
/**
* @package Mautic
* @copyright 2014 Mautic Contributors. All rights reserved.
* @author Mautic
* @link http://mautic.org
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
namespace Mautic\LeadBundle\Controller;
use Mautic\LeadBundle\Entity\Tag;
use Mautic\LeadBundl... | mqueme/mautic | app/bundles/LeadBundle/Controller/AjaxController.php | PHP | gpl-3.0 | 27,782 |
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unity - Scripting API: ComputeBuffer.ComputeBuffer</title>
<meta na... | rakuten/Uinty3D-Docs-zhcn | ScriptReference/ComputeBuffer-ctor.html | HTML | gpl-3.0 | 12,042 |
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unity - Scripting API: RenderSettings.defaultReflectionMode</title>
... | rakuten/Uinty3D-Docs-zhcn | ScriptReference/RenderSettings-defaultReflectionMode.html | HTML | gpl-3.0 | 10,591 |
#!/usr/bin/python
import sys
def fib(n):
if(n<=2):
return (n-1)
else:
return fib(n-1)+fib(n-2)
if ( len(sys.argv) == 2 ):
print fib(int(sys.argv[1]))
else:
print "Usage : "+sys.argv[0]+" <term required>"
| simula67/Coding | python/AAD PoC/naive_fibinocci.py | Python | gpl-3.0 | 241 |
<?php
if (!defined('init_pages'))
{
header('HTTP/1.0 404 not found');
exit;
}
$CORE->loggedInOrReturn();
//Set the title
$TPL->SetTitle('Store Activity');
//Add header javascript
$TPL->AddHeaderJs($config['WoWDB_JS'], true);
//CSS
$TPL->AddCSS('template/style/page-activity-all.css');
//Print the header
$TPL->LoadH... | Tyrelis/Warcry-Modified | template/pages/sactivity.php | PHP | gpl-3.0 | 5,495 |
//note: please do not modify this file manually!
// this file has been generated automatically by BOAST version 2.0.2
// by: make boast_kernels
/*
!=====================================================================
!
! S p e c f e m 3 D G l o b e V e r s i o n 7 . 0
! ----------------... | mpbl/specfem3d_globe | src/gpu/kernels.gen/compute_iso_undoatt_kernel_cl.c | C | gpl-3.0 | 9,685 |
package quests;
import l2s.gameserver.Config;
import l2s.gameserver.model.pledge.Clan;
import l2s.gameserver.model.Player;
import l2s.gameserver.model.instances.NpcInstance;
import l2s.gameserver.model.quest.Quest;
import l2s.gameserver.model.quest.QuestState;
import l2s.gameserver.network.l2.s2c.SystemMessage;
import... | pantelis60/L2Scripts_Underground | dist/gameserver/data/scripts/quests/_508_TheClansReputation.java | Java | gpl-3.0 | 5,523 |
\documentclass[a4paper]{article}
\begin{document}
\title{Test read\_gmsh.c}
\maketitle
cretiron of successful reading of msh file:
\begin{itemize}
\item the sum of the number of internal faces and neighbour faces is 3.
\item every internal face has a master cell (owner) and a neighbour cell. boundary face has n... | onlyacan/fsc | doc/test_read_msh.tex | TeX | gpl-3.0 | 434 |
package it.cnr.isti.labsedc.glimpse.impl;
import java.util.HashMap;
import java.util.Vector;
import org.w3c.dom.Document;
import it.cnr.isti.labsedc.glimpse.BPMN.PathExplorer;
import it.cnr.isti.labsedc.glimpse.coverage.Activity;
public class PathExplorerImpl implements PathExplorer {
public Vector<Activity[]> la... | acalabro/glimpse | src/main/java/it/cnr/isti/labsedc/glimpse/impl/PathExplorerImpl.java | Java | gpl-3.0 | 6,810 |
#!/bin/sh
appname=`basename $0 | sed s,\.sh$,,`
dirname=`dirname $0`
tmp="${dirname#?}"
if [ "${dirname%$tmp}" != "/" ]; then
dirname=$PWD/$dirname
fi
LD_LIBRARY_PATH=$dirname/lib
export LD_LIBRARY_PATH
# Uncomment to debug plugin loading for Qt
# QT_DEBUG_PLUGINS=1
# export QT_DEBUG_PLUGINS
appname='BatlabToo... | Lexcelon/batlab-toolkit-gui | dist/linux/packages/com.lexcelon.batlabtoolkitgui/data/debug-BatlabToolkitGUI.sh | Shell | gpl-3.0 | 358 |
# -*- coding: utf-8 -*-
#
# Copyright (C) 2011 Tiger Soldier
#
# This file is part of OSD Lyrics.
#
# OSD Lyrics is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your... | ihacklog/osdlyrics | python/pattern.py | Python | gpl-3.0 | 5,769 |
/*
* ProtoBuffMessage.cpp
*
* Created on: 2014年7月12日
* Author: jarek
* Brief:
*/
#include <Common/Message/ProtoBuffMessage.h>
#include <Engine/Log/LogMacro.h>
#include <sstream>
#include <Engine/Language/String.h>
#include <Engine/Util/Util.h>
using namespace std;
ProtoBuffMessage::ProtoBuffMessage()
{
/... | jarekzha/ChaosServer | Src/Common/Message/ProtoBuffMessage.cpp | C++ | gpl-3.0 | 2,278 |
'use strict'
const Q = require(`q`)
const readFile = Q.denodeify(require(`fs`).readFile)
const resolve = require(`path`).resolve
module.exports = Q.all([
readFile(resolve(__dirname, './templates/template.hbs'), 'utf-8'),
readFile(resolve(__dirname, './templates/header.hbs'), 'utf-8'),
readFile(resolve(__dirname... | nitishvu/ProjectTracking | node_modules/conventional-changelog-codemirror/writer-opts.js | JavaScript | gpl-3.0 | 951 |
<?php
// Define the APPLICATION settings array
define('SETTINGS', parse_ini_file('../config/application.ini'));
// Define the environment that the application is running
define('ENVIRONMENT', SETTINGS['environment']);
// Define include paths for php
define('PUBLICPATH', realpath(dirname(__FILE__)));
define('BASEPATH... | lazybearcreations/lazybear-boilerplate | public_html/index.php | PHP | gpl-3.0 | 1,135 |
<?php
/*
* Portal Content Management System
* Copyright (C) 2011 Hendrik Weiler
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) a... | hendrik-weiler/Portal-CMS | fuel/app/classes/controller/shop/article.php | PHP | gpl-3.0 | 8,133 |
<!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_144) on Sat Oct 28 05:22:53 EDT 2017 -->
<title>NetworkTable (Documentation - Release API)</title>
<meta name="date" content="2017-10-28">
<lin... | wh1ter0se/PowerUp-2018 | wpilib18/java/current/javadoc/edu/wpi/first/networktables/NetworkTable.html | HTML | gpl-3.0 | 29,694 |
/*
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2006 The University of Tennessee and The University
* of Tennessee Resea... | ClaudioNahmad/Servicio-Social | Parametros/CosmoMC/prerrequisitos/openmpi-2.0.2/opal/mca/pmix/pmix112/pmix/src/buffer_ops/unpack.c | C | gpl-3.0 | 36,413 |
/*
* Copyright (C) 2007 Kamil Dudka <rrv@dudka.cz>
* Copyright (C) 2015 Claude Heiland-Allen <claude@mathr.co.uk>
*
* This file is part of rrv (Radiosity Renderer and Visualizer).
*
* rrv is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published b... | kdudka/rrv | src/PatchCache.cpp | C++ | gpl-3.0 | 3,546 |
/*
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* ... | Jappsy/jappsy | src/libs/openssl/android/arm64-v8a/include/openssl/opensslconf.h | C | gpl-3.0 | 4,876 |
package com.oryx.core.dashboard.view.dashboard;
import com.google.common.eventbus.Subscribe;
import com.oryx.core.dashboard.DashboardUI;
import com.oryx.core.dashboard.component.TopTenMoviesTable;
import com.oryx.core.dashboard.domain.DashboardNotification;
import com.oryx.core.dashboard.event.DashboardEvent.CloseOpen... | 241180/Oryx | oryx-dashboard/src/main/java/com/oryx/core/dashboard/view/dashboard/DashboardView.java | Java | gpl-3.0 | 13,003 |
webpackJsonp([2],{581:function(e,t,n){"use strict";function r(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:0;switch(arguments[1].type){case u.a:return e+1;case u.b:return e-1;default:return e}}Object.defineProperty(t,"__esModule",{value:!0});var u=n(584);t.default=r,r.reducer="page2"},584:function(e,t... | luigiplr/react-router-redux-rxjs-code-splitting | docs/2-a4127f472c009ba9ea8b.chunk.js | JavaScript | gpl-3.0 | 510 |
{% extends 'main.html' %}
{% block body %}
<h1 class="center">管理:#{{problem[0]}}. {{problem[2]}} 数据信息</h1>
<br>
<div class="row">
<div class="col-md-9">
<div class="progress">
<div class="progress-bar progress-bar-success" style="width: {{(tongji[1]+1)/(tongji[0]+1)*100}}... | zrt/XOJ | web/templates/edit_problem_3.html | HTML | gpl-3.0 | 9,587 |
/**
* @author Dennis W. Gichangi <dennis.dichangi@dewcis.com>
* @version 2011.03.29
* @since 1.6
* website www.dewcis.com
* The contents of this file are subject to the Dew CIS Solutions License
* The file should only be shared to OpenBravo.
*/
package org.baraza.com;
import java.util.logging.Lo... | enbiso/openbaraza | src/org/baraza/com/BScreenReports.java | Java | gpl-3.0 | 4,024 |
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace MarshalDll
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
... | p21816/Dasha | IT Step/System Programming/MarshalDll/MarshalDll/App.xaml.cs | C# | gpl-3.0 | 326 |
INSERT INTO `crp_parameters` (`crp_id`, `key`, `value`, `is_active`, `created_by`, `modified_by`, `modification_justification`) VALUES
('1', 'crp_multiple_coa', '1', '1', '3', '3', '');
INSERT INTO `crp_parameters` (`crp_id`, `key`, `value`, `is_active`, `created_by`, `modified_by`, `modification_justification`) VALUE... | CCAFS/MARLO | marlo-web/src/main/resources/database/migrations/V2_0_0_20170321_1300__CoaUniqueParameter.sql | SQL | gpl-3.0 | 2,678 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# encryption-generator.py
#
# Copyright 2016 Netuser <zorgonteam@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either v... | P1d0f/encryptGen | encryption-generator.py | Python | gpl-3.0 | 8,291 |
<?php
function nxs_widgets_carouselitem_geticonid()
{
// there's no carouselitem image yet; we re-use the image icon
// $widget_name = basename(dirname(__FILE__));
return "nxs-icon-image"; // . $widget_name;
}
function nxs_widgets_carouselitem_gettitle()
{
return nxs_l18n__("Carousel item", "nxs_td");
}
// Unist... | nexusthemes/nexusframework | nexusframework/nexuscore/widgets/carouselitem/widget_carouselitem.php | PHP | gpl-3.0 | 6,776 |
#!/usr/bin/perl
use strict;
use warnings;
use fastaSunhh;
my $fs_obj = fastaSunhh->new();
use fileSunhh;
use LogInforSunhh;
use Getopt::Long;
my %opts;
GetOptions(\%opts,
"help!",
"max_gapR:f", # 1
"get_4d:i",
"as_coding!",
"in_fa:s", # in_aln.fas
"out:s", # outfile
"wind:i",
"step:i",
);
$opt... | Sunhh/NGS_data_processing | ortho_tools/trim_faAln.pl | Perl | gpl-3.0 | 3,569 |
/*
Encod_er.h - библиотека для обработки сигналов инкрементного энкодера параллельным процессом
Функция scanState() должна вызываться регулярно в параллельном процессе
timeRight - время/признак поворота энкодера вправо,
timeLeft - время/признак поворота энкодера влево, если = 0, то поворота не было
если = ... | phpscriptru/LED-Photoresist-Timer | Arduino/Libraries/Encod_er/Encod_er.h | C | gpl-3.0 | 2,596 |
apachesubst - Template engine for Apache HTTPD configuration files
====================================================================
About
-----
apachesubst provides a trivial way to generate configuration files from templates.
Features:
* Easy to learn: Simple syntax (Tcl syntax)
* Easy to use: Generate site con... | bef/apachesubst | README.md | Markdown | gpl-3.0 | 1,923 |
#include "SeqIO_b.h"
using namespace std;
SeqIO::SeqIO(const string& f, const char d): file(f), direction(d), fd(0), begin(), identifier(), pointer(0)
{
if( direction == 'r' ) {
/* Opening for reading */
fd.open(file.c_str(), ios::in);
} else if ( direction == 'w') {
/* Opening for... | bigey/BioSeq | src/SeqIO_b.cpp | C++ | gpl-3.0 | 5,608 |
/*****************************************************************************
* Copyright 2010-2012 Katholieke Universiteit Leuven
*
* Use of this software is governed by the GNU LGPLv3.0 license
*
* Written by Broes De Cat, Bart Bogaerts, Stef De Pooter, Johan Wittocx,
* Jo Devriendt, Joachim Jansen and Pieter ... | KULeuven-KRR/IDP | src/generators/BDDBasedGeneratorFactory.hpp | C++ | gpl-3.0 | 5,524 |
#!/bin/env python2.7
# -*- coding: utf-8 -*-
# This file is part of AT-Platform.
#
# EPlatform is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later ... | bjura/EPlatform | spellerPuzzle.py | Python | gpl-3.0 | 24,523 |
package com.baeldung.jsondateformat;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTe... | Niky4000/UsefulUtils | projects/tutorials-master/tutorials-master/spring-boot-data/src/test/java/com/baeldung/jsondateformat/ContactAppIntegrationTest.java | Java | gpl-3.0 | 4,712 |
Wanawana
========
Wana meet?
Wanawana is an event management system.
Details
=======
It is still in the earlier stages of development. Check the issues or the [TODO](TODO.md) document.
Demo instance
=============
http://wanawana.worlddomination.be/
Installation
============
Wanawana is a vanilla python/django ... | Psycojoker/wanawana | README.md | Markdown | gpl-3.0 | 402 |
# Copyright (c) 2012 Jakub Pastuszek
#
# This file is part of Distributed Monitoring System.
#
# Distributed Monitoring System is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, o... | jpastuszek/dms-poller | lib/dms-poller/collector_thread.rb | Ruby | gpl-3.0 | 1,630 |
import json
import argparse
import numpy
import sys
import copy
from astropy.coordinates import SkyCoord
from astropy import units
import operator
class Program(object):
def __init__(self, runid="16BP06", pi_login="gladman"):
self.config = {"runid": runid,
"pi_login": pi_login,
... | CFIS-Octarine/octarine | planning/ph2.py | Python | gpl-3.0 | 5,099 |
#-*- coding: utf-8 -*-
from django.conf.urls import url
from . import views
app_name = "perso"
urlpatterns = [
url(r'^$', views.main, name='main'),
url(r'^(?P<pageId>[0-9]+)/?$', views.main, name='main'),
url(r'^ab... | LeMinaw/minaw.net | perso/urls.py | Python | gpl-3.0 | 901 |
<!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_07) on Sun Mar 22 19:06:38 GMT 2009 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>
org.jqurantree.core.c... | reemeldeeb/jqurantree | javadoc/org/jqurantree/core/collections/package-tree.html | HTML | gpl-3.0 | 6,835 |
package in.mayurshah.DTO;
import org.openqa.selenium.Platform;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.remote.DesiredCapabilities;
public class WebDriverConfig {
private boolean intenal;
private String remoteURL;
private String TestCaseName;
private String browserName;
private... | selenium-webdriver-software-testing/kspl-selenium-helper | src/main/java/in/mayurshah/DTO/WebDriverConfig.java | Java | gpl-3.0 | 1,867 |
/* global Converter, probandDatav2 */
describe('Converter', function() {
describe('load', function() {
it('should load proband data', function() {
var converter = new Converter();
converter.load(probandDatav2);
expect(converter.data).to.deep.equal(probandDatav2);
... | secure-software-engineering/ivy | test/spec/converter_test.js | JavaScript | gpl-3.0 | 6,072 |
<?php
/*
Public-Storm
Copyright (C) 2008-2012 Mathieu Lory <mathieu@internetcollaboratif.info>
This file is part of Public-Storm.
Public-Storm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software F... | mathcoll/Public-Storm | Trunk/www/plugins/graphviz/_plugin.php | PHP | gpl-3.0 | 2,782 |
<?php
/**
* @package Arastta eCommerce
* @copyright Copyright (C) 2015-2016 Arastta Association. All rights reserved. (arastta.org)
* @credits See CREDITS.txt for credits and other copyright notices.
* @license GNU General Public License version 3; see LICENSE.txt
*/
// Heading
$_['headi... | denisdulici/arastta | catalog/language/en-GB/module/account.php | PHP | gpl-3.0 | 986 |
package com.projectreddog.machinemod.client.gui;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.renderer.texture.ITextureObject;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.StatCollector;
import org.lwjg... | TechStack/MachineMod | src/main/java/com/projectreddog/machinemod/client/gui/GuiDumpTruck.java | Java | gpl-3.0 | 1,949 |
<!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 (version 1.7.0_51) on Thu Feb 06 09:12:27 CET 2014 -->
<title>M-Index</title>
<meta name="date" content="2014-02-06">
<link rel="stylesheet" type="tex... | buoncubi/JFileManager | JavaDoc/index-files/index-5.html | HTML | gpl-3.0 | 6,544 |
<?php
// ensure this file is being included by a parent file
if ( !defined('_JEXEC') && !defined('_VALID_MOS')) die('Restricted access');
/**
* @version $Id: list.php 235 2014-04-08 08:55:05Z soeren $
* @package eXtplorer
* @copyright soeren 2007-2014
* @author The eXtplorer project (http://extplorer.net)
* @autho... | MBWE-Extras/Sources | extplorer_1_0/1_tgzContent/Pack/include/list.php | PHP | gpl-3.0 | 12,248 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2016-2022, Regents of the University of California,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University.
*
* This file is part of ndn-tools (Named D... | named-data/ndn-tools | tools/chunks/catchunks/pipeline-interests-aimd.cpp | C++ | gpl-3.0 | 2,334 |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Biruni.Shared;
namespace Biruni.Reports
{
public partial class frmReportCriteria2 : Biruni.Shared.Templates.frmEntry1
{
public frmRe... | hidayat365/Inventory.NET | Biruni.Reports/frmReportCriteria2.cs | C# | gpl-3.0 | 765 |
#JumpToTop {
position: fixed;
bottom: 14px;
} | hgtonight/Vanilla-Plugins | JumpToTop/design/jumptotop.css | CSS | gpl-3.0 | 47 |
Bitrix 16.5 Business Demo = 2a4be83c0d92f19cfe8a1ae9a1775bff
| gohdan/DFC | known_files/hashes/bitrix/modules/blog/install/components/bitrix/blog/templates/.default/post_edit.php | PHP | gpl-3.0 | 61 |
/*
* Process Hacker -
* provider base class
*
* Copyright (C) 2008-2009 wj32
*
* This file is part of Process Hacker.
*
* Process Hacker is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundatio... | zippy1981/ProcessHacker-v1x | ProcessHacker/Providers/Provider.cs | C# | gpl-3.0 | 9,511 |
package pl.mrugames.commons.router.request_handlers;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.security.access.AccessDeniedException;
import org.springframework.security.core.AuthenticationException;
import org.springf... | Mariusz-v7/RequestsRouter | src/main/java/pl/mrugames/commons/router/request_handlers/ExceptionHandler.java | Java | gpl-3.0 | 6,352 |
package main
import (
"bytes"
"fmt"
"os/exec"
"github.com/mgutz/ansi"
"github.com/stevedomin/termtable"
"strings"
)
func fmtString(color, str, reset string) string {
return fmt.Sprintf("%s%s%s", color, str, reset)
}
func main() {
services := []string{
"cronie.service",
"httpd.service",
"mysqld.service",
"... | prinsmike/archstatus | archstatus.go | GO | gpl-3.0 | 1,658 |
using System;
using BaldurSuchtFiona.Models;
namespace BaldurSuchtFiona
{
public class Healpot : Item
{
public int HealthRestoration { get;set;}
public Healpot ()
{
HealthRestoration = 10;
}
public override void OnCollect(World world){
}
}
}
| icekuhn/Baldur-Sucht-Fiona | BaldurSuchtFiona/Models/Healpot.cs | C# | gpl-3.0 | 298 |
// melement.cpp ---
// Author: Subhasis Ray
// Created: Mon Jul 22 16:50:41 2013 (+0530)
#include <Python.h>
#include <structmember.h>
#include <iostream>
#include <typeinfo>
#include <cstring>
#include <map>
#include <ctime>
#ifdef USE_MPI
#include <mpi.h>
#endif
#include "../basecode/header.h"
#include "../baseco... | BhallaLab/moose-core | pymoose/melement.cpp | C++ | gpl-3.0 | 75,256 |
<div class="row-fluid">
<div class="block span6">
<a href="#tablewidget" class="block-heading" data-toggle="collapse"><?PHP I18n::p('W_S');?></a>
<div id="tablewidget" class="block-body collapse in">
<table class="table">
<tbody>
<tr>
... | phpmongodb/phpmongodb | application/views/Index/index.php | PHP | gpl-3.0 | 1,793 |
/* buttons */
/*responsive settings*/
@media all and (min-width: 1500px) {
}
@media all and (max-width: 1499px) and (min-width: 600px) {
}
@media all and (max-width: 800px) and (min-width: 50px) {
button .unica{
font-size: 20px !important;
}
button .inconsolata{
font-size: 25px;
letter-spacing: 1.7px;
}
b... | LeBlockFest/blockfest20 | stylesheets/buttons.css | CSS | gpl-3.0 | 3,432 |
/**
* Default theme for jixedbar
* written by Ryan Yonzon, http://ryan.rawswift.com/
* Last update: August 13, 2010
*/
/*----- bar style -----*/
.jx-bar {
height:30px;
padding:0px;
width:80%;
background-color:#e5e5e5;
border:#b5b5b5 solid 1px;
}
/* rounded top-left corner */
.jx-bar-rounded-tl {
-web... | luisdias/thewinecellar | app/webroot/css/jx.bar.css | CSS | gpl-3.0 | 5,708 |
\hypertarget{impl_2genericCrossbar_8cc}{
\section{source/components/impl/genericCrossbar.cc File Reference}
\label{impl_2genericCrossbar_8cc}\index{source/components/impl/genericCrossbar.cc@{source/components/impl/genericCrossbar.cc}}
}
{\tt \#include \char`\"{}genericCrossbar.h\char`\"{}}\par
| mrasquinha/Capstone_v2 | documentation/latex/impl_2genericCrossbar_8cc.tex | TeX | gpl-3.0 | 295 |
package script
//----------------------------------------------------------------------
// This file is part of Gospel.
// Copyright (C) 2011-2020 Bernd Fix
//
// Gospel is free software: you can redistribute it and/or modify it
// under the terms of the GNU Affero General Public License as published
// by the Free So... | bfix/gospel | bitcoin/script/run.go | GO | gpl-3.0 | 6,670 |
/**
******************************************************************************
* @file fonts.c
* @author MCD Application Team
* @version V5.0.2
* @date 05-March-2012
* @brief This file provides text fonts for STM32xx-EVAL's LCD driver.
********************************************************... | fishr/Origin | Src/fonts.c | C | gpl-3.0 | 74,556 |
<!DOCTYPE HTML>
<!-- http://proyectos.analizo.info/app/omc-marzo-2014/ -->
<html lang="es">
<head>
<meta charset="utf-8"/>
<title>La comida ultra incendia Orriols</title>
<link type="text/css" rel="stylesheet" href="http://proyectos.analizo.info/static/apps/omc/css.css"/>
</head>
<body>
<div id="main">
<p... | proyectos-analizo-info/app-omc | tasks/marzo/html/2093605.html | HTML | gpl-3.0 | 6,208 |
#ifndef PLAYER_H
#define PLAYER_H
#include <QString>
class Player
{
private:
QString name;
bool bot;
public:
Player(QString _name);
QString getName();
bool getBot();
};
#endif // PLAYER_H
| betaros/maumau | player.h | C | gpl-3.0 | 213 |
package at.logic.gapt.examples.tip.isaplanner
import at.logic.gapt.expr._
import at.logic.gapt.formats.ClasspathInputFile
import at.logic.gapt.formats.tip.TipSmtParser
import at.logic.gapt.proofs.Ant
import at.logic.gapt.proofs.gaptic._
import at.logic.gapt.provers.viper.aip.axioms.SequentialInductionAxioms
import at.... | gebner/gapt | examples/tip/isaplanner/prop_24.scala | Scala | gpl-3.0 | 3,690 |
package mx.com.kosmos.connections;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.ProtocolException;
im... | therealthom/kosmos-app | src/java/mx/com/kosmos/connections/SaltEdge.java | Java | gpl-3.0 | 7,094 |
#region References
using UnityEngine;
#endregion
public class RocketComponent : GameEntityComponent
{
public const int MIN_DISTANCE_TO_EXPLODE = 1;
public Vector2 flyToPosition;
public bool canFly, canLook;
public float velocity = 200f;
public override void Explode ()
{
base.Explode();
Destroy();
}
#re... | gavar/Missile-Game | Assets/Game/Scripts/RocketComponent.cs | C# | gpl-3.0 | 880 |
@CHARSET "UTF-8";
#mostrarListaPresenca .formWrapper label {
display: block;
float: none;
padding: 0px;
}
#mostrarListaPresenca .formWrapper form ul.controls li {
float: left;
padding: 5px 8px 0px 0px;
}
#mostrarListaPresenca .formWrapper .field {
width: 100% !important;
}
#mostrarListaPresenca .subgrupo {
clear... | filipemb/siesp | WebContent/WEB-INF/screen/listapresenca/mostrarListaPresenca.css | CSS | gpl-3.0 | 333 |
package de.luc1412.em.gui;
import de.luc1412.em.EasyMaintenance;
import de.luc1412.em.commands.CMDEasyMaintenance;
import de.luc1412.em.utils.Utils;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;
import org.bukkit.inventory.Inventory;
/**
* Created by Luc1412 on 22.08.2017 at 00:19
*/
class InventoryAni... | Luc1412/EasyMaintenance | src/main/java/de/luc1412/em/gui/InventoryAnimationManager.java | Java | gpl-3.0 | 1,639 |
#!/usr/bin/env python
########################################################################
# $HeadURL$
########################################################################
"""
Get the list of all the user files.
"""
__RCSID__ = "$Id$"
from DIRAC.Core.Base import Script
days = 0
months = 0
years = 0
wildcard = ... | vmendez/DIRAC | DataManagementSystem/scripts/dirac-dms-user-lfns.py | Python | gpl-3.0 | 5,259 |
/*
$License:
Copyright (C) 2011 InvenSense Corporation, All Rights Reserved.
$
*/
/******************************************************************************
*
* $Id:$
*
*****************************************************************************/
/**
* @defgroup ML
* @{
* @file mlarray_lit... | lehnert/muAV | Software Design/muAV/muAV/imu3000/umpl/mlarray_lite.c | C | gpl-3.0 | 55,341 |
#ifndef SNESPALETTE_H
#define SNESPALETTE_H
#include <QRgb>
#include <QVector>
#include <QtGlobal>
// Snes color are encoded on 2 bytes, 0BBBBBGG GGGRRRRR
struct SNESColor
{
SNESColor();
quint16 snes;
QRgb rgb;
void setRgb(QRgb);
void setSNES(quint16);
quint16 approxSNES();
QRgb ... | Skarsnik/SNESTilesKitten | snespalette.h | C | gpl-3.0 | 611 |
package se.esss.litterbox.linaclego.v2.webapp.client.contentpanels;
import com.google.gwt.user.client.ui.HasHorizontalAlignment;
import com.google.gwt.user.client.ui.InlineHTML;
import com.google.gwt.user.client.ui.VerticalPanel;
import se.esss.litterbox.linaclego.v2.webapp.client.gskel.GskelSetupApp;
import s... | se-esss-litterbox/linac-lego | LinacLegoV2WebApp/src/se/esss/litterbox/linaclego/v2/webapp/client/contentpanels/PbsLayoutPanel.java | Java | gpl-3.0 | 1,849 |
#ifndef CURSE_IMPACT_EVENT_T_HPP
#define CURSE_IMPACT_EVENT_T_HPP
#include <map>
#include <vector>
#include <utility>
#include <iostream>
#include "instruction_t.hpp"
#include "position_t.hpp"
#include "util.hpp"
#ifdef DEBUG
# include <ncurses.h>
#endif
struct ship_event_t {
ship_event_t();
~ship_event_t(... | Arp-/curse_impact | inc/event_t.hpp | C++ | gpl-3.0 | 2,681 |
<!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_11) on Mon Jun 16 17:36:07 PDT 2014 -->
<title>Uses of Class javax.swing.DefaultButtonModel (Java Platform SE 8 )</title>
<meta name="date" con... | DeanAaron/jdk8 | jdk8en_us/docs/api/javax/swing/class-use/DefaultButtonModel.html | HTML | gpl-3.0 | 6,983 |
#!/usr/bin/env python
"""
@file costFunctionChecker.py
@author Michael Behrisch
@author Daniel Krajzewicz
@author Jakob Erdmann
@date 2009-08-31
@version $Id: costFunctionChecker.py 13811 2013-05-01 20:31:43Z behrisch $
Run duarouter repeatedly and simulate weight changes via a cost function.
SUMO, Simulatio... | rudhir-upretee/Sumo17_With_Netsim | tools/assign/costFunctionChecker.py | Python | gpl-3.0 | 8,986 |
---
title: "11 साल बाद शहाबुद्दीन जेल से रिहा"
layout: item
category: ["politics"]
date: 2016-09-10T08:43:07.736Z
image: 1473496987735shahbuddin.jpg
---
<p>पटना: बिहार के बाहुबली नेता और सीवान के पूर्व आरजेडी सांसद शहाबुद्दीन को 11 साल बाद जेल से रिहा कर दिया गया है. पटना हाइकोर्ट से राजीव रोशन मर्डर केस में जमानत मिलन... | InstantKhabar/_source | _source/news/2016-09-10-shahbuddin.html | HTML | gpl-3.0 | 2,655 |
Note: This is not the [authoritative source](https://www.comlaw.gov.au/Details/C2014C00544) for this act, and likely contains errors
# Commonwealth Places (Mirror Taxes) Act 1998
##### No. 24, 1998 as amended
##### Compilation start date: 1 July 2014
##### Includes amendments up to: Act No. 62, 2014
### About this... | xlfe/gitlaw-au | acts/current/c/commonwealth places (mirror taxes) act 1998.md | Markdown | gpl-3.0 | 27,322 |
/*
* SD-DSS-Util, a Utility Library and a Command Line Interface for SD-DSS.
* Copyright (C) 2013 La Traccia http://www.latraccia.it/en/
* Developed by Francesco Pontillo
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as publi... | latraccia/sd-dss-util | sd-dss-util-lib/src/main/java/it/latraccia/dss/util/exception/SignaturePolicyAlgorithmMismatchException.java | Java | gpl-3.0 | 1,247 |
/************************************************************************
AvalonDock
Copyright (C) 2007-2013 Xceed Software Inc.
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at https://opensource.org/licenses/MS-PL
*********************************... | Altaxo/Altaxo | Libraries/AvalonDock/AvalonDock/Controls/OverlayWindow.cs | C# | gpl-3.0 | 35,333 |
<!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_45) on Sun Jun 09 12:16:07 GMT+05:30 2013 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
Uses of Class org.apache.so... | jeffersonmolleri/sesra | bin/solr-4.3.1/docs/solr-core/org/apache/solr/util/class-use/AdjustableSemaphore.html | HTML | gpl-3.0 | 6,334 |
/****************************************************************************!
* _ _ _ _ *
* | |__ _ __ / \ | |_| |__ ___ _ __ __ _ *
* | '_ \| '__/ _ \| __| '_ \ / _ \ '_ \ / _` | *
* ... | Badarosk0/brAthena | src/map/chrif.c | C | gpl-3.0 | 58,125 |
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle ... | techsavv/deecd | blocks/course_participants/db/access.php | PHP | gpl-3.0 | 1,309 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.