code
stringlengths
4
1.01M
#<%= taskname %> <%= description %> ##Usage
console.log("VS: loading content_script.js..." + new Date()); // Check if the communication between page and background.js has broken. var last_message_time = new Date().getTime(); new Promise((resolve) => setTimeout(resolve, 1000000)).then(() => { var now = new Date().getTime(); if (now - last_message_time >...
Flappy_Flyer ============ A Flappy Birds clone for iOS. Raw XCode project along with original artwork.
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Books extends Model { protected $table = 'books'; protected $fillable = [ 'guid', 'author', 'title', 'description', 'abstract', 'edition', 'publish_date', 'status']; }
--- author: ejames categories: - Essay comments: true date: 2011-04-16T00:00:00.000Z title: Motivations url: /2011/04/motivations/ aliases: - /2011/04/16/motivations/ --- Over the past couple months or so we've had a number of non-programmers contacting us, looking for hackers to hire for their startup/project/ide...
namespace gView.Plugins.DbTools.Relates { partial class TableRelationsDialog { /// <summary> /// Erforderliche Designervariable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Verwendete Ressourcen bereinigen. ...
<?php /* * This file is part of the Schemer package. * * Copyright © 2013 Erin Millard * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Eloquent\Schemer\Constraint; interface SchemaInterface extends ConstraintInterface ...
collectd-network-bandwidth-usage ================================ Collectd exec plugin for monitoring the network bandwitdh usage. Installation ----------- Uncomment exec plugin in your collectd.conf: ```bash LoadPlugin exec ``` Configure plugin: ```bash <Plugin exec> Exec username "/path/to/exec-network-bandwidt...
/* header bar */ .navbar { margin-bottom:0; } /* aside */ .content,aside { margin-top:20px; margin-bottom:30px; margin-left:0px; margin-right:0px; } .home { background: url(/images/home.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-backgr...
<!DOCTYPE html> <html lang="en"> <head> <title>Basic Demo</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;"/> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar...
package com.carbon108.tilde; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import java.util.Collection; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /** * @author K Moroz * @version 1.0 */ public class P...
var namespace_kluster_kite_1_1_large_objects_1_1_tests = [ [ "ParcelsTest", "class_kluster_kite_1_1_large_objects_1_1_tests_1_1_parcels_test.html", "class_kluster_kite_1_1_large_objects_1_1_tests_1_1_parcels_test" ] ];
namespace QuanLySinhVien_GUI { partial class frmtimkiemdiemsinhvientheomasv { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. //...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>cantor: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" re...
// Copyright (c) 2012 The Eurobit developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef CHECKQUEUE_H #define CHECKQUEUE_H #include <boost/thread/mutex.hpp> #include <boost/thread/locks.hpp> #include <boost/threa...
## [Section 1.2 - Procedures and the Processes They Generate](https://mitpress.mit.edu/sicp/full-text/book/book-Z-H-11.html#%_sec_1.2) ## Exercises ```scheme ;; ====================================================== ;; Load definitions and functions from earlier chapters ;; ============================================...
# beautiful-components A collection of webcomponents, inspired by the design work at http://tympanus.net/codrops/
// // BallVC.h // KenshinPro // // Created by apple on 2019/1/31. // Copyright © 2019 Kenshin. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface BallVC : UIViewController @end NS_ASSUME_NONNULL_END
## Your Names # 1) Michael Yao # 2) Benjamin Heidebrink # We spent [1.25] hours on this challenge. # Bakery Serving Size portion calculator. def serving_size_calc(item_to_make, num_of_ingredients) library = {"cookie" => 1, "cake" => 5, "pie" => 7} raise ArgumentError.new("#{item_to_make} is not a valid inpu...
module PalmTasksHelper end
import 'css.escape' import { createFootnote, FootnoteElements } from './footnote' import { bindScrollHandler } from './scroll' import { Adapter } from '../core' import { addClass, removeClass, unmount } from './element' export const CLASS_CONTENT = 'littlefoot__content' export const CLASS_WRAPPER = 'littlefoot__wrappe...
require File.expand_path("spec_helper", File.dirname(File.dirname(__FILE__))) describe 'response.cache_control' do it 'sets the Cache-Control header' do app(:caching) do |r| response.cache_control :public=>true, :no_cache=>true, :max_age => 60 end header('Cache-Control').split(', ').sort.should == ...
{% extends '__base__.html' %} {% block title %}创建账户{% endblock %} {% block beforehead %} <script> var action = '{{ action }}'; function initVM(account) { var vm = new Vue({ el: '#vm', data: account, methods: { submit: function (event) { this.$data.date = $...
class RemoveOdTokenFromUsers < ActiveRecord::Migration def change remove_column :users, :od_token end end
(function() { angular.module('starter.controllers').controller('DetailController', DetailController); DetailController.$inject = ['CarService', '$stateParams']; function DetailController (CarService, $stateParams) { var vm = this; CarService.getCar($stateParams.id).$promise.then(function(data) { ...
# Deploying Development Office 365 Sites to Microsoft Azure # ### Summary ### When developing any type a web application, most development is done locally using http://localhost. Some projects use local resources or a mix of local and remote resources. Taking these projects from local development environments involve...
# -*- coding: utf-8 -*- import unittest from hanspell import spell_checker from hanspell.constants import CheckResult from textwrap import dedent as trim class SpellCheckerTests(unittest.TestCase): def setUp(self): pass def test_basic_check(self): result = spell_checker.check(u'안녕 하세요. 저는 한국인...
<?php declare(strict_types=1); /* * This file is part of Composer. * * (c) Nils Adermann <naderman@naderman.de> * Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Depende...
package spider.cli import command._ import spider.Util.errorExit import com.typesafe.scalalogging.Logger object CLI { lazy val logger = Logger("spider.cli") def go(args: Array[String]): Unit = args.toSeq match { case e if args.isEmpty ⇒ Help(args) case "scrape" +: tail ⇒ Scrape(tail) case "wait" +:...
/** * @author alteredq / http://alteredqualia.com/ */ THREE.DepthPassPlugin = function () { this.enabled = false; this.renderTarget = null; var _gl, _renderer, _lights, _webglObjects, _webglObjectsImmediate, _depthMaterial, _depthMaterialMorph, _depthMaterialSkin, _depthMaterialMorphSkin, _frustum = new TH...
import path from 'path' let { context, file, mocha, options } = module.parent.context let { it } = context context.it = function (name, callback) { if (callback) { return it(...arguments); } else { callback = name name = path.basename(file, '.js') } }
/** * @copyright Copyright (C) DocuSign, Inc. All rights reserved. * * This source code is intended only as a supplement to DocuSign SDK * and/or on-line documentation. * * This sample is designed to demonstrate DocuSign features and is not intended * for production use. Code and policy for a production applic...
# # MIT License # # Copyright (c) 2016 Paul Taylor # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge...
<!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_45) on Mon Aug 31 23:15:52 CEST 2015 --> <title>Uses of Interface starkcoder.failfast.fails.objects.floats.IObjectFloatNullFail (FailFa...
using System.Linq; using EspaceClient.FrontOffice.Business.Depots; using EspaceClient.FrontOffice.Domaine; namespace EspaceClient.FrontOffice.Data.Depots { public partial class DepotTypeRenduBloc : Depot<TypeRenduBloc>, IDepotTypeRenduBloc { public TypeRenduBloc GetByCode(string code, string codeTypeBl...
# lnet update 2015-03-28 Now multi-httpserver supported! See 'httpserver.lua'. # lnet update 2015-03-25 Now cosocket supported! What is cosocket? 'cosocket' is a socket API wapper for http handlers in lnet httpserver. It provides tcp/udp block operations but actually non-block in lnet httpserver thread. Yes, the name...
'use strict' const { EventEmitter } = require('events') const { Multiaddr } = require('multiaddr') /** * @typedef {import('libp2p-interfaces/src/transport/types').Listener} Listener */ /** * @param {import('../')} libp2p * @returns {Listener} a transport listener */ module.exports = (libp2p) => { const listen...
using System.Collections.Generic; namespace BlobTransfer { public class TransferResult { public List<string> Succeeded { get; set; } = new List<string>(); public List<string> Skipped { get; set; } = new List<string>(); public List<string> Failed { get; set; } = new List<string>(); ...
<H1>CARDS LIST</h1> <div ng-repeat="card in CardCtrl.cardlist" ng-bind="card.title"></div>
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Twainsoft.FHDO.Compiler.App")] [assembly:...
(function() { $(function() { $('.tooltip-examples a, .tooltip-paragraph-examples a').tooltip({ animation: false }); $('.top-sign-in').on("click", function(e) { $('.login-box').fadeIn("fast"); return false; }); $('.login-box-close').on("click", function(e) { $(this).closest...
# # Testing rufus-sixjo # # jmettraux at gmail.org # # Fri Aug 8 15:14:45 JST 2008 # require 'test/unit' require 'testmixins' # # the "test" app # module HeadApp extend Rufus::Sixjo get '/toto' do "toto" end end class HeadTest < Test::Unit::TestCase include SixjoTestMixin def setup @app = HeadA...
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 1, 2011 08:28:28 AM America/New_York */ @font-face { font-family: 'UbuntuRegular'; src: url('Ubuntu-Regular-webfont.eot'); src: url('Ubuntu-Regular-webfont.eot?iefix') format('eot'), url('Ubuntu-Regular-webfont.woff') format('w...
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script> <!-- [Dependencies[ --> <script src="transform.js"></script> <!-- ]] --> <style type="text/css"> body { backgro...
using Owin; using SimpleInjector; using SimpleInjector.Extensions.ExecutionContextScoping; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Reporter.WebAPI.Infrastructure.Owin { public static class OwinContextExecutionScopeMiddleware { public static void U...
# heppyplot A package for plotting histogrammed data with special support for high energy physics applications. ![Scale variation example](examples/scales/scales.png) ![PDF variation example](examples/pdf/H_pT_nojet_j30.png) ## Installation Currently we use a custom fork of the excellent [seaborn](http://stanford.ed...
#------------------------------------------------------------------------------ # Copyright (c) 2013 The University of Manchester, UK. # # BSD Licenced. See LICENCE.rdoc for details. # # Taverna Player was developed in the BioVeL project, funded by the European # Commission 7th Framework Programme (FP7), through grant ...
package com.pablodomingos.classes.rps.servicos; import java.io.IOException; import org.apache.commons.io.IOUtils; import org.junit.Assert; import org.junit.Test; import com.pablodomingos.classes.FabricaDeObjetosFake; public class LoteRpsConsultaTest { @Test public void xmlDeveSerGeradoCorretamen...
var common = require('../common'); var connection = common.createConnection({port: common.fakeServerPort}); var assert = require('assert'); var server = common.createFakeServer(); var connectErr; server.listen(common.fakeServerPort, function(err) { if (err) throw err; connection.connect(function(err) { ...
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -- Export de la structure de la base pour chacal CREATE DATABA...
/*! * @license MIT * Copyright (c) 2017 Bernhard Grünewaldt - codeclou.io * https://github.com/cloukit/legal */ import { Component, Input } from '@angular/core'; import * as _ from 'lodash'; @Component({ selector: 'app-component-info-header', template: ` <div class="info-header"> <div class="info-header-...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>elpi: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" r...
using System; using System.Collections.Generic; using System.Linq; using System.Security.AccessControl; using System.Text; using System.Threading.Tasks; namespace DynamicSerializer.Test { public class IX { public int IP { get; set; } } [Serializable] public class A { public A() { ...
#ifndef _HC_EXCEPTION_HPP_ #define _HC_EXCEPTION_HPP_ ////////////// // Includes // #include <exception> #include <string> ////////// // Code // // To distinguish between different HCExceptions. enum HCType { // When the game cannot open the SDL window. HC_WINDOW_EXCEPTION, // When the game cannot load ...
<?php namespace Proxies\__CG__\Cabinet\PatientBundle\Entity; /** * THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE. */ class Patient extends \Cabinet\PatientBundle\Entity\Patient implements \Doctrine\ORM\Proxy\Proxy { private $_entityPersister; private $_identifier; public $__isIniti...
//package sgl.scene //package ui // ///** SceneElement that is part of a layout // * // * This is the root class providing logic for // * how to render widgets in a hierarchical user // * interface. // */ //abstract class Widget(_x: Float, _y: Float) extends SceneElement(_x, _y) { // // def minWidth: Float // de...
ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #333; box-shadow: 0 6px 25px 0 rgba(0,0,0,.25); } li { float: left; } li a { display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none; cursor:po...
export default { // 购物车的商品数量 cartCommodityCount: state => { const totalCount = state.cartList.reduce((total, commodity) => { return total + Number(commodity.count) }, 0) return totalCount }, removeCommodityCount: state => { const totalCount = state.removeCartList.reduce((total, commodity) ...
<template name="odd-one-out"> <!-- Template for odd-one-out exercise --> <section class="mainSection"> <form> <input name=exercisesID type="hidden" value={{_id}}> <input name=type type="hidden" value={{type}}> {{#each options}} <div class="checkbo...
require "uri" require "net/http" module JingdongFu module Rest class << self def get(url, hashed_vars) res = request(url, 'GET', hashed_vars) process_result(res, url) end def post(url, hashed_vars) res = request(url, 'POST', hashed_vars) process_res...
package source import ( log "github.com/Sirupsen/logrus" "github.com/howardplus/lirest/describe" "github.com/howardplus/lirest/util" "os" "strconv" "strings" "time" ) // Extractor returns a generic data based // on the converter. // An object that implements the Extractor interface needs // to know where to ge...
using System.Collections.Generic; using System.Linq; using System.Management.Automation; using Cognifide.PowerShell.Core.Extensions; using Sitecore.Data.Items; using Sitecore.Layouts; namespace Cognifide.PowerShell.Commandlets.Presentation { [Cmdlet(VerbsCommon.Get, "Rendering")] [OutputType(typeof (Rendering...
/** * Copyright 2017, 2018, 2019, 2020 Stephen Powis https://github.com/Crim/pardot-java-client * * 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 limi...
<?php namespace App\Controller; use Core\http; use Core\view; use Core\db; class main { protected $http; protected $view; protected $db; public function __construct() { $this->http = new http(); $this->view = new view(); $this->db = new db(); } }
<?php /** * The MIT License * * Copyright (c) 2016, Coding Matters, Inc. (Gab Amba <gamba@gabbydgab.com>) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, includ...
#import <UIKit/UIKit.h> FOUNDATION_EXPORT double NSObject_SerializeVersionNumber; FOUNDATION_EXPORT const unsigned char NSObject_SerializeVersionString[];
//this controller simply tells the dialogs service to open a mediaPicker window //with a specified callback, this callback will receive an object with a selection on it angular.module('umbraco') .controller("Umbraco.PropertyEditors.ImageCropperController", function ($rootScope, $routeParams, $scope, $log, media...
+++ author = "飞狐" categories = ["Java编程","翻译"] tags = ["Java","Java Concurrency"] date = "2017-08-05T00:10:11+08:00" description = "Blog of Rosen Lu" keywords = ["java concurrency"] title = "4. [译]并发的模型" +++ 本文翻译自**[Java Concurrency / Concurrency Models](http://tutorials.jenkov.com/java-concurrency/concurrency-models...
package data_struct.in_class.d10_02; /** * A class to test basic 'Object' methods * * @author Eddie Gurnee * @version 10/02/13 * @see TestingSam * */ public class Sam { public int mikesplan = 8; /** * No argument constructor for the Sam class * */ public Sam() { } /** * Indicates if some other...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>URI.js - URI-Template</title> <meta name="description" content="URI.js is a Javascript library for working with URLs." /> <script src="jquery-3.6.0.min.js" t...
--[[ DVScrollBar Usage: Place this control in your panel. You will ideally have another panel or control which is bigger than the original panel. This is the Canvas. scrollbar:SetUp( _barsize_, _canvassize_ ) should be called whenever the size of your 'canvas' changes. scrollbar:GetOffset() can be called ...
__author__ = 'brianoneill' from log_calls import log_calls global_settings = dict( log_call_numbers=True, log_exit=False, log_retval=True, ) log_calls.set_defaults(global_settings, args_sep=' $ ')
angular.module('phonebook') .config(['$urlRouterProvider','$stateProvider',function($urlRouterProvider,$stateProvider){ $stateProvider // Greeting State .state('user.main',{ url : '/', templateUrl : 'user/view/welcome.html', controller : 'welcomeCtrl' }) // Phonebook Display State ...
<!DOCTYPE html> <html ng-app="myapp"> <head> <title>TODO supply a title</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="<?php echo base_url() ?>css/bootstrap.min.css"> <style> </styl...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PineTree.Language.Syntax { public abstract class ExpressionTerminal : Expression { } }
<script> var detail = $("#cb_post_title_url"); if (detail.text() !== ""){$("div#sideBar").hide();var mainArticleArea = $("div#mainContent");mainArticleArea.width("100%");mainArticleArea.css("margin-left","0"); $("div.forFlow #comment_form").css("margin-left","40px"); $("div.post h1.postTitle").after("<div id='mycpright...
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>KeyExportOptions | picturepark-sdk-v1-pickers API</title> <meta name="description" content="Documentation for picturepark-sdk-v1-pickers API"> <meta name="viewport" content="width...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //--...
#include "Common.h" #include "Script.h" #include <atlimage.h> #include <hidsdi.h> #include <SetupAPI.h> #define HID_SFIP 'SFIP' #define HID_X52P 'X52P' #define HID_UNKN 'UNKN' // CHECKME : Do we still need all this code since we now have a GetSerialNumber() in the DO API? DeviceManager *DevMan = DeviceManager::G...
game.TitleScreen = me.ScreenObject.extend({ init: function(){ this.font = null; }, onResetEvent: function() { me.audio.stop("theme"); game.data.newHiScore = false; me.game.world.addChild(new BackgroundLayer('bg', 1)); me.input.bindKey(me.input.KEY.ENTER, "enter", true); me.input.bind...
# Extensions A collection of useful, generic extensions.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>First Steps Into PHP</title> </head> <body> <form> X: <input type="text" name="num1" /> Y: <input type="text" name="num2" /> Z: <input type="text" name="num3" /> <input type="submit" /> </form> <?php if (!...
'use strict'; var _ = require('underscore'), Util = require('../../shared/util'), Base = require('./base'), Action = require('../../action'), Types = require('./types'); var _parent = Base.prototype; var RandomWalk = Util.extend(Base, { properties: ['walkPropability'], ...
<?php /* SRVDVServerBundle:ChangePassword:changePassword.html.twig */ class __TwigTemplate_e5da0f0553fed635f2774271a2ef3982b389e99e651b1a8527dd0c0b6ca90bd7 extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); $this->parent = false; $t...
// // Created by root on 07.05.17. // #ifndef BASICMODEL_BASEMANAGER_H #define BASICMODEL_BASEMANAGER_H #include <mysql++.h> #include <vector> #include "dbConfig.h" namespace model { namespace manager { template<class ModelName> class baseManager { public: baseManager() { ...
<?php declare(strict_types=1); /* * This file is part of eelly package. * * (c) eelly.com * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Eelly\SDK\Order\Api; use Eelly\SDK\Order\Service\OfflineInterface; /** * @aut...
#!/bin/sh set -e echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" install_framework() { if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then local source="${BUILT_PRO...
--- title: Consuming a Moodle webservice categories: - Moodle - dev - webservices tags: --- This post describes how to consume a Moodle core webservice. ##Set up Moodle ### Enable REST protocol In `Dashboard / ► Site administration / ► Plugins / ► Web services / ► Manage protocols` - enable RES...
<!DOCTYPE html> <html lang="en"> <head> <title>Rice Diseases</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="static/bootstrap.min.css"> <script src="static/jquery.min.js"></script> <script src="static/bootstrap.min.js"></script...
import_module('Athena.Math'); m1 = new Athena.Math.Matrix3(1, 2, 3, 4, 5, 6, 7, 8, 9); for (var row = 0; row < 3; ++row) { for (var col = 0; col < 3; ++col) CHECK_CLOSE(row * 3 + col + 1, m1.get(row, col)); }
version https://git-lfs.github.com/spec/v1 oid sha256:27606576bf3cd46c15755bdec387cc97145a4a0c0a5b3933c11d30ab8c6c5ec7 size 1825
<?php /** * The default template for displaying content * * Used for both single and index/archive/search. * * @package FoundationPress * @since FoundationPress 1.0.0 */ ?> <div id="post-<?php the_ID(); ?>" <?php post_class('blogpost-entry'); ?>> <header> <h2><a href="<?php the_permalink(); ?>"><?php the_ti...
# Users With the **Enterprise Edition** there are two categories of users which have different roles and permissions. ## General Users General users of the **Enterprise Edition** have the same permissions and features at hand as compared to users of the **Community Edition**. The only difference is, that new users n...
class EnsureNoLimitOnUserDataField < ActiveRecord::Migration def up change_column :users, :user_data, :text, :limit => nil end def down end end
<?php /* * Gallery - a web based photo album viewer and editor * Copyright (C) 2000-2004 Bharat Mediratta * * 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...
module MuhrTable VERSION = "1.0.22" end
import Objective from '../objective'; export default class KillShipsObjective extends Objective { constructor (game, ships) { super(game); if (!Array.isArray(ships)) { ships = [ships]; } this.bots = _.filter(ships, ship => { return ship.alive; }); ...
body { background-color:#948664; font-size:16px; font-family:Georgia, "Times New Roman", Times, serif; color:#F4ECD3; text-shadow:-1px -1px 5px #000; padding:0; margin:0; } a { color:#fbfcef; } a:visited { color:#eed69b; } a:hover { color:#d7bc7b; } a:active { color:#eed69b; } h1 { font-size:11px; text-tra...
module Storegine class Category include Mongoid::Document field :title, type: String has_many :products end end
export * from './privacy.component';