text stringlengths 3 1.05M |
|---|
package com.example.nasirbhat.resume;
import android.app.DatePickerDialog;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;... |
const dateDisplayEl = document.createElement('div')
dateDisplayEl.style.textAlign = 'center'
dateDisplayEl.innerHTML = new Date()
document.body.appendChild(dateDisplayEl)
console.log('[app.js] hello from mo-django')
|
package com.google.ads.googleads.v12.resources;
import com.google.api.pathtemplate.PathTemplate;
import com.google.api.resourcenames.ResourceName;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableMap;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
impor... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
The following Python modules need to installed:
- RDFLib (https://github.com/RDFLib/rdflib),
- PDFMiner (http://www.unixuser.org/~euske/python/pdfminer/),
- Grab (http://grablib.org/),
- PyPDF2 (https://github.com/mstamy2/PyPDF2).
##Configuration
All configuration settings should be in ``config.py`` file which sho... |
package API::Redis;
#
# Copyright 2015 Comcast Cable Communications Management, LLC
#
# 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
#
# Unle... |
FROM balenalib/qemux86-64-debian:bullseye-run
ENV GO_VERSION 1.14.13
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get update && apt-ge... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
<?php
/**
* Functions related to hooks management.
*
* 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 2 of the
* License, or (at your option) any later version.
*
* This pr... |
Found a problem? Want a new feature?
- See if your issue or idea has [already been reported].
- Provide a [reduced test case] or a [live example].
Remember, a bug is a *demonstrable problem* caused by *our* code.
## Submitting Pull Requests
Pull requests are the greatest contributions, so be sure they are focused in... |
Character sheet for the 2D20 version of the game by Modiphius.
[Modiphius](https://www.modiphius.net/collections/conan)
Sheet construction and coding by Eric Carmody. Original art work by Robert Waker.
## Features
- Primary attack weapons list with damage roll
- Skills target number auto determination
- Skills rol... |
<div class="modal">
<div class="modal-header">
<h1 class="dialog-title">Add a platform</h1>
</div>
<div class="modal-body">
<label><input type="radio" name="platform-add-name" checked value="android">Android</label>
<label><input type="radio" name="platform-add-name" value="ios">IOS<... |
#ifndef USD_FROM_GLTF_ARGS_H_
#define USD_FROM_GLTF_ARGS_H_
#include "common/config.h"
#include "common/logging.h"
struct Args {
struct Job {
std::string src;
std::string dst;
};
ufg::ConvertSettings settings;
std::vector<Job> jobs;
};
bool ParseArgs(
int argc, const char* const* argv, Args* ou... |
{-# LANGUAGE OverloadedStrings, DataKinds #-}
module Network.Bitcoin.BitX.Spec.Specs.NetSpec
(
spec,
isValidResponse
) where
import Test.Hspec
import Network.Bitcoin.BitX.Types
import Network.Bitcoin.BitX.Public
import System.IO.Unsafe (unsafePerformIO)
import Network.Bitcoin.BitX.Response
spec :: Sp... |
import { module } from 'substance-test'
import TestXMLExporter from '../model/TestXMLExporter'
import TestArticle from '../model/TestArticle'
import fixture from '../fixtures/createTestArticle'
import simple from '../fixtures/simple'
const test = module('model/XMLExporter')
let exporter, doc
function setup() {
exp... |
<!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_45) on Sun Dec 20 18:45:51 IST 2015 -->
<title>DnxDocumentHelper.WorkProduct</title>
<meta name="date" content="2015-12-20">
<link rel="stylesh... |
// Copyright 2019-present the Material Components for iOS authors. All Rights Reserved.
//
// 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
//... |
"""Removes the preinstalled WebView on a device to avoid signature mismatches.
This should only be used by developers. This script will fail on actual user
devices (and this configuration is not recommended for user devices).
The recommended development configuration for Googlers is to satisfy all of the
below:
1. ... |
Modulerjs.define('constantInDynamicScript', function() {
return this;
});
console.log('this script is used for test "constant" object in script loading');
/**
* A dynamically loaded script should be run under correct module and
* when it runs, "this" keyword should be bind correctly.
*
* I.E. It should be
* ... |
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="utf-8">
<title>Controfinanziaria 2016 - Sbilanciamoci! > Come usare la spesa pubblica per i diritti, la pace, l'ambiente > Ambiente</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Controfinanziar... |
import asyncio
import aiohttp
import logging
log = logging.getLogger(__name__)
@asyncio.coroutine
def http_post_request(url, headers): # pragma: no cover
response = yield from aiohttp.post(url, headers=headers)
if not response.status == 200:
text = yield from response.text()
log.error("URL: %... |
from django.db import models
class Rbllist(models.Model):
name = models.CharField(max_length=100)
url = models.URLField(max_length=100, unique=True)
description = models.CharField(max_length=300, null=True, blank=True)
# def __str__(self):
# return self.name |
<!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_26) on Sun Dec 30 01:26:13 PST 2012 -->
<TITLE>
Uses of Interface org.apache.hadoop.util.IndexedSortable (Hadoop 1.0.4-SNAPSHOT API)
</TITLE>
<META ... |
#ifndef SRC_COMPONENTS_INCLUDE_UTILS_LOGGER_H_
#define SRC_COMPONENTS_INCLUDE_UTILS_LOGGER_H_
#ifdef ENABLE_LOG
#include <errno.h>
#include <string.h>
#include <sstream>
#include <log4cxx/propertyconfigurator.h>
#include <log4cxx/spi/loggingevent.h>
#include "utils/push_log.h"
#include "utils/logger_st... |
package com.damocles.sample;
import com.damocles.R;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Bundle;
import android.preference.EditTextPreference;
import android.preference.Preference;
import android.preference.PreferenceActivity;
public class ... |
from __future__ import division
""" Convert IRAF reduced images to extracted spectra in GALAH FITS format. """
__author__ = "Andy Casey <arc@ast.cam.ac.uk>"
import multiprocessing as mp
import os
from glob import glob
from astropy.table import Table
import convert
threads = 10
input_folder = "/priv/miner3/skymap... |
using System;
using System.Web.Http;
using System.Web.Mvc;
using MySPA.Areas.HelpPage.ModelDescriptions;
using MySPA.Areas.HelpPage.Models;
namespace MySPA.Areas.HelpPage.Controllers
{
/// <summary>
/// The controller that will handle requests for the help page.
/// </summary>
public class H... |
extern crate time;
#[cfg(feature = "cache")]
extern crate filetime;
extern crate iron;
#[macro_use]
extern crate log;
extern crate mount;
pub use static_handler::Static;
#[cfg(feature = "cache")]
pub use static_handler::Cache;
mod requested_path;
mod static_handler;
|
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android" >
<ImageView
android:id="@+id/iv_background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="c... |
class TaiwaneseNewsParser::Parser::ChinaTimesMoney < TaiwaneseNewsParser::Parser
def self.domain
'chinatimes.com'
end
def self.names
%w{中國時報 中時電子報 工商時報 旺報 時報週刊 中天 中視 中廣 中時即時}
end
def self.applicable?(url)
url.include?('money.chinatimes.com')
end
def doc
@raw = open(url).read
@doc = ... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
Syll. fung. (Abellini) 2: 787 (1883)
#### Original name
Hypoderma virgultorum var. vincetoxici Duby, 1862
### Remarks
null |
#ifndef __D3D8TEXTURE_H__
#define __D3D8TEXTURE_H__
#include "OgreD3D11Prerequisites.h"
#include "OgreTexture.h"
#include "OgreRenderTexture.h"
namespace Ogre {
class D3D11Texture : public Texture
{
protected:
// needed to store data between prepareImpl and loadImpl
typedef SharedPtr<vector<Memory... |
"""Contains a wrapper for `aq rebind client --metacluster`."""
from aquilon.worker.broker import BrokerCommand # pylint: disable=W0611
from aquilon.worker.commands.bind_client_metacluster import (
CommandBindClientMetacluster)
class CommandRebindClientMetacluster(CommandBindClientMetacluster):
required_par... |
package histogram
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/influxdata/telegraf"
telegrafConfig "github.com/influxdata/telegraf/config"
"github.com/influxdata/telegraf/metric"
"github.com/influxdata/telegraf/testutil"
)
type fields map[string]interface{}
type tags map... |
package model
import (
"regexp"
"go-common/app/service/main/filter/model/actriearea"
"go-common/app/service/main/filter/model/actriekey"
xregexp "go-common/app/service/main/filter/service/regexp"
)
// 规则状态
const (
RuleStateNormal = 0
RuleStateDeleted = 1
RuleStateExpired = 2
)
// 过滤模式
const (
RegMode = in... |
module Gitlab
module Ci
module Pipeline
module Seed
class Deployment < Seed::Base
attr_reader :job, :environment
def initialize(job)
@job = job
@environment = Seed::Environment.new(@job)
end
def to_resource
return job.depl... |
rm svpb.sq
python manage.py migrate
python manage.py loaddata backup/*.json
|
module Addressbook
module Generators
class Addressbook::ControllersGenerator < Rails::Generators::Base
source_root File.expand_path('../../../../../', __FILE__)
public_task :copy_controllers
desc "This generator copyies controllers to your project from engine.\n"
argument :name, ... |
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="org.seleniumhq.selenium"
module="selenium-ie-driver"
revision="2.39.0"
status="release"
publication="20131216162035"
>
<description homepage="" />
<m:dependency.management__net.j... |
<?php
/**
* Created by PhpStorm.
* User: travismartin
* Date: 15-07-18
* Time: 7:47 PM
*/
namespace patterns\DecoratorPattern\foodServiceExample\Ingredients;
class Mushrooms implements IngredientInterface {
public function getName()
{
return "Mushrooms good ones";
}
public function getPrice()
{
retur... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
Monadenium pudibundum var. lanatum
### Remarks
null |
/***********
Page Header
***********/
/* Header search bar, toggler button & top menu */
.page-header.navbar {
background-color: #E1E1E1;
/* Top notification menu/bar */
/* Header seaech box */
/* Toggler button for sidebar expand/collapse and responsive sidebar menu */
}
.page-header.navbar .top-menu... |
namespace TeleimotBg.Api.Models.TemplateModels
{
using System;
using AutoMapper;
using TeleimotBg.Api.Infrastructure.Mappings;
using TeleimotBg.Models;
public class DetailedRealEstateResponseModel : IMapFrom<RealEstate>, IHaveCustomMappings
{
public DateTime CreatedOn { get; set; }
... |
Check out the License before downloading the file from here Exec.net/LICENCE.
# NOTICE
This is currently in development by 1 man. You can help out if you wish, or you can watch the progress.
|
use crate::Result;
#[cfg(not(target_env = "musl"))]
use crate::errno::Errno;
#[cfg(not(target_env = "musl"))]
use std::mem;
use crate::sys::signal::SigSet;
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub struct UContext {
context: libc::ucontext_t,
}
impl UContext {
#[cfg(not(target_env = "musl"))]
... |
<HTML><HEAD>
<TITLE>Review for Kids (1995)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0113540">Kids (1995)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Christopher+Null">Christopher... |
package uk.co.aw125.training.models.support;
import javax.validation.constraints.NotNull;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "LoggerConfig")
public class LoggerConfigModel {
@NotNull
String name;
@NotNull
String level;
public String getName() {
return name;
... |
<!DOCTYPE html>
<html lang="{{ LANGUAGE_CODE }}">
{% load staticfiles %}
{% load thumbnail %}
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
{% block viewport %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% endblock %}
{% block meta %}
<... |
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<objectAnimator
android:duration="3000"
android:interpolator="@android:interpolator/linear"
android:repeatMode="reverse"
android:repeatCount="0"
android:propertyName="pathData"... |
Make sure the brackets and braces all match.
Ensure that all the brackets and braces are matched correctly,
and nested correctly.
## Setup
Go through the setup instructions for JavaScript to
install the necessary dependencies:
http://exercism.io/languages/javascript
## Making the Test Suite Pass
Execute the tests... |
<?xml version="1.0" encoding="latin1" ?>
<!DOCTYPE book SYSTEM "book.dtd">
<book xmlns:xi="http://www.w3.org/2001/XInclude">
<header titlestyle="normal">
<copyright>
<year>2000</year><year>2009</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
The cont... |
<!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_40) on Sun Mar 22 12:12:00 PDT 2015 -->
<title>Qpstest.StreamingInputCallResponse.Builder (grpc-benchmarks 0.1.0-SNAPSHOT API)</title>
<meta na... |
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="http://syriaca.org/documentation/syriaca-tei-main.rnc" type="application/relax-ng-compact-syntax"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:srophe="https://srophe.app"
xmlns:saxon="http://saxon.sf.net/... |
@REM Builds the library using CMake on Windows
@REM The script should be run from the project's root directory
@REM This environment variables are the parameters to this script:
@REM - BUILD_DIR : build directory
@REM - BIT_VERSION : target platform architecture (32 or 64)
@REM - INSTALL : install after the build finis... |
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-113144653-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date... |
install_dependencies=${1:-true}
clone_git_repository=${2:-true}
make_and_build_rtimulib=${3:-true}
library_path=${4:-~/}
if [ "${install_dependencies}" = true ]; then
echo "\n\n"
echo "####################################################################################################"
echo "##### Installin... |
---
title: Building the JavaScript App
---
Gatsby is a static site generator. It generates your site's HTML pages, but also creates a JavaScript runtime that takes over in the browser once the initial HTML has loaded. This enables other pages to load instantaneously. Read on to find out how that runtime is generated.
... |
namespace JustOrderIt.Web.Infrastructure.BackgroundWorkers
{
using System;
using System.ComponentModel;
using Hangfire;
public class ContainerJobActivator : JobActivator
{
// private IContainer container;
// public ContainerJobActivator(IContainer container)
// ... |
<?php
App::uses('Categoriaspago', 'Model');
/**
* Categoriaspago Test Case
*
*/
class CategoriaspagoTest extends CakeTestCase {
/**
* Fixtures
*
* @var array
*/
public $fixtures = array(
'app.categoriaspago'
);
/**
* setUp method
*
* @return void
*/
public function setUp() {
parent::setUp();
$thi... |
<def-group>
<definition class="compliance" id="audit_rules_dac_modification_fchmodat" version="1">
<metadata>
<title>Audit Discretionary Access Control Modification Events - fchmodat</title>
<affected family="unix">
<platform>Red Hat Enterprise Linux 6</platform>
</affected>
<descr... |
<?php
namespace XTAIN\Bundle\JoomlaBundle\Library\Joomla\Database\Driver;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\MySqlPlatform;
use JDatabaseDriver;
use RuntimeException;
/**
* Class MysqlDoctrineDriver
*
* @author Maximilian Ruta <mr@xtain.net>
* @package XTAIN\Bundle\JoomlaB... |
package de.verygame.surface.event;
/**
* @author Rico Schrage
*/
public interface EventListener {
public void handleEvent(Event event, Object... attachedObjects);
}
|
require('babel/register');
var webpackConfig = require('./webpack.config.js')[0];
module.exports = function (config) {
config.set({
browsers: [ 'Chrome' ],
files: [
'tests.webpack.js'
],
frameworks: [ 'chai', 'mocha' ],
plugins: [
'karma-chrome-launcher',
'karma-chai',
'ka... |
require 'pathname'
Puppet::Type.newtype(:dsc_xmysqldatabase) do
require Pathname.new(__FILE__).dirname + '../../' + 'puppet/type/base_dsc'
provide :powershell, :parent => Puppet::Type.type(:base_dsc).provider(:powershell) do
defaultfor :operatingsystem => :windows
end
@doc = %q{
The DSC xMySqlDatabas... |
package jmini3d.gwt;
import com.googlecode.gwtgl.binding.WebGLRenderingContext;
import jmini3d.Blending;
import jmini3d.Object3d;
import jmini3d.Scene;
public class Renderer3d implements jmini3d.Renderer3d {
public static final String TAG = "Renderer";
private ResourceLoader resourceLoader;
private GpuUploader g... |
// ---------------------------------------------------------------------------
//
// @file TwDirect3D11.cpp
// @author Philippe Decaudin
// @license This file is part of the AntTweakBar library.
// For conditions of distribution and use, see License.txt
//
// ----------------------... |
<?php
/*
Plugin Name: Genesis Stage Switcher
Plugin URI: https://github.com/jameswlane/Genesis-Stage-Switcher
Description: A WordPress plugin that allows you to switch between different environments from the admin bar.
Version: 1.1.0
Author: James W. Lane
Author URI: http://jameswlane.com/
License: ... |
Game of life (David B. Vollmar portfolio). Kata is a program that calculates the next generation of Conway’s game of life, given an initial state.
| [Installation](#installation) | [Usage](#usage) | [Contributing](#contributing) | [Credits](#credits) | [License](#license) | [Requirements](#requirements) | [Additional ... |
import { AppInternal } from '../../app/components/app';
import renderer from 'react-test-renderer';
import React from 'react';
import { shallow } from 'enzyme';
import { fetchEvents } from '../../app/actions';
describe('the internal app component', () => {
it('fetches events when the header is clicked', () => {
... |
package org.apache.predictionio.examples.java.recommendations.tutorial3;
import org.apache.predictionio.examples.java.recommendations.tutorial1.Query;
import org.apache.predictionio.controller.java.JavaEvaluator;
import org.apache.predictionio.controller.java.EmptyParams;
import scala.Tuple2;
import java.util.Arrays;... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
from __future__ import absolute_import, division, print_function
__metaclass__ = type
ANSIBLE_METADATA = {
'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'
}
DOCUMENTATION = '''
---
module: vmware_cluster_facts
short_description: Gather facts about clusters available in given ... |
describe XingApi::User::Company do
describe '.create' do
it_behaves_like 'a Xing API call'
it 'invokes the correct API call' do
expected_params = {
name: 'Microsoft UG',
title: 'CEO',
industry: 'COMPUTER_SOFTWARE',
employment_type: 'OWNER'
}
expect_request(:... |
<?php declare(strict_types=1);
namespace Vantoozz\ProxyScraper\UnitTests\Scrapers;
use Generator;
use PHPUnit\Framework\TestCase;
use Vantoozz\ProxyScraper\Exceptions\ScraperException;
use Vantoozz\ProxyScraper\Proxy;
use Vantoozz\ProxyScraper\ProxyString;
use Vantoozz\ProxyScraper\Scrapers\CompositeScraper;
use Vant... |
/*
* Do not modify this file. This file is generated from the cloudformation-2010-05-15.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.CloudForma... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
"""Settings that need to be set in order to run the tests."""
import os
DEBUG = True
SITE_ID = 1
APP_ROOT = os.path.abspath(
os.path.join(os.path.dirname(__file__), '..'))
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
ROOT_URLCONF = 'account... |
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import os
import json
import pytest
from mock import ANY
from ansible.module_utils.network.fortios.fortios import FortiOSHandler
try:
from ansible.modules.network.fortios import fortios_firewall_vip6
except ImportError:
py... |
using Microsoft.Graphics.Canvas;
using Microsoft.Graphics.Canvas.UI.Xaml;
using ModelGraphSTD;
using System.Collections.Generic;
using System.Numerics;
namespace ModelGraph.Controls
{
internal class Ellipes : Central
{
internal Ellipes(bool deserializing = false)
{
if (deserializin... |
package com.battlelancer.seriesguide.dataliberation.model;
import com.google.gson.annotations.SerializedName;
public class ListItem {
@SerializedName("list_item_id")
public String listItemId;
@SerializedName("tvdb_id")
public int tvdbId;
public String type;
}
|
angular
.module('repositoryDetail', ['ngRoute', 'core.repository']); |
console.log("Courses+ background page!");
cpal.request.addBeforeSendHeaders(["*://courses2017.dalton.org/*"], function(details) {
if (details.url.indexOf("user/icon/dalton/") > -1) {
details.requestHeaders.push({name: 'X-CoursesPlus-RefererSpoof-Yay', value: "https://courses2017.dalton.org/user/profile.php"});
}
i... |
#ifndef COMMON_H
#define COMMON_H
#include <sys/types.h> /* getpid() */
#include <unistd.h> /* getpid() */
void log_debug(const char* level, const char* file_name, const char* func_name, int line_no, int pid, const char* format, ...);
void subfunc();
void log_dump( char* buf, int start_index, int end_index );
#ifd... |
package com.github.martinseeler.forecastio.data;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.github.martinseeler.forecastio.Forecast;
import com.google.common.base.Charsets;
import com.google.common.io.Resources;
import org.junit.BeforeClass;
import or... |
package com.mycompany.microservices.metrics.trackyourtasks.utils;
/**
* Utility Class collecting maths helpers
* @author Fabrizio Torelli (hellgate75@gmail.com)
*/
public class MathUtils {
/**
* Simple integer approx. progressive average corresponding to a beta formula :
* average = ( ( (previous aver... |
package mts
//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 applicable law or agreed to in writing, software
//distribut... |
using System;
using System.ServiceModel;
using System.ServiceModel.Channels;
namespace EntityFX.Gdcame.Infrastructure.Service.Bases
{
public interface IInfrastructureProxy<TServiceContract, out TBinding> : IDisposable
where TBinding : Binding
{
TServiceContract CreateChannel(Uri endpointAddres... |
package eu.amidst.core.utils;
import eu.amidst.core.datastream.DataInstance;
import eu.amidst.core.datastream.DataOnMemory;
import eu.amidst.core.datastream.DataOnMemoryListContainer;
import eu.amidst.core.datastream.DataStream;
import java.util.Random;
//TODO Be careful with use of "add(int pos, element)" of List... |
package com.repay.android.adddebt;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.database.SQLException;
import android.os.AsyncTask;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.te... |
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (nonatomic, strong) UIWindow *window;
@property (nonatomic, strong) UINavigationController *rootNavC;
@end
|
package org.jkiss.dbeaver.ui.app.standalone.internal;
import org.eclipse.osgi.util.NLS;
public class CoreApplicationMessages extends NLS {
public static final String BUNDLE_NAME = "org.jkiss.dbeaver.ui.app.standalone.internal.CoreApplicationMessages"; //$NON-NLS-1$
public static String actions_menu_exit_emergenc... |
package org.sakaiproject.scorm.ui.player.components;
import java.io.Serializable;
import java.net.URLDecoder;
import java.util.Enumeration;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.TreeModel;
import javax.swing.tree.TreeNode;
import org.adl.se... |
#ifndef _aduiEdit_h
#define _aduiEdit_h
#pragma pack (push, 8)
#pragma once
#ifndef _ADESK_MAC_
////////////////////////////////////////////////////////////////////////////
// CAdUiEdit window
#pragma warning(push)
#pragma warning(disable : 4275)
class ADUI_PORT CAdUiEdit : public CEdit {
DECLARE_DY... |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charse... |
<plugin>
<name>dvdspu</name>
<description>DVD Sub-picture Overlay element</description>
<filename>../../gst/dvdspu/.libs/libgstdvdspu.so</filename>
<basename>libgstdvdspu.so</basename>
<version>1.16.2</version>
<license>LGPL</license>
<source>gst-plugins-bad</source>
<package>GStreamer Bad Plug-ins sour... |
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >
<hibernate-mapping>
<!--
Created by the Middlegen Hibernate plugin 2.1
http://boss.bekk.no/boss/middlegen/
http://www.hiberna... |
package com.ltsllc.miranda.clientinterface.objects;
import com.ltsllc.miranda.clientinterface.basicclasses.Topic;
import com.ltsllc.miranda.clientinterface.results.ResultObject;
import java.util.List;
/**
* Created by Clark on 4/15/2017.
*/
public class TopicsResultObject extends ResultObject {
private List<... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
<!DOCTYPE html>
<html>
<head>
<title>About – William An – My portfolio</title>
<meta charset="utf-8" />
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1.... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |