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 |
|---|---|---|---|---|---|
package it.unibas.lunatic.model.dependency;
public class FormulaSymbol implements IFormulaValue {
private Object value;
public FormulaSymbol(Object value) {
this.value = value;
}
public Object getValue() {
if (true) throw new UnsupportedOperationException();
return value;
... | donatellosantoro/Llunatic | lunaticEngine/src/it/unibas/lunatic/model/dependency/FormulaSymbol.java | Java | gpl-3.0 | 1,083 |
# WolframAlpha Client
v1.3
Python Client built against the [Wolfram|Alpha](http://wolframalpha.com)
v2.0 API.
Original project is hosted on [bitbucket](http://bitbucket.org/jaraco/wolframalpha).
## Installation
* Clone git archive via the following command;
`git clone https://github.com/bmikolaj/wolframalpha.... | bmikolaj/wolframalpha | README.md | Markdown | gpl-3.0 | 1,640 |
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
\\... | OpenFOAM/OpenFOAM-dev | src/meshTools/sets/cellSources/surfaceToCell/surfaceToCell.H | C++ | gpl-3.0 | 6,316 |
/*
Copyright 2009 Last.fm Ltd.
- Primarily authored by Max Howell, Jono Cole and Doug Mansell
This file is part of liblastfm.
liblastfm 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, eithe... | lfranchi/liblastfm | src/ws/win/NdisEvents.h | C | gpl-3.0 | 1,214 |
# This file is part of PlexPy.
#
# PlexPy 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.
#
# PlexPy is distributed in the hope t... | gnowxilef/plexpy | plexpy/webserve.py | Python | gpl-3.0 | 52,488 |
namespace _02.Rotate_and_Sum
{
using System;
using System.Linq;
public class Program
{
public static void Main()
{
var arr = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
int k = int.Parse(Console.ReadLine());
var sum = new int[arr.Lengt... | martinmladenov/SoftUni-Solutions | Programming Fundamentals/Exercises/12. Arrays - Exercises/02. Rotate and Sum/Program.cs | C# | gpl-3.0 | 965 |
/*****************************************************************************
* Copyright (c) 2014 Ted John
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
*
* This file is part of OpenRCT2.
*
* OpenRCT2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General... | Corsleutel/OpenRCT2 | src/object.c | C | gpl-3.0 | 13,706 |
import store from "@/store";
import { modV } from "@/modv";
import Vue from "vue";
const state = {
width: 200,
height: 200,
previewX: 0,
previewY: 0,
previewWidth: 0,
previewHeight: 0
};
// getters
const getters = {
width: state => state.width,
height: state => state.height,
area: state => state.wid... | 2xAA/modV | src/store/modules/size.js | JavaScript | gpl-3.0 | 3,477 |
<!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>"asmail/resources/inbox" | 3NProtocols demo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel=... | 3nsoft/3nweb-protocols | dist/code-docs/modules/_asmail_resources_inbox_.html | HTML | gpl-3.0 | 29,481 |
<?php
// __________ ___ __ ______ //
// ___ ____/_____ __ | / /_______ /_ //
// __ __/ _ __ `/_ | /| / /_ _ \_ __ \ //
// _ /___ / /_/ /__ |/ |/ / / __/ /_/ / //
// /_____/ \__,_/ ____/|__/ \___//_.___/ //
// Eaweb, cadriciel pour applicatons web en php
// Modifié le: 20 ju... | florian959/eaweb | system/ROADS.php | PHP | gpl-3.0 | 853 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xamarin.Forms;
namespace ImageCircleProject
{
public class App : Application
{
public App()
{
// The root page of your application
MainPage = new MainPage();
}
... | Emixam23/XamarinByEmixam23 | Detailed Part/Controls/ImageCircleProject/ImageCircleProject/ImageCircleProject/App.cs | C# | gpl-3.0 | 641 |
/*
* Copyright 2012 Marcos Lordello Chaim, José Carlos Maldonado, Mario Jino,
* CCSL-ICMC <ccsl.icmc.usp.br>
*
* This file is part of POKE-TOOL.
*
* POKE-TOOL 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,... | magsilva/poketool | pokernel/salvagrf.c | C | gpl-3.0 | 13,481 |
<?php
/**
* Makes our changes to the CSS
*
* @param string $css
* @param theme_config $theme
* @return string
*/
function arialist_usurt_process_css($css, $theme) {
// Set the link color
if (!empty($theme->settings->linkcolor)) {
$linkcolor = $theme->settings->linkcolor;
} else {
$li... | mbeloshitsky/moodle | theme/arialist_usurt/lib.php | PHP | gpl-3.0 | 2,204 |
#!/bin/bash
run_test() {
echo "checking that adding a file to a package works"
# make some files/dirs
echo "set compatible" > "${TEMP_LOCAL}/.vimrc2"
echo "# hi" > "${TEMP_LOCAL}/.zshrc"
# copy the repo
cp -r "${BASE_DIR}/test/repo" "${TEMP_LOCAL}"
ls -a "${TEMP_LOCAL}"
echo... | swalladge/dotfiles-manager | test/integration_tests/test_add_file_no.sh | Shell | gpl-3.0 | 762 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MaRIONet : Register for Manycore Summer School</title>
<link rel="stylesheet" href="https://unpkg.com/purecss@0.6.1/build/pure-min.css">
<!--[if lte IE 8]>
... | annalito/MaRIONet | ss_form.html | HTML | gpl-3.0 | 4,874 |
(function($, _){
/**
* @summary A reference to the jQuery object the plugin is registered with.
* @memberof FooGallery
* @function $
* @type {jQuery}
* @description This is used internally for all jQuery operations to help work around issues where multiple jQuery libraries have been included in a single pag... | fooplugins/foogallery-client-side | src/core/js/__foogallery.js | JavaScript | gpl-3.0 | 3,019 |
# Makefile for Sphinx documentation
#
# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
PAPER =
BUILDDIR = _build
# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/do... | fedora-modularity/meta-test-family | docs/Makefile | Makefile | gpl-3.0 | 5,651 |
/*
* Geoide Composer, configuration tool for Geoide Viewer
* Copyright (C) 2016 IDgis
* See license:
* https://github.com/IDgis/geoide-admin/blob/master/LICENSE
*/
import './startup.js';
import './jsonapi.js';
import './json_gv_api.js';
import './json_map_api.js';
import './parse_capabilities.js';
| IDgis/geoide-admin | imports/startup/server/index.js | JavaScript | gpl-3.0 | 306 |
# Jiubei – Level 3 Reckless Rogue (Arcane Trickster)
200 years ago, the universities were at the heart of Xin culture. Any parent with means would do whatever they could to prepare their child for the entrance exams. Youths with a talent for wizardry who passed the tests brought honor to their family, and could look f... | Kumarbis/southlandsNPCs | Jiubei.md | Markdown | gpl-3.0 | 2,311 |
import Entity from "./entity";
class DerivedEntity {
constructor(public entity: Entity) { }
};
export default DerivedEntity; | marianc/node-server-typescript-client | Client/modules/utils/dal/common/entities/derivedEntity.ts | TypeScript | gpl-3.0 | 133 |
/*
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) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT... | jrversteegh/ninedof | tools/ninedof.cpp | C++ | gpl-3.0 | 3,189 |
<?php
// +-----------------------------------------------------------------------+
// | Copyright (c) 2002-2003 Richard Heyes |
// | All rights reserved. |
// | |
// | R... | deependhulla/powermail-debian9 | files/rootdir/usr/local/src/groupoffice-6.2/groupoffice-6.2-setup-www/go/vendor/pear/Auth/SASL.php | PHP | gpl-3.0 | 4,504 |
/*
* AMD 10Gb Ethernet driver
*
* This file is available to you under your choice of the following two
* licenses:
*
* License 1: GPLv2
*
* Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
*
* This file is free software; you may copy, redistribute and/or modify
* it under the terms of the GNU General Pub... | williamfdevine/PrettyLinux | drivers/net/ethernet/amd/xgbe/xgbe-main.c | C | gpl-3.0 | 27,117 |
{% include "fa-decoration.html" with title=title|default:"Interviews list" icon=icon|default:"fa-calendar" %}
{% if interviews_list %}
<table class="table table-condensed table-bordered table-hover {{ datatable_style |default:"dataTable" }}">
<thead>
<tr>
<th>applicant</th>
<th>type... | gdebure/cream | recruitment/templates/interview_table.html | HTML | gpl-3.0 | 1,030 |
<!DOCTYPE html>
<html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head lang="en-GB">
<title>Ross Gammon’s Family Tree - Events</title>
<meta charset="UTF-8" />
<meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" />
<meta name ="apple-mo... | RossGammon/the-gammons.net | RossFamilyTree/evt/6/1/d15f6098f1e6ea18d5c0406d216.html | HTML | gpl-3.0 | 3,161 |
"""treetools: Tools for transforming treebank trees.
transformations: constants and utilities
Author: Wolfgang Maier <maierw@hhu.de>
"""
from . import trees
# Head rules for PTB (WSJ) from Collins (1999, p. 240)
HEAD_RULES_PTB = {
'adjp' : [('left-to-right', 'nns qp nn $ advp jj vbn vbg adjp jjr np jjs dt fw rbr... | wmaier/treetools | trees/transformconst.py | Python | gpl-3.0 | 4,747 |
@CHARSET "UTF-8";
/************940px宽**************/
.container, .row {
width: 940px;
margin: 0 auto;
}
.navbar-fixed-top .container {width: 940px;}
.row > [class *="span"]:first-child {margin-left: 0;}
.row > .module-list-div [class *="span"]:first-child {margin-left: 0;}
.row {margin-left: 0;}
.span1, .span2, .span... | flowstone/HTML-Templates | 20036_医疗器械/style/biodiscover-IE940.css | CSS | gpl-3.0 | 10,609 |
<?php
/***************************************************************************\
* SPIP, Systeme de publication pour l'internet *
* *
* Copyright (c) 2001-2013 *
* ... | VertigeASBL/genrespluriels | ecrire/inc/instituer_breve.php | PHP | gpl-3.0 | 1,828 |
// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
frappe.query_reports["GSTR-1"] = {
"filters": [
{
"fieldname":"company",
"label": __("Company"),
"fieldtype": "Link",
"options": "Company",
"reqd": 1,
"default": frappe.... | tfroehlich82/erpnext | erpnext/regional/report/gstr_1/gstr_1.js | JavaScript | gpl-3.0 | 893 |
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | s20121035/rk3288_android5.1_repo | packages/apps/Terminal/jni/forkpty.h | C | gpl-3.0 | 768 |
#!/usr/bin/env python
#
# Author: Pablo Iranzo Gomez (Pablo.Iranzo@redhat.com)
#
# Description: Script for setting the keyring password for RHEV scripts
#
# Requires: python keyring
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as publish... | DragonRoman/rhevm-utils | rhev-keyring.py | Python | gpl-3.0 | 2,000 |
#include <linux/types.h>
#include <linux/errno.h>
#include <asm/uaccess.h>
#include <asm/sfp-machine.h>
#include <math-emu/soft-fp.h>
#include <math-emu/double.h>
#include <math-emu/single.h>
int
fnmsubs(void *frD, void *frA, void *frB, void *frC)
{
FP_DECL_D(R);
FP_DECL_D(A);
FP_DECL_D(B);
FP_DECL_D(C);
FP_DECL... | williamfdevine/PrettyLinux | arch/powerpc/math-emu/fnmsubs.c | C | gpl-3.0 | 1,213 |
<!DOCTYPE html>
<html>
<!-- Created on March 31, 2014 by texi2html 1.82 -->
<!--
texi2html was written by:
Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
Olaf Bachmann <obachman@mathematik.uni-kl.de>
and many others.
Maintained by:... | C5E3B7BD/-R-Frozen-Image-Grabber | ffmpeg/doc/ffplay.html | HTML | gpl-3.0 | 26,698 |
<?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link http://skeeks.com/
* @copyright 2010 SkeekS (СкикС)
* @date 13.09.2016
*/
namespace skeeks\cms\savedFilters;
use skeeks\cms\components\Cms;
use skeeks\cms\models\CmsContentElement;
use skeeks\cms\relatedProperties\models\RelatedPropertiesModel;
use... | skeeks-cms/cms-saved-filters | src/RelatedHandlerSavedFilter.php | PHP | gpl-3.0 | 2,083 |
package tsdb.util.processingchain;
import java.util.Arrays;
/**
* Processing chain with multiple chains as source and one additional entry
* immutable (Fields should not be changed.)
* @author woellauer
*/
public class ProcessingChainMultiSources implements ProcessingChain {
public final ProcessingCha... | environmentalinformatics-marburg/tubedb | src/tsdb/util/processingchain/ProcessingChainMultiSources.java | Java | gpl-3.0 | 2,423 |
# Failles et vulnérabilités
* [Open Web Application Security Project (OWASP)](https://www.owasp.org/index.php/Main_Page)
* [Log Injection](https://www.owasp.org/index.php/Log_Injection)
| Elian-0x/Ressources | vuln/README.md | Markdown | gpl-3.0 | 189 |
module SnapsHelper
end
| fma16/Snapchat_storifyer | app/helpers/snaps_helper.rb | Ruby | gpl-3.0 | 23 |
#!/usr/bin/python
import os,sys,re
#Check the OS Version
RELEASE_FILE = "/etc/redhat-release"
RWM_FILE = "/etc/httpd/conf.modules.d/00-base.conf"
if os.path.isfile(RELEASE_FILE):
f=open(RELEASE_FILE,"r")
rel_list = f.read().split()
if rel_list[2] == "release" and tuple(rel_list[3].split(".")) < ('8','5'):
pri... | sujith7c/py-system-tools | en_mod_rw.py | Python | gpl-3.0 | 636 |
#pragma interface
#include <QtCore/QAbstractAnimation>
#include "ruby++/module.h"
#include "ruby++/symbol.h"
namespace R_Qt {
extern void init_animation(RPP::Module mQt, RPP::Class cControl);
extern RPP::Symbol QAbstractAnimation_State2Symbol(QAbstractAnimation::State state);
} // namespace R_Qt
| EugeneBrazwick/Midibox | lib/urqtCore/animation.h | C | gpl-3.0 | 300 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DMULTI1_04d.txt</title>
<link href="prism.css" rel="stylesheet" />
</head>
<body>
<h1> A highlighted Plain Text version of DMULTI1_04d.txt Basic Program</h1>
<pre><code class="language-basic"><script>2! RE-STORE "MULTI1.04d"
4 !***... | aricsanders/html-examples | HPBASIC_HTML/DMULTI1_04d.html | HTML | gpl-3.0 | 65,095 |
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int contar1 (int x, int a)
{
for (a<x; x>a; a++){
if ((a%10)==4)
printf ("\n%d", a);
}
return 0;
}
int contar2 (int x, int a)
{
for (a<x; x>a; a++){
if ((a%10)==6)
printf ("\n%d", a);
}
... | andbet050197/IS284UTP | taller1condyciclos/puntos 5 y 9 ciclos-for.cpp | C++ | gpl-3.0 | 2,532 |
#!/usr/bin/env bash
#
# Safe way of propagating the exit code of all commands through the script.
# Without this line, commands could fail/exit 1 and the script itself would
# complete and exit with code 0.
#
set -e
yarn install
node_modules/.bin/lerna run build --concurrency 1
echo "Please remember to set frontendD... | mstruebing/PackageFactory.Guevara | Build/Docker/run.sh | Shell | gpl-3.0 | 552 |
#include <QObject>
#include <QtTest/QtTest>
#include <QDateTime>
#include <QVariant>
#include <QVariantMap>
#include <QVariantList>
#include "samuraiitemizedentriesgetresponse.h"
namespace tests {
class SamuraiItemizedEntriesGetResponseTest : public QObject
{
Q_OBJECT
private slots:
void testGet();
};
voi... | Bjoe/qsipgaterpclib | tests/samuraiitemizedentriesgetresponsetest.cpp | C++ | gpl-3.0 | 4,309 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>isCached()</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="Smarty 3 Manual">
<link rel="up" href="api.functions.html" title="Chapter 14. Smarty Class Methods... | HansBartelmess/WochenberichteOnline | contrib/Smarty/docs/api.is.cached.html | HTML | gpl-3.0 | 6,598 |
<?php
/**
* Copyright 2008, Jefferson González (JegoYalu.com)
* This file is part of Jaris CMS and licensed under the GPL,
* check the LICENSE.txt file for version and details or visit
* https://opensource.org/licenses/GPL-3.0.
*/
//For security the file content is skipped from the world eyes :)
exit;
?>
row: 0
... | jegoyalu/jariscms | modules/faq/data/js-faq-add_question.php | PHP | gpl-3.0 | 5,571 |
<?php session_start();
$root = substr($_SERVER["DOCUMENT_ROOT"], 0, -1);
require_once("$root/Class/XlsExport.php");
require_once("$root/Class/Net.php");
$FileName = "tmp/RollOut_WIN7_RITIRI_FIL_" . $_SESSION['rollout']['cod_fil'] . ".xls";
$x = new XlsExport($FileName, "mail");
$x->xlsWriteLabel(0, 0, "Branch C... | clagiordano/weblibs | forms/frm_mail_ritiri_rollout.php | PHP | gpl-3.0 | 2,292 |
/**
* Graphical user interface of GeoLing.
*
* @author Institute of Stochastics, Ulm University
*/
package geoling.gui; | stochastics-ulm-university/GeoLing | src/geoling/gui/package-info.java | Java | gpl-3.0 | 124 |
package main
// #include <stdlib.h>
// #include <locale.h>
import "C"
import (
"os"
"path/filepath"
"runtime"
"unsafe"
)
const LC_NUMERIC = int(C.LC_NUMERIC)
// setLocale sets locale
func setLocale(lc int, locale string) {
l := C.CString(locale)
defer C.free(unsafe.Pointer(l))
C.setlocale(C.int(lc), l)
}
//... | gen2brain/bukanir | desktop/func.go | GO | gpl-3.0 | 963 |
/*
* Copyright 2010 Pablo Arrighi, Alex Concha, Miguel Lezama for version 1.
* Copyright 2013 Pablo Arrighi, Miguel Lezama, Kevin Mazet for version 2.
*
* This file is part of GOOL.
*
* GOOL is free software: you can redistribute it and/or modify it under the terms of the GNU
* General Public License as publ... | librecoop/GOOL | src/gool/generator/csharp/CSharpPlatform.java | Java | gpl-3.0 | 2,031 |
# -*- coding: utf-8 -*-
# Generated by Django 1.10.6 on 2017-04-15 14:28
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('catalogue', '0014_auto_20170414_0845'),
]
operations = [
migrations.AlterFi... | Gatomlo/shareandplay | catalogue/migrations/0015_auto_20170415_1628.py | Python | gpl-3.0 | 495 |
#!/usr/bin/env python
import os
import random
__author__ = 'duceppemo'
class SnpTableMaker(object):
"""
Everything is ran inside the class because data structures have to be
shared across parent and child process during multi threading
"""
def __init__(self, args):
import os
imp... | OLF-Bioinformatics/snp_analysis | binaries/snpTableMaker.py | Python | gpl-3.0 | 15,587 |
#region License
/*
Copyright 2014 - 2015 Nikita Bernthaler
MappingKey.cs is part of SFXLibrary.
SFXLibrary 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 opti... | Justyyy/LeagueSharp-Dev | SFXLibrary/IoCContainer/MappingKey.cs | C# | gpl-3.0 | 2,753 |
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<lin... | siemme/siemme.github.com | name_index.html | HTML | gpl-3.0 | 1,176 |
#!/bin/bash
# This script will install DotStar
echo Installing DotStar...
echo Exiting all DotStar processes...
pkill dotstar
echo Copying files...
cp ./dist/dotstar usr/bin/
| joachimschmidt557/DotStar | DotStar/Package.Linux.Install.sh | Shell | gpl-3.0 | 175 |
package mosaic;
import java.io.IOException;
import java.sql.Types;
import app.Request;
import app.Site;
import db.DBConnection;
import db.JDBCColumn;
import db.JDBCTable;
import db.Options;
import db.OrderBy;
import db.SectionDef;
import db.SectionDef.Type;
import db.Select;
import db.View;
import db.ViewDef;
import ... | zenlunatics/mosaic | mosaic/Reviews.java | Java | gpl-3.0 | 3,085 |
KERNEL_SOURCE := /lib/modules/$(shell uname -r)/build
CPPFLAGS := -I$(KERNEL_SOURCE)/include -D_GNU_SOURCE
CFLAGS := -g -Wall -W -Wextra -O2
LDFLAGS := $(CFLAGS)
all: fanotify
fanotify: fanotify.o
fanotify.c: $(KERNEL_SOURCE)/include/linux/fanotify.h fanotify-syscalllib.h
clean:
rm -f fanotify fanotify.o *.orig *.... | ashi100sh/Linux_Kernel_Code | Userspace_Fanotify_Other_TestCode/Makefile | Makefile | gpl-3.0 | 324 |
<?php
# Включаем сессии
ob_start();
session_start();
if(!is_file($_SERVER["DOCUMENT_ROOT"].'/system/base.php')) {
header('Location: /install/');
}
echo '
<head><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" x... | byVER/UpCMS | style/head.php | PHP | gpl-3.0 | 3,097 |
div p {
font-size: 12px;
}
div {
font-size: 12px
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
body {
font-size: 12px;
} | NikiSchlifke/codefactory.wien_week_01 | day04/exercises/badcss.css | CSS | gpl-3.0 | 143 |
/*
* Copyright (c) 2006 - 2010 LinogistiX GmbH
*
* www.linogistix.com
*
* Project myWMS-LOS
*/
package de.linogistix.los.inventory.test;
import de.linogistix.los.location.businessservice.LOSRackLocationComparatorByName;
import de.linogistix.los.location.model.LOSRackLocation;
public class TestR... | tedvals/mywms | server.app/los.inventory-ejb/test/de/linogistix/los/inventory/test/TestRackLocationComparator.java | Java | gpl-3.0 | 737 |
#include "stm32f10x_spi.h"
#include "FLASH.h"
#define FLASH_CHREAD 0x0B
#define FLASH_CLREAD 0x03
#define FLASH_PREAD 0xD2
#define FLASH_BUFWRITE1 0x84 // дÈëµÚÒ»»º³åÇø
#define FLASH_IDREAD 0x9F
#define FLASH_STATUS 0xD7 // ¶Áȡ״̬¼Ä´æÆ÷
#define PAGE_ERASE 0x81
#define PAGE_READ 0xD2
#define MM_PAGE_TO_B1_XFER 0x... | CUITzhaoqi/Yeelink | HARDWARE/FLASH.c | C | gpl-3.0 | 10,376 |
<?php
/**
*
* @ IonCube v8.3 Loader By DoraemonPT
* @ PHP 5.3
* @ Decoder version : 1.0.0.7
* @ Author : DoraemonPT
* @ Release on : 09.05.2014
* @ Website : http://EasyToYou.eu
*
**/
class WHMCS\Invoices extends WHMCS\TableModel {
function _execute($criteria = null) {
return $this->getInvoices( $cr... | Orazio-svn/whmcs_v631_full_DECODED | includes/classes/WHMCS/Invoices.php | PHP | gpl-3.0 | 10,319 |
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
\\/ M anipulation |
--------... | OpenCFD/OpenFOAM-history | src/OpenFOAM/db/dictionary/functionEntries/includeEntry/includeEntry.C | C++ | gpl-3.0 | 5,946 |
module.exports = {
root: true,
env: {
node: true,
},
extends: ['plugin:vue/essential', '@vue/prettier', '@vue/typescript'],
rules: {
'vue/max-attributes-per-line': 'off',
'vue/html-self-closing': 'off',
},
parserOptions: {
parser: '@typescript-eslint/parser',
},
}
| phegman/vue-mapbox-gl | .eslintrc.js | JavaScript | gpl-3.0 | 297 |
<?php
/**
* @package Interspire eCommerce
* @copyright Copyright (C) 2015 Interspire Co.,Ltd. All rights reserved. (Interspire.vn)
* @credits See CREDITS.txt for credits and other copyright notices.
* @license GNU General Public License version 3; see LICENSE.txt
*/
class Modification {
/**
* @var bool
*... | interspiresource/interspire | system/library/modification.php | PHP | gpl-3.0 | 15,693 |
<?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... | uhoreg/moodle | install/lang/fi/moodle.php | PHP | gpl-3.0 | 1,334 |
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<h2>SKU Sold in UK Euro </h2>
<hr class="star-primary">
<p>
<div class="form-group">
<button onclick="Exportskuuk(... | jedistev/AmazonStatement_Project | views/sku/uk-euro/sku_sold_uk_euro.php | PHP | gpl-3.0 | 3,468 |
#!/usr/bin/env perl
use v5.020;
use strict;
use warnings FATAL => 'all';
use utf8;
binmode STDOUT, ":utf8";
binmode STDERR, ":utf8";
binmode STDIN, ":encoding(UTF-8)";
use Data::Printer;
use FindBin;
use Getopt::Long;
use List::Util ( 'sum0', 'min' );
use POSIX qw(ceil);
use Term::ProgressBar;
use Time::ParseDate;
... | basbloemsaat/sheepsense | bin/unmerge_dog.pl | Perl | gpl-3.0 | 874 |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Auth;
use Mail;
//Models
use App\User;
use App\Models\Module;
use App\Models\Aspirant;
use App\Models\AspirantsFile;
use App\Models\FileEvaluation;
use App\Models\FellowProgress;
use App\Models\FellowAverage;
use App\Models\FellowAnswer;
use App\M... | GobiernoFacil/agentes-v2 | app/Http/Controllers/FellowProgresses.php | PHP | gpl-3.0 | 1,600 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head prefix="og: http://ogp.me/ns# dc: http://purl.org/dc/terms/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- HTML5 shim and Respond.... | Timathom/timathom.github.io | discovery/resources/fan/2561/index.html | HTML | gpl-3.0 | 8,334 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>IT新技术 第一讲</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb_2312-80">
</HEAD>
<BODY bgcolor="#FFFFFF">
<p><b><<a href="RISC-024.html">上一页</a>> <<a href="RISC-026.html">下一页</a>></b></p>
<p><img src="RISC-025.gif... | AKAMobi/aka.org.cn | docs/Lectures/003/Lecture-3.2.1/Lecture-3.2.1/RISC-025.html | HTML | gpl-3.0 | 398 |
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>RuntimeByte - jgo.tools.compiler.transl.RuntimeByte</title>
<meta name="description" content="RuntimeByte - jgo.tools.compiler.transl.... | thomasmodeneis/jgo-web | static/api/jgo/tools/compiler/transl/RuntimeByte$.html | HTML | gpl-3.0 | 22,984 |
"use strict";
/*global templates, ajaxify, utils, bootbox, overrides, socket, config, Visibility*/
var app = app || {};
app.isFocused = true;
app.currentRoom = null;
app.widgets = {};
app.cacheBuster = null;
(function () {
var showWelcomeMessage = !!utils.params().loggedin;
templates.setGlobal('config', config);
... | coolme200/NodeBB | public/src/app.js | JavaScript | gpl-3.0 | 13,309 |
/*
* 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 pe.jobalsoft.dao;
/**
*
* @author Aeunius
*/
public class NewClass {
}
| Aeunius/Jobalsoft | JobalSoft/src/pe/jobalsoft/dao/NewClass.java | Java | gpl-3.0 | 287 |
// ======================================================================
//
// Copyright (C) 2016-2020 湖南心莱信息科技有限公司
// All rights reserved
//
// filename : MpNewsMessage.cs
// description :
//
// created by 李文强 at 2016/09/23 17:10
// Blog:http://www.cnb... | xin-lai/Magicodes.WeChat.SDK | Magicodes.WeChat.SDK/Magicodes.WeChat.SDK.Core/Apis/CustomMessage/MpNewsMessage.cs | C# | gpl-3.0 | 1,422 |
// Metashell - Interactive C++ template metaprogramming shell
// Copyright (C) 2016, Abel Sinkovics (abel@sinkovics.hu)
//
// 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 ... | r0mai/metashell | lib/data/src/process_output.cpp | C++ | gpl-3.0 | 1,315 |
/*
* Copyright (C) 2014 Jan Pokorsky
*
* 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) any later version.
*
* This program is distr... | proarc/proarc | proarc-webapp/src/main/java/cz/cas/lib/proarc/webapp/client/widget/nsesss/DesForms.java | Java | gpl-3.0 | 39,211 |
<?php
// Heading
$_['heading_title'] = '幻灯片';
// Text
$_['text_module'] = '模块管理';
$_['text_success'] = '成功:您已修改幻灯片模块!';
$_['text_content_top'] = '内容的上面';
$_['text_content_bottom'] = '内容的底部';
$_['text_column_left'] = '左列显示';
$_['text_column_right'] = '右列显示';
// Entry
$_... | jiedan/opencart | upload/admin/language/chinese/module/slideshow.php | PHP | gpl-3.0 | 823 |
#include "Barycentric.h"
#include <iostream> // std::cout
#include <sstream> // std::stringstream
using namespace std;
Barycentric::Barycentric(double u, double v, double w)
{
this->u = u;
this->v = v;
this->w = w;
}
string Barycentric::ToString()
{
stringstream sstream;
sstream << "... | jmanek/AlphaCut | src/Barycentric.cpp | C++ | gpl-3.0 | 553 |
#ifndef WITH_CMAKE
#include "ester-config.h"
#endif
#include "star.h"
#include "matplotlib.h"
extern "C" {
#include <stdlib.h>
}
// take a model and modify the resolution (nth, ndomains, number of
// points in each domain)
// object == remapper defined here
// used to move from one grid to another
// be careful of dis... | ester-project/ester | src/star/star_map.cpp | C++ | gpl-3.0 | 13,687 |
use crate::components::ComponentInner;
impl<M, E> printspool_config_form::Configurable<M> for ComponentInner<M, E>
where
M: printspool_config_form::Model,
E: Default,
{
fn id(&self) -> async_graphql::ID {
format!("component-{}", self.id).into()
}
fn model(&self) -> &M {
&self.model... | tegh/tegh-daemon | crates/machine/src/components/configurable_component.rs | Rust | gpl-3.0 | 400 |
/*
b-script
Copyright (C) 2011 Thijs Jeffry de Haas
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) any later
version.
This program is distribute... | jeff-dh/b-script | src/ast/expressions/binaryExpression.h | C | gpl-3.0 | 2,038 |
<?php
/**
* This abstract (static) class is for defining a standard way that field types
* can be created. The system can them look at all instances that implement
* this interface and present them to the user. The advantage to this is that
* modules can define their own form fields as long as it implements this
... | 2pisoftware/cmfive-core | system/modules/form/models/FormFieldInterface.php | PHP | gpl-3.0 | 4,219 |
// Tests for instrumentation of templated code. Each instantiation of a template
// should be instrumented separately.
// RUN: %clang_cc1 -x c++ %s -triple %itanium_abi_triple -main-file-name cxx-templates.cpp -std=c++11 -o - -emit-llvm -fprofile-instrument=clang > %tgen
// RUN: FileCheck --input-file=%tgen -check-pre... | HexHive/datashield | compiler/llvm/tools/clang/test/Profile/cxx-templates.cpp | C++ | gpl-3.0 | 1,931 |
<?php
Gatuf::loadFunction('Gatuf_Shortcuts_RenderToResponse');
Gatuf::loadFunction('Gatuf_HTTP_URL_urlForView');
class Admision_Views_Convocatoria {
public $index_precond = array (array ('Gatuf_Precondition::hasPerm', 'Admision.admin_convocatoria'));
public function index ($request, $match) {
/* Listar todas las c... | gatuno/Pato | src/Admision/Views/Convocatoria.php | PHP | gpl-3.0 | 4,154 |
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* 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, ei... | devcode-it/openstamanager | plugins/pianificazione_interventi/actions.php | PHP | gpl-3.0 | 10,855 |
package com.fr.design.data.tabledata.tabledatapane;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Date;
import javax.swing.DefaultCellEditor;
import javax.swing.JPanel;
import javax.s... | fanruan/finereport-design | designer_base/src/com/fr/design/data/tabledata/tabledatapane/EmbeddedTableDataDefinedPane.java | Java | gpl-3.0 | 10,721 |
Development with Docker
===
We use [Docker](https://www.docker.com/) to run, test, and debug our application.
The following documents how to install and use Docker on a Mac. There are
[instructions](https://docs.docker.com/installation) for installing and using
docker on other operating systems.
On the mac, we use [do... | dmann/duke-data-service | Docker.README.md | Markdown | gpl-3.0 | 34,067 |
/*
* tag_database.cpp
* This file is part of dbPager Server
*
* Copyright (C) 2008-2019 - Dennis Prochko <wolfsoft@mail.ru>
*
* dbPager Server 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 version 3.
... | wolfsoft/dbpager | src/modules/dbp_pgsql/tag_database.cpp | C++ | gpl-3.0 | 1,970 |
//=============================================================================
/* Copyright (C) 2012 Dave Billin
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 t... | dave-billin/moos-ivp-uidaho | projects/lib_YellowSubUtils/src/LinuxSerialPortEx.cpp | C++ | gpl-3.0 | 4,048 |
/*
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) any later version.
This program is distributed in the hope that it will be useful,
... | PM2M2016-A-B/FM-tuner | service/src/main.c | C | gpl-3.0 | 4,818 |
#ifndef LANGUAGE_H
#define LANGUAGE_H
// NOTE: IF YOU CHANGE THIS FILE / MERGE THIS FILE WITH CHANGES
//
// ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRALCD" / "SDSUPPORT" #define IN "Configuration.h"
// ==> ALSO TRY ALL AVAILABLE "LANGUAGE_CHOICE" OPTIONS
// Languages
// 1 English
//... | timmey9/RigidBot_2.0_Marlin | Marlin/language.h | C | gpl-3.0 | 72,052 |
package connection;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.lang.reflect.InvocationTargetException;
import java.util.Scanner;
/**
* Factory class for classes that extend Listener and
* implement the getInstance(String[]) method.
*
* @author Jon Ayerdi
*/
public abstract... | POPBL-6/broker | src/main/java/connection/ListenerFactory.java | Java | gpl-3.0 | 1,623 |
<?php
/**
* CSort class file.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.yiiframework.com/
* @copyright 2008-2013 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
/**
* CSort represents information relevant to sorting.
*
* When data needs to be sorted according to one o... | mvoitov/maxbid.lv | common/lib/vendor/yiisoft/yii/framework/web/CSort.php | PHP | gpl-3.0 | 17,746 |
#include <iostream>
#include <linux/joystick.h>
#include <GameProgram.hpp>
int main( int p_Argc, char **p_ppArgv )
{
Hit::GameProgram TheGame;
if( TheGame.Initialise( ) != Hit::GameProgram::OK )
{
std::cout << "Failed to start the game" << std::endl;
return 1;
}
return TheGame.Execute( );
}
| RedRingRico/Hit | Source/Common/Source/Main.cpp | C++ | gpl-3.0 | 306 |
# -*- coding: utf-8 -*-
# File: enemy.py
# Author: Casey Jones
#
# Created on July 20, 2009, 4:48 PM
#
# This file is part of Alpha Beta Gamma (abg).
#
# ABG 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, ... | jcnix/abg | enemies.py | Python | gpl-3.0 | 2,843 |
<?php
namespace krFrame\Src\Modules\RelatedPosts;
use \WP_Widget;
use \krFrame\Src\Modules\RelatedPosts;
class RelatedPosts_Widget extends WP_Widget
{
public static function register()
{
register_widget(__CLASS__);
}
public function __construct()
{
parent::__construct('krWidget_Re... | dawidryba/krframe_theme | krFrame/src/modules/RelatedPosts/RelatedPosts_widget.php | PHP | gpl-3.0 | 4,646 |
#ifndef AMEGIC_String_MyString_H
#define AMEGIC_String_MyString_H
//String header
//#ifdef __GNUC__
#include <string>
/*
#else
#include <iostream>
#include <string>
namespace AMEGIC {
class MyString {
public:
MyString(const char* = 0);
MyString(const MyString&);
~MyString();
MyString& operator=(... | cms-externals/sherpa | AMEGIC++/String/MyString.H | C++ | gpl-3.0 | 1,389 |
/**
* Authors : Nianhua Li, MT Morgan
* License : caBIG
*/
/**
* RArray.java
*
* This java class corresponds to R array
*/
package org.kchine.r;
import java.util.ArrayList;
import java.util.Vector;
import java.util.Arrays;
import java.lang.reflect.Array;
public class RArray extends RObject{
... | rforge/biocep | src_server_common/org/kchine/r/RArray.java | Java | gpl-3.0 | 2,867 |
// This file is part of PapyrusDotNet.
//
// PapyrusDotNet 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.
//
... | zerratar/PapyrusDotNet | Source/PapyrusDotNet/Converters/PapyrusDotNet.Converters.Papyrus2Clr/Implementations/PascalCaseNameResolverSettings.cs | C# | gpl-3.0 | 1,132 |
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
\\/ M anipulation |
---------------... | themiwi/freefoam-debian | src/meshTools/triSurface/octreeData/octreeDataTriSurface.C | C++ | gpl-3.0 | 14,011 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.