text stringlengths 9 39.2M | dir stringlengths 25 226 | lang stringclasses 163
values | created_date timestamp[s] | updated_date timestamp[s] | repo_name stringclasses 751
values | repo_full_name stringclasses 752
values | star int64 1.01k 183k | len_tokens int64 1 18.5M |
|---|---|---|---|---|---|---|---|---|
```objective-c
#ifndef MYTINYSTL_LIST_TEST_H_
#define MYTINYSTL_LIST_TEST_H_
// list test : list insert, sort
#include <list>
#include "../MyTinySTL/list.h"
#include "test.h"
namespace mystl
{
namespace test
{
namespace list_test
{
//
bool is_odd(int x) { return x & 1; }
void list_test()
{
std::cout << "[==... | /content/code_sandbox/Test/list_test.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 1,291 |
```objective-c
#ifndef MYTINYSTL_ALGORITHM_TEST_H_
#define MYTINYSTL_ALGORITHM_TEST_H_
// : mystl 81
#include <algorithm>
#include <functional>
#include <numeric>
#include "../MyTinySTL/algorithm.h"
#include "../MyTinySTL/vector.h"
#include "test.h"
namespace mystl
{
namespace test
{
#ifdef max
#pragma message(... | /content/code_sandbox/Test/algorithm_test.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 15,482 |
```objective-c
#ifndef MYTINYSTL_SET_TEST_H_
#define MYTINYSTL_SET_TEST_H_
// set test : set, multiset insert
#include <set>
#include "../MyTinySTL/set.h"
#include "test.h"
namespace mystl
{
namespace test
{
namespace set_test
{
void set_test()
{
std::cout << "[================================================... | /content/code_sandbox/Test/set_test.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 1,779 |
```c++
#ifdef _MSC_VER
#define _SCL_SECURE_NO_WARNINGS
#endif
#if defined(_MSC_VER) && defined(_DEBUG)
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#endif // check memory leaks
#include "algorithm_performance_test.h"
#include "algorithm_test.h"
#include "vector_test.h"
#include "list_test.h"
#in... | /content/code_sandbox/Test/test.cpp | c++ | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 305 |
```objective-c
#ifndef MYTINYSTL_UNORDERED_MAP_TEST_H_
#define MYTINYSTL_UNORDERED_MAP_TEST_H_
// unordered_map test : unordered_map, unordered_multimap insert
#include <unordered_map>
#include "../MyTinySTL/unordered_map.h"
#include "map_test.h"
#include "test.h"
namespace mystl
{
namespace test
{
namespace uno... | /content/code_sandbox/Test/unordered_map_test.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 2,555 |
```objective-c
#ifndef MYTINYSTL_DEQUE_TEST_H_
#define MYTINYSTL_DEQUE_TEST_H_
// deque test : deque push_front/push_back
#include <deque>
#include "../MyTinySTL/deque.h"
#include "test.h"
namespace mystl
{
namespace test
{
namespace deque_test
{
void deque_test()
{
std::cout << "[============================... | /content/code_sandbox/Test/deque_test.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 1,106 |
```objective-c
#ifndef MYTINYSTL_TEST_H_
#define MYTINYSTL_TEST_H_
// TestCase UnitTest
#include <ctime>
#include <cstring>
#include <cstdio>
#include <iostream>
#include <iomanip>
#include <string>
#include <sstream>
#include <vector>
#include "Lib/redbud/io/color.h"
namespace mystl
{
namespace test
{
#define g... | /content/code_sandbox/Test/test.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 6,931 |
```objective-c
#ifndef MYTINYSTL_ALGORITHM_PERFORMANCE_TEST_H_
#define MYTINYSTL_ALGORITHM_PERFORMANCE_TEST_H_
// sort, binary_search
#include <algorithm>
#include "../MyTinySTL/algorithm.h"
#include "test.h"
namespace mystl
{
namespace test
{
namespace algorithm_performance_test
{
//
#define FUN_TEST1(mode, fu... | /content/code_sandbox/Test/algorithm_performance_test.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 970 |
```objective-c
// ============================================================================
//
// Header File : redbud/platform.h
//
// This file contains some preprocessing macros related to the platform.
// ============================================================================
#ifndef ALINSHANS_REDBUD_PLAT... | /content/code_sandbox/Test/Lib/redbud/platform.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 722 |
```objective-c
// ============================================================================
//
// Header File : redbud/io/color.h
//
// This file is used to control font format and color in the terminal, which
// refers to a project on github, see path_to_url .
// ==================================================... | /content/code_sandbox/Test/Lib/redbud/io/color.h | objective-c | 2016-08-05T04:08:41 | 2024-08-16T17:50:46 | MyTinySTL | Alinshans/MyTinySTL | 11,147 | 2,281 |
```javascript
const request = require('request');
const os = require('os');
const fs = require('fs');
const unzip = require('unzip2');
const platform = os.platform();
const DIST = './bin';
const urls = {
darwin: 'path_to_url
win32: 'path_to_url
linux: 'path_to_url
};
const files = {
darwin: ['ffmpeg', 'fpcalc'... | /content/code_sandbox/install.js | javascript | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 312 |
```yaml
branches:
only:
- master
image: Visual Studio 2017
platform:
- x64
environment:
CYG_ROOT: C:\cygwin64
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node 11 x64
build_script:
- npm install -g @angular/cli@1.0.0
- cd app/
- npm install
- '%CYG_ROOT%/bin... | /content/code_sandbox/appveyor.yml | yaml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 146 |
```shell
#!/bin/sh
cd app
ng build --base-href './'
cd ..
electron .
``` | /content/code_sandbox/launch.sh | shell | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 20 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AllToMP3 - Feedback</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>AllToMP3 <small>Feedback</small></h1>
<form method="post" id="fo... | /content/code_sandbox/feedback/index.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 249 |
```javascript
var electron = require('electron');
var fform = document.getElementById('form');
var femail = document.getElementById('email');
var fmessage = document.getElementById('message');
var infos;
if (localStorage.getItem('email')) {
femail.value = localStorage.getItem('email');
}
fform.onsubmit = function(e... | /content/code_sandbox/feedback/feedback.js | javascript | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 350 |
```css
@import url('path_to_url
html {
margin: 0;
padding: 0;
font-family: 'Source Sans Pro';
}
body {
padding: 20px;
}
label {
display: block;
}
.message {
width: 100%;
height: 200px;
margin-bottom: 20px;
}
.email {
margin-bottom: 20px;
}
input {
width: 100%;
font-family: 'Source Sans Pro';
}
tex... | /content/code_sandbox/feedback/style.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 182 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/messages.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,210 |
```javascript
// Karma configuration file, see link for more information
// path_to_url
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', 'angular-cli'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-remap-ist... | /content/code_sandbox/app/karma.conf.js | javascript | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 272 |
```javascript
// Protractor configuration file, see link for more information
// path_to_url
/*global jasmine */
var SpecReporter = require('jasmine-spec-reporter');
exports.config = {
allScriptsTimeout: 11000,
specs: [
'./e2e/**/*.e2e-spec.ts'
],
capabilities: {
'browserName': 'chrome'
},
directC... | /content/code_sandbox/app/protractor.conf.js | javascript | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 188 |
```javascript
const { app, BrowserWindow, ipcMain, Menu } = require('electron');
const autoUpdater = require("electron-updater").autoUpdater;
const path = require('path');
const url = require('url');
const nedb = require('nedb-promise');
const util = require('util');
const os = require('os');
const ncp = require('ncp')... | /content/code_sandbox/main.js | javascript | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 4,295 |
```html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>AllToMP3</title>
<base href="/">
<script type="text/javascript">
var electron = require('electron');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<app-root>
<div style="text-align: c... | /content/code_sandbox/app/src/index.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 114 |
```shell
rm -rf dist/
mkdir dist
ng build --aot --output-path dist/en --base-href './'
ng build --aot --output-path dist/fr --locale fr --i18n-format xlf --i18n-file src/locale/messages.fr.xlf --base-href './'
ng build --aot --output-path dist/fi --locale fi --i18n-format xlf --i18n-file src/locale/messages.fi.xlf --ba... | /content/code_sandbox/app/build.sh | shell | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 552 |
```xml
import './polyfills.ts';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { environment } from './environments/environment';
import { AppModule } from './app/app.module';
if (environment.production) {
enableProdMode();
}
platf... | /content/code_sandbox/app/src/main.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 72 |
```css
/* You can add global styles to this file, and also import other style files */
@import '../node_modules/@typopro/web-source-sans-pro/TypoPRO-SourceSansPro.css';
@import './assets/css/entypo.css';
html {
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
font-family: 'TypoPRO Source Sans Pro';
b... | /content/code_sandbox/app/src/styles.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 502 |
```xml
// This file includes polyfills needed by Angular and is loaded before
// the app. You can add your own extra polyfills to this file.
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/numb... | /content/code_sandbox/app/src/polyfills.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 169 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.pt.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,537 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.he.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,400 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.ar.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,404 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.tr.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,519 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.fi.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,548 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.ir.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,407 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.it.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,541 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.de.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,533 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.nl.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,533 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.es.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,537 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.fr.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,549 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.ru.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,405 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.hu.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,555 |
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="ng2.template">
<body>
<trans-unit id="9109ad0a9567961340bbe9e831f23a8e1a0927ea" datatype="html">
<source>Click to copy a link t... | /content/code_sandbox/app/src/locale/messages.ja.xlf | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,403 |
```css
@font-face {
font-family: 'entypo';
src: url('../font/entypo.eot?34335183');
src: url('../font/entypo.eot?34335183#iefix') format('embedded-opentype'),
url('../font/entypo.woff2?34335183') format('woff2'),
url('../font/entypo.woff?34335183') format('woff'),
url('../font/entypo.ttf?3433... | /content/code_sandbox/app/src/assets/css/entypo.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,787 |
```css
[class^="icon-"], [class*=" icon-"] {
font-family: 'entypo';
font-style: normal;
font-weight: normal;
/* fix buttons height */
line-height: 1em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
}
.icon-beamed-note { *zoom: expression( this.runtimeStyle['zoom'... | /content/code_sandbox/app/src/assets/css/entypo-ie7.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 2,582 |
```css
.icon-beamed-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.icon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.icon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); ... | /content/code_sandbox/app/src/assets/css/entypo-ie7-codes.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 2,510 |
```css
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg... | /content/code_sandbox/app/src/assets/css/animation.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 555 |
```css
.icon-beamed-note:before { content: '\e800'; } /* '' */
.icon-bug:before { content: '\e801'; } /* '' */
.icon-ccw:before { content: '\e802'; } /* '' */
.icon-circle:before { content: '\e803'; } /* '' */
.icon-circular-graph:before { content: '\e804'; } /* '' */
.icon-clapperboard:before { content: '\e805'; } /*... | /content/code_sandbox/app/src/assets/css/entypo-codes.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,280 |
```xml
// The file contents for the current environment will overwrite these during build.
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
// The list of which env maps to which file can be found in ... | /content/code_sandbox/app/src/environments/environment.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 85 |
```xml
export const environment = {
production: true
};
``` | /content/code_sandbox/app/src/environments/environment.prod.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 12 |
```xml
import { Injectable } from '@angular/core';
// Temporary service to provide translations in TypeScript files
@Injectable()
export class TransService {
texts = {
fr: {
antivirus: "Une erreur s'est produite. Si vous avez un antivirus, dsactivez-le et ressayez. Il se peut qu'il interfre.",
dlfin... | /content/code_sandbox/app/src/app/trans.service.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 306 |
```xml
import { Injectable } from '@angular/core';
import { LoggerService } from './logger.service';
declare var electron: any;
@Injectable()
export class DatabaseService {
// Paths
public userPath: string;
private savingPathP: Promise<any>;
private helpDisplaynP: Promise<any>;
constructor(private logger: ... | /content/code_sandbox/app/src/app/database.service.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 452 |
```html
<div class="body">
<div class="header">
<div class="header-title">AllToMP3</div>
<div class="header-logos">
<i class="icon-youtube"></i>
<i class="icon-soundcloud"></i>
<i class="icon-spotify"></i>
<i class="icon-deezer"></i>
</div>
<div class="header-contact">
<d... | /content/code_sandbox/app/src/app/app.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 768 |
```xml
import { BrowserModule } from '@angular/platform-browser';
import { NgModule, ErrorHandler } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { DatabaseService } from './database.service';
import { Alltomp3Service } from './alltomp3.service';... | /content/code_sandbox/app/src/app/app.module.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 299 |
```css
.body {
max-width: 550px;
margin: 0 auto;
}
.header {
display: flex;
flex-direction: row;
margin: 20px;
justify-content: space-between;
align-items: center;
}
.header-title {
color: #ff8a65;
font-weight: 400;
font-size: 24px;
}
.header-logos {
color: #ff8a65;
text-align: center;
}
.heade... | /content/code_sandbox/app/src/app/app.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 437 |
```xml
import { Injectable } from '@angular/core';
import { TransService } from './trans.service';
declare var electron: any;
@Injectable()
export class ContextMenuService {
public editMenu;
constructor(private trans: TransService) {
this.editMenu = electron.remote.Menu.buildFromTemplate([{
label:... | /content/code_sandbox/app/src/app/contextmenu.service.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 202 |
```xml
import { Injectable, ErrorHandler } from '@angular/core';
@Injectable()
export class LoggerService {
public logs:any[] = [];
constructor() {
console.log('[Logger] init');
}
public log(...args : any[]) {
this.logs.push(args);
console.log(args);
}
}
``` | /content/code_sandbox/app/src/app/logger.service.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 63 |
```xml
import { Injectable, ApplicationRef } from '@angular/core';
import { DatabaseService } from './database.service';
import { LoggerService } from './logger.service';
import { TransService } from './trans.service';
import * as _ from 'lodash';
declare var electron: any;
declare var Notification: any;
@Injectable()... | /content/code_sandbox/app/src/app/alltomp3.service.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,955 |
```css
@font-face {
font-family: 'entypo';
src: url('../font/entypo.eot?72521212');
src: url('../font/entypo.eot?72521212#iefix') format('embedded-opentype'),
url('../font/entypo.svg?72521212#entypo') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'entypo';
src:... | /content/code_sandbox/app/src/assets/css/entypo-embedded.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 17,727 |
```xml
import { Injectable, ErrorHandler } from '@angular/core';
@Injectable()
export class LoggerErrorService implements ErrorHandler {
public errors:any[] = [];
constructor() {
console.log('[LoggerError] init');
}
handleError(error) {
this.errors.push(error);
console.error(error);
}
}
``` | /content/code_sandbox/app/src/app/loggererror.service.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 63 |
```html
<div class="request-div" *ngIf="!request.aborted" (click)="clickRequest()" [ngClass]="{'clickable': clickable()}">
<div class="request--icon" [ngStyle]="{'background-image': 'url(' + request.cover + ')'}">
<div class="request--progress--div" (mouseenter)="coverMouseEnter()" (mouseleave)="coverMouseLeave()... | /content/code_sandbox/app/src/app/request/request.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 689 |
```xml
import { Component } from '@angular/core';
import * as _ from 'lodash';
declare var electron: any;
import { Alltomp3Service } from './alltomp3.service';
import { DatabaseService } from './database.service';
import { ContextMenuService } from './contextmenu.service';
const Clipboard = require('clipboard');
@Comp... | /content/code_sandbox/app/src/app/app.component.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 1,430 |
```xml
import { Component, OnInit, Input } from '@angular/core';
import { Alltomp3Service } from '../alltomp3.service';
import * as _ from 'lodash';
declare var electron: any;
@Component({
selector: 'app-request',
templateUrl: './request.component.html',
styleUrls: ['./request.component.css']
})
export class Req... | /content/code_sandbox/app/src/app/request/request.component.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 534 |
```css
.feedback-div, .feedback-btn, .update-btn {
display: inline-block;
}
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}
.rotating {
animation: rotating 2s linear infinite;
}
``` | /content/code_sandbox/app/src/app/feedback/feedback.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 65 |
```css
.request-div {
/*border-left: 1px solid #ddd;*/
/*border-right: 1px solid #ddd;*/
/*border-top: 1px solid #ddd;*/
display: flex;
flex-direction: row;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
position: relative;
animation: from-top 0.8s ease 1;
}
@keyframes from-top {
0% {t... | /content/code_sandbox/app/src/app/request/request.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 624 |
```html
<div class="feedback-div">
<div class="feedback-btn clickable tooltip" (click)="wantFeedback()">
<i class="icon-mail"></i>
<span class="tooltiptext" i18n>An issue, an idea?</span>
</div>
<div class="update-btn" (click)="installUpdate()" *ngIf="updateAvailable" [ngClass]="{'clickable': (updateDownl... | /content/code_sandbox/app/src/app/feedback/feedback.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 241 |
```xml
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-help',
templateUrl: './help.component.html',
styleUrls: ['./help.component.css']
})
export class HelpComponent {
@Input()
selectProposal: any;
helpProposalsURLs:string[] = [
'path_to_url
'path_to_url
... | /content/code_sandbox/app/src/app/help/help.component.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 133 |
```html
<div class="help-div-arrow">
<div class="arrow thisarrow"></div>
</div>
<div class="help-div-title" i18n>Enter:</div>
<div class="help-div-container">
<div class="help-div-possibility">
<div class="possibility-title" i18n>Songs</div>
<ul>
<li *ngFor="let proposal of helpProposalsSongs" (click)... | /content/code_sandbox/app/src/app/help/help.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 215 |
```xml
import { Component, OnInit, ErrorHandler, Injector } from '@angular/core';
import { LoggerService } from '../logger.service';
import { Alltomp3Service } from '../alltomp3.service';
declare var electron: any;
@Component({
selector: 'app-feedback',
templateUrl: './feedback.component.html',
styleUrls: ['./f... | /content/code_sandbox/app/src/app/feedback/feedback.component.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 282 |
```css
.help-div-title {
text-align: center;
width: 65px;
margin: 0 auto;
margin-top: 60px;
padding: 3px;
text-transform: uppercase;
color: #ff8a65;
font-weight: bold;
border-bottom: 1px solid white;
border-top: 1px solid #ff8a65;
}
.help-div-container {
display: flex;
flex-direction: row;
}
.he... | /content/code_sandbox/app/src/app/help/help.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 628 |
```xml
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-suggestion',
templateUrl: './suggestion.component.html',
styleUrls: ['./suggestion.component.css']
})
export class SuggestionComponent implements OnInit {
// The suggestion object, containing title, artist, cover...
... | /content/code_sandbox/app/src/app/suggestion/suggestion.component.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 143 |
```css
.suggestion {
padding: 8px;
cursor: pointer;
background-color: #1a1a1a;
color: white;
font-weight: 200;
font-size: 14px;
}
.suggestion--active {
background-color: #222;
}
.suggestion:hover {
background-color: #222;
}
.suggestion--last {
border-bottom-right-radius: 15px;
border-bottom-left-rad... | /content/code_sandbox/app/src/app/suggestion/suggestion.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 100 |
```css
.news {
margin-bottom: 30px;
padding: 15px;
background-color: #1a1a1a;
border-radius: 15px;
}
.news-title {
font-weight: 100;
font-size: 16px;
margin-bottom: 6px;
}
.news-content {
font-weight: 100;
font-size: 12px;
}
.news-header {
margin-top: 40px;
text-align: center;
color: #ff8a65;
... | /content/code_sandbox/app/src/app/news/news.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 135 |
```xml
import { Component, ApplicationRef } from '@angular/core';
declare var electron: any;
@Component({
selector: 'app-news',
templateUrl: './news.component.html',
styleUrls: ['./news.component.css']
})
export class NewsComponent {
releaseNotes:any[] = [];
news:any[] = [];
constructor(private appRef: A... | /content/code_sandbox/app/src/app/news/news.component.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 313 |
```html
<div *ngIf="releaseNotes.length > 0" class="news-header" i18n>
Update's changes
</div>
<div *ngFor="let v of releaseNotes" class="news">
<div class="news-title">
Version {{ v.version }}
</div>
<div class="news-content" [innerHTML]="v.notes"></div>
</div>
<div *ngIf="news.length > 0" class="news-hea... | /content/code_sandbox/app/src/app/news/news.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 158 |
```html
<div class="suggestion" [ngClass]="{'suggestion--active': active, 'suggestion--last': last}">
<i [ngClass]="{'icon-vinyl': (type == 'album'), 'icon-note': (type == 'track')}"></i> {{ suggestion.title }} - <b>{{ suggestion.artistName }}</b>
</div>
``` | /content/code_sandbox/app/src/app/suggestion/suggestion.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 76 |
```xml
import { Component, OnInit, ApplicationRef } from '@angular/core';
import { DatabaseService } from '../database.service';
declare var electron: any;
@Component({
selector: 'saving-path',
templateUrl: './saving-path.component.html',
styleUrls: ['./saving-path.component.css']
})
export class SavingPathCompo... | /content/code_sandbox/app/src/app/saving-path/saving-path.component.ts | xml | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 261 |
```css
.open-path {
cursor: pointer;
}
``` | /content/code_sandbox/app/src/app/saving-path/saving-path.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 10 |
```html
<div class="legend" i18n>Songs are downloaded in <span (click)="openPath()" class="label">{{ path }}</span> <i class="icon-edit open-path" (click)="changePath()"></i></div>
``` | /content/code_sandbox/app/src/app/saving-path/saving-path.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 50 |
```yaml
# .readthedocs.yml
# Required
version: 2
mkdocs:
configuration: mkdocs.yml
``` | /content/code_sandbox/readthedocs.yml | yaml | 2016-07-10T15:18:14 | 2024-08-15T16:38:12 | ue5-style-guide | Allar/ue5-style-guide | 5,102 | 25 |
```yaml
site_name: Linter and Style Guide Documentation
nav:
- Home: index.md
- Getting Started: gettingstarted.md
- How Does Linting Work?: howitworks.md
- Unreal Engine Marketplace Guidelines: unrealguidelines.md
- Gamemakin LLC Style Guide: style.md
- TODO: todo.md
theme: readthedocs
``` | /content/code_sandbox/mkdocs.yml | yaml | 2016-07-10T15:18:14 | 2024-08-15T16:38:12 | ue5-style-guide | Allar/ue5-style-guide | 5,102 | 79 |
```html
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>AlloyFinger</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<style>
html,body{
margin: 0;
padding: 0;
border: 0;
... | /content/code_sandbox/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 2,608 |
```html
<!DOCTYPE html>
<html>
<head>
<title>Tap State</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<style>
#test {
-webkit-tap-highlight-color: rgba(0,0,0,0);
background-color: green;
}
... | /content/code_sandbox/example/tap_state/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 672 |
```html
<!DOCTYPE html>
<html>
<head>
<title>Event Test</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<style>
#test {
-webkit-tap-highlight-color: rgba(0,0,0,0);
background-color: green;
}
... | /content/code_sandbox/example/test/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 537 |
```javascript
/* AlloyFinger v0.1.15
* By dntzhang
* Github: path_to_url
*/
; (function () {
function getLen(v) {
return Math.sqrt(v.x * v.x + v.y * v.y);
}
function dot(v1, v2) {
return v1.x * v2.x + v1.y * v2.y;
}
function getAngle(v1, v2) {
var mr = getLen(v1) * getLe... | /content/code_sandbox/alloy_finger.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 2,810 |
```html
<!DOCTYPE html>
<html>
<head>
<title>Event Test</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<style>
#test {
-webkit-tap-highlight-color: rgba(0,0,0,0);
background-color: green;
}
... | /content/code_sandbox/example/on_off/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 412 |
```html
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<style>
.ribbon {
top: 3.2em;
right: -4.7em;
-webkit-transform: rotate(45deg);
-moz-transfor... | /content/code_sandbox/example/simple/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 524 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Canvas+AlloyFinger</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<style>
.ribbon {
top: 3.2em;
right: -4.7em;
-webkit-transf... | /content/code_sandbox/example/canvas/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 784 |
```html
<!DOCTYPE html>
<html>
<head>
<title>Event Test</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<style>
#test {
-webkit-tap-highlight-color: rgba(0,0,0,0);
background-color: green;
}
... | /content/code_sandbox/example/destroy/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 380 |
```html
<!DOCTYPE html>
<html>
<head>
<title>AlloyFinger</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<style>
.ribbon {
top: 3.2em;
right: -4.7em;
-webkit-transform: rotate(45deg);
-m... | /content/code_sandbox/example/picture/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 1,244 |
```jsx
/* AlloyFinger v0.1.0
* By dntzhang
* Reedited by nemoliao
* Github: path_to_url
*/
import React, { Component } from 'react';
export default class AlloyFinger extends Component {
constructor(props) {
super(props);
this.preV = { x: null, y: null };
this.pinchStartLen = null;... | /content/code_sandbox/react/AlloyFinger.jsx | jsx | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 1,919 |
```javascript
function imageLoaded(selector,onload){
var img=new Image() ;
var dom=document.querySelector(selector);
img.onload=function(){
//real_width,real_height
onload.call(dom,this.width,this.height);
img.onload=null;
img=null;
};
img.src=dom.getAttribute("src");... | /content/code_sandbox/asset/image_loaded.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 65 |
```javascript
/* transformjs
* By dntzhang
* Github: path_to_url
*/
;(function () {
var Matrix3D = function (n11, n12, n13, n14, n21, n22, n23, n24, n31, n32, n33, n34, n41, n42, n43, n44) {
this.elements =window.Float32Array ? new Float32Array(16) : [];
var te = this.elements;
te[0] = (... | /content/code_sandbox/transformjs/transform.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 2,568 |
```javascript
/* transformjs
* By dntzhang
*/
;(function () {
var Matrix3D = function (n11, n12, n13, n14, n21, n22, n23, n24, n31, n32, n33, n34, n41, n42, n43, n44) {
this.elements =window.Float32Array ? new Float32Array(16) : [];
var te = this.elements;
te[0] = (n11 !== undefined) ? n1... | /content/code_sandbox/asset/transform.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 2,527 |
```html
<!DOCTYPE html>
<html xmlns="path_to_url">
<head>
<title></title>
<style>
#ctt .test {
width: 100px; height: 100px; color: white; line-height: 100px; text-align: center; display: inline-block; margin-top: 30px; position: absolute; left: 0; top: 0;
}
</style>
</head>
<bod... | /content/code_sandbox/asset/a.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 873 |
```javascript
/* Alloy Game Engine
* By AlloyTeam path_to_url
* Github: path_to_url
*/
;(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define([], factory);
} else if (typeof exports === 'object') {
module.exports = factory();
} else {
root.AlloyPaper... | /content/code_sandbox/asset/alloy_paper.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 37,345 |
```javascript
/*!
* AlloyLever v1.0.4 By dntzhang
* Github: path_to_url
*/
;(function (root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory()
else if(typeof define === 'function' && define.amd)
define([], factory)
else if(typeof exports === 'obje... | /content/code_sandbox/alloy-lever.js | javascript | 2016-05-09T03:17:27 | 2024-07-29T05:45:29 | AlloyLever | AlloyTeam/AlloyLever | 1,382 | 1,542 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<title>AlloyLever - 1kb</title>
<style>
html,body{
padding:0;
margin: 0;
... | /content/code_sandbox/cn.html | html | 2016-05-09T03:17:27 | 2024-07-29T05:45:29 | AlloyLever | AlloyTeam/AlloyLever | 1,382 | 2,093 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<title>AlloyLever - 1kb js library contains development debugging, error monitoring and reporting, user problem localizat... | /content/code_sandbox/index.html | html | 2016-05-09T03:17:27 | 2024-07-29T05:45:29 | AlloyLever | AlloyTeam/AlloyLever | 1,382 | 2,164 |
```shell
# Gatekeeper - DDoS protection system.
#
# This program is free software: you can redistribute it and/or modify
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS... | /content/code_sandbox/setup.sh | shell | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 428 |
```unknown
# Gatekeeper - DDoS protection system.
#
# This program is free software: you can redistribute it and/or modify
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNE... | /content/code_sandbox/Makefile | unknown | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 823 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/generate_if_map.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 918 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_flow_bpf.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 840 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_gt.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,466 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.