hexsha string | size int64 | ext string | lang string | max_stars_repo_path string | max_stars_repo_name string | max_stars_repo_head_hexsha string | max_stars_repo_licenses list | max_stars_count int64 | max_stars_repo_stars_event_min_datetime string | max_stars_repo_stars_event_max_datetime string | max_issues_repo_path string | max_issues_repo_name string | max_issues_repo_head_hexsha string | max_issues_repo_licenses list | max_issues_count int64 | max_issues_repo_issues_event_min_datetime string | max_issues_repo_issues_event_max_datetime string | max_forks_repo_path string | max_forks_repo_name string | max_forks_repo_head_hexsha string | max_forks_repo_licenses list | max_forks_count int64 | max_forks_repo_forks_event_min_datetime string | max_forks_repo_forks_event_max_datetime string | content string | avg_line_length float64 | max_line_length int64 | alphanum_fraction float64 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b4a16c9994c6bbdc3969cee30680342c63bfcb96 | 998 | js | JavaScript | commands/__tests__/list.test.js | Iverum/playtrack | 447ce36c11a10190798fc7160951aa22229e7634 | [
"0BSD"
] | null | null | null | commands/__tests__/list.test.js | Iverum/playtrack | 447ce36c11a10190798fc7160951aa22229e7634 | [
"0BSD"
] | 1 | 2021-01-05T03:37:39.000Z | 2021-01-05T03:37:39.000Z | commands/__tests__/list.test.js | Iverum/playtrack | 447ce36c11a10190798fc7160951aa22229e7634 | [
"0BSD"
] | null | null | null | /* eslint-disable no-undef */
const Database = require('../../db');
const list = require('../list');
let db = null;
beforeEach(async () => {
db = new Database(':memory:');
await db.initialize();
});
test('fails when no db is provided', async () => {
const response = await list(null);
expect(response).toEqual(... | 26.263158 | 57 | 0.628257 |
b4a203b32ac5fd487265e5328e0cc7c9d8d07ead | 3,090 | js | JavaScript | src/api.js | rslana/template-auth-react-nodejs | e7d41064c0c0d8d33227f62fb8219a99069b107c | [
"MIT"
] | null | null | null | src/api.js | rslana/template-auth-react-nodejs | e7d41064c0c0d8d33227f62fb8219a99069b107c | [
"MIT"
] | null | null | null | src/api.js | rslana/template-auth-react-nodejs | e7d41064c0c0d8d33227f62fb8219a99069b107c | [
"MIT"
] | null | null | null | import { create } from 'apisauce';
const getUrlFormated = url => {
if (url.indexOf("http:") === 0 || url.indexOf("https:") === 0)
return url
return (window.location.protocol === "https:") ? `https://${url}` : `http://${url}`
}
const api = create({
baseURL: getUrlFormated(process.env.REACT_APP_API_URL),
});
... | 28.090909 | 85 | 0.565372 |
b4a2196a0eae9595a0ecd3c4b0632986bd0096bf | 1,884 | js | JavaScript | index.js | antirek/hype-spinner | 8c2877e67da27392a9dd129eb11c543a4916c4f5 | [
"MIT"
] | null | null | null | index.js | antirek/hype-spinner | 8c2877e67da27392a9dd129eb11c543a4916c4f5 | [
"MIT"
] | null | null | null | index.js | antirek/hype-spinner | 8c2877e67da27392a9dd129eb11c543a4916c4f5 | [
"MIT"
] | null | null | null | const app = require('express')();
const http = require('http').Server(app);
const io = require('socket.io')(http);
const port = process.env.PORT || 3030;
const console = require('tracer').colorConsole();
const favicon = require('serve-favicon');
const path = require('path');
var redis = require('promise-redis')();
... | 23.55 | 69 | 0.573779 |
b4a37dc96082c968514d660d5b93ad403620bbea | 530 | js | JavaScript | scripts/jogo/extra.js | casbjr/game-dev | 551450aee50337ceebf4fa3f2541d32135268dd2 | [
"MIT"
] | null | null | null | scripts/jogo/extra.js | casbjr/game-dev | 551450aee50337ceebf4fa3f2541d32135268dd2 | [
"MIT"
] | null | null | null | scripts/jogo/extra.js | casbjr/game-dev | 551450aee50337ceebf4fa3f2541d32135268dd2 | [
"MIT"
] | null | null | null | class Extra extends Animacao {
constructor(matriz, imagem, x, variacaoY, largura, altura, larguraSprite, alturaSprite){
super(matriz,imagem,x, variacaoY, largura,altura, larguraSprite, alturaSprite)
this.y = height - this.altura - this.variacaoY;
this.velocidade = 5;
}
move(){
// this.x = this... | 22.083333 | 90 | 0.609434 |
b4a40c0499ee9a7d61fcce59dd0ac8885d5b773c | 616 | js | JavaScript | src/lib/User.js | seakmengc/e-class-react | f350384e17322c0b2daecfec4f00f33ace6758c7 | [
"MIT"
] | null | null | null | src/lib/User.js | seakmengc/e-class-react | f350384e17322c0b2daecfec4f00f33ace6758c7 | [
"MIT"
] | 1 | 2020-07-09T14:31:27.000Z | 2020-07-09T14:31:27.000Z | src/lib/User.js | seakmengc/e-class-react | f350384e17322c0b2daecfec4f00f33ace6758c7 | [
"MIT"
] | 1 | 2020-06-24T07:04:03.000Z | 2020-06-24T07:04:03.000Z | import gql from 'graphql-tag'
import { useQuery, useMutation } from '@apollo/react-hooks'
const CURRENT_USER_QUERY = gql`
query {
me {
username
email
uuid
identity {
id
first_name
last_name
gender
contact_number
photo_url
}
learn... | 16.210526 | 63 | 0.551948 |
b4a5cabda2d0afa4d5f7319fee9a2d78167938bb | 746 | js | JavaScript | resources/js/modules/video/store/store.js | soulzilla/skinzilla | c64e3c9509a595ae9974604c0360b20ea30008d6 | [
"MIT"
] | null | null | null | resources/js/modules/video/store/store.js | soulzilla/skinzilla | c64e3c9509a595ae9974604c0360b20ea30008d6 | [
"MIT"
] | null | null | null | resources/js/modules/video/store/store.js | soulzilla/skinzilla | c64e3c9509a595ae9974604c0360b20ea30008d6 | [
"MIT"
] | null | null | null | import * as types from './types'
import {actions} from './actions'
export const store = {
state: {
videos: [],
videosMeta: [],
videosLoading: true,
},
getters: {
videos: state => state.videos,
videosMeta: state => state.videosMeta,
videosLoading: state => sta... | 24.064516 | 52 | 0.522788 |
b4a6e7031fe6d8edc7590ddc73c885161f601b0d | 1,084 | js | JavaScript | src/utils/stubs.js | inspirnathan/home-dashboard | 00410e64f8f2c0f6a1e4efebfd09b726782ae2ab | [
"MIT"
] | null | null | null | src/utils/stubs.js | inspirnathan/home-dashboard | 00410e64f8f2c0f6a1e4efebfd09b726782ae2ab | [
"MIT"
] | null | null | null | src/utils/stubs.js | inspirnathan/home-dashboard | 00410e64f8f2c0f6a1e4efebfd09b726782ae2ab | [
"MIT"
] | null | null | null | export const eventStubs = [
{
title: "Somebody's Birthday!",
date: '2019-02-12'
},
{
title: "Somebody's Birthday!",
date: '2019-02-13'
},
{
title: "Somebody's Birthday!",
date: '2019-02-17'
},
{
title: "Somebody's Birthday!",
date: '2019-02-20'
},
{
title: "Somebody... | 14.648649 | 34 | 0.49262 |
b4a76f6d6bd3b4bc6325a2c7e171959053b5ffdb | 47 | js | JavaScript | webapp/src/scripts/main.js | aweijnitz/biaspoint.de | c4354cd5f2c2b45916f793217a009265d7d5baf9 | [
"MIT"
] | null | null | null | webapp/src/scripts/main.js | aweijnitz/biaspoint.de | c4354cd5f2c2b45916f793217a009265d7d5baf9 | [
"MIT"
] | null | null | null | webapp/src/scripts/main.js | aweijnitz/biaspoint.de | c4354cd5f2c2b45916f793217a009265d7d5baf9 | [
"MIT"
] | null | null | null | 'use strict'
console.info('biaspoint loaded')
| 11.75 | 32 | 0.744681 |
b4a84a211545a9a33440b1a3fe0f28bcf1ae0caf | 679 | js | JavaScript | src/store/reducers/auth.js | oguhpereira/moneystore | 1be9938682bcc4f4284b35ce54d2552967804ee3 | [
"MIT"
] | 2 | 2020-04-29T13:10:06.000Z | 2022-03-24T00:51:07.000Z | src/store/reducers/auth.js | oguhpereira/moneystore | 1be9938682bcc4f4284b35ce54d2552967804ee3 | [
"MIT"
] | null | null | null | src/store/reducers/auth.js | oguhpereira/moneystore | 1be9938682bcc4f4284b35ce54d2552967804ee3 | [
"MIT"
] | null | null | null | import * as types from '../actions/actionsTypes';
const initProps = () => {
const userHash = localStorage.getItem('auth');
const dataUser = JSON.parse(localStorage.getItem('data') || '{}');
if (userHash in dataUser) {
return {
userHash,
isAuthenticated: true,
};
}
return {
userHash: null,
isAuthenti... | 18.861111 | 67 | 0.639175 |
b4ab76b97ba6215e7b9a18b9639f9e48b94fba3b | 621 | js | JavaScript | BITMART/routes/userRoutes.js | chandankeshri1812/IEEE-Megaproject | 081479294d90914625315f9f2ce8a9e2020f3e00 | [
"MIT"
] | 8 | 2022-01-07T14:07:07.000Z | 2022-02-05T04:03:07.000Z | BITMART/routes/userRoutes.js | chandankeshri1812/IEEE-Megaproject | 081479294d90914625315f9f2ce8a9e2020f3e00 | [
"MIT"
] | 41 | 2022-01-08T08:42:08.000Z | 2022-02-28T01:49:15.000Z | BITMART/routes/userRoutes.js | chandankeshri1812/IEEE-Megaproject | 081479294d90914625315f9f2ce8a9e2020f3e00 | [
"MIT"
] | 50 | 2022-01-07T13:15:15.000Z | 2022-02-25T04:35:15.000Z | const express=require('express');
const app=express();
const passport=require('passport');
const router=express.Router();
const user=require('../controllers/userController');
const checkLogin=require('../middleware/checkLogin');
const checkUserAuth=require('../middleware/checkUserAuth');
const catchAsync=require('../mi... | 34.5 | 64 | 0.752013 |
b4ac58c2f75bcf7c30880f78f111d5788c04cba9 | 10,429 | js | JavaScript | src/js/AppHeader.js | renonick87/generic_hmi | 47e0ad42f05b27adff61befd864e79c2ab4b8cec | [
"MIT",
"BSD-3-Clause"
] | 8 | 2016-11-12T15:01:29.000Z | 2021-11-06T08:04:26.000Z | src/js/AppHeader.js | renonick87/generic_hmi | 47e0ad42f05b27adff61befd864e79c2ab4b8cec | [
"MIT",
"BSD-3-Clause"
] | 251 | 2016-08-17T14:11:45.000Z | 2022-03-30T21:49:12.000Z | src/js/AppHeader.js | renonick87/generic_hmi | 47e0ad42f05b27adff61befd864e79c2ab4b8cec | [
"MIT",
"BSD-3-Clause"
] | 29 | 2017-03-06T00:37:30.000Z | 2022-01-14T03:29:53.000Z | import React from 'react';
import { withRouter } from 'react-router-dom';
import Modal from 'react-modal'
import Alert from './Alert';
import SubtleAlert from './SubtleAlert';
import Slider from './Slider';
import PerformAudioPassThru from './PerformAudioPassThru';
import MenuIcon from './containers/MenuIcon';
import N... | 40.579767 | 189 | 0.558155 |
b4ad4736cc025b6ca9826fe925573cea6ad5e5cb | 2,276 | js | JavaScript | index.js | SparkPost/node-msys-pg | aded2b06b0d81396c9511bf6c6558544c79a0a97 | [
"Apache-2.0"
] | null | null | null | index.js | SparkPost/node-msys-pg | aded2b06b0d81396c9511bf6c6558544c79a0a97 | [
"Apache-2.0"
] | null | null | null | index.js | SparkPost/node-msys-pg | aded2b06b0d81396c9511bf6c6558544c79a0a97 | [
"Apache-2.0"
] | null | null | null | 'use strict';
const pg = require('pg');
const Promise = require('bluebird');
const wrapper = module.exports;
let pool;
/**
* Initialise pg connection pool. Must be called before any other method.
* Note: this is synchronous.
* @param {object} cfg - configuration parameters
*/
wrapper.setup = (cfg) => {
const ... | 26.465116 | 100 | 0.635325 |
b8ab7910fa9041ccd3949b76a3bce1f554340a26 | 3,835 | js | JavaScript | src/actions/user/Users.js | Joblyn/ronzlsdesk | d499871a9a9ad0edc9f5dea608fbfc64a4509f0b | [
"MIT"
] | null | null | null | src/actions/user/Users.js | Joblyn/ronzlsdesk | d499871a9a9ad0edc9f5dea608fbfc64a4509f0b | [
"MIT"
] | null | null | null | src/actions/user/Users.js | Joblyn/ronzlsdesk | d499871a9a9ad0edc9f5dea608fbfc64a4509f0b | [
"MIT"
] | null | null | null | import * as ActionType from '../Types';
import setAuthToken from '../../utils/setAuthToken';
import {
postData,
getDataWithToken,
postDataWithToken,
patchDataWithToken
} from '../Services';
const onRegisterUser = payload => {
return {
type: ActionType.USER_REGISTER_SUCCESS,
payload,
};
};
const o... | 20.508021 | 59 | 0.700913 |
b8ae0904daf91464228e8ae4476f32ff3f0f3a15 | 1,277 | js | JavaScript | example/src/App.js | CptDoraemon/parallax-container | 7a82e80c2993de2f8962bde6711e1909368ba88d | [
"MIT"
] | null | null | null | example/src/App.js | CptDoraemon/parallax-container | 7a82e80c2993de2f8962bde6711e1909368ba88d | [
"MIT"
] | null | null | null | example/src/App.js | CptDoraemon/parallax-container | 7a82e80c2993de2f8962bde6711e1909368ba88d | [
"MIT"
] | null | null | null | import * as React from 'react';
import ParallaxContainer from "parallax-container";
import './App.css';
function generateData() {
const imageUrls = [];
for (let i=1; i<=4; i++) {
imageUrls.push({
backgroundUrl: `https://xiaoxihome.s3.us-east-2.amazonaws.com/galleryphoto/canada/canada${i}.jpg`,
titl... | 22.403509 | 177 | 0.592013 |
b8ae0c3fd5ebcc51ff58eb7f7f2a2dd6a6c0440a | 3,146 | js | JavaScript | creatures/renderers/winged-renderer.js | PremjitAdhikary/Mesmerize | d64db226f2571681f04b14787293e15e29f118c9 | [
"MIT"
] | 3 | 2020-11-20T16:12:17.000Z | 2021-12-26T15:03:45.000Z | creatures/renderers/winged-renderer.js | PremjitAdhikary/Mesmerize | d64db226f2571681f04b14787293e15e29f118c9 | [
"MIT"
] | null | null | null | creatures/renderers/winged-renderer.js | PremjitAdhikary/Mesmerize | d64db226f2571681f04b14787293e15e29f118c9 | [
"MIT"
] | 1 | 2020-02-19T10:38:02.000Z | 2020-02-19T10:38:02.000Z | /**
* Winged Renderer renders a fly.
*
* Constructor:
* - len: The base length of the glider. The max width is always 30% of length. The segments
* taper towards the tail.
*
* Other Methods:
* - render(mover): renders the winger based on the mover passed. Direction alignment is same
* as the AxisRe... | 28.342342 | 97 | 0.647489 |
b8ae5c4f7534232d216fcd9f06d665587f87a721 | 737 | js | JavaScript | very-hard/prison-break/code.spec.js | jamoum/JavaScript_Challenges_Solutions | 457fdf8b5b044e7016e1607b24821cf645702971 | [
"MIT"
] | 12 | 2020-04-27T08:04:40.000Z | 2022-02-16T20:01:29.000Z | very-hard/prison-break/code.spec.js | jamoum/JavaScript_Challenges_Solutions | 457fdf8b5b044e7016e1607b24821cf645702971 | [
"MIT"
] | null | null | null | very-hard/prison-break/code.spec.js | jamoum/JavaScript_Challenges_Solutions | 457fdf8b5b044e7016e1607b24821cf645702971 | [
"MIT"
] | 18 | 2019-03-05T15:32:13.000Z | 2021-06-22T19:02:18.000Z | const freedPrisoners = require('./code');
describe('Tests', () => {
test('once first prisoner freed, all cells become locked', () => {
expect(freedPrisoners([1, 1, 1])).toEqual(1);
});
test('first cell locked, so cannot switch', () => {
expect(freedPrisoners([0, 0, 0])).toEqual(0);
});
te... | 32.043478 | 70 | 0.53867 |
b8b0c0ee82cba40a775d48cfea81ae5b85ecff99 | 7,434 | js | JavaScript | scripts/main.js | mjyeaney/QueueSimulator | e2277c808df7e1167478cffdbf2c1d95c8ca8fef | [
"MIT"
] | null | null | null | scripts/main.js | mjyeaney/QueueSimulator | e2277c808df7e1167478cffdbf2c1d95c8ca8fef | [
"MIT"
] | null | null | null | scripts/main.js | mjyeaney/QueueSimulator | e2277c808df7e1167478cffdbf2c1d95c8ca8fef | [
"MIT"
] | null | null | null | /* globals $, Queueing, Distributions */
//
// Main controller module for Qsim.
//
$(function(){
//
// Initialize chart DOM placeholders (initial)
//
var e1 = $('#arrivalsGraph'),
c1 = _createGraph(e1, 'line', 'Arrival Rate', []);
var e2 = $('#arrivalsHistogram'),
c2 = _create... | 33.790909 | 77 | 0.51251 |
b8b19b36cc182ae7e66f93b663cbeb98627ed3d4 | 1,246 | js | JavaScript | ajax/libs/html-inspector/0.3.0/html-inspector.convention.min.js | algolia/cdnjs | a0586b35ac4862680d2e090651acc8ccf44a5dda | [
"MIT"
] | 5 | 2015-02-20T16:11:30.000Z | 2017-05-15T11:50:44.000Z | ajax/libs/html-inspector/0.4.1/html-inspector.convention.min.js | algolia/cdnjs | a0586b35ac4862680d2e090651acc8ccf44a5dda | [
"MIT"
] | null | null | null | ajax/libs/html-inspector/0.4.1/html-inspector.convention.min.js | algolia/cdnjs | a0586b35ac4862680d2e090651acc8ccf44a5dda | [
"MIT"
] | 4 | 2015-07-14T16:16:05.000Z | 2021-03-10T08:15:54.000Z | !function(){function e(){return"string"==typeof n.methodology?t[n.methodology]:n.methodology}var t={suit:{modifier:/^([A-Z][a-zA-Z]*(?:\-[a-zA-Z]+)?)\-\-[a-zA-Z]+$/,element:/^([A-Z][a-zA-Z]*)\-[a-zA-Z]+$/},inuit:{modifier:/^((?:[a-z]+\-)*[a-z]+(?:__(?:[a-z]+\-)*[a-z]+)?)\-\-(?:[a-z]+\-)*[a-z]+$/,element:/^((?:[a-z]+\-)... | 1,246 | 1,246 | 0.585875 |
b8b2aaeba0df1e199e5062d2c968c52cf6bb70f1 | 30 | js | JavaScript | docs/client/legacy/client.fec54a0f.js | mhkeller/layercake-examples | 65832b25ed6353a1f37b480cd838ab6263edcce9 | [
"MIT"
] | null | null | null | docs/client/legacy/client.fec54a0f.js | mhkeller/layercake-examples | 65832b25ed6353a1f37b480cd838ab6263edcce9 | [
"MIT"
] | 2 | 2018-08-22T02:51:31.000Z | 2018-08-30T03:48:04.000Z | docs/client/legacy/client.fec54a0f.js | mhkeller/layercake-examples | 65832b25ed6353a1f37b480cd838ab6263edcce9 | [
"MIT"
] | null | null | null | import"./client.22a7638a.js";
| 15 | 29 | 0.733333 |
b8b2d289f18546762676a70221c17c9ae81322bb | 208 | js | JavaScript | test/helpers/config.js | NFhbar/rpc-client | 5694f677a5e95abff26b3ce5e03247987f2126a9 | [
"MIT"
] | null | null | null | test/helpers/config.js | NFhbar/rpc-client | 5694f677a5e95abff26b3ce5e03247987f2126a9 | [
"MIT"
] | null | null | null | test/helpers/config.js | NFhbar/rpc-client | 5694f677a5e95abff26b3ce5e03247987f2126a9 | [
"MIT"
] | null | null | null | export default [{
'host': '127.0.0.1',
'port': 18332,
'user': 'user',
'pass': 'pass',
'ssl': false
},{
'host': '127.0.0.2',
'port': 18333,
'user': 'use2',
'pass': 'pass2',
'ssl': false
}]
| 14.857143 | 22 | 0.480769 |
b8b30df11bce1887849f5c335aad1a684eb47b90 | 965 | js | JavaScript | src/lesson_13/components/bulb/bulb.js | coptup4ik/wa_homework_pavel_lebedev | 0f4e22f3df2c37bc7263f7c4764c84aa4c7ab7e7 | [
"MIT"
] | null | null | null | src/lesson_13/components/bulb/bulb.js | coptup4ik/wa_homework_pavel_lebedev | 0f4e22f3df2c37bc7263f7c4764c84aa4c7ab7e7 | [
"MIT"
] | null | null | null | src/lesson_13/components/bulb/bulb.js | coptup4ik/wa_homework_pavel_lebedev | 0f4e22f3df2c37bc7263f7c4764c84aa4c7ab7e7 | [
"MIT"
] | null | null | null | import "./bulb.scss";
export class Bulb {
constructor(targetElement) {
this.target = targetElement; //присваиваем контекст аргументу
// this.control = targetElement.querySelector('.bulb__control'); // находим кнопку внутри блока (благодаря контексту определяется именно та кнопка, что нужна)
... | 26.081081 | 166 | 0.610363 |
b8b374d2495f20f13b6bf9ca9cfb0d4a419c1239 | 1,178 | js | JavaScript | uber-app/app/routes/companies/view/account-aliases/add.js | Akirix/akirix-suite | ff4d4c73610058a789e37748512017b58c3c52c7 | [
"MIT"
] | null | null | null | uber-app/app/routes/companies/view/account-aliases/add.js | Akirix/akirix-suite | ff4d4c73610058a789e37748512017b58c3c52c7 | [
"MIT"
] | null | null | null | uber-app/app/routes/companies/view/account-aliases/add.js | Akirix/akirix-suite | ff4d4c73610058a789e37748512017b58c3c52c7 | [
"MIT"
] | null | null | null | import Ember from 'ember';
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
export default Ember.Route.extend( AuthenticatedRouteMixin, {
model: function( params ){
var company_id = this.modelFor( 'companies.view' ).id;
return Ember.RSVP.hash( {
accou... | 31 | 90 | 0.598472 |
b8b3986662f6279655d622f654097f951624f2f4 | 56 | js | JavaScript | lib/opts.js | boussarilatif/js-sdk | dcebde652443904368cd1436ea49895cdff04e20 | [
"MIT"
] | 5 | 2018-07-04T14:47:47.000Z | 2019-04-10T08:16:02.000Z | lib/opts.js | boussarilatif/js-sdk | dcebde652443904368cd1436ea49895cdff04e20 | [
"MIT"
] | 3 | 2018-09-18T19:02:37.000Z | 2019-05-31T14:31:29.000Z | lib/opts.js | boussarilatif/js-sdk | dcebde652443904368cd1436ea49895cdff04e20 | [
"MIT"
] | 3 | 2018-08-13T09:31:22.000Z | 2019-03-07T15:38:38.000Z | module.exports = {
url : "https://api.kkiapay.me"
} | 18.666667 | 35 | 0.589286 |
b8b5042c63a9cf90c35252646b65a2ad524e7721 | 511 | js | JavaScript | src/styles/titles.js | matthoffner/apolloskine | 0ee11b67991149fd00e4b024bfd2f719aba5f97a | [
"MIT"
] | 2 | 2021-02-16T21:29:22.000Z | 2021-02-16T21:29:25.000Z | src/styles/titles.js | matthoffner/apolloskine | 0ee11b67991149fd00e4b024bfd2f719aba5f97a | [
"MIT"
] | null | null | null | src/styles/titles.js | matthoffner/apolloskine | 0ee11b67991149fd00e4b024bfd2f719aba5f97a | [
"MIT"
] | null | null | null | import styled from 'styled-components';
import { grayBottomLine, grayLeftLine, transition } from './mixins';
export const Title = styled.h1`
font-size: 24px;
margin-bottom: 50px;
${grayBottomLine}
`;
export const SubTitle = styled.h2`
font-size: 24px;
font-weight: 400;
line-height: 120%;
margin-bottom: ... | 20.44 | 68 | 0.675147 |
b8b569ed3162bfad130e744707472a611d2339b8 | 14,433 | js | JavaScript | example/node_modules/@lugia/lugia-web/dist/rate/__test__/rate.test.js | xiaochong58/lugid-mega | 4285ddfc1b4bd8eb70dee04cf39b6fae8b95b2c9 | [
"Apache-2.0"
] | null | null | null | example/node_modules/@lugia/lugia-web/dist/rate/__test__/rate.test.js | xiaochong58/lugid-mega | 4285ddfc1b4bd8eb70dee04cf39b6fae8b95b2c9 | [
"Apache-2.0"
] | null | null | null | example/node_modules/@lugia/lugia-web/dist/rate/__test__/rate.test.js | xiaochong58/lugid-mega | 4285ddfc1b4bd8eb70dee04cf39b6fae8b95b2c9 | [
"Apache-2.0"
] | null | null | null | "use strict";var _regenerator=require("babel-runtime/regenerator"),_regenerator2=_interopRequireDefault(_regenerator),_react=require("react"),_react2=_interopRequireDefault(_react),_enzymeAdapterReact=require("enzyme-adapter-react-16"),_enzymeAdapterReact2=_interopRequireDefault(_enzymeAdapterReact),_rate=require("../r... | 14,433 | 14,433 | 0.743712 |
b8b56b49f4ade1dae467ac328759ed4352cc2a4b | 127 | js | JavaScript | gui/node_modules/core-js/stable/number/virtual/to-precision.js | AntoniosKalattas/Ping_rep | 7285f44b87bfbd37baa1524be1ac18521d18c54c | [
"BSL-1.0"
] | null | null | null | gui/node_modules/core-js/stable/number/virtual/to-precision.js | AntoniosKalattas/Ping_rep | 7285f44b87bfbd37baa1524be1ac18521d18c54c | [
"BSL-1.0"
] | 1 | 2022-03-25T19:20:50.000Z | 2022-03-25T19:20:50.000Z | gui/node_modules/core-js/stable/number/virtual/to-precision.js | AntoniosKalattas/Ping_rep | 7285f44b87bfbd37baa1524be1ac18521d18c54c | [
"BSL-1.0"
] | null | null | null | version https://git-lfs.github.com/spec/v1
oid sha256:6e4b0522bda02b560f657cd5b6f62282b15b5766a8a012689472dd7be63415b8
size 91
| 31.75 | 75 | 0.88189 |
b8b62f700992342086edd07336a89055587f2bf1 | 5,807 | js | JavaScript | src/router/index.js | zhangxu0413/vue-nodejs-blog | e54963077197e8a8b94605f741a694c1c15ac088 | [
"MIT"
] | null | null | null | src/router/index.js | zhangxu0413/vue-nodejs-blog | e54963077197e8a8b94605f741a694c1c15ac088 | [
"MIT"
] | null | null | null | src/router/index.js | zhangxu0413/vue-nodejs-blog | e54963077197e8a8b94605f741a694c1c15ac088 | [
"MIT"
] | null | null | null | import Vue from 'vue'
import Router from 'vue-router'
import Home from '../views/home'
import store from '../store'
// //前台页面
// import homePage from '../views/home/homePage'
// import tech from '../views/tech/tech'
// import music from '../views/music/music'
// import sense from '../views/sense/sense'
// import sortF... | 31.053476 | 93 | 0.456862 |
b8b6f4e2a10d3c4c9b16902bdabffddb2d8ab2e6 | 25 | js | JavaScript | ie/for-ie.js | flash1117/flash1117.github.io | ee46126848bee2a2304454a83544ed7fb26cb5c2 | [
"MIT"
] | 5 | 2019-06-13T06:03:40.000Z | 2020-09-23T01:44:41.000Z | ie/for-ie.js | DaeAkin/DaeAkin.github.io | 2109d9ff1016f00b42961c6eccb9d71808f4e95e | [
"MIT"
] | 4 | 2021-10-17T09:57:39.000Z | 2022-03-31T06:10:33.000Z | ie/for-ie.js | flash1117/flash1117.github.io | ee46126848bee2a2304454a83544ed7fb26cb5c2 | [
"MIT"
] | 3 | 2019-06-13T06:03:42.000Z | 2020-11-24T02:00:20.000Z | console.log("IEEEEEEE");
| 12.5 | 24 | 0.72 |
b8b75e18739350b75fc3e64ca6a003c2d582b51a | 333 | js | JavaScript | server/routes/urlshorten.js | tedyun/shortlinks-light | def6ce2fb4a04fe80f11b43fe968c5f9236a036f | [
"MIT"
] | null | null | null | server/routes/urlshorten.js | tedyun/shortlinks-light | def6ce2fb4a04fe80f11b43fe968c5f9236a036f | [
"MIT"
] | null | null | null | server/routes/urlshorten.js | tedyun/shortlinks-light | def6ce2fb4a04fe80f11b43fe968c5f9236a036f | [
"MIT"
] | null | null | null | const textdb = require('../data/textdb');
module.exports = app => {
app.get("/api/item/:code", async (req, res) => {
const urlCode = req.params.code;
const item = textdb[urlCode];
if (item) {
return res.redirect(item);
} else {
return res.send('Cannot find link: ' + urlCode)
}... | 25.615385 | 54 | 0.552553 |
b8b75fb43210c6317aaf7e9b6cb3f5e642eaf229 | 1,225 | js | JavaScript | tools/gwt-2.5.0/samples/Showcase/war/showcase/deferredjs/4DBE82A43C99F37793A09F4527EE1F30/17.cache.js | adityaponnada/paco | 9c8355b8bd0a98a8f20fdf81799b791e07e72e1d | [
"Apache-2.0"
] | 1 | 2021-04-21T19:59:06.000Z | 2021-04-21T19:59:06.000Z | tools/gwt-2.5.0/samples/Showcase/war/showcase/deferredjs/4DBE82A43C99F37793A09F4527EE1F30/17.cache.js | adityaponnada/paco | 9c8355b8bd0a98a8f20fdf81799b791e07e72e1d | [
"Apache-2.0"
] | null | null | null | tools/gwt-2.5.0/samples/Showcase/war/showcase/deferredjs/4DBE82A43C99F37793A09F4527EE1F30/17.cache.js | adityaponnada/paco | 9c8355b8bd0a98a8f20fdf81799b791e07e72e1d | [
"Apache-2.0"
] | null | null | null | function Uqb(a){this.a=a}
function Xqb(a){this.a=a}
function HUb(a,b){(a.a.Wf(0,1),a.a.i.rows[0].cells[1])[Owc]=b}
function Qqb(a){var b;b=a.i.rows.length;if(b>1){fUb(a,b-1);HUb(UH(a.j,100),b-1)}}
function Pqb(a){var b;b=a.i.rows.length;lUb(a,b,0,new tJb((y6(),n6)));lUb(a,b,1,new tJb(n6));HUb(UH(a.j,100),b+1)}
K1(744,1... | 204.166667 | 913 | 0.666939 |
b8b762806487b1e97fbcd64aae151a16b12ce4c5 | 371 | js | JavaScript | 13th/src/js/pnotify.js | maggy29/js-homeworks-again | eab8ab9d5e22f0da979d470172a6e3171ee9cc58 | [
"MIT"
] | null | null | null | 13th/src/js/pnotify.js | maggy29/js-homeworks-again | eab8ab9d5e22f0da979d470172a6e3171ee9cc58 | [
"MIT"
] | null | null | null | 13th/src/js/pnotify.js | maggy29/js-homeworks-again | eab8ab9d5e22f0da979d470172a6e3171ee9cc58 | [
"MIT"
] | null | null | null | import '@pnotify/core/dist/BrightTheme.css';
import '@pnotify/core/dist/Material.css';
import 'material-design-icons/iconfont/material-icons.css';
import { error, defaults } from '@pnotify/core/dist/PNotify.js';
export default function PNotify(err) {
defaults.width = '300px';
defaults.type = 'error';
defaults.ti... | 28.538462 | 64 | 0.719677 |
b8b7ba9ae6b3f17eefa2f24adb782bd1e153875b | 235 | js | JavaScript | src/styles/components/companies/EmptyListStyle.js | acropolium/dGarson | 652411af3ead7ec23f6c477f555b64661433ff71 | [
"MIT"
] | 1 | 2021-01-17T06:08:08.000Z | 2021-01-17T06:08:08.000Z | src/styles/components/companies/EmptyListStyle.js | acropolium/dGarson | 652411af3ead7ec23f6c477f555b64661433ff71 | [
"MIT"
] | null | null | null | src/styles/components/companies/EmptyListStyle.js | acropolium/dGarson | 652411af3ead7ec23f6c477f555b64661433ff71 | [
"MIT"
] | null | null | null | import { Platform, StyleSheet } from 'react-native';
import config from '../../../config';
export default StyleSheet.create({
view: {
justifyContent: 'center',
flexDirection: 'row',
padding: 20,
},
});
| 21.363636 | 52 | 0.591489 |
b8b8440a99c7d47e7f8340986dbdfbccdb06c48d | 328 | js | JavaScript | cli/briefs/reducers.js | jweatherby/es6-bootstrap | aec7b98c0af848f8a75f1b8bb3eb7f5802964b1d | [
"MIT"
] | null | null | null | cli/briefs/reducers.js | jweatherby/es6-bootstrap | aec7b98c0af848f8a75f1b8bb3eb7f5802964b1d | [
"MIT"
] | 2 | 2016-05-13T15:54:47.000Z | 2016-06-03T19:49:13.000Z | cli/briefs/reducers.js | jweatherby/es6-bootstrap | aec7b98c0af848f8a75f1b8bb3eb7f5802964b1d | [
"MIT"
] | null | null | null | export default (state=[], action) => {
switch(action.type) {
case 'ADD_BRIEF':
var briefs = [...state],
newBrief = action.brief;
newBrief.uid = briefs.length + 1;
briefs.push(newBrief);
return briefs;
default:
return state;
... | 25.230769 | 45 | 0.481707 |
b8b86ba933c19aa72467d2d34daa90a433525976 | 1,815 | js | JavaScript | client/app/src/services/ng.tools/alert/main/main.js | jimole775/remote-controller | e01834c192fbd4e5550f8a9a506a59ad75bdc958 | [
"MIT"
] | 3 | 2018-01-23T02:55:55.000Z | 2021-06-02T09:30:07.000Z | client/app/src/services/ng.tools/alert/main/main.js | jimole775/remote-controller | e01834c192fbd4e5550f8a9a506a59ad75bdc958 | [
"MIT"
] | 11 | 2020-06-18T14:54:29.000Z | 2021-08-31T16:37:16.000Z | client/app/src/services/ng.tools/alert/main/main.js | jimole775/remoteController | e01834c192fbd4e5550f8a9a506a59ad75bdc958 | [
"MIT"
] | null | null | null | /**
* Created by Andy on 2017/12/2.
*/
import tpl from "./main.jade";
import "./main.less";
import AlertInterface from "../interface/Alert.js";
export default function directive() {
return {
replace: true,
restrict: "E",
controller: Ctrl,
link: link,
template: tpl()
};
... | 27.089552 | 85 | 0.545455 |
b8b874e2511ed777e5dd1179f871209e245c2301 | 4,067 | js | JavaScript | src/views/Blog/components/BlogContent/BlogComments.js | victor-abz/kumbe-frontend | 023dcd5912a036a55a7ea1b084af53260b1f20ef | [
"MIT"
] | null | null | null | src/views/Blog/components/BlogContent/BlogComments.js | victor-abz/kumbe-frontend | 023dcd5912a036a55a7ea1b084af53260b1f20ef | [
"MIT"
] | 1 | 2020-10-14T11:07:31.000Z | 2020-10-14T11:07:31.000Z | src/views/Blog/components/BlogContent/BlogComments.js | victor-abz/kumbe-frontend | 023dcd5912a036a55a7ea1b084af53260b1f20ef | [
"MIT"
] | null | null | null | import React, { useEffect } from 'react';
import moment from 'moment';
import { Link as RouterLink } from 'react-router-dom';
import {
Avatar,
Card,
CardActions,
CardContent,
CardHeader,
Grid,
IconButton,
Link,
Typography
} from '@material-ui/core';
import { AccessTime, Favorite } from '@material-ui/i... | 26.933775 | 78 | 0.549053 |
b8b9401bd92afb96f38ab992ff88fe2d6a0bb26d | 1,379 | js | JavaScript | gatsby-config.js | plhnk/paul.hanaoka.co | 798f0d1c49a513675bb2688608f85e5c1d43a6b5 | [
"MIT"
] | 3 | 2018-11-08T14:47:52.000Z | 2021-02-03T03:56:31.000Z | gatsby-config.js | plhnk/paul.hanaoka.co | 798f0d1c49a513675bb2688608f85e5c1d43a6b5 | [
"MIT"
] | 6 | 2021-03-08T21:45:42.000Z | 2022-02-26T05:38:18.000Z | gatsby-config.js | plhnk/paul.hanaoka.co | 798f0d1c49a513675bb2688608f85e5c1d43a6b5 | [
"MIT"
] | 1 | 2022-01-28T11:49:59.000Z | 2022-01-28T11:49:59.000Z |
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
});
module.exports = {
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/content/posts/`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`... | 21.215385 | 51 | 0.505439 |
b8b9debf8e60411a9216ec40b4ef909c20a7b336 | 3,444 | js | JavaScript | src/views/Components/Sections/ContentHeader/ContentHeader.js | andipahlevy/covid | 055f8de048416a3eebe2fbf7e2fd74866a812e43 | [
"MIT"
] | null | null | null | src/views/Components/Sections/ContentHeader/ContentHeader.js | andipahlevy/covid | 055f8de048416a3eebe2fbf7e2fd74866a812e43 | [
"MIT"
] | null | null | null | src/views/Components/Sections/ContentHeader/ContentHeader.js | andipahlevy/covid | 055f8de048416a3eebe2fbf7e2fd74866a812e43 | [
"MIT"
] | null | null | null | import React, { Component } from 'react';
import { Badge, Button } from 'reactstrap';
class ContentHeader extends Component {
render() {
// const collapseType = this.props.collapseType
switch(this.props.collapseType) {
case 'collapseFT':
return (
<div>
<i className="fa fa-align-justify"></i><st... | 25.894737 | 87 | 0.525261 |
b8ba617fd51853afeb1964da8d6acc5de93020fd | 3,421 | js | JavaScript | src/app/controllers/PetController.js | Jacoappolinario/Adoptme | 5ab552548d96238c053cb7517eca18a8e92f5951 | [
"MIT"
] | null | null | null | src/app/controllers/PetController.js | Jacoappolinario/Adoptme | 5ab552548d96238c053cb7517eca18a8e92f5951 | [
"MIT"
] | null | null | null | src/app/controllers/PetController.js | Jacoappolinario/Adoptme | 5ab552548d96238c053cb7517eca18a8e92f5951 | [
"MIT"
] | null | null | null | const Category = require('../models/Category')
const Pet = require('../models/Pet')
const File = require('../models/File')
const { date } = require('../../lib/utils')
module.exports = {
async create(req, res) {
let results = await Category.all()
const categories = results.rows
return res.r... | 30.008772 | 90 | 0.536685 |
b8bb076bea1081f8a48ce4fc81971f1af75e0588 | 2,615 | js | JavaScript | assets/dashboard/assets/js/custom.js | illiyin/berguru | b3fcbd2263fcc3ced0cff063225a75845332d642 | [
"MIT"
] | null | null | null | assets/dashboard/assets/js/custom.js | illiyin/berguru | b3fcbd2263fcc3ced0cff063225a75845332d642 | [
"MIT"
] | null | null | null | assets/dashboard/assets/js/custom.js | illiyin/berguru | b3fcbd2263fcc3ced0cff063225a75845332d642 | [
"MIT"
] | null | null | null | $('#calendar').datepicker({
});
!function ($) {
$(document).on("click","ul.nav li.parent > a ", function(){
if($(this).hasClass('collapsed')){
$(this).find('em').toggleClass("fa-chevron-up");
$(".sidebar span.icon").find('em:first').addClass("fa-chevron-down");
}else{
$(this).find('em'... | 27.239583 | 129 | 0.604589 |
b8bf0c3f96ce23d3dfbd265e205975cf3051b82f | 294 | js | JavaScript | src/components/Loader.js | pacool84/epets | fd377a622ea815414d0ad9ca3005c3b94649ff26 | [
"MIT"
] | 1 | 2020-04-20T00:11:57.000Z | 2020-04-20T00:11:57.000Z | src/components/Loader.js | chestergalindo/epets | 70a5a283661dcea2ee4f0418d214795848cc03f7 | [
"MIT"
] | 8 | 2020-04-08T21:50:00.000Z | 2022-02-27T02:25:04.000Z | src/components/Loader.js | chestergalindo/epets | 70a5a283661dcea2ee4f0418d214795848cc03f7 | [
"MIT"
] | 6 | 2020-04-07T12:09:10.000Z | 2020-05-07T02:35:19.000Z | import React from 'react';
import '../assets/styles/components/Loader.css';
const Loader = () => (
<div className='Loader'>
<div className='Loader__heart'>
<div></div>
</div>
<span className='Loader__text'>
Cargando...
</span>
</div>
);
export default Loader;
| 18.375 | 48 | 0.608844 |
b8bf34a515addf990178dac942fddadb90bdd999 | 74 | js | JavaScript | controllers/productControllers.js | Asterdots/Talent-Hackathon-at-Home | cce7337a25080a7412327e7dcd9457edf49abcbb | [
"MIT"
] | 3 | 2020-04-09T03:02:11.000Z | 2020-04-11T21:00:34.000Z | controllers/productControllers.js | Asterdots/Talent-Hackathon-at-Home | cce7337a25080a7412327e7dcd9457edf49abcbb | [
"MIT"
] | null | null | null | controllers/productControllers.js | Asterdots/Talent-Hackathon-at-Home | cce7337a25080a7412327e7dcd9457edf49abcbb | [
"MIT"
] | null | null | null | exports.productsPanel = (req, res) => {
res.render('products-panel');
}; | 24.666667 | 39 | 0.648649 |
b8bfee03f009f30f5b8eeea2d4c97c35a0cb1c60 | 2,146 | js | JavaScript | server/reporter/index.js | rfprod/protractor-bot | ed601d6f3f72fcc396272acb8201936ca56892d6 | [
"MIT"
] | 1 | 2018-01-23T14:58:21.000Z | 2018-01-23T14:58:21.000Z | server/reporter/index.js | rfprod/protractor-bot | ed601d6f3f72fcc396272acb8201936ca56892d6 | [
"MIT"
] | 2 | 2019-11-17T16:43:46.000Z | 2020-03-22T12:54:39.000Z | server/reporter/index.js | rfprod/protractor-bot | ed601d6f3f72fcc396272acb8201936ca56892d6 | [
"MIT"
] | null | null | null | 'use strict';
module.exports = (cwd, spawn, exec, schedule, mailTransporter) => {
/*
* send report
*/
let mailOptions;
function sendEmailReport(recipientEmail, plainTextReport, htmlReport) {
// eslint-disable-line no-unused-vars
mailOptions = {
from: '"Protractor bot email reporter 👥" <' + p... | 33.015385 | 108 | 0.634203 |
b8c07728c3cac7ec8c9418b673065ecc2aa80933 | 791 | js | JavaScript | server/models/Log.js | SuperUncleCat/ServerMonitoring | 54a82793bc86e4ee743a60d852718b1f2da19706 | [
"MIT"
] | null | null | null | server/models/Log.js | SuperUncleCat/ServerMonitoring | 54a82793bc86e4ee743a60d852718b1f2da19706 | [
"MIT"
] | null | null | null | server/models/Log.js | SuperUncleCat/ServerMonitoring | 54a82793bc86e4ee743a60d852718b1f2da19706 | [
"MIT"
] | 1 | 2017-10-17T11:23:11.000Z | 2017-10-17T11:23:11.000Z | const mongoose = require('mongoose')
var logSchema = mongoose.Schema({
ip_address: {
type: String,
required: true
},
port: {
type: Number,
required: true
},
server_name: {
type: String,
required: true
},
jp_name: {
type... | 18.395349 | 37 | 0.470291 |
b8c15848b617e8816ae8905d07d867808ca661fc | 879 | js | JavaScript | app.js | GabrielxBelmont/jitsiAPI | 4f7ee7520cb19183ddfb7ddd718b0e4ca4b3792c | [
"MIT"
] | null | null | null | app.js | GabrielxBelmont/jitsiAPI | 4f7ee7520cb19183ddfb7ddd718b0e4ca4b3792c | [
"MIT"
] | null | null | null | app.js | GabrielxBelmont/jitsiAPI | 4f7ee7520cb19183ddfb7ddd718b0e4ca4b3792c | [
"MIT"
] | null | null | null | import 'styles/style.css'
const http = require('http');
const path = require('path');
const express = require('express');
const app = express()
const port = 3000
app.get('/', (req, res) => {
res.render('page');
})
app.get('/client', (req, res) => {
res.sendFile(__dirname + '/client.html');
})
app.listen(port, () =... | 22.538462 | 66 | 0.584755 |
b8c16f2d6bf5861eb302ad7ba7e486d47eed9496 | 179 | js | JavaScript | source/javascripts/app.js | qs-git/api-docs | cb28150cf5593f9b71f24d563df73cfc4df733a3 | [
"Apache-2.0"
] | null | null | null | source/javascripts/app.js | qs-git/api-docs | cb28150cf5593f9b71f24d563df73cfc4df733a3 | [
"Apache-2.0"
] | null | null | null | source/javascripts/app.js | qs-git/api-docs | cb28150cf5593f9b71f24d563df73cfc4df733a3 | [
"Apache-2.0"
] | null | null | null | // Include js for all pages
$(function () {
var $goBackLink = $('#go_back_link');
$goBackLink.on('click', function (e) {
e.preventDefault()
history.back();
})
})
| 14.916667 | 40 | 0.586592 |
b8c22f767dff826155366733bd805a787bdc74da | 8,711 | js | JavaScript | test/passport-mock/factories/dropbox.test.js | AlexeyKhristov/passport-mocked | 48943355bfdfaf303f65a24bd5a8728f3b91acdf | [
"MIT"
] | 1 | 2017-03-30T14:27:16.000Z | 2017-03-30T14:27:16.000Z | test/passport-mock/factories/dropbox.test.js | AlexeyKhristov/passport-mocked | 48943355bfdfaf303f65a24bd5a8728f3b91acdf | [
"MIT"
] | null | null | null | test/passport-mock/factories/dropbox.test.js | AlexeyKhristov/passport-mocked | 48943355bfdfaf303f65a24bd5a8728f3b91acdf | [
"MIT"
] | null | null | null | var factory = require('../../../lib/passport-mock/factories/dropbox');
var expect = require('chai').expect;
describe('profile for dropbox', function () {
describe('provider', function () {
it('returns the correct provider', function () {
expect(factory().provider).to.eql('dropbox');
})
it('does no... | 33.248092 | 123 | 0.572609 |
b8c2e8d89e0261ec8313b4e2beae79f4a3f7ac9e | 2,098 | js | JavaScript | src/components/Openness/Openness.js | fac-13/EDDIE | a8799b62f35493b6e35a8b35ca27a374e0234f24 | [
"MIT"
] | 1 | 2018-06-08T10:48:34.000Z | 2018-06-08T10:48:34.000Z | src/components/Openness/Openness.js | fac-13/SBSHS | a8799b62f35493b6e35a8b35ca27a374e0234f24 | [
"MIT"
] | 24 | 2018-05-30T10:42:24.000Z | 2018-06-17T19:12:59.000Z | src/components/Openness/Openness.js | fac-13/SBSHS | a8799b62f35493b6e35a8b35ca27a374e0234f24 | [
"MIT"
] | 1 | 2018-06-23T10:03:41.000Z | 2018-06-23T10:03:41.000Z | import React from 'react';
import styled from 'styled-components';
import { Psychological } from '../Assets/Assets';
import Header from '../Shared/Header/Header';
const Section = styled.section`
width: 100%;
height: 90%;
bottom: 0;
position: absolute;
overflow: auto;
`;
const Article = styled.article`
d... | 27.246753 | 80 | 0.64347 |
b8c331007902cfb6a4ce271e44ebbc17ba2bcd91 | 86 | js | JavaScript | .prettierrc.js | RinatValiullov/real-world-vue | fcb57bc3c2f35410f14ba24c4d1e6c4c6e057527 | [
"MIT"
] | null | null | null | .prettierrc.js | RinatValiullov/real-world-vue | fcb57bc3c2f35410f14ba24c4d1e6c4c6e057527 | [
"MIT"
] | null | null | null | .prettierrc.js | RinatValiullov/real-world-vue | fcb57bc3c2f35410f14ba24c4d1e6c4c6e057527 | [
"MIT"
] | null | null | null | module.exports = {
tabWidth: 2,
arrowParens: "always",
trailingComma: "none"
};
| 14.333333 | 24 | 0.651163 |
b8c54f58ff84dfa26e70f78daba425e4b05afe78 | 511 | js | JavaScript | state/Observer.js | jmthompson2015/filtered-react-table | 660da9c2022855d2ff5f7d874527e5d811039335 | [
"MIT"
] | null | null | null | state/Observer.js | jmthompson2015/filtered-react-table | 660da9c2022855d2ff5f7d874527e5d811039335 | [
"MIT"
] | 10 | 2020-07-16T11:49:17.000Z | 2021-03-17T17:01:42.000Z | state/Observer.js | jmthompson2015/filtered-react-table | 660da9c2022855d2ff5f7d874527e5d811039335 | [
"MIT"
] | null | null | null | // see https://github.com/reactjs/redux/issues/303#issuecomment-125184409
const Observer = {};
Observer.observeStore = (store, select, onChange) => {
let currentState;
const handleChange = () => {
const nextState = select(store.getState());
if (nextState !== currentState) {
currentState = nextState... | 19.653846 | 73 | 0.682975 |
b8c5d8ee3ece2242ee6c3ea84028b550e1ece726 | 5,521 | js | JavaScript | node_modules/@erebos/bzz/cjs/http.js | aquiladev/swarm-action | 857ff61b6ff50b05a0301b418afc62c80c2e6f71 | [
"MIT"
] | 2 | 2020-07-13T16:05:26.000Z | 2021-11-25T17:54:52.000Z | node_modules/@erebos/bzz/cjs/http.js | aquiladev/swarm-action | 857ff61b6ff50b05a0301b418afc62c80c2e6f71 | [
"MIT"
] | null | null | null | node_modules/@erebos/bzz/cjs/http.js | aquiladev/swarm-action | 857ff61b6ff50b05a0301b418afc62c80c2e6f71 | [
"MIT"
] | null | null | null | "use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
exports.__esModule = true;
exports.resOrError = resOrError;
exports.resJSON = resJSON;
exports.resText = resText;
exports.resArrayBuffer = resArrayBuffer;
exports.resSwarmHash = resSwarmHash;
exports.HTTPError = void 0... | 26.671498 | 110 | 0.624525 |
b8c63d6027bf7c7c1cf2dd61224ea8a37fdc4d01 | 1,669 | js | JavaScript | third_party/blink/web_tests/inspector-protocol/debugger/async-stacks-for-load-and-error-events.js | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 14,668 | 2015-01-01T01:57:10.000Z | 2022-03-31T23:33:32.000Z | third_party/blink/web_tests/inspector-protocol/debugger/async-stacks-for-load-and-error-events.js | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 113 | 2015-05-04T09:58:14.000Z | 2022-01-31T19:35:03.000Z | third_party/blink/web_tests/inspector-protocol/debugger/async-stacks-for-load-and-error-events.js | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 5,941 | 2015-01-02T11:32:21.000Z | 2022-03-31T16:35:46.000Z | (async function(testRunner) {
var {page, session, dp} = await testRunner.startBlank(
'Tests async stacks for load and error events');
let debuggerId = (await dp.Debugger.enable()).result.debuggerId;
let debuggers = new Map([[debuggerId, dp.Debugger]]);
dp.Debugger.setAsyncCallStackDepth({maxDepth: 32});
... | 30.345455 | 73 | 0.681246 |
b8c73348b3450852e74b51b3354d822d77759f1d | 1,345 | js | JavaScript | src/views/customer-manage/mixins/cert.js | zhulibo/credit-admin | 9eb4adf74d97f1fbc1197046878334d73e864820 | [
"MIT"
] | null | null | null | src/views/customer-manage/mixins/cert.js | zhulibo/credit-admin | 9eb4adf74d97f1fbc1197046878334d73e864820 | [
"MIT"
] | null | null | null | src/views/customer-manage/mixins/cert.js | zhulibo/credit-admin | 9eb4adf74d97f1fbc1197046878334d73e864820 | [
"MIT"
] | null | null | null | import { getCertCode, getCertProductDetail } from '@/api/customer'
export const cert = {
props: {
companyId: {},
companyName: {},
surveyInfoType1: {},
surveyInfoType2: {},
productInfo: {},
},
data() {
return {
loading: false,
certInfo: {},
codeUrl: '',
}
},
metho... | 21.349206 | 66 | 0.501115 |
b8c7d372f37d77f72f38e62e9d3bbd14990ddfdd | 2,018 | js | JavaScript | src/api/approval.js | chris-mask/cgy-web | 93a4d6272cfe480693c8f072ba0ad76776751893 | [
"MIT"
] | null | null | null | src/api/approval.js | chris-mask/cgy-web | 93a4d6272cfe480693c8f072ba0ad76776751893 | [
"MIT"
] | null | null | null | src/api/approval.js | chris-mask/cgy-web | 93a4d6272cfe480693c8f072ba0ad76776751893 | [
"MIT"
] | null | null | null | import request from '@/utils/request'
import requestLoading from '@/utils/requestLoading'
const pre = '/policy'
// 获取导入立项名单模板
export function getApprovalListTemplate(data) {
return request({
url: pre + '/api/policy/policyApprovalList/getApprovalListTemplate',
method: 'get',
params: data
})
}
// 上传模板导... | 21.698925 | 81 | 0.702676 |
b8c9218c16adccf18e37acb3429d2ea53693b348 | 13,469 | js | JavaScript | src/collections/RedisDBCollection.js | johnvmt/quote-cache | 22c92875b5a6234f2d8b7d96cc0e49fa8b612067 | [
"MIT"
] | null | null | null | src/collections/RedisDBCollection.js | johnvmt/quote-cache | 22c92875b5a6234f2d8b7d96cc0e49fa8b612067 | [
"MIT"
] | null | null | null | src/collections/RedisDBCollection.js | johnvmt/quote-cache | 22c92875b5a6234f2d8b7d96cc0e49fa8b612067 | [
"MIT"
] | null | null | null | import redis from "redis";
import bluebird from "bluebird";
import DBCollection from "./DBCollection";
import SubscriptionController from "./SubscriptionController";
bluebird.promisifyAll(redis.RedisClient.prototype);
bluebird.promisifyAll(redis.Multi.prototype);
class RedisDBCollection extends DBCollection {
co... | 32.691748 | 160 | 0.625139 |
b8c964a345a669b2fc1842b6f101855336d91b69 | 3,054 | js | JavaScript | apps/snoring-cat/public/scripts/shared.js | levisl176/levi.sl | 2da989fa1fcb8650b79619d7b3a51ccdb1df9553 | [
"MIT"
] | 1 | 2021-04-11T16:03:47.000Z | 2021-04-11T16:03:47.000Z | apps/snoring-cat/public/scripts/shared.js | levisl176/levi.sl | 2da989fa1fcb8650b79619d7b3a51ccdb1df9553 | [
"MIT"
] | 2 | 2021-11-02T23:33:12.000Z | 2021-11-02T23:33:16.000Z | apps/snoring-cat/public/scripts/shared.js | levisl176/levi.sl | 2da989fa1fcb8650b79619d7b3a51ccdb1df9553 | [
"MIT"
] | 1 | 2022-02-24T01:22:43.000Z | 2022-02-24T01:22:43.000Z | 'use strict';
/**
* @module shared
*/
(function () {
var CARD_OPEN_DURATION = 200;
var path = location.pathname;
var queryParams = location.search;
while (path.length > 0 && path[path.length - 1] === '/') {
path = path.substr(0, path.length - 1);
}
var mainContainer = null;
var cat... | 30.848485 | 81 | 0.60609 |
b8ca2dcf38ea6cf9d555a83b6b6acecff760319d | 952 | js | JavaScript | src/modules/Master/labels.js | Katala-Jonni/react-admin | d82e4ff49a568411ec0a1414a31bbba4a6d5c33e | [
"MIT"
] | null | null | null | src/modules/Master/labels.js | Katala-Jonni/react-admin | d82e4ff49a568411ec0a1414a31bbba4a6d5c33e | [
"MIT"
] | null | null | null | src/modules/Master/labels.js | Katala-Jonni/react-admin | d82e4ff49a568411ec0a1414a31bbba4a6d5c33e | [
"MIT"
] | null | null | null | export default [
{
"id": 1,
"handle": "парикмахер",
"title": "Парикмахер",
"color": "green darken-1"
},
{
"id": 2,
"handle": "брови",
"title": "Брови",
"color": "brown"
// "color": "blue-grey darken-1"
},
{
"id": 3,
"handle": "маникюр",
"title":... | 16.413793 | 37 | 0.403361 |
b8cd586c5d327f723a0a7cb06c50b4c426c2d8fe | 884 | js | JavaScript | src/components/Navigation.js | Dominick-Simone/React-Portfolio | 59830c001388b84b92adb9b3f5625d52e8b39538 | [
"MIT",
"Unlicense"
] | null | null | null | src/components/Navigation.js | Dominick-Simone/React-Portfolio | 59830c001388b84b92adb9b3f5625d52e8b39538 | [
"MIT",
"Unlicense"
] | null | null | null | src/components/Navigation.js | Dominick-Simone/React-Portfolio | 59830c001388b84b92adb9b3f5625d52e8b39538 | [
"MIT",
"Unlicense"
] | null | null | null | import React from 'react';
import "../styles/navigation.css"
import Resume from "../images/Resume.pdf"
const Navbar = ({ currentPage, handlePageChange }) => {
return (
<ul>
<a className="linkStyles" href="#Home"
onClick={() => handlePageChange('Home')}><li className={currentPage === "Home" ? "navi... | 44.2 | 155 | 0.664027 |
b8cefa47f88aea1c106700d4a66594be1c4939ea | 1,365 | js | JavaScript | src/store/list-resources/build-values/index.js | twuni/jarm | 651b6131bc317a0f950d0bbe518a4c5efd51ab6e | [
"MIT"
] | null | null | null | src/store/list-resources/build-values/index.js | twuni/jarm | 651b6131bc317a0f950d0bbe518a4c5efd51ab6e | [
"MIT"
] | 4 | 2020-09-05T17:22:50.000Z | 2021-09-01T14:00:06.000Z | src/store/list-resources/build-values/index.js | twuni/jarm | 651b6131bc317a0f950d0bbe518a4c5efd51ab6e | [
"MIT"
] | null | null | null | const buildValuesFromAttributes = (schema, attributes = {}, values = []) => {
for (const { attribute } of schema.columns) {
const { [attribute]: value } = attributes;
if (value) {
values.push(value);
}
}
return values;
};
const buildValuesFromId = (schema, id, values = []) => {
if (id) {
... | 23.534483 | 93 | 0.652747 |
b8cf05de912638876117904767caefa92b7a8a05 | 836 | js | JavaScript | car-server/application.js | COSER277/carMangerSystem | e06708b80e5b64d8b927a01a2a265658114e82eb | [
"MIT"
] | null | null | null | car-server/application.js | COSER277/carMangerSystem | e06708b80e5b64d8b927a01a2a265658114e82eb | [
"MIT"
] | null | null | null | car-server/application.js | COSER277/carMangerSystem | e06708b80e5b64d8b927a01a2a265658114e82eb | [
"MIT"
] | null | null | null | const express = require("express")
const cors = require('cors')
const bodyParser = require("body-parser")
const app = express()
const APPCONFIG = require("./config/app.config")
//===================app设置区========================//
app.use(express.json())
app.use(express.urlencoded({
extended: true
}))
app.use(bod... | 23.222222 | 86 | 0.588517 |
b8cfe259d14b42c6c5d264da0827a9ed44f01f6b | 2,136 | js | JavaScript | app/controllers/cancellation.controller.js | shamil707/TennisBookingApplication | a14fa2e1fbe293f3385d93add10b796491259ec6 | [
"MIT"
] | null | null | null | app/controllers/cancellation.controller.js | shamil707/TennisBookingApplication | a14fa2e1fbe293f3385d93add10b796491259ec6 | [
"MIT"
] | null | null | null | app/controllers/cancellation.controller.js | shamil707/TennisBookingApplication | a14fa2e1fbe293f3385d93add10b796491259ec6 | [
"MIT"
] | null | null | null | myApp.controller('cancellationCtrl', ['$scope','$timeout',function($scope,$timeout) {
$scope.userDetails = JSON.parse(localStorage.getItem("userDetails"));
$scope.emailID = $scope.userDetails.username
function loadData(){
$scope.showLoader = true;
if(localStorage.getItem(... | 23.217391 | 112 | 0.485019 |
b8d0d3a18ed58ab0948423714ecc3a378cdbd182 | 65 | js | JavaScript | node_modules/videogular-dash/index.js | shivansal/Trill-Play | 5727fad5deac92553acb7477b2b827d1af7391b2 | [
"MIT"
] | null | null | null | node_modules/videogular-dash/index.js | shivansal/Trill-Play | 5727fad5deac92553acb7477b2b827d1af7391b2 | [
"MIT"
] | null | null | null | node_modules/videogular-dash/index.js | shivansal/Trill-Play | 5727fad5deac92553acb7477b2b827d1af7391b2 | [
"MIT"
] | null | null | null | require('./vg-dash');
module.exports = 'com.2fdevs.videogular';
| 16.25 | 41 | 0.692308 |
b8d25e1e688b08d95debde9888c12b35d2be664f | 2,013 | js | JavaScript | dcloud/src/pages/ui_method/bui.array.js | imouou/BUI-Package | a184a7f89cc4368280ec91cef1cd2140dcda112a | [
"MIT"
] | 7 | 2019-04-16T11:07:46.000Z | 2020-08-14T05:45:50.000Z | src/pages/ui_method/bui.array.js | imouou/BUI-Demo | d395bf26a452c00d0d19d2e67c76435e3393488e | [
"MIT"
] | null | null | null | src/pages/ui_method/bui.array.js | imouou/BUI-Demo | d395bf26a452c00d0d19d2e67c76435e3393488e | [
"MIT"
] | 5 | 2018-12-18T04:46:06.000Z | 2021-03-04T02:52:07.000Z | loader.define(function(require, exports, module) {
var data = [1, 2, 3, 4, 5, 4, 3, 2, 1];
var $value = $("#value");
$("#inArray").click(function(argument) {
var index = bui.array.index(3, data);
$value.val("返回 3 在第" + index + "个索引");
})
$("#compareArray").click(function(argumen... | 31.952381 | 53 | 0.504719 |
b8d3000afc8aea29df79c6bef8113e55ff10a09b | 511 | js | JavaScript | doxygen_documentation/html/search/functions_5.js | tahaShaheen/tdf01-245_remote_sharable | e8282afb323688a52cb88406a49a8136c4bf7401 | [
"MIT"
] | null | null | null | doxygen_documentation/html/search/functions_5.js | tahaShaheen/tdf01-245_remote_sharable | e8282afb323688a52cb88406a49a8136c4bf7401 | [
"MIT"
] | null | null | null | doxygen_documentation/html/search/functions_5.js | tahaShaheen/tdf01-245_remote_sharable | e8282afb323688a52cb88406a49a8136c4bf7401 | [
"MIT"
] | null | null | null | var searchData=
[
['locomotionfragment_124',['LocomotionFragment',['../d2/d8b/classcom_1_1example_1_1choturemote_1_1ui_1_1main_1_1_locomotion_fragment.html#ae2c594fad8dd5f733b87dbd5d9726daa',1,'com::example::choturemote::ui::main::LocomotionFragment']]],
['locomotionwordadapter_125',['LocomotionWordAdapter',['../d7... | 85.166667 | 250 | 0.833659 |
b8d39e08b1de1bdbe1bbdb2018ae2aed5e3d4771 | 1,552 | js | JavaScript | icons/dist/pax/WalkOn.js | dfds-frontend/react-components | 51e62edce56d16a63f5bf936b4c044f145c9f015 | [
"Unlicense"
] | 2 | 2019-01-07T11:13:08.000Z | 2019-01-28T12:57:29.000Z | icons/dist/pax/WalkOn.js | dfds-frontend/react-components | 51e62edce56d16a63f5bf936b4c044f145c9f015 | [
"Unlicense"
] | null | null | null | icons/dist/pax/WalkOn.js | dfds-frontend/react-components | 51e62edce56d16a63f5bf936b4c044f145c9f015 | [
"Unlicense"
] | null | null | null | function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
/... | 97 | 840 | 0.670103 |
b8d5192b8212ff2047951a19312d87d039c194cf | 2,327 | js | JavaScript | preview.js | salmanff/com.salmanff.orbit | cf95d264f2c9fc353ac900cbede28b7bccef1aa7 | [
"MIT"
] | null | null | null | preview.js | salmanff/com.salmanff.orbit | cf95d264f2c9fc353ac900cbede28b7bccef1aa7 | [
"MIT"
] | null | null | null | preview.js | salmanff/com.salmanff.orbit | cf95d264f2c9fc353ac900cbede28b7bccef1aa7 | [
"MIT"
] | null | null | null |
// com.salmanff.orbit preview.js
/* global freezr, freepr, freezrMeta, Request, fetch, orbitOnLoad */
freezr.initPageScripts = function () {
const params = new URLSearchParams(document.location.search.substring(1))
const name = params.get('page')
let pageDetails = null
freepr.ceps.getquery({ collection: 'p... | 33.242857 | 121 | 0.630425 |
b8d5a4fa370145e027737bf220f5c05bca68373c | 130 | js | JavaScript | src/providers/index.js | amoreauCoveo/cli | 232171e1f6a4b63a074836ffe80622c090827a6c | [
"Apache-2.0"
] | null | null | null | src/providers/index.js | amoreauCoveo/cli | 232171e1f6a4b63a074836ffe80622c090827a6c | [
"Apache-2.0"
] | 1 | 2021-06-03T18:09:03.000Z | 2021-06-03T18:09:03.000Z | src/providers/index.js | amoreauCoveo/cli | 232171e1f6a4b63a074836ffe80622c090827a6c | [
"Apache-2.0"
] | 2 | 2021-01-30T19:13:56.000Z | 2021-06-03T17:08:35.000Z | import FileProvider from './FileProvider';
import ApiProvider from './ApiProvider';
export {
FileProvider,
ApiProvider,
} | 18.571429 | 42 | 0.730769 |
b8d61b9fcaad707dea1de27bb6cec4e0c2ca29e4 | 131,553 | js | JavaScript | main.f4159d4eed753a04264c.bundle.js | WARJY/Chooks-doc | 50a7661f78968b55f5130eac1e738366fcaefaa7 | [
"Apache-2.0"
] | null | null | null | main.f4159d4eed753a04264c.bundle.js | WARJY/Chooks-doc | 50a7661f78968b55f5130eac1e738366fcaefaa7 | [
"Apache-2.0"
] | null | null | null | main.f4159d4eed753a04264c.bundle.js | WARJY/Chooks-doc | 50a7661f78968b55f5130eac1e738366fcaefaa7 | [
"Apache-2.0"
] | null | null | null | (window.webpackJsonp=window.webpackJsonp||[]).push([[0],{144:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_exports__.a="### useCount\r\n\r\n> 为【计数】提供增减,倒计时等函数\r\n\r\n#### Type\r\n```ts\r\nfunction useCount(): {\r\n count: Ref<number>\r\n min: Ref<number>\r\n max: Ref<number>\r... | 65,776.5 | 131,492 | 0.655371 |
b8d6d27a395965f8cdeb5056ff5b3d96b32f4f2a | 2,567 | js | JavaScript | src/Connection/index.js | trantuan94/adonis-adodb | aaea292b683dc8ea4bb488ec84bb2a9a0c659914 | [
"MIT"
] | 2 | 2018-12-23T14:07:17.000Z | 2020-05-19T07:52:59.000Z | src/Connection/index.js | trantuan94/adonis-adodb | aaea292b683dc8ea4bb488ec84bb2a9a0c659914 | [
"MIT"
] | null | null | null | src/Connection/index.js | trantuan94/adonis-adodb | aaea292b683dc8ea4bb488ec84bb2a9a0c659914 | [
"MIT"
] | null | null | null | 'use strict'
const ADODB = require('node-adodb')
const fs = require('fs-extra')
class ADODBConnection {
async createConnection (dataSourcePath, passwd = null) {
try {
let connString = await this._genConnectionString(dataSourcePath, passwd)
if (connString) {
let connection = ADODB.open(connStr... | 33.337662 | 110 | 0.624075 |
b8d7d7c9c3e04fabb77687ae77b0c4f02ca57ceb | 168 | js | JavaScript | src/utilities/config/keys.js | bavarianrhino/living-lanier | 14115ac6474b0d5470867748223d039260dd5b98 | [
"MIT"
] | null | null | null | src/utilities/config/keys.js | bavarianrhino/living-lanier | 14115ac6474b0d5470867748223d039260dd5b98 | [
"MIT"
] | 3 | 2021-03-10T09:34:30.000Z | 2022-02-18T21:20:53.000Z | src/utilities/config/keys.js | bavarianrhino/living-lanier | 14115ac6474b0d5470867748223d039260dd5b98 | [
"MIT"
] | null | null | null | // Logic to use prod or dev keys
if (process.env.NODE_ENV === 'production') {
module.exports = require('./prod');
} else {
module.exports = require('./dev');
}
| 24 | 44 | 0.619048 |
b8d830b9cb7423dd3d0f0336dafe9e7be80d8fe6 | 3,723 | js | JavaScript | src/components/Notes.js | stuartkeith/micthing | ca7713402a7749aa7ea95257929760a9f42e87f9 | [
"MIT"
] | null | null | null | src/components/Notes.js | stuartkeith/micthing | ca7713402a7749aa7ea95257929760a9f42e87f9 | [
"MIT"
] | null | null | null | src/components/Notes.js | stuartkeith/micthing | ca7713402a7749aa7ea95257929760a9f42e87f9 | [
"MIT"
] | 1 | 2020-02-26T22:06:37.000Z | 2020-02-26T22:06:37.000Z | import React from 'react';
import { connect } from 'react-redux';
import { layerSetNote, playbackListenerAdd, playbackListenerRemove } from '../actions';
import { NOTE_VALUE_OFF, NOTE_VALUE_ON, NOTE_VALUE_ACCENT } from '../constants';
function getOpacity(noteValue) {
switch (noteValue) {
case NOTE_VALUE_OFF:
... | 24.019355 | 98 | 0.648402 |
b8d93e874aaccae40a9665836f6fae8cfa8ca39a | 1,238 | js | JavaScript | examples/get_invoices.js | Amiltone-SI/seeuletter-node | 08ae9ab2f14639d6decd5fba3a05e63ed5da324c | [
"MIT"
] | null | null | null | examples/get_invoices.js | Amiltone-SI/seeuletter-node | 08ae9ab2f14639d6decd5fba3a05e63ed5da324c | [
"MIT"
] | null | null | null | examples/get_invoices.js | Amiltone-SI/seeuletter-node | 08ae9ab2f14639d6decd5fba3a05e63ed5da324c | [
"MIT"
] | null | null | null | 'use strict'
/*
* List an array of company invoices, depending on example options
* After, retrieve a single invoice with _id
* Use your MySendingBox Account API Key live or test
*/
var seeuletterFactory = require('../lib/index.js')
var Seeuletter = new seeuletterFactory('API_KEY_HERE')
// Getting the invoice li... | 33.459459 | 86 | 0.661551 |
b8d984f192615b4e3cd808fb09958eb78416a5cf | 955 | js | JavaScript | js/client.js | BorderKontrol/nodeVoteShirt | d86efec3023598a6880980b5df709459b9b1c568 | [
"MIT"
] | 1 | 2020-06-03T21:06:10.000Z | 2020-06-03T21:06:10.000Z | js/client.js | BorderKontrol/nodeVoteShirt | d86efec3023598a6880980b5df709459b9b1c568 | [
"MIT"
] | null | null | null | js/client.js | BorderKontrol/nodeVoteShirt | d86efec3023598a6880980b5df709459b9b1c568 | [
"MIT"
] | null | null | null | document.getElementById("authcode").value = window.location.pathname.slice(1);
var modalimg = document.getElementById("modalimg");
var modal = document.getElementById("modal");
var items = document.getElementsByClassName("items");
var select = document.getElementById("select");
var submitbtn = document.getElementById(... | 32.931034 | 106 | 0.705759 |
b8db18777a2fb93c6518846029367f8b11b57f81 | 737 | js | JavaScript | packages/react-sharedb-util/lib/index.js | ablaev-rs/startupjs | f2402668cf43d044b5151a3245f1aa2752749a1e | [
"MIT"
] | 90 | 2020-03-31T11:21:32.000Z | 2022-03-10T18:50:38.000Z | packages/react-sharedb-util/lib/index.js | ablaev-rs/startupjs | f2402668cf43d044b5151a3245f1aa2752749a1e | [
"MIT"
] | 106 | 2020-04-29T22:28:02.000Z | 2022-03-23T18:14:43.000Z | packages/react-sharedb-util/lib/index.js | ablaev-rs/startupjs | f2402668cf43d044b5151a3245f1aa2752749a1e | [
"MIT"
] | 64 | 2020-03-23T15:24:55.000Z | 2022-03-28T11:48:33.000Z | import dummyPreventTreeShakingGlobalInit from './globalInit'
// TODO: Think how to prevent or error-out when applying the patch twice
// (for example when there are 2 instances of react-sharedb by mistake)
import dummyPreventTreeShakingPatchRacer from './patchRacer'
import batching from '../batching'
const batch... | 33.5 | 77 | 0.777476 |
b8dbdbc35126b3558ea8bc84b2f7909d3417ae99 | 2,898 | js | JavaScript | forum.codetigers.org/applications/vanilla/js/tagging.js | sagnikmitra/codetigers | e25da90d8e8feba9fb4d043d1277f72e18807c21 | [
"MIT"
] | null | null | null | forum.codetigers.org/applications/vanilla/js/tagging.js | sagnikmitra/codetigers | e25da90d8e8feba9fb4d043d1277f72e18807c21 | [
"MIT"
] | null | null | null | forum.codetigers.org/applications/vanilla/js/tagging.js | sagnikmitra/codetigers | e25da90d8e8feba9fb4d043d1277f72e18807c21 | [
"MIT"
] | null | null | null | var discussionTagging = {
start: function($element) {
var $button = $element.find('form :submit');
if ($button) {
var $form = $element.find('form');
var $tagsInput = $element.find("#Form_Tags");
$form.bind('BeforeDiscussionSubmit', function (e, $form, $button) {
... | 35.341463 | 87 | 0.454451 |
b8dc63c30e7a71c19a8175d310ac097e2b49d34e | 985 | js | JavaScript | src/main/webapp/scripts/components/entities/multiple-choice-quiz/multiple-choice-quiz-question.service.js | BulkSecurityGeneratorProject/dictionary | c63efa4f96fba9e01e8b25ed3557c54c57609eb7 | [
"MIT"
] | null | null | null | src/main/webapp/scripts/components/entities/multiple-choice-quiz/multiple-choice-quiz-question.service.js | BulkSecurityGeneratorProject/dictionary | c63efa4f96fba9e01e8b25ed3557c54c57609eb7 | [
"MIT"
] | null | null | null | src/main/webapp/scripts/components/entities/multiple-choice-quiz/multiple-choice-quiz-question.service.js | BulkSecurityGeneratorProject/dictionary | c63efa4f96fba9e01e8b25ed3557c54c57609eb7 | [
"MIT"
] | 1 | 2020-09-18T07:49:36.000Z | 2020-09-18T07:49:36.000Z | // 'use strict';
angular.module('dictionaryApp')
.service('MultipleChoiceQuizQuestionService', function ($resource) {
// TODO revisit this
var words = [];
var quizResultId;
function setWords(newWords) {
words = newWords;
}
function getWords() {
r... | 22.386364 | 72 | 0.559391 |
b8dd784a5f6ee5e0f76f127f7f202f6992e2429d | 8,267 | js | JavaScript | docs/.vuepress/dist/assets/js/164.25ad724b.js | JStatnekov/website | 4987eb45f760a7ed50082b8787452bd81356fc0e | [
"Apache-2.0"
] | 12 | 2019-02-11T08:10:00.000Z | 2021-12-21T00:59:30.000Z | docs/.vuepress/dist/assets/js/164.25ad724b.js | JStatnekov/website | 4987eb45f760a7ed50082b8787452bd81356fc0e | [
"Apache-2.0"
] | 15 | 2019-05-07T13:54:30.000Z | 2022-01-27T22:44:53.000Z | docs/.vuepress/dist/assets/js/164.25ad724b.js | JStatnekov/website | 4987eb45f760a7ed50082b8787452bd81356fc0e | [
"Apache-2.0"
] | 20 | 2019-04-27T07:49:43.000Z | 2022-01-31T10:01:26.000Z | (window.webpackJsonp=window.webpackJsonp||[]).push([[164],{536:function(t,s,a){"use strict";a.r(s);var e=a(42),r=Object(e.a)({},(function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("ContentSlotsDistributor",{attrs:{"slot-key":t.$parent.slotKey}},[a("h1",{attrs:{id:"list-hpp"}},[a("a",{staticClass:"header-... | 8,267 | 8,267 | 0.57663 |
b8dd86de3261628f72fd014ebb03c0217ddd0337 | 3,091 | js | JavaScript | processing/sendFantomSwapTransactions.js | larrycameron80/BEPAsset | 6ec6aac7e3d6427dcca505e81bd3ce03aee72480 | [
"MIT"
] | null | null | null | processing/sendFantomSwapTransactions.js | larrycameron80/BEPAsset | 6ec6aac7e3d6427dcca505e81bd3ce03aee72480 | [
"MIT"
] | null | null | null | processing/sendFantomSwapTransactions.js | larrycameron80/BEPAsset | 6ec6aac7e3d6427dcca505e81bd3ce03aee72480 | [
"MIT"
] | null | null | null | /*
PROCESS TRANSACTIONS:
1. Get all swap transactions where a deposit transaction hash is defined and a transfer deposit hash is not defined from the DB.
2. Issue the swap commmand via BNB helper
3. Mark transfers successful and update the transfer deposit hash in the DB
*/
const db = require('./helpers/db.j... | 25.545455 | 177 | 0.634099 |
b8de4e41a3bf4236d030dafc5523a57c8e75c6c7 | 470 | js | JavaScript | lib/createFiles/imports/startup/client/routes_file.js | lhz516/meteor-cook | 23b3bb28ba457d3c3c20bafc6b85c0c468bc6efa | [
"MIT"
] | 1 | 2016-08-13T03:08:49.000Z | 2016-08-13T03:08:49.000Z | lib/createFiles/imports/startup/client/routes_file.js | lhz516/meteor-cook | 23b3bb28ba457d3c3c20bafc6b85c0c468bc6efa | [
"MIT"
] | 1 | 2016-08-24T08:35:32.000Z | 2016-08-24T16:31:44.000Z | lib/createFiles/imports/startup/client/routes_file.js | lhz516/meteor-cook | 23b3bb28ba457d3c3c20bafc6b85c0c468bc6efa | [
"MIT"
] | null | null | null | import React from 'react';
import { Router, Route, IndexRoute, Redirect, browserHistory } from 'react-router';
import { Provider } from 'react-redux';
import { syncHistoryWithStore } from 'react-router-redux';
import store from './store';
{importsString}
const history = syncHistoryWithStore(browserHistory, store);
c... | 24.736842 | 83 | 0.714894 |
b8de85eacbc0503555b659cde2b74f41b5e7fed9 | 1,674 | js | JavaScript | scripts/unlock-mongo.js | PhantomXCool/backup-mongo-cmr | 30b3c732a9739191e97ee8204de155354d245cbf | [
"MIT"
] | 1 | 2017-04-17T15:33:39.000Z | 2017-04-17T15:33:39.000Z | scripts/unlock-mongo.js | PhantomXCool/backup-mongo-cmr | 30b3c732a9739191e97ee8204de155354d245cbf | [
"MIT"
] | null | null | null | scripts/unlock-mongo.js | PhantomXCool/backup-mongo-cmr | 30b3c732a9739191e97ee8204de155354d245cbf | [
"MIT"
] | null | null | null | /*global db, print, tojson*/
var isLocked=function() {
var lockCheck = db.currentOp();
if ( lockCheck.hasOwnProperty('fsyncLock') && lockCheck.fsyncLock) return true;
else return false;
};
var lockCheck = db.currentOp();
if (!lockCheck.hasOwnProperty('fsyncLock') || !lockCheck.fsyncLock) {
throw 'Aborting u... | 31.584906 | 111 | 0.662485 |
b8df1b8d6cd3febdc20568bc7f7ebd2c0b6d95ac | 329 | js | JavaScript | selection-sort.test.js | kunal-mandalia/algorithms | e90f7edd4a664a9310080b9cd2eb861ee8192348 | [
"MIT"
] | null | null | null | selection-sort.test.js | kunal-mandalia/algorithms | e90f7edd4a664a9310080b9cd2eb861ee8192348 | [
"MIT"
] | 1 | 2021-05-09T14:47:49.000Z | 2021-05-09T14:47:49.000Z | selection-sort.test.js | kunal-mandalia/algorithms | e90f7edd4a664a9310080b9cd2eb861ee8192348 | [
"MIT"
] | null | null | null | const selectionSort = require("./selection-sort.js")
describe("selection-sort", () => {
it("should sort an unsorted array of numbers ascendingly", () => {
// assign
const inputArray = [6,3,2,5,4,1]
// act
const result = selectionSort(inputArray)
// assert
expect(result).toEqual([1,2,3,4,5,6])... | 25.307692 | 68 | 0.617021 |
b8df57686f98ddacf6ee2e49abc52ab776b07db3 | 3,141 | js | JavaScript | client/RMNCAH_client/src/components/reports/ReportsSummary.js | JohnMuritu/RMNCAH | 7e668d71a4ef6b841891d4cb5ef12c98dc53731a | [
"MIT"
] | null | null | null | client/RMNCAH_client/src/components/reports/ReportsSummary.js | JohnMuritu/RMNCAH | 7e668d71a4ef6b841891d4cb5ef12c98dc53731a | [
"MIT"
] | null | null | null | client/RMNCAH_client/src/components/reports/ReportsSummary.js | JohnMuritu/RMNCAH | 7e668d71a4ef6b841891d4cb5ef12c98dc53731a | [
"MIT"
] | null | null | null | import React, { useEffect, useState } from 'react';
import { AgGridColumn, AgGridReact } from 'ag-grid-react';
import axios from 'axios';
import 'ag-grid-community/dist/styles/ag-grid.css';
import 'ag-grid-community/dist/styles/ag-theme-alpine.css';
// import 'ag-grid-community/dist/styles/ag-theme-alpine-dark.css';
... | 26.394958 | 76 | 0.554919 |
b8e0e32639478cea07c7116110200b27d46b6ea8 | 297 | js | JavaScript | js-stubs/CursorDeviceLayer.js | typewig/bitwig-api-proxy | ed9535bd5be02f11486781db7c154104c1b4e341 | [
"BSD-3-Clause"
] | 1 | 2016-12-16T22:33:21.000Z | 2016-12-16T22:33:21.000Z | js-stubs/CursorDeviceLayer.js | typewig/bitwig-api-proxy | ed9535bd5be02f11486781db7c154104c1b4e341 | [
"BSD-3-Clause"
] | null | null | null | js-stubs/CursorDeviceLayer.js | typewig/bitwig-api-proxy | ed9535bd5be02f11486781db7c154104c1b4e341 | [
"BSD-3-Clause"
] | null | null | null | /* API Version - 1.3.13 */
/**
* Instances of this interface represent the cursor item in device layer selections.
*
* @since Bitwig Studio 1.1
*/
function CursorDeviceLayer() {}
CursorDeviceLayer.prototype = new CursorChannel();
CursorDeviceLayer.prototype.constructor = CursorDeviceLayer;
| 24.75 | 84 | 0.750842 |
b8e24a9420d09170e2bcdd1c8e65005e86b31e96 | 409 | js | JavaScript | client/src/Container/Mems/actions.js | ttran835/clr | 904430dbc864df3a6b8c1c8b6c126da077a15bb1 | [
"MIT"
] | null | null | null | client/src/Container/Mems/actions.js | ttran835/clr | 904430dbc864df3a6b8c1c8b6c126da077a15bb1 | [
"MIT"
] | 2 | 2021-03-10T14:28:12.000Z | 2022-02-27T02:57:09.000Z | client/src/Container/Mems/actions.js | ttran835/clr | 904430dbc864df3a6b8c1c8b6c126da077a15bb1 | [
"MIT"
] | null | null | null | const actions = {
showCardDetails: (setState, prevState, cardId) => {
const { memories } = prevState;
const prevCard = memories.slice(cardId, cardId + 1)[0];
prevCard.showDetails = !prevCard.showDetails;
memories.splice(cardId, prevCard);
setState({
memories,
// memories[cardId].showCa... | 27.266667 | 79 | 0.665037 |
b8e29a4d1ecff7d2cf68605f9f0d5064a9da35e0 | 1,216 | js | JavaScript | index.js | hwclass/telegram-said-what-bot | c6adef386b23ddc4a057548497ffbd112575e0c9 | [
"MIT"
] | 9 | 2016-02-03T09:30:45.000Z | 2018-08-26T08:54:37.000Z | index.js | hwclass/telegram-said-what-bot | c6adef386b23ddc4a057548497ffbd112575e0c9 | [
"MIT"
] | null | null | null | index.js | hwclass/telegram-said-what-bot | c6adef386b23ddc4a057548497ffbd112575e0c9 | [
"MIT"
] | null | null | null | /*!
* SaidWhat. A Telegram Bot to archive quotes from legendary moments
*
* Copyright (c) 2016 Barış Güler
* http://hwclass.in
*
* Licensed under MIT
* http://www.opensource.org/licenses/mit-license.php
*
*
* Launch : January 2016
* Version : 1.0.0
* Released: January 23rd, 2016
*/
var TelegramBot = requ... | 28.27907 | 112 | 0.640625 |
b8e2b2e93e385b11f2dc47e19a5b7621f81f3a47 | 1,413 | js | JavaScript | test/api/rows/row().node().js | gregorschatz/DataTablesSrc | 971accf9fc67122016b9e1f1145369c215de5eeb | [
"MIT"
] | 338 | 2015-02-17T10:40:21.000Z | 2022-03-28T12:13:37.000Z | test/api/rows/row().node().js | gregorschatz/DataTablesSrc | 971accf9fc67122016b9e1f1145369c215de5eeb | [
"MIT"
] | 173 | 2015-01-12T00:21:33.000Z | 2022-03-14T09:58:51.000Z | test/api/rows/row().node().js | gregorschatz/DataTablesSrc | 971accf9fc67122016b9e1f1145369c215de5eeb | [
"MIT"
] | 439 | 2015-01-17T03:59:33.000Z | 2022-03-31T18:27:01.000Z | describe('rows - row().node()', function() {
dt.libs({
js: ['jquery', 'datatables'],
css: ['datatables']
});
const testRowData = ['Ashton Cox', 'Junior Technical Author', 'San Francisco', '66', '2009/01/12', '$86,000'];
describe('Check the defaults', function() {
dt.html('basic');
it('Exists and is a func... | 27.705882 | 111 | 0.59448 |
b8e2b636e5cb5ffa6a66b7cf0d29cfdd796feeb8 | 5,622 | js | JavaScript | web/src/scripts/controllers/policy-list.js | mehrdad-shokri/sparta | 75552c3198fbc9f7b04780243e12714bfd4167b0 | [
"Apache-2.0"
] | 324 | 2016-11-29T05:53:47.000Z | 2022-03-10T00:54:42.000Z | web/src/scripts/controllers/policy-list.js | mehrdad-shokri/sparta | 75552c3198fbc9f7b04780243e12714bfd4167b0 | [
"Apache-2.0"
] | 527 | 2016-02-15T17:23:42.000Z | 2016-11-28T10:57:39.000Z | web/src/scripts/controllers/policy-list.js | mehrdad-shokri/sparta | 75552c3198fbc9f7b04780243e12714bfd4167b0 | [
"Apache-2.0"
] | 139 | 2016-11-29T08:08:25.000Z | 2022-03-11T15:42:07.000Z | /*
* Copyright (C) 2015 Stratio (http://stratio.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | 31.762712 | 131 | 0.639096 |
b8e5a52264beb45a59a546b33274dff714098d1d | 3,117 | js | JavaScript | src/Flyers/DashboardBundle/Resources/public/assets/js/planit.js | nagyist/PlanIT | ef79f1167b845910b130c5216af01f4c5d6e0195 | [
"MIT"
] | 2 | 2015-09-11T16:20:58.000Z | 2017-01-27T18:12:08.000Z | src/Flyers/DashboardBundle/Resources/public/assets/js/planit.js | nagyist/PlanIT | ef79f1167b845910b130c5216af01f4c5d6e0195 | [
"MIT"
] | null | null | null | src/Flyers/DashboardBundle/Resources/public/assets/js/planit.js | nagyist/PlanIT | ef79f1167b845910b130c5216af01f4c5d6e0195 | [
"MIT"
] | 1 | 2018-12-27T12:09:13.000Z | 2018-12-27T12:09:13.000Z | (function () {
"use strict";
var prefix = '/planit/bundles/dashboard';
// Declare app level module which depends on filters, and services
angular.module('PlanIT', ['ngRoute','PlanIT.filters', 'PlanIT.services', 'PlanIT.directives', 'PlanIT.controllers'])
.config(['$routeProvider', '$locationProv... | 67.76087 | 164 | 0.677895 |
b8e6573de2dae957cf8e92a553dda69e6fc07fde | 27,893 | js | JavaScript | spaceifyapplication/api/www/spaceifyclient.js | KatsCyl/JuNaPe--gamenamehere- | 228108166faf29e243d17a4ec7d41fc3b411e5bb | [
"MIT"
] | null | null | null | spaceifyapplication/api/www/spaceifyclient.js | KatsCyl/JuNaPe--gamenamehere- | 228108166faf29e243d17a4ec7d41fc3b411e5bb | [
"MIT"
] | null | null | null | spaceifyapplication/api/www/spaceifyclient.js | KatsCyl/JuNaPe--gamenamehere- | 228108166faf29e243d17a4ec7d41fc3b411e5bb | [
"MIT"
] | null | null | null | /**
* spaceifyclient - engine.io implementation, 16.12.2013 Spaceify Inc.
*/
var EDGE_HOSTNAME = "edge.spaceify.net";
var CORE_PORT_HTTP = 80;//58080;
var CORE_PORT_HTTPS = 443;//58443;
var CORE_PORT = 2948;
var CORE_PORT_SECURE = 4948;
var SESSION_ID_COOKIE = "session_id";
var E_NO_CONNECTION = "Failed to connect ... | 30.651648 | 160 | 0.5496 |
b8e79362bb416afb3a51791f12bbd4e9cec8a32b | 1,754 | js | JavaScript | src/containers/WeatherList.js | allanapplebee/redux-weather-app | 5fd395c8b97d9cbc9af0877e6c96dc62d136d8eb | [
"MIT"
] | null | null | null | src/containers/WeatherList.js | allanapplebee/redux-weather-app | 5fd395c8b97d9cbc9af0877e6c96dc62d136d8eb | [
"MIT"
] | null | null | null | src/containers/WeatherList.js | allanapplebee/redux-weather-app | 5fd395c8b97d9cbc9af0877e6c96dc62d136d8eb | [
"MIT"
] | null | null | null | import React, { Component } from 'react';
import { connect } from 'react-redux';
import Chart from '../components/chart';
import GoogleMap from '../components/GoogleMaps';
class WeatherList extends Component {
renderWeather(cityData) {
const name = cityData.city.name;
const temps = cityData.list.map(weather ... | 32.481481 | 105 | 0.628278 |
b8e7e032b620c44bd0fa43d2f0049908f3cfa761 | 1,134 | js | JavaScript | src/modules/splash/Splash.js | donaldosebas/Asosoft-front | 3f249dc1b13ac0c41121225d7d7478c8298daa2f | [
"MIT"
] | null | null | null | src/modules/splash/Splash.js | donaldosebas/Asosoft-front | 3f249dc1b13ac0c41121225d7d7478c8298daa2f | [
"MIT"
] | 4 | 2021-05-08T17:06:50.000Z | 2021-10-30T04:22:18.000Z | src/modules/splash/Splash.js | donaldosebas/Asosoft-front | 3f249dc1b13ac0c41121225d7d7478c8298daa2f | [
"MIT"
] | null | null | null | import React from 'react'
import {
View,
Image,
StyleSheet,
Text,
} from 'react-native'
const logo = require('./sp.png')
const styles = StyleSheet.create({
container: {
width: '100%',
height: '100%',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
},
inputCo... | 18.290323 | 60 | 0.587302 |
b8e91f78e4825422eb8b790d62d3a050fd44bb39 | 1,951 | js | JavaScript | src/models/todo.js | public16to/todoServer | e3ed9500eeff116d40ef4a4f6a6cb4a61625bd76 | [
"MIT"
] | null | null | null | src/models/todo.js | public16to/todoServer | e3ed9500eeff116d40ef4a4f6a6cb4a61625bd76 | [
"MIT"
] | null | null | null | src/models/todo.js | public16to/todoServer | e3ed9500eeff116d40ef4a4f6a6cb4a61625bd76 | [
"MIT"
] | null | null | null | // 引入所有的请求接口
import { getTodo, delTodo,updateTodo,addTodo,addTagTodo,addNoticeTodo} from '@/services/todo';
export default {
// 空间名称
namespace: 'todo',
// 状态值
state: {
list:[],
},
// action和数据异步处理
effects: {
// 查
*select({params}, { call, put }) {
const response = yield call(getTodo,p... | 21.206522 | 94 | 0.473091 |
b8e93ac35625dc8d67dc69fefa2bcd01b8222edb | 176 | js | JavaScript | test/eg/fixtures/letters.js | ExplorableGraph/explorable | 34468b1e50e7546259946e51b3ad946b41b252f8 | [
"MIT"
] | null | null | null | test/eg/fixtures/letters.js | ExplorableGraph/explorable | 34468b1e50e7546259946e51b3ad946b41b252f8 | [
"MIT"
] | null | null | null | test/eg/fixtures/letters.js | ExplorableGraph/explorable | 34468b1e50e7546259946e51b3ad946b41b252f8 | [
"MIT"
] | null | null | null | import ExplorableObject from "../../../src/core/ExplorableObject.js";
export default new ExplorableObject({
a: "The letter A",
b: "The letter B",
c: "The letter C",
});
| 22 | 69 | 0.659091 |
b8e98732f6ba7b835618724047d88a7b4c857a70 | 4,911 | js | JavaScript | dist/story_view/story_view.service.js | reihnagm/Story-View-Nest-JS | a71a7703c6e68f29a562b92ec6d7603ab5d2931e | [
"MIT"
] | null | null | null | dist/story_view/story_view.service.js | reihnagm/Story-View-Nest-JS | a71a7703c6e68f29a562b92ec6d7603ab5d2931e | [
"MIT"
] | null | null | null | dist/story_view/story_view.service.js | reihnagm/Story-View-Nest-JS | a71a7703c6e68f29a562b92ec6d7603ab5d2931e | [
"MIT"
] | null | null | null | "use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Refl... | 40.254098 | 150 | 0.620444 |
b8e9879a76e525e043e1e99e62b1cd0ee49fd052 | 2,514 | js | JavaScript | example/src/example.js | cezarlz/react-clslide | fe9e2c1d7fd5c933023b2e4d0294f57b9444e52a | [
"MIT"
] | 8 | 2015-10-13T00:21:58.000Z | 2016-04-14T02:10:48.000Z | example/src/example.js | cezarlz/react-clslide | fe9e2c1d7fd5c933023b2e4d0294f57b9444e52a | [
"MIT"
] | null | null | null | example/src/example.js | cezarlz/react-clslide | fe9e2c1d7fd5c933023b2e4d0294f57b9444e52a | [
"MIT"
] | 1 | 2015-10-28T04:20:04.000Z | 2015-10-28T04:20:04.000Z | var React = require('react');
var ReactDOM = require('react-dom');
var CLSlide = require('react-clslide');
var items = [
{
caption: 'A lovely caption',
url: 'http://loremflickr.com/640/300/cat'
},
{ url: 'http://loremflickr.com/640/300/dog' },
{
caption: 'Another awesome caption',
url: 'http://... | 26.463158 | 93 | 0.605807 |
b8eaf532e6cb14a2e6dc7a111fad22fb5ba36194 | 1,345 | js | JavaScript | applications/mosaic-component/sources/mosaic_component_abacus.js | cipriancraciun/mosaic-node | d04178fd87429e3b4989542ce9083762d9f2b45d | [
"Apache-2.0"
] | null | null | null | applications/mosaic-component/sources/mosaic_component_abacus.js | cipriancraciun/mosaic-node | d04178fd87429e3b4989542ce9083762d9f2b45d | [
"Apache-2.0"
] | null | null | null | applications/mosaic-component/sources/mosaic_component_abacus.js | cipriancraciun/mosaic-node | d04178fd87429e3b4989542ce9083762d9f2b45d | [
"Apache-2.0"
] | null | null | null |
var backend = require ("./mosaic_component_backend.js");
_component = backend.initialize ();
_component.on ("call", function (_operation, _correlation, _inputs, _data) {
console.error ("[%d][ii] call `%s`/`%s` `%j`...", process.pid, _operation, _correlation, _inputs);
if (_data == "")
if (_operation == "+") {
... | 34.487179 | 109 | 0.657249 |
b8eb02aa2d4fbfe06777b0bdad99b5d538a25294 | 1,440 | js | JavaScript | static/demos/components/typography/text.html.js | minimit/xtend | fc601743afd7410e7d392a324b2606ecf45ebd04 | [
"CC-BY-4.0",
"MIT"
] | 75 | 2021-06-23T02:19:06.000Z | 2022-03-23T13:05:37.000Z | static/demos/components/typography/text.html.js | minimit/xtend | fc601743afd7410e7d392a324b2606ecf45ebd04 | [
"CC-BY-4.0",
"MIT"
] | 28 | 2021-07-08T14:46:32.000Z | 2022-02-08T08:20:20.000Z | static/demos/components/typography/text.html.js | minimit/xtend | fc601743afd7410e7d392a324b2606ecf45ebd04 | [
"CC-BY-4.0",
"MIT"
] | 3 | 2021-10-08T01:43:30.000Z | 2022-02-15T12:56:28.000Z | const html = /* HTML */ `
<div>
<p>Example <mark>highlight text</mark>.</p>
<p>Example <del>deleted text</del>.</p>
<p>Example <u>underline text</u>.</p>
<p>Example <small>small text</small>.</p>
<p>Example <strong>bold text</strong>.</p>
<p>Example <em>italic text</em>.</p>
<p>Examp... | 35.121951 | 120 | 0.661111 |
b8eb86970fb42cc447a3f717ea60ea870a38dfed | 499 | js | JavaScript | test/readme.test.js | adobe/aem-site-template-builder | 8534faf21eb08ff68f984aee4923a6102ed515b0 | [
"MIT"
] | 13 | 2020-11-10T08:16:22.000Z | 2022-02-03T12:29:31.000Z | test/readme.test.js | adobe/aem-site-template-builder | 8534faf21eb08ff68f984aee4923a6102ed515b0 | [
"MIT"
] | 6 | 2020-10-26T17:06:51.000Z | 2022-03-08T20:20:21.000Z | test/readme.test.js | adobe/aem-site-template-builder | 8534faf21eb08ff68f984aee4923a6102ed515b0 | [
"MIT"
] | 1 | 2020-11-17T18:10:24.000Z | 2020-11-17T18:10:24.000Z | /*
Copyright 2021 Adobe
All Rights Reserved.
NOTICE: Adobe permits you to use, modify, and distribute this file in
accordance with the terms of the Adobe license agreement accompanying
it.
*/
const test = require('ava');
const fs = require('fs').promises;
test('Readme contains link to expected structure of the repo ... | 29.352941 | 107 | 0.737475 |
b8ef459f78030108b66eaa15cd3b0fbf19c6db38 | 17,995 | js | JavaScript | js/sounding.js | copa2/meteo-parapente-experimental | 6853608455a198170b3c17c167f977420f48f357 | [
"MIT"
] | null | null | null | js/sounding.js | copa2/meteo-parapente-experimental | 6853608455a198170b3c17c167f977420f48f357 | [
"MIT"
] | null | null | null | js/sounding.js | copa2/meteo-parapente-experimental | 6853608455a198170b3c17c167f977420f48f357 | [
"MIT"
] | null | null | null | /**
* Component to draw a Sounding diagram.
*
* There exist multiple diagramms:
* - Emmagram:
* - Tephigramm
* - Skew-T log p
* - Stüve
*
* NOTE: Our diagramm is not of equal area.
*
* Proper diagramms have pressure/temperature and keep the energy.
* DryAdiabats (PotentialTemperatur) start from 0K and 0... | 32.133929 | 120 | 0.501473 |
b8efaa231dbde422028f12ff7967e1b21004bceb | 114 | js | JavaScript | client/src/store/mutation-types.js | ludo237/ciciara | 0f0ec84d69e103391102a6516f0ca9602c14c67a | [
"MIT"
] | null | null | null | client/src/store/mutation-types.js | ludo237/ciciara | 0f0ec84d69e103391102a6516f0ca9602c14c67a | [
"MIT"
] | 5 | 2020-09-07T07:33:11.000Z | 2020-09-18T07:55:23.000Z | client/src/store/mutation-types.js | ludo237/ciciara | 0f0ec84d69e103391102a6516f0ca9602c14c67a | [
"MIT"
] | null | null | null | export const SET_CICIARA_ONLINE = "SET_CICIARA_ONLINE";
export const SET_CICIARA_OFFLINE = "SET_CICIARA_OFFLINE";
| 38 | 57 | 0.842105 |
b8f04668295a2f8113a0ea84785571ba961088bd | 730 | js | JavaScript | scripts/typedoc.js | marcuson/angular-ionic-demo | d0092002f945f0414d322fdf6a2a63bb6caaa133 | [
"Apache-2.0"
] | 1 | 2018-10-16T07:49:15.000Z | 2018-10-16T07:49:15.000Z | scripts/typedoc.js | marcuson/angular-ionic-demo | d0092002f945f0414d322fdf6a2a63bb6caaa133 | [
"Apache-2.0"
] | null | null | null | scripts/typedoc.js | marcuson/angular-ionic-demo | d0092002f945f0414d322fdf6a2a63bb6caaa133 | [
"Apache-2.0"
] | null | null | null | const fs = require('fs');
const typedoc = require('typedoc');
const options = {
emitDecoratorMetadata: true,
exclude: '**/+(*.spec.ts)',
excludePrivate: true,
experimentalDecorators: true,
ignoreCompilerErrors: true,
mode: 'modules',
module: 'commonjs',
moduleResolution: 'node',
out: 'docs/ts',
pre... | 25.172414 | 52 | 0.731507 |