Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
12
215k
b'What is the value of (-7 + -14 + 7 - -41) + -10?\n'
// FoalTS import { FileSystem } from '../../file-system'; export function createVSCodeConfig() { new FileSystem() // TODO: test this line .cdProjectRootDir() .ensureDir('.vscode') .cd('.vscode') .copy('vscode-config/launch.json', 'launch.json') .copy('vscode-config/tasks.json', 'tasks.json');...
Dockermail - Email Core ========== This image provides a secure, minimal mail server based on 'postfix' and 'dovecot'. All incoming mail to your domains is accepted. For outgoing mail, only authenticated (logged in with username and password) clients can send messages via STARTTLS. ## Setup You will need 2 folder on ...
b'What is 14 + 1 + (20 - (-2 - (-8 - 12)))?\n'
b'What is (-1 - -8) + 2 + -9?\n'
b'-6 - (1 - (-7 + -5 - -20))\n'
/** * * Modelo de Login usando MCV * Desenvolvido por Ricardo Hirashiki * Publicado em: http://www.sitedoricardo.com.br * Data: Ago/2011 * * Baseado na extensao criada por Wemerson Januario * http://code.google.com/p/login-window/ * */ Ext.define('Siccad.view.authentication.CapsWarningTooltip', ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using Ninject.Modules; using Ninject.Extensions.Conventions; namespace SongManager.Web.NinjectSupport { /// <summary> /// Automatically loads all Boot Modules and puts them into the Ninject Dependency Resolver /// </summary> publ...
/*! * DASSL solver library description */ #include "libinfo.h" extern void _start() { _library_ident("DAE solver library"); _library_task("interfaces to generic IVP solver"); _library_task("operations on data for included solvers"); _library_task("DASSL solver backend"); _library_task("RADAU solver backend")...
b'What is the value of 15 + 4 - (6 + -8 - 6 - 0)?\n'
b'What is the value of -35 + (-72 - -46 - -80)?\n'
/** * The MIT License Copyright (c) 2015 Teal Cube Games * * 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, modi...
b'What is the value of -3 - (2 - 24 - (-19 + 12)) - 4?\n'
b'Evaluate (12 - 12) + 8 - (1 + (0 - 20)).\n'
b'What is the value of 3 + (47 - 52) + (11 - 0)?\n'
b'What is the value of 34 + -13 + 6 + -1 + -3?\n'
b'What is (9 - 10) + -7 - (-9 - 3)?\n'
b'-13 - (-5 - (-14 + 14))\n'
<?php use League\Flysystem\Adapter\Local; use League\Flysystem\Filesystem; use Spatie\Backup\FileHelpers\FileSelector; class FileSelectorTest extends Orchestra\Testbench\TestCase { protected $path; protected $disk; protected $root; protected $testFilesPath; protected $fileSelector; public...
b'Evaluate 30 - (3 + (31 - 15)).\n'
name 'google_app_engine' description 'A cookbook to download and install the google app engine SDK on a Linux system.' version '1.0.0' maintainer 'Bernd Hoffmann' maintainer_email 'info@gebeat.com' license 'MIT' long_description IO.read(File.join(File.dirname(__FILE__), 'README....
b'What is the value of (-15 - -13 - 17) + (0 - -4 - -4)?\n'
b'Calculate (51 - 12) + -30 - (-5 + 2).\n'
b'Calculate (5 - ((-1 - -1) + -3)) + (-27 - -7).\n'
b'What is (-2 - 7) + 15 + -27 + 10?\n'
b'Calculate (-10 - 0) + (-1 + 1 - (26 + -41)).\n'
b'Evaluate 10 - (-1 - 4 - -16) - 11.\n'
/* * database.hpp * * Created on: Sep 22, 2016 * Author: dan */ #ifndef SRC_TURBO_BROCCOLI_DATABASE_HPP_ #define SRC_TURBO_BROCCOLI_DATABASE_HPP_ #include <boost/filesystem.hpp> #include <turbo_broccoli/type/key.hpp> #include <turbo_broccoli/type/value.hpp> #include <turbo_broccoli/type/blob.hpp> #include...
b'What is the value of (-39 + 15 - -19) + (34 - (-7 - -4))?\n'
// // URBSegmentedControl.h // URBSegmentedControlDemo // // Created by Nicholas Shipes on 2/1/13. // Copyright (c) 2013 Urban10 Interactive. All rights reserved. // #import <UIKit/UIKit.h> typedef NS_ENUM(NSUInteger, URBSegmentedControlOrientation) { URBSegmentedControlOrientationHorizontal = 0, URBSegmentedCo...
b'Calculate (-4 - (-7 + -5 - -28)) + 3.\n'
{% from "components/table.html" import list_table, field, right_aligned_field_heading, row_heading, notification_status_field %} {% from "components/page-footer.html" import page_footer %} <div class="ajax-block-container" aria-labelledby='pill-selected-item'> <div class="dashboard-table bottom-gutter-3-2"> {% ca...
typedef struct { f_t x, y; } vec_t, *vec; //inline f_t cross(vec a, vec b) { return a->x * b->y - a->y * b->x; } //inline vec vsub(vec a, vec b, vec res) { res->x = a->x - b->x; res->y = a->y - b->y; } // Does point c lie on the left side of directed edge a->b? // 1 if left, -1 if right, 0 if on the li...
--- layout: page_home title: Home headerline: Design Club at IIIT-Delhi headerlinelink: /about/ newslink: /news/ projectslink: /projects/ ---
/* The MIT License (MIT) Copyright (c) 2014 Mehmetali Shaqiri (mehmetalishaqiri@gmail.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, including with...
function LetterProps(o, sw, sc, fc, m, p) { this.o = o; this.sw = sw; this.sc = sc; this.fc = fc; this.m = m; this.p = p; this._mdf = { o: true, sw: !!sw, sc: !!sc, fc: !!fc, m: true, p: true, }; } LetterProps.prototype.update = function (o, sw, sc, fc, m, p) { ...
<?php namespace PHPAuth; class Auth { protected $dbh; public $config; public $lang; public function __construct(\PDO $dbh, $config, $language = "en_GB") { $this->dbh = $dbh; $this->config = $config; if (version_compare(phpversion(), '5.5.0', '<')) { ...
b'What is 26 + -12 - 15 - (-2 + -4)?\n'
b'Evaluate 9 - 13 - (-10 + 13) - -3.\n'
b'5 + -1 + 2 - (15 - -4 - -11)\n'
#if false using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LionFire.Behaviors { public class Coroutine { } } #endif
b'-94 + -5 + 54 - -15\n'
b'What is 1 + 9 + (5 + -10 - 2) + 6?\n'
b'Evaluate -16 + (-6 - 1 - -22 - 24).\n'
b'-1 + (-2 + 3 - (-3 + 15))\n'
b'Evaluate 4 - (-3 + -1 + (16 - 15) + 8).\n'
b'What is the value of -6 + (0 - 5) + 17?\n'
b'Evaluate (7 - -13) + -67 + 59.\n'
b'Evaluate 13 + 5 + -12 + 12.\n'
b'Evaluate (-41 - -15) + 18 - (-9 + (3 - 2)).\n'
b'Calculate (-7 - ((6 - 2) + -16)) + (0 - 4).\n'
# Dreedi To start your this app: 1. Install dependencies with `mix deps.get` 2. Create and migrate your database with `mix ecto.create && mix ecto.migrate` 3. Start Phoenix endpoint with `mix phoenix.server` Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
b'What is -34 + -1 + 25 + 17?\n'
<?php /** * File: SimpleImage.php * Author: Simon Jarvis * Modified by: Miguel Fermín * Based in: http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publish...
#include <iostream> using namespace std; int main() { int a,b,c,d; int sum=1080; while(cin>>a>>b>>c>>d) { if(a==0&&b==0&&c==0&&d==0) break; if(a>b) { sum=(a-b)*9+sum; } else if(a<b) { sum=((40-b)+a)...
b'Calculate -325 + 317 + (-2 + 2 - 0).\n'
b'Calculate -32 - -1 - (-8 + (-17 - (-14 - 3))).\n'
b'Evaluate -3 + -9 + 9 - 2 - 16.\n'
# Be sure to restart your server when you modify this file. Rails.application.config.session_store :cookie_store, key: '_petitioneer_session'
b'Evaluate 13 - ((-8 - -19) + -23).\n'
b'Evaluate -11 - (-21 + 16) - (-1 + 12).\n'
<?php class Neostrada { const API_HOST = 'https://api.neostrada.nl/'; private $_key; private $_secret; public function __construct($key, $secret) { $this->_key = $key; $this->_secret = $secret; } public function domain($domain) { return new Neostrada_Domain($this, $domain); } public function save(N...
// rd_route.c // Copyright (c) 2014-2015 Dmitry Rodionov // // This software may be modified and distributed under the terms // of the MIT license. See the LICENSE file for details. #include <stdlib.h> // realloc() #include <libgen.h> // basename() #include <assert.h> // assert() #include <std...
b'Evaluate 0 + 20 + -8 + -5 + -15 + 3.\n'
b'What is 97 - 64 - (11 - 3)?\n'
b'Calculate -33 + (-43 - -99) - (-1 + 0).\n'
b'What is 3 + (29 - 23) + (4 - 2) + 0?\n'
b'What is the value of (0 - (-10 + 17)) + 20?\n'
b'Calculate -4 + (-24 + 3 - -43).\n'
# Toady 1.0 Wickedly extensible IRC bot written in Node.js. Load and reload mods without reconnecting. ## Please pay attention: This master branch is merged with version 1.x from Toady and got extended afterwards! ## Download. Install. Fly. If you don't already have Node.js, [get it](http://nodejs.org). It's awesome...
--- name: Dreadnought type: AV speed: 15cm armour: 3+ cc: 4+ ff: 4+ special_rules: - walker notes: | Armed with either a Missile Launcher and Twin Lascannon, or an Assault Cannon and Power Fist. weapons: - id: missile-launcher multiplier: 0–1 - id: twin-lascannon multiplier: 0–1 - id: ...
require "spec_helper" module Smsru describe API do shared_context "shared configuration", need_values: 'configuration' do before :each do Smsru.configure do |conf| conf.api_id = 'your-api-id' conf.from = 'sender-name' conf.test = test conf.format = format ...
describe("Dragable Row Directive ", function () { var scope, container, element, html, compiled, compile; beforeEach(module("app", function ($provide) { $provide.value("authService", {}) })); beforeEach(inject(function ($compile, $rootScope) { html = '<div id="element-id" data-draggable-row=""' ...
/** * Created by Keerthikan on 29-Apr-17. */ export {expenseSpyFactory} from './expense-spy-factory'; export {compensationSpyFactory} from './compensation-spy-factory';
b'Calculate (217 - 193) + (-4 - -12).\n'
<?php /* Safe sample input : get the field UserData from the variable $_POST sanitize : use of ternary condition construction : concatenation with simple quote */ /*Copyright 2015 Bertrand STIVALET Permission is hereby granted, without written agreement or royalty fee, to use, copy, modify, and distribute this s...
import m from 'mithril'; import _ from 'underscore'; import postgrest from 'mithril-postgrest'; import models from '../models'; import h from '../h'; import projectDashboardMenu from '../c/project-dashboard-menu'; import projectContributionReportHeader from '../c/project-contribution-report-header'; import projectContr...
b'6 - 4 - -5 - (-20 - -31)\n'
import { Component, OnInit, HostListener, ElementRef } from '@angular/core'; import { Router, NavigationEnd, NavigationExtras } from '@angular/router'; import { AuthService } from '../../services/auth.service'; @Component({ selector: 'app-nav', templateUrl: 'app-nav.component.html' }) export class AppNavComponent ...
--- layout: page title: Webb Basic Financial Party date: 2016-05-24 author: Kenneth Schroeder tags: weekly links, java status: published summary: Aliquam erat volutpat. Pellentesque tincidunt luctus neque, ac. banner: images/banner/leisure-02.jpg booking: startDate: 01/03/2017 endDate: 01/07/2017 ctyhocn: MGMDNHX...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Reflection; namespace Umbraco.Core.Models.EntityBase { /// <summary> /// A base class for use to implement IRememberBeingDirty/ICanBeDirty /// </summary> public abstract class Tracks...
b'Calculate (-13 - (15 + -8)) + 34.\n'
b'Evaluate -20 + 3 + 23 + -14 + -15.\n'
b'Calculate 22 - (-5 + 17 - 0).\n'
b'Calculate -3 + 0 + (-5 - (-8 - 2)) + 0.\n'
export function wedgeYZ(a, b) { return a.y * b.z - a.z * b.y; } export function wedgeZX(a, b) { return a.z * b.x - a.x * b.z; } export function wedgeXY(a, b) { return a.x * b.y - a.y * b.x; }
b'(-16 - (0 - 14)) + 7 + -3\n'
b'What is (8 + -7 - (2 + -1)) + -12 + 4?\n'
# baites.github.io # Installation * Cloning and creating docker image **NOTE**: This installation requires installed docker server. ```bash $ git clone git clone https://github.com/baites/baites.github.io.git $ cd baites.github.io $ docker build -t jekyll -f jekyll.dockerfile . ... Successfully tagged jekyll:latest...
b'-14 + 83 + -34 + -39\n'
<div class="col-xs-7"> <div class="box"> <div class="box-header"> <h3 class="box-title">Order Table</h3> <div class="box-tools"> <div class="input-group input-group-sm" style="width: 150px;"> <input type="search" class="light-table-filter form-control pull-right" data-table="order-t...
b'What is the value of (0 - 5 - -19) + (29 + -10 - 12)?\n'
b'(0 + -6 - (244 - 238)) + -2\n'
b'Calculate 9 - (-4 - (4 - 13)).\n'
import unittest from katas.beta.what_color_is_your_name import string_color class StringColorTestCase(unittest.TestCase): def test_equal_1(self): self.assertEqual(string_color('Jack'), '79CAE5') def test_equal_2(self): self.assertEqual(string_color('Joshua'), '6A10D6') def test_equal_3(...
#pragma config(Sensor, in1, linefollower, sensorLineFollower) #pragma config(Sensor, dgtl5, OutputBeltSonar, sensorSONAR_mm) #pragma config(Motor, port6, WhipCreamMotor, tmotorVex393, openLoop) #pragma config(Motor, port7, InputBeltMotor, tmotorServoContinuousRotation, openLoop) #pragma conf...
b'Calculate 352 + -392 + (2 - -51).\n'
{% extends "layout.html" %} {% block body %} <title>All Events - Media Services</title> <form id="adminForm" action="" method=post> <div class="container"> <table class="table"> <thead> <td> <ul class="nav nav-pills"> <li class="nav-item"> <a class="nav-link active" href="#">Upcoming...
b'What is -6 + 2 + 10 + -2 + -30?\n'
print("hello!!!!")
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
27