hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0b923a4bbc430a1e48a577e2ea39b466f69cde9d | 5,984 | ps1 | PowerShell | psPAS/Functions/Accounts/Get-PASAccount.ps1 | alexR148/psPAS | f76d421340f6481e6bc41c7023c50a323aea5151 | [
"MIT"
] | 201 | 2017-07-03T11:47:10.000Z | 2022-03-10T10:03:17.000Z | psPAS/Functions/Accounts/Get-PASAccount.ps1 | alexR148/psPAS | f76d421340f6481e6bc41c7023c50a323aea5151 | [
"MIT"
] | 228 | 2017-07-15T20:24:16.000Z | 2022-03-17T22:05:33.000Z | psPAS/Functions/Accounts/Get-PASAccount.ps1 | alexR148/psPAS | f76d421340f6481e6bc41c7023c50a323aea5151 | [
"MIT"
] | 82 | 2017-07-06T15:01:00.000Z | 2022-02-24T16:37:46.000Z | # .ExternalHelp psPAS-help.xml
function Get-PASAccount {
[CmdletBinding(DefaultParameterSetName = 'Gen2Query')]
param(
[parameter(
Mandatory = $true,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'Gen2ID'
)]
[Alias('AccountID')]
[string]$id,
[parameter(
Mandatory = $false,
Valu... | 20.563574 | 126 | 0.646056 |
6a9c2da0dd02068a56dac0197f1b7fe7d2df113d | 353 | sql | SQL | resources/migrations/00004_card_names_table.up.sql | gered/mtgcoll | b5fb85b2021efe2b20e247e5d3e299bd2089417f | [
"MIT"
] | 3 | 2016-08-08T16:06:40.000Z | 2016-08-16T01:00:31.000Z | resources/migrations/00004_card_names_table.up.sql | gered/mtgcoll | b5fb85b2021efe2b20e247e5d3e299bd2089417f | [
"MIT"
] | null | null | null | resources/migrations/00004_card_names_table.up.sql | gered/mtgcoll | b5fb85b2021efe2b20e247e5d3e299bd2089417f | [
"MIT"
] | null | null | null | CREATE TABLE card_names (
id SERIAL PRIMARY KEY,
card_id TEXT NOT NULL,
name TEXT NOT NULL
);
CREATE INDEX card_names_name_idx ON card_names (name);
ALTER TABLE ONLY card_names ADD CONSTRAINT card_names_card_id_fkey FOREIGN KEY (card_id) REFERENCES cards (id) ON DELETE CASCADE;
CREATE INDEX card_names_card... | 32.090909 | 129 | 0.790368 |
3e90d66ebf000bc774d6e9194249a53c64e1d965 | 1,895 | h | C | src/utils.h | Angluca/GSAdapter | 350faa6362852b8ca48611c09008e3e334a2de33 | [
"MIT"
] | null | null | null | src/utils.h | Angluca/GSAdapter | 350faa6362852b8ca48611c09008e3e334a2de33 | [
"MIT"
] | null | null | null | src/utils.h | Angluca/GSAdapter | 350faa6362852b8ca48611c09008e3e334a2de33 | [
"MIT"
] | null | null | null | #ifndef __UTILS_H__
#define __UTILS_H__
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
void WriteLog(const char* context, const char* filename = 0);
#ifndef NDEBUG
#define ERROR_OUT(format,...) {\
fprintf(stderr, "[ERROR|%s:%d>%s()<<"#format"]\n", __FILE__, __LINE__, __FUNCTION__, ##... | 28.283582 | 106 | 0.668074 |
e5aa0f274f9e504c08213a6e4b0515b0511fe96a | 123 | kt | Kotlin | lib/src/main/java/ii887522/controlify/struct/IntRect.kt | ii887522/controlify | 0e207d909a4bc958aab5cadd05444293d4668d22 | [
"MIT"
] | null | null | null | lib/src/main/java/ii887522/controlify/struct/IntRect.kt | ii887522/controlify | 0e207d909a4bc958aab5cadd05444293d4668d22 | [
"MIT"
] | null | null | null | lib/src/main/java/ii887522/controlify/struct/IntRect.kt | ii887522/controlify | 0e207d909a4bc958aab5cadd05444293d4668d22 | [
"MIT"
] | null | null | null | package ii887522.controlify.struct
data class IntRect(val position: IntPoint = IntPoint(), val size: IntSize = IntSize())
| 30.75 | 86 | 0.772358 |
e5e53bc7478b9291d5f728d25fb977abc86eb86e | 998 | asm | Assembly | libmikeos/src.io/io_get_cpuid.asm | mynameispyo/InpyoOS | b6ddb6d9715b027ab65891bd4c4f46dbe5c9890d | [
"BSD-3-Clause",
"MIT"
] | null | null | null | libmikeos/src.io/io_get_cpuid.asm | mynameispyo/InpyoOS | b6ddb6d9715b027ab65891bd4c4f46dbe5c9890d | [
"BSD-3-Clause",
"MIT"
] | null | null | null | libmikeos/src.io/io_get_cpuid.asm | mynameispyo/InpyoOS | b6ddb6d9715b027ab65891bd4c4f46dbe5c9890d | [
"BSD-3-Clause",
"MIT"
] | null | null | null |
; @@@ void io_get_cpuid(unsigned long index, unsigned long *eax, unsigned long *ebx, unsigned long *ecx, unsigned long *edx);
section .text
use16
extern __heap_top
global _io_get_cpuid
_io_get_cpuid:
push bp
mov bp, sp
push di
mov eax, [bp + 4]
cpuid
mov di, [bp + 8] ; get pointer on the stack
or di, d... | 17.821429 | 125 | 0.639279 |
94ff339903eb4fde748eaa3b67c2cf519c60a2f2 | 12,410 | dart | Dart | lib/views/signupPages/signupForm2.dart | MarcosBorba/App_Varied_Rent | c1ec7ce75e80935bd2009be9e4e6babc54d9cde9 | [
"MIT"
] | null | null | null | lib/views/signupPages/signupForm2.dart | MarcosBorba/App_Varied_Rent | c1ec7ce75e80935bd2009be9e4e6babc54d9cde9 | [
"MIT"
] | null | null | null | lib/views/signupPages/signupForm2.dart | MarcosBorba/App_Varied_Rent | c1ec7ce75e80935bd2009be9e4e6babc54d9cde9 | [
"MIT"
] | null | null | null | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:fluttericon/font_awesome5_icons.dart';
import 'package:fluttericon/font_awesome_icons.dart';
import 'package:fluttericon/modern_pictograms_icons.dart';
import 'package:varied_rent/blocs/blocs.dart';
import 'package... | 35.056497 | 80 | 0.661563 |
70c26fba599d133ffbe7e96f470823fa60c00b61 | 175 | h | C | include/il2cpp/UnityEngine/Switch/Applet.h | martmists-gh/BDSP | d6326c5d3ad9697ea65269ed47aa0b63abac2a0a | [
"MIT"
] | 1 | 2022-01-15T20:20:27.000Z | 2022-01-15T20:20:27.000Z | include/il2cpp/UnityEngine/Switch/Applet.h | martmists-gh/BDSP | d6326c5d3ad9697ea65269ed47aa0b63abac2a0a | [
"MIT"
] | null | null | null | include/il2cpp/UnityEngine/Switch/Applet.h | martmists-gh/BDSP | d6326c5d3ad9697ea65269ed47aa0b63abac2a0a | [
"MIT"
] | null | null | null | #pragma once
#include "il2cpp.h"
void UnityEngine_Switch_Applet__Begin (const MethodInfo* method_info);
void UnityEngine_Switch_Applet__End (const MethodInfo* method_info);
| 25 | 70 | 0.834286 |
263b426620ad653c76f35816ecb68833a3bb2e25 | 4,143 | java | Java | ThirdWork/src/com/dao/ProviderDaoImpl.java | LionelOrange/order | 048e7e11c5728a88df5a850c1be1203e85723533 | [
"Apache-2.0"
] | null | null | null | ThirdWork/src/com/dao/ProviderDaoImpl.java | LionelOrange/order | 048e7e11c5728a88df5a850c1be1203e85723533 | [
"Apache-2.0"
] | null | null | null | ThirdWork/src/com/dao/ProviderDaoImpl.java | LionelOrange/order | 048e7e11c5728a88df5a850c1be1203e85723533 | [
"Apache-2.0"
] | null | null | null | package com.dao;
import java.sql.Connection;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import com.bean.Provider;
import com.db.PageModel;
public class ProviderDaoImpl extends BaseDao implements ProviderDao{
public void add(Connection conn, Provider provider) throws Exc... | 39.084906 | 167 | 0.719044 |
70dd39afce2c25e15e245071f2cbea5e9f417d3d | 358 | h | C | ZEngine/include/ZEngine/Rendering/Materials/BasicMaterial.h | lamarrr/RendererEngine | 0c3e2bd77859efc9c278ea8735dc3340803a75b2 | [
"MIT"
] | null | null | null | ZEngine/include/ZEngine/Rendering/Materials/BasicMaterial.h | lamarrr/RendererEngine | 0c3e2bd77859efc9c278ea8735dc3340803a75b2 | [
"MIT"
] | null | null | null | ZEngine/include/ZEngine/Rendering/Materials/BasicMaterial.h | lamarrr/RendererEngine | 0c3e2bd77859efc9c278ea8735dc3340803a75b2 | [
"MIT"
] | null | null | null | #pragma once
#include <Rendering/Materials/ShaderMaterial.h>
namespace ZEngine::Rendering::Materials {
class BasicMaterial : public ShaderMaterial {
public:
explicit BasicMaterial();
virtual ~BasicMaterial() = default;
void Apply(Shaders::Shader* const shader) override;
};
} // na... | 25.571429 | 59 | 0.701117 |
3cd48b290a58f3b567216344ec207f706f98f822 | 458 | sql | SQL | prisma/migrations/20220211100408_/migration.sql | MoonSoD/e-soc_backend | 08469f51c6f65fe1efc13860dec4b97f56c49ed5 | [
"MIT"
] | null | null | null | prisma/migrations/20220211100408_/migration.sql | MoonSoD/e-soc_backend | 08469f51c6f65fe1efc13860dec4b97f56c49ed5 | [
"MIT"
] | null | null | null | prisma/migrations/20220211100408_/migration.sql | MoonSoD/e-soc_backend | 08469f51c6f65fe1efc13860dec4b97f56c49ed5 | [
"MIT"
] | null | null | null | /*
Warnings:
- A unique constraint covering the columns `[date]` on the table `Report` will be added. If there are existing duplicate values, this will fail.
- Made the column `content` on table `ReportRevision` required. This step will fail if there are existing NULL values in that column.
*/
-- AlterTable
ALT... | 35.230769 | 146 | 0.744541 |
0c7bc6cd6776c6607f39cb72845a7d672cf8392c | 1,118 | kt | Kotlin | feature/search/src/main/java/id/apwdevs/app/search/adapter/SearchMovieShowAdapter.kt | AlexzPurewoko/movie_catalogue | e80db0e7f11c7d24e86e410eae052ce6e10f9d1f | [
"MIT"
] | null | null | null | feature/search/src/main/java/id/apwdevs/app/search/adapter/SearchMovieShowAdapter.kt | AlexzPurewoko/movie_catalogue | e80db0e7f11c7d24e86e410eae052ce6e10f9d1f | [
"MIT"
] | 18 | 2021-04-25T01:48:49.000Z | 2021-06-30T01:48:13.000Z | feature/search/src/main/java/id/apwdevs/app/search/adapter/SearchMovieShowAdapter.kt | AlexzPurewoko/movie_catalogue | e80db0e7f11c7d24e86e410eae052ce6e10f9d1f | [
"MIT"
] | null | null | null | package id.apwdevs.app.search.adapter
import android.view.ViewGroup
import androidx.paging.PagingDataAdapter
import androidx.recyclerview.widget.DiffUtil
import id.apwdevs.app.search.model.SearchItem
class SearchMovieShowAdapter(
private val listener: (SearchItem) -> Unit
) : PagingDataAdapter<SearchItem, SearchM... | 30.216216 | 93 | 0.666369 |
29099875d81bb1232d0d3ac4107d4cda2fca6612 | 1,301 | py | Python | hackerearth/vizury_challenge/panda_shopping.py | mhetrerajat/ds-challenge | 3208df5c29612b0dfe60c1c082da1f31ad220b49 | [
"MIT"
] | null | null | null | hackerearth/vizury_challenge/panda_shopping.py | mhetrerajat/ds-challenge | 3208df5c29612b0dfe60c1c082da1f31ad220b49 | [
"MIT"
] | 1 | 2021-05-18T07:30:16.000Z | 2021-05-18T07:30:16.000Z | hackerearth/vizury_challenge/panda_shopping.py | mhetrerajat/ds-challenge | 3208df5c29612b0dfe60c1c082da1f31ad220b49 | [
"MIT"
] | null | null | null | def getInput():
N = int(raw_input())
hlList = []
for i in xrange(N):
hl = map(int, raw_input().split(" "))
hlList.append(hl)
return (N, hlList)
def getMaxHappiness(hlList):
buyedItems = []
maxHappiness = 0
for item in hlList:
h,l = item[0], item[1]
if len(buy... | 29.568182 | 127 | 0.538816 |
f7067fa9d5134aa23a6d16aded03852681aae9e8 | 210 | c | C | helloworld/main.c | QinYUN575/LicheePi-Nano_example | 04db2dd901c02878c53ae22e8e5804049a227bcd | [
"Apache-2.0"
] | null | null | null | helloworld/main.c | QinYUN575/LicheePi-Nano_example | 04db2dd901c02878c53ae22e8e5804049a227bcd | [
"Apache-2.0"
] | null | null | null | helloworld/main.c | QinYUN575/LicheePi-Nano_example | 04db2dd901c02878c53ae22e8e5804049a227bcd | [
"Apache-2.0"
] | null | null | null | #include <stdio.h>
int main(void)
{
printf("====================\r\n");
printf("%s:%s\r\n", __DATE__, __TIME__);
printf("====================\r\n");
printf("Hello World!\r\n");
return 0;
}
| 19.090909 | 44 | 0.433333 |
a64b16a8291d73d520dd4fbb4eaa7c5c54c39b9c | 114 | dart | Dart | flutter/lib/module_orders/orders_routes.dart | Yazan99sh/tourist | 220c5537f24df71996518c5b625a8ec57e0de915 | [
"MIT"
] | null | null | null | flutter/lib/module_orders/orders_routes.dart | Yazan99sh/tourist | 220c5537f24df71996518c5b625a8ec57e0de915 | [
"MIT"
] | null | null | null | flutter/lib/module_orders/orders_routes.dart | Yazan99sh/tourist | 220c5537f24df71996518c5b625a8ec57e0de915 | [
"MIT"
] | null | null | null | class OrdersRoutes {
static const ordersList = '/ordersList';
static const guideOrders = '/guideOrdersList';
} | 28.5 | 48 | 0.745614 |
f71e40be667e21577f4fd1889746447c005a3298 | 8,722 | c | C | src/qip/farg.c | dasfaha/sky | 4f2696e9abe54f4818f94337ed3bceae798e5a6d | [
"MIT"
] | 2 | 2018-01-16T07:26:53.000Z | 2021-12-08T03:12:40.000Z | src/qip/farg.c | dasfaha/sky | 4f2696e9abe54f4818f94337ed3bceae798e5a6d | [
"MIT"
] | null | null | null | src/qip/farg.c | dasfaha/sky | 4f2696e9abe54f4818f94337ed3bceae798e5a6d | [
"MIT"
] | null | null | null | #include <stdlib.h>
#include "dbg.h"
#include "node.h"
//==============================================================================
//
// Functions
//
//==============================================================================
//--------------------------------------
// Lifecycle
//-------------------------... | 27.77707 | 90 | 0.594588 |
ce4fd901f8009b48e8035d47cb93ee239121fac0 | 233 | sql | SQL | sql/v1_3_0_create_view_airport_5km.sql | aveek22/cs621-spatial-db | b3e57847de8b4ff18d10e7d0f7a93c79c9adf21f | [
"MIT"
] | 3 | 2021-01-12T04:00:44.000Z | 2021-12-10T00:55:58.000Z | sql/v1_3_0_create_view_airport_5km.sql | aveek22/cs621-spatial-db | b3e57847de8b4ff18d10e7d0f7a93c79c9adf21f | [
"MIT"
] | null | null | null | sql/v1_3_0_create_view_airport_5km.sql | aveek22/cs621-spatial-db | b3e57847de8b4ff18d10e7d0f7a93c79c9adf21f | [
"MIT"
] | 3 | 2021-01-12T18:02:51.000Z | 2021-02-14T23:58:43.000Z | CREATE OR REPLACE VIEW vw_mumbai_houses_airport_5km
AS
SELECT *
FROM mumbai_house_price_raw
WHERE 1=1
AND ST_DISTANCE(
ST_TRANSFORM(ST_GEOMFROMTEXT('POINT(72.874374 19.096713)',4326), 7755),
ST_TRANSFORM((geometry),7755)
) <= 5000; | 25.888889 | 72 | 0.798283 |
426bb8b695dac54b37a2f14f2087ccd41df2b191 | 2,535 | kts | Kotlin | app/build.gradle.kts | Ghedeon/Trendroid | cd2877faf8ed0ce616a752f57aac6a738ae50674 | [
"Apache-2.0"
] | null | null | null | app/build.gradle.kts | Ghedeon/Trendroid | cd2877faf8ed0ce616a752f57aac6a738ae50674 | [
"Apache-2.0"
] | null | null | null | app/build.gradle.kts | Ghedeon/Trendroid | cd2877faf8ed0ce616a752f57aac6a738ae50674 | [
"Apache-2.0"
] | null | null | null | import com.android.build.gradle.ProguardFiles.getDefaultProguardFile
import deps.dagger.android
import org.jetbrains.kotlin.gradle.internal.AndroidExtensionsExtension
import org.jetbrains.kotlin.kapt3.base.Kapt.kapt
plugins {
id("com.android.application")
kotlin("android.extensions")
kotlin("android")
kotlin("kapt... | 26.684211 | 86 | 0.794083 |
06a360b97ba2c548fe8d491b24867982fcabfe44 | 2,666 | kt | Kotlin | app/src/main/java/payment/sdk/android/demo/dependency/repository/ProductRepository.kt | Mohmd-H-BH/payment-sdk-android | 316d29a15cd95e79e7b71f875af4843af9620933 | [
"MIT-0"
] | 3 | 2020-07-11T17:25:07.000Z | 2020-11-25T09:56:54.000Z | app/src/main/java/payment/sdk/android/demo/dependency/repository/ProductRepository.kt | Mohmd-H-BH/payment-sdk-android | 316d29a15cd95e79e7b71f875af4843af9620933 | [
"MIT-0"
] | 12 | 2019-11-27T15:58:05.000Z | 2021-12-14T04:13:01.000Z | app/src/main/java/payment/sdk/android/demo/dependency/repository/ProductRepository.kt | Mohmd-H-BH/payment-sdk-android | 316d29a15cd95e79e7b71f875af4843af9620933 | [
"MIT-0"
] | 7 | 2019-12-04T07:43:49.000Z | 2022-02-15T07:02:24.000Z | package payment.sdk.android.demo.dependency.repository
import payment.sdk.android.demo.basket.data.BasketProductDomain
import payment.sdk.android.demo.products.data.ProductDomain
import io.reactivex.Completable
import io.reactivex.Flowable
import io.reactivex.Single
import javax.inject.Inject
class ProductRepository... | 35.078947 | 107 | 0.54051 |
5797db9cce3fd5c3243f9cb412049d32ed1e8f9a | 2,072 | sql | SQL | test/fixtures/sql/postgres.sql | lnikell/next-auth | f7a9dfbcf2de8a4c2752ec7316645a05b0a72ea0 | [
"0BSD"
] | 6 | 2021-08-25T04:27:18.000Z | 2021-08-29T22:30:28.000Z | test/fixtures/sql/postgres.sql | lnikell/next-auth | f7a9dfbcf2de8a4c2752ec7316645a05b0a72ea0 | [
"0BSD"
] | 9 | 2020-09-20T17:50:28.000Z | 2021-12-09T01:56:38.000Z | test/fixtures/sql/postgres.sql | lnikell/next-auth | f7a9dfbcf2de8a4c2752ec7316645a05b0a72ea0 | [
"0BSD"
] | 8 | 2020-10-01T14:49:44.000Z | 2020-10-18T04:54:54.000Z | CREATE TABLE accounts
(
id SERIAL,
compound_id VARCHAR(255) NOT NULL,
user_id INTEGER NOT NULL,
provider_type VARCHAR(255) NOT NULL,
provider_id VARCHAR(255) NOT NULL,
provider_account_id VARCHAR(255) NOT NULL,
refresh_token T... | 27.626667 | 72 | 0.680985 |
cf01e1623b19da47e36dfc821528bd45391c3011 | 1,960 | sql | SQL | schema/generate/16-schema_update_18.sql | ishagarg06/augur | 2295d48288d243c9ac01bf54ba140ca756828929 | [
"MIT"
] | null | null | null | schema/generate/16-schema_update_18.sql | ishagarg06/augur | 2295d48288d243c9ac01bf54ba140ca756828929 | [
"MIT"
] | null | null | null | schema/generate/16-schema_update_18.sql | ishagarg06/augur | 2295d48288d243c9ac01bf54ba140ca756828929 | [
"MIT"
] | null | null | null | CREATE SEQUENCE "augur_data"."releases_release_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
CREATE TABLE "augur_data"."releases" (
"release_id" int8 NOT NULL DEFAULT nextval('"augur_data".releases_release_id_seq'::regclass),
"repo_id" int8 NOT NULL,
"release_name" varchar(255) C... | 41.702128 | 179 | 0.768367 |
39ec75c7f6938b4ff085a066199b1fa6585a1c73 | 713 | java | Java | src/main/java/cn/dalgen/mybatis/gen/exception/DalgenException.java | jeffrey-fu/dalgen | 5e5b0ca0245bea5ae2fb027c0eb7840a73d94813 | [
"Apache-2.0"
] | null | null | null | src/main/java/cn/dalgen/mybatis/gen/exception/DalgenException.java | jeffrey-fu/dalgen | 5e5b0ca0245bea5ae2fb027c0eb7840a73d94813 | [
"Apache-2.0"
] | null | null | null | src/main/java/cn/dalgen/mybatis/gen/exception/DalgenException.java | jeffrey-fu/dalgen | 5e5b0ca0245bea5ae2fb027c0eb7840a73d94813 | [
"Apache-2.0"
] | null | null | null | package cn.dalgen.mybatis.gen.exception;
/**
* Created by bangis.wangdf on 15/12/5.
* Desc
*/
public class DalgenException extends RuntimeException {
/**
* The constant serialVersionUID.
*/
private static final long serialVersionUID = 7336283442300122583L;
/**
* Instantiates a new Dalgen... | 22.28125 | 70 | 0.643759 |
36fe124f082ff703702b439181866a5122a54d19 | 320 | sql | SQL | CnC/config.sql | Luke-Larsen/DarkMiner | aae1bb83150e337b57c88bd9f412383ad488f60c | [
"MIT"
] | 3 | 2021-02-17T18:59:25.000Z | 2021-09-19T14:40:34.000Z | CnC/config.sql | Luke-Larsen/DarkMiner | aae1bb83150e337b57c88bd9f412383ad488f60c | [
"MIT"
] | null | null | null | CnC/config.sql | Luke-Larsen/DarkMiner | aae1bb83150e337b57c88bd9f412383ad488f60c | [
"MIT"
] | null | null | null | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
CREATE TABLE `config` (
`Name` varchar(255) NOT NULL,
`Value` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `config` (`Name`, `Value`) VALUES
('Password', 'MySecurePassword');
COMMIT;
| 24.615385 | 45 | 0.715625 |
17218fd4b5351d6636c4bdd5b54e6c9a5f428521 | 296 | kt | Kotlin | app/src/main/java/com/ctech/eaty/ui/radio/di/RadioFragmentBuilderModule.kt | mehrdad-shokri/hunt-android | 2e3445debaedfea03f9b44ab62744046fe07f1cc | [
"Apache-2.0"
] | 50 | 2018-01-08T16:51:44.000Z | 2021-05-06T22:23:21.000Z | app/src/main/java/com/ctech/eaty/ui/radio/di/RadioFragmentBuilderModule.kt | mehrdad-shokri/hunt-android | 2e3445debaedfea03f9b44ab62744046fe07f1cc | [
"Apache-2.0"
] | 3 | 2018-01-18T12:19:58.000Z | 2018-03-29T06:26:30.000Z | app/src/main/java/com/ctech/eaty/ui/radio/di/RadioFragmentBuilderModule.kt | mehrdad-shokri/hunt-android | 2e3445debaedfea03f9b44ab62744046fe07f1cc | [
"Apache-2.0"
] | 13 | 2018-01-15T13:27:38.000Z | 2020-06-24T04:30:13.000Z | package com.ctech.eaty.ui.radio.di
import com.ctech.eaty.ui.radio.view.RadioFragment
import dagger.Module
import dagger.android.ContributesAndroidInjector
@Module
abstract class RadioFragmentBuilderModule {
@ContributesAndroidInjector
abstract fun contributeFragment(): RadioFragment
} | 24.666667 | 52 | 0.831081 |
bc89149c90ec2e049b416482339ac1a7fce9fb69 | 21,782 | sql | SQL | code/sql/gmall.mysql_insert.sql | Tiankx1003/DW-MultiImpl | fbee442ff0373dea73596ec1cbd6f014b111a075 | [
"MIT"
] | null | null | null | code/sql/gmall.mysql_insert.sql | Tiankx1003/DW-MultiImpl | fbee442ff0373dea73596ec1cbd6f014b111a075 | [
"MIT"
] | 1 | 2020-12-15T15:18:06.000Z | 2020-12-15T15:18:06.000Z | code/sql/gmall.mysql_insert.sql | Tiankx1003/DW-MultiImpl | fbee442ff0373dea73596ec1cbd6f014b111a075 | [
"MIT"
] | null | null | null |
/*Data for the table `base_category1` */
INSERT INTO `base_category1`(`id`,`name`) VALUES
(1,'图书、音像、电子书刊'),
(2,'手机'),
(3,'家用电器'),
(4,'数码'),
(5,'家居家装'),
(6,'电脑办公'),
(7,'厨具'),
(8,'个护化妆'),
(9,'服饰内衣'),
(10,'钟表'),
(11,'鞋靴'),
(12,'母婴'),
(13,'礼品箱包'),
(14,'食品饮料、保健食品'),
(15,'珠宝'),
(16,'汽车用品'),
(17,'运动健康'),
(18,'玩具乐器');
IN... | 16.691188 | 64 | 0.514186 |
3e6b2ce745161139aee46eed768f82ccb5951478 | 3,806 | h | C | SYTimeAndStringPublic/SYStringPublic.h | fengxueSY/SYTSPublic | 9d81d6457f48cc45b48f32b5028fea0bdf1c6a1e | [
"MIT"
] | null | null | null | SYTimeAndStringPublic/SYStringPublic.h | fengxueSY/SYTSPublic | 9d81d6457f48cc45b48f32b5028fea0bdf1c6a1e | [
"MIT"
] | null | null | null | SYTimeAndStringPublic/SYStringPublic.h | fengxueSY/SYTSPublic | 9d81d6457f48cc45b48f32b5028fea0bdf1c6a1e | [
"MIT"
] | 1 | 2020-09-10T01:46:45.000Z | 2020-09-10T01:46:45.000Z | //
// SYStringPublic.h
// SYTSPublic
//
// Created by 666gps on 2017/8/22.
// Copyright © 2017年 666gps. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface SYStringPublic : NSObject
/**
* 判断字符串为空
*
* @param str 字符串
*
* @return YES为空
*/
+ (BOOL)isBlankString:(NSStr... | 16.547826 | 102 | 0.594325 |
abeb52b845ab5892134ad3b92ccab6cd2a4b938b | 133 | sql | SQL | SQL/16 th lesson/t3.sql | rjevdkimovs/progmeistars | d875c468e55e2b6a3fe9358dbdac435b957578a0 | [
"Apache-2.0"
] | null | null | null | SQL/16 th lesson/t3.sql | rjevdkimovs/progmeistars | d875c468e55e2b6a3fe9358dbdac435b957578a0 | [
"Apache-2.0"
] | null | null | null | SQL/16 th lesson/t3.sql | rjevdkimovs/progmeistars | d875c468e55e2b6a3fe9358dbdac435b957578a0 | [
"Apache-2.0"
] | null | null | null |
CREATE VIEW session
AS SELECT grade, abc
FROM lessons
WHERE EDATE != NULL;
COUNT students IN lessons
SELECT *
FROM lessons
| 14.777778 | 26 | 0.729323 |
572ed730e7711383640593c4cd253e279e0c42a6 | 962 | asm | Assembly | MicroProcessor Lab Programs/time.asm | vallabhiaf/4thSemIse | 55ed3c6fc29e4d2dd2c1fb71e31f5283ad47b9bf | [
"Apache-2.0"
] | null | null | null | MicroProcessor Lab Programs/time.asm | vallabhiaf/4thSemIse | 55ed3c6fc29e4d2dd2c1fb71e31f5283ad47b9bf | [
"Apache-2.0"
] | null | null | null | MicroProcessor Lab Programs/time.asm | vallabhiaf/4thSemIse | 55ed3c6fc29e4d2dd2c1fb71e31f5283ad47b9bf | [
"Apache-2.0"
] | null | null | null | assume cs:code
code segment
start:
mov ah,2ch ;function 2C under INT 21h returns time in ch(hrs), cl(mins)
int 21h ; in hex ( seconds and milliseconds omitted)
mov al,ch
call hex_bcd ; first convert the hrs into 24 hrs formatted bcd
call disp ; then, display it
mov dl,':'
mov ah,2... | 18.150943 | 77 | 0.586279 |
86932d4a16409f1d48672ea1d72454c6908e7029 | 6,277 | rs | Rust | src/renderer/shaders.rs | togglebyte/nightmaregl | a4ae82866ad55b1852ea60e6d53d665060d16ac8 | [
"MIT"
] | 7 | 2021-03-04T14:50:58.000Z | 2021-12-29T16:04:19.000Z | src/renderer/shaders.rs | togglebyte/nightmaregl | a4ae82866ad55b1852ea60e6d53d665060d16ac8 | [
"MIT"
] | null | null | null | src/renderer/shaders.rs | togglebyte/nightmaregl | a4ae82866ad55b1852ea60e6d53d665060d16ac8 | [
"MIT"
] | 5 | 2021-04-02T09:26:49.000Z | 2021-08-01T17:45:21.000Z | use std::ffi::CStr;
use log::info;
use gl33::global_loader::*;
use gl33::*;
use nalgebra::Matrix4;
use crate::Result;
use crate::errors::NightmareError;
// -----------------------------------------------------------------------------
// - Default shaders -
// -----------------------------------------------------... | 31.385 | 96 | 0.549148 |
1fe6b9a88c566cd27a91b0b6b78d5a6979a79bf9 | 240 | css | CSS | hot-deploy/greenfire/webapp/greenfire/styles/chapter.css | ptayadeSPELTechnologies/ofbiz | 21259bb9e7243aa621fdd61c86cfe338f81a747b | [
"Apache-2.0"
] | null | null | null | hot-deploy/greenfire/webapp/greenfire/styles/chapter.css | ptayadeSPELTechnologies/ofbiz | 21259bb9e7243aa621fdd61c86cfe338f81a747b | [
"Apache-2.0"
] | null | null | null | hot-deploy/greenfire/webapp/greenfire/styles/chapter.css | ptayadeSPELTechnologies/ofbiz | 21259bb9e7243aa621fdd61c86cfe338f81a747b | [
"Apache-2.0"
] | null | null | null | @CHARSET "UTF-8";
.code{
background-color: #f2f2f2;
padding: 5px 5px 5px 5px;
border-style: solid;
border-width: 1px 1px 1px 1px;
width:200px;
}
ul{
list-style: none; /* Remove list bullets */
padding: 0;
margin: 0;
} | 16 | 47 | 0.629167 |
74588dc15897ec46286bbdc28ddaf510839254de | 3,067 | c | C | src/io_handler.c | RasimSadikoglu/Custom-Float-Generator | 400d05e0a87ae8d407b6d58f1b4f0d02a5539761 | [
"MIT"
] | null | null | null | src/io_handler.c | RasimSadikoglu/Custom-Float-Generator | 400d05e0a87ae8d407b6d58f1b4f0d02a5539761 | [
"MIT"
] | null | null | null | src/io_handler.c | RasimSadikoglu/Custom-Float-Generator | 400d05e0a87ae8d407b6d58f1b4f0d02a5539761 | [
"MIT"
] | null | null | null | #include "../include/io_handler.h"
#include <stdio.h>
#include <string.h>
#define STRING_SIZE 100
#define input(TEXT, VAR) do { printf(TEXT); scanf("%zu", VAR); getc(stdin); } while(0)
enum bool {false, true};
size_t sizes[] = {64, 11, 52};
int force_float = true;
void convert_file(char *input_path, char *output_... | 29.209524 | 98 | 0.522661 |
7af00cb8c3599aa054e0a13bd9bef3969d631564 | 221 | rb | Ruby | app/controllers/api/v1/test_controller.rb | Telepic-Game/Telepic_BE | c3fc03bd8f60a326c7099c9497dcc18089a69358 | [
"Unlicense",
"MIT"
] | null | null | null | app/controllers/api/v1/test_controller.rb | Telepic-Game/Telepic_BE | c3fc03bd8f60a326c7099c9497dcc18089a69358 | [
"Unlicense",
"MIT"
] | 27 | 2021-07-03T01:49:31.000Z | 2021-09-13T20:17:12.000Z | app/controllers/api/v1/test_controller.rb | Telepic-Game/Telepic_BE | c3fc03bd8f60a326c7099c9497dcc18089a69358 | [
"Unlicense",
"MIT"
] | null | null | null | class Api::V1::TestController < ApplicationController
def destroy_database
WaitingRoomPlayer.destroy_all
WaitingRoom.destroy_all
PlayerGame.destroy_all
Game.destroy_all
Player.destroy_all
end
end
| 20.090909 | 53 | 0.782805 |
330e0026ec6f48bff70e4f7fa2738cc955a1b78d | 1,397 | py | Python | nucleotidefrequencies.py | TaliaferroLab/AnalysisScripts | 3df37d2f8fca9bc402afe5ea870c42200fca1ed3 | [
"MIT"
] | null | null | null | nucleotidefrequencies.py | TaliaferroLab/AnalysisScripts | 3df37d2f8fca9bc402afe5ea870c42200fca1ed3 | [
"MIT"
] | null | null | null | nucleotidefrequencies.py | TaliaferroLab/AnalysisScripts | 3df37d2f8fca9bc402afe5ea870c42200fca1ed3 | [
"MIT"
] | 1 | 2021-10-30T07:37:19.000Z | 2021-10-30T07:37:19.000Z | #Usage: python nucleotidefrequencies.py <fasta file> <output file>
#Output is tab delimited frequencies of A, G, C, U
from Bio import SeqIO
import sys
def getfreqs(fasta):
freqs = [] #[afreq, gfreq, cfreq, ufreq]
a = 0
u = 0
c = 0
g = 0
tot = 0
for record in SeqIO.parse(fasta, 'fasta'):
seq = str(record.seq.... | 26.865385 | 104 | 0.602004 |
d3c20bc0994e96d8edeac1460c81c28e61399324 | 1,685 | sql | SQL | src/schema.sql | PyllrNL/Arduino_Log_Dashboard | 80829c75c56632ab043bdd173974ef9f90692af5 | [
"MIT"
] | null | null | null | src/schema.sql | PyllrNL/Arduino_Log_Dashboard | 80829c75c56632ab043bdd173974ef9f90692af5 | [
"MIT"
] | null | null | null | src/schema.sql | PyllrNL/Arduino_Log_Dashboard | 80829c75c56632ab043bdd173974ef9f90692af5 | [
"MIT"
] | 3 | 2022-02-23T15:41:03.000Z | 2022-03-16T09:13:19.000Z | create table users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL,
hashed_password TEXT NOT NULL,
UNIQUE(username)
);
create table dashboards (
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id INTEGER NOT NULL,
sample... | 30.089286 | 62 | 0.641543 |
b868d63a4975e8c108b91815ba8b0e910ae93c09 | 947 | asm | Assembly | programs/oeis/064/A064097.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/064/A064097.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/064/A064097.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A064097: A quasi-logarithm defined inductively by a(1) = 0 and a(p) = 1 + a(p-1) if p is prime and a(n*m) = a(n) + a(m) if m,n > 1.
; 0,1,2,2,3,3,4,3,4,4,5,4,5,5,5,4,5,5,6,5,6,6,7,5,6,6,6,6,7,6,7,5,7,6,7,6,7,7,7,6,7,7,8,7,7,8,9,6,8,7,7,7,8,7,8,7,8,8,9,7,8,8,8,6,8,8,9,7,9,8,9,7,8,8,8,8,9,8,9,7,8,8,9,8,8,9,9,8,9,8,9,9,... | 59.1875 | 600 | 0.591341 |
21a40bed0a8ed690bb275e6a538633b8a4e1320d | 1,828 | sql | SQL | sql/n9e_ams.sql | xroa/nightingale | 66c93f472af82f1eab6a175327ecb1ab2989d499 | [
"Apache-2.0"
] | 1 | 2020-09-18T05:26:16.000Z | 2020-09-18T05:26:16.000Z | sql/n9e_ams.sql | xroa/nightingale | 66c93f472af82f1eab6a175327ecb1ab2989d499 | [
"Apache-2.0"
] | 1 | 2022-03-23T11:08:03.000Z | 2022-03-23T11:08:03.000Z | sql/n9e_ams.sql | xroa/nightingale | 66c93f472af82f1eab6a175327ecb1ab2989d499 | [
"Apache-2.0"
] | 1 | 2020-09-01T10:12:34.000Z | 2020-09-01T10:12:34.000Z | set names utf8;
drop database if exists n9e_ams;
create database n9e_ams;
use n9e_ams;
CREATE TABLE `host`
(
`id` int unsigned not null AUTO_INCREMENT,
`sn` char(128) not null default '',
`ip` char(15) not null,
`ident` varchar(128) not null default '',
`name` varchar(128) no... | 32.642857 | 74 | 0.630744 |
756bf05aedd4f965d0ff52f715f68e7328142b2b | 2,191 | c | C | lib/guilds/obj/invis_resolve.c | vlehtola/questmud | 8bc3099b5ad00a9e0261faeb6637c76b521b6dbe | [
"MIT"
] | null | null | null | lib/guilds/obj/invis_resolve.c | vlehtola/questmud | 8bc3099b5ad00a9e0261faeb6637c76b521b6dbe | [
"MIT"
] | null | null | null | lib/guilds/obj/invis_resolve.c | vlehtola/questmud | 8bc3099b5ad00a9e0261faeb6637c76b521b6dbe | [
"MIT"
] | null | null | null | int percent, mastery, type, duration;
object ob, prot;
string text;
resolve(class,effect_bonus,target, caster_ob) {
int max, max_prot, type;
if (!target) {
tell_object(caster_ob, "Cast at whom?\n");
return 1;
}
ob = present(lower_case(target), environment(caster_ob));
if (!ob) {
... | 37.135593 | 103 | 0.605203 |
4c7afad13a25968ffb08500240fe3ef83cf896d3 | 2,110 | swift | Swift | GitWoodTests/RealmStorageTest.swift | nour7/GitWood | 9f66454f19b5c8121fa4c6e41264c9a8283a354b | [
"MIT"
] | null | null | null | GitWoodTests/RealmStorageTest.swift | nour7/GitWood | 9f66454f19b5c8121fa4c6e41264c9a8283a354b | [
"MIT"
] | null | null | null | GitWoodTests/RealmStorageTest.swift | nour7/GitWood | 9f66454f19b5c8121fa4c6e41264c9a8283a354b | [
"MIT"
] | null | null | null | //
// RealmStorageTest.swift
// GitWoodTests
//
// Created by Nour on 26/02/2019.
// Copyright © 2019 Nour Saffaf. All rights reserved.
//
import XCTest
import RealmSwift
@testable import GitWood
class RealmStorageTest: XCTestCase {
var realmStorage: RealmStorage!
override func setUp() {
R... | 35.166667 | 306 | 0.648341 |
c22f58562c403aa86f37c20ea16d7c15271adc92 | 32 | go | Go | pkg/agent/pyspy/placeholder.go | appleboy/pyroscope | 986989d0b8fb90d6ee34c8e38a2448c3079e5a17 | [
"Apache-2.0"
] | 2 | 2021-03-04T01:33:46.000Z | 2022-02-04T22:35:41.000Z | pkg/agent/pyspy/placeholder.go | appleboy/pyroscope | 986989d0b8fb90d6ee34c8e38a2448c3079e5a17 | [
"Apache-2.0"
] | null | null | null | pkg/agent/pyspy/placeholder.go | appleboy/pyroscope | 986989d0b8fb90d6ee34c8e38a2448c3079e5a17 | [
"Apache-2.0"
] | null | null | null | // +build !pyspy
package pyspy
| 8 | 16 | 0.6875 |
2a061c99352b8c48aafb14283b601b7ccc691134 | 9,359 | java | Java | gutta-apievolution-core/src/test/java/gutta/apievolution/core/resolution/DefinitionResolverTest.java | CexyChris/gutta-apievolution | 1439fb5e578817d13e43273f778fabad47c7012f | [
"MIT"
] | null | null | null | gutta-apievolution-core/src/test/java/gutta/apievolution/core/resolution/DefinitionResolverTest.java | CexyChris/gutta-apievolution | 1439fb5e578817d13e43273f778fabad47c7012f | [
"MIT"
] | null | null | null | gutta-apievolution-core/src/test/java/gutta/apievolution/core/resolution/DefinitionResolverTest.java | CexyChris/gutta-apievolution | 1439fb5e578817d13e43273f778fabad47c7012f | [
"MIT"
] | null | null | null | package gutta.apievolution.core.resolution;
import gutta.apievolution.core.apimodel.AtomicType;
import gutta.apievolution.core.apimodel.Optionality;
import gutta.apievolution.core.apimodel.QualifiedName;
import gutta.apievolution.core.apimodel.StringType;
import gutta.apievolution.core.apimodel.consumer.ConsumerApiDef... | 35.585551 | 109 | 0.5819 |
053dd88280d144edc65cab857144712ac47dcb1b | 1,836 | rb | Ruby | lib/book_toolkit/api_parser/open_library.rb | Yukaii/book_toolkit | e816268b2401f06de86c0883874196b01fd04712 | [
"MIT"
] | null | null | null | lib/book_toolkit/api_parser/open_library.rb | Yukaii/book_toolkit | e816268b2401f06de86c0883874196b01fd04712 | [
"MIT"
] | null | null | null | lib/book_toolkit/api_parser/open_library.rb | Yukaii/book_toolkit | e816268b2401f06de86c0883874196b01fd04712 | [
"MIT"
] | null | null | null | # {
# "ISBN:9780387290959": {
# "bib_key": "ISBN:9780387290959",
# "preview": "restricted",
# "preview_url": "https://archive.org/details/algebraiccombina2003liye",
# "info_url": "http://openlibrary.org/books/OL22723183M/Orthogonal_frequency_division_mutiplexing_for_wireless_communications",
# "de... | 24.48 | 131 | 0.486383 |
40fa3e8faf236cf11c391bbbffb1a673d67006ef | 2,541 | py | Python | autolens/interferometer/model/result.py | Jammy2211/PyAutoLens | 728100a3bf13f89f35030724aa08593ab44e65eb | [
"MIT"
] | 114 | 2018-03-05T07:31:47.000Z | 2022-03-08T06:40:52.000Z | autolens/interferometer/model/result.py | Jammy2211/PyAutoLens | 728100a3bf13f89f35030724aa08593ab44e65eb | [
"MIT"
] | 143 | 2018-01-31T09:57:13.000Z | 2022-03-16T09:41:05.000Z | autolens/interferometer/model/result.py | Jammy2211/PyAutoLens | 728100a3bf13f89f35030724aa08593ab44e65eb | [
"MIT"
] | 33 | 2018-01-31T12:15:57.000Z | 2022-01-08T18:31:02.000Z | import numpy as np
import autoarray as aa
import autogalaxy as ag
from autolens.lens.model.result import ResultDataset
class ResultInterferometer(ResultDataset):
@property
def max_log_likelihood_fit(self):
return self.analysis.fit_interferometer_for_instance(instance=self.instance)
... | 31.37037 | 89 | 0.675325 |
813338bd4abab3e9e3ece596433ba46b4b4e5f89 | 2,921 | go | Go | api/v1alpha1/jvmchaos_webhook.go | BearerPipelineTest/chaos-mesh | 804b9a7e7b2fe3f01e12927a917baac9e53172a8 | [
"Apache-2.0"
] | 1,954 | 2019-12-31T05:28:45.000Z | 2020-07-15T18:23:17.000Z | api/v1alpha1/jvmchaos_webhook.go | BearerPipelineTest/chaos-mesh | 804b9a7e7b2fe3f01e12927a917baac9e53172a8 | [
"Apache-2.0"
] | 591 | 2019-12-31T06:18:36.000Z | 2020-07-16T02:26:16.000Z | api/v1alpha1/jvmchaos_webhook.go | PhoenixRedflash/chaos-mesh | e02112240382f65ac8d021cffcc843946297b7d1 | [
"Apache-2.0"
] | 180 | 2019-12-31T05:46:24.000Z | 2020-07-15T21:35:01.000Z | // Copyright 2021 Chaos Mesh Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to... | 32.455556 | 181 | 0.687778 |
617434cc54ad7fac61fa862d9751b842fd381981 | 1,311 | kt | Kotlin | oops/src/main/kotlin/io/nichijou/oops/ext/PackageManager.kt | iota9star/oops-android-kt | 81cfcfe281cd659e07c14defcafbcaee19cfed19 | [
"Apache-2.0"
] | 13 | 2018-10-28T03:03:23.000Z | 2021-09-01T16:39:57.000Z | oops/src/main/kotlin/io/nichijou/oops/ext/PackageManager.kt | iota9star/oops-android-kt | 81cfcfe281cd659e07c14defcafbcaee19cfed19 | [
"Apache-2.0"
] | null | null | null | oops/src/main/kotlin/io/nichijou/oops/ext/PackageManager.kt | iota9star/oops-android-kt | 81cfcfe281cd659e07c14defcafbcaee19cfed19 | [
"Apache-2.0"
] | 2 | 2018-09-18T16:10:00.000Z | 2018-10-14T07:07:37.000Z | package io.nichijou.oops.ext
import android.content.pm.PackageManager
import android.graphics.Bitmap
import android.graphics.Canvas
import android.graphics.drawable.AdaptiveIconDrawable
import android.graphics.drawable.BitmapDrawable
import android.graphics.drawable.Drawable
import android.graphics.drawable.LayerDrawa... | 33.615385 | 93 | 0.747521 |
8ee598b94f50cb616436dee249224db4cd8e55ff | 3,574 | swift | Swift | Releases/2.0/SuSift.swift | aIDserse/SuSift | 69443b94b8ed2d349fe45c23fa4c2ec348e5004d | [
"WTFPL"
] | 2 | 2020-11-20T11:18:10.000Z | 2020-12-04T10:10:03.000Z | Releases/2.0/SuSift.swift | aIDserse/SuSift | 69443b94b8ed2d349fe45c23fa4c2ec348e5004d | [
"WTFPL"
] | null | null | null | Releases/2.0/SuSift.swift | aIDserse/SuSift | 69443b94b8ed2d349fe45c23fa4c2ec348e5004d | [
"WTFPL"
] | null | null | null | import Foundation
func addition()
{
var a = Float()
var b = Float()
var c = Float()
print("First number?")
a = Float(readLine()!)!
print("Second number?")
b = Float(readLine()!)!
c = a + b
print("\(a) + \(b) =")
print(c)
}
func subtraction()
{
var a = Float()
var b = Float()
var c = Float()
print("Fi... | 15.208511 | 73 | 0.524902 |
581718c598615207caec96ab7adf162403d2a3d9 | 12,565 | swift | Swift | STORE/Core/Classes/Operation/OperationType.swift | instaloper/store-ios-framework | 9c2f9a0eb0fd3cd35bbad2ce33aa48bdb4fa17e9 | [
"MIT"
] | null | null | null | STORE/Core/Classes/Operation/OperationType.swift | instaloper/store-ios-framework | 9c2f9a0eb0fd3cd35bbad2ce33aa48bdb4fa17e9 | [
"MIT"
] | null | null | null | STORE/Core/Classes/Operation/OperationType.swift | instaloper/store-ios-framework | 9c2f9a0eb0fd3cd35bbad2ce33aa48bdb4fa17e9 | [
"MIT"
] | null | null | null | //
// OperationType.swift
// ECHO
//
// Created by Vladimir Sharaev on 17.08.2018.
// Copyright © 2018 PixelPlex. All rights reserved.
//
/**
Represents all blockchain operation types [Operations](https://dev-doc.myecho.app/group__operations.html#details)
*/
public enum OperationType: Int {
case transferOpe... | 55.352423 | 150 | 0.723916 |
f9a7ffa1eafdd0569d37ca9febc07221bbe3c189 | 161 | go | Go | variables/go-without-package-scoped-variables/main.go | shahincsejnu/oh-my-go | 6fad1038162bbaf41208fc744f4f400861087812 | [
"MIT"
] | 1 | 2021-11-18T11:47:09.000Z | 2021-11-18T11:47:09.000Z | variables/go-without-package-scoped-variables/main.go | shahincsejnu/oh-my-go | 6fad1038162bbaf41208fc744f4f400861087812 | [
"MIT"
] | null | null | null | variables/go-without-package-scoped-variables/main.go | shahincsejnu/oh-my-go | 6fad1038162bbaf41208fc744f4f400861087812 | [
"MIT"
] | null | null | null | // Followed tuto : https://dave.cheney.net/2017/06/11/go-without-package-scoped-variables
package main
func main() {
var _ int = 10
var _ int = *new(int)
}
| 16.1 | 89 | 0.68323 |
971292c0c00479c25e64829f7f2e72b864a89e1c | 576 | swift | Swift | Cineaste/World.swift | spacepandas/cineaste-ios | 88b85deaa5cb2d52fb9e0a08f2cd8cfb458c1fff | [
"Apache-2.0"
] | 29 | 2018-07-01T20:03:18.000Z | 2021-05-04T07:44:46.000Z | Cineaste/World.swift | spacepandas/cineaste-ios | 88b85deaa5cb2d52fb9e0a08f2cd8cfb458c1fff | [
"Apache-2.0"
] | 74 | 2018-07-01T08:01:55.000Z | 2022-03-01T11:00:44.000Z | Cineaste/World.swift | spacepandas/cineaste-ios | 88b85deaa5cb2d52fb9e0a08f2cd8cfb458c1fff | [
"Apache-2.0"
] | 13 | 2018-07-16T19:06:34.000Z | 2021-06-07T20:16:10.000Z | //
// World.swift
// Cineaste App
//
// Created by Felizia Bernutz on 28.12.20.
// Copyright © 2020 spacepandas.de. All rights reserved.
//
import Foundation
/// Encapsulates dependencies to make it easier to mock and replace them
/// in tests.
///
/// See more about this concept:
/// https://www.pointfree.co/blo... | 20.571429 | 72 | 0.6875 |
858ac91aadcce295595d3dd0aa81ab4829bfec4a | 46 | js | JavaScript | tests/yield/jsfmt.spec.js | fuelingtheweb/prettier | 53edfeb1ded1e2729e3f226f1a3fcc3b42516776 | [
"MIT"
] | 40,139 | 2017-02-20T22:01:11.000Z | 2022-03-31T19:56:19.000Z | tests/yield/jsfmt.spec.js | fuelingtheweb/prettier | 53edfeb1ded1e2729e3f226f1a3fcc3b42516776 | [
"MIT"
] | 9,185 | 2017-02-20T22:02:24.000Z | 2022-03-31T20:45:07.000Z | tests/yield/jsfmt.spec.js | fuelingtheweb/prettier | 53edfeb1ded1e2729e3f226f1a3fcc3b42516776 | [
"MIT"
] | 4,365 | 2017-02-21T16:30:33.000Z | 2022-03-31T02:49:26.000Z | run_spec(__dirname, ["babel", "typescript"]);
| 23 | 45 | 0.695652 |
ff238f570db7bbaf7daab1a9dd0dc775db1c4107 | 96 | sql | SQL | af/oometa/000-A-versioning.rollback.sql | vivivibo/pipeline | 2a24660ca4b53b51bde3daedde80d8489bdeb37c | [
"BSD-3-Clause"
] | 16 | 2018-08-23T11:45:00.000Z | 2022-01-21T18:41:58.000Z | af/oometa/000-A-versioning.rollback.sql | vivivibo/pipeline | 2a24660ca4b53b51bde3daedde80d8489bdeb37c | [
"BSD-3-Clause"
] | 241 | 2018-07-14T13:04:51.000Z | 2022-03-24T14:33:40.000Z | af/oometa/000-A-versioning.rollback.sql | vivivibo/pipeline | 2a24660ca4b53b51bde3daedde80d8489bdeb37c | [
"BSD-3-Clause"
] | 7 | 2019-02-15T14:58:26.000Z | 2021-12-31T17:47:56.000Z | BEGIN;
-- This file removes versioning support from database.
DROP SCHEMA _v CASCADE;
COMMIT;
| 13.714286 | 54 | 0.770833 |
f1cc3859d66541ce8c9cd93b7e49fc883b7051a4 | 2,925 | asm | Assembly | uuu/src/cells/io/mouse/microsoft/microsoft.asm | ekscrypto/Unununium | 4b67e7c5e63cf1be2157382ffd4c1e9d12957a1f | [
"BSD-2-Clause"
] | 7 | 2019-03-04T08:53:33.000Z | 2022-01-28T19:32:12.000Z | uuu/src/cells/io/mouse/microsoft/microsoft.asm | ekscrypto/Unununium | 4b67e7c5e63cf1be2157382ffd4c1e9d12957a1f | [
"BSD-2-Clause"
] | null | null | null | uuu/src/cells/io/mouse/microsoft/microsoft.asm | ekscrypto/Unununium | 4b67e7c5e63cf1be2157382ffd4c1e9d12957a1f | [
"BSD-2-Clause"
] | null | null | null | ;====----------------------------------------------------------------------====
; Microsoft Serial Compatible Mouse Driver (c)2001 Richard Fillion
; MSLogitech Driver Cell Distributed under BSD License
;====----------------------------------------------------------------------====
[bits 32]
section .c_... | 19.897959 | 79 | 0.604786 |
b9f9871af368e89a3dbf7834f3a92b891cd90268 | 388 | sql | SQL | test-scripts/test-file.sql | lelanthran/libsqldb | b355a183ba560a16769d8125623c6faeb572931c | [
"Unlicense"
] | null | null | null | test-scripts/test-file.sql | lelanthran/libsqldb | b355a183ba560a16769d8125623c6faeb572931c | [
"Unlicense"
] | null | null | null | test-scripts/test-file.sql | lelanthran/libsqldb | b355a183ba560a16769d8125623c6faeb572931c | [
"Unlicense"
] | null | null | null |
-- A small SQL script. Note that no parameterisation is performed.
--
-- Testing that ';' in a comment works as expected.
-- select * from one;
--
-- Like that.
insert into one values (1001, 'script;test');
insert into two values (2001, 1001);
-- Try out the upsert functionality
insert into one values (1001, 'new;va... | 22.823529 | 66 | 0.693299 |
811fb881d635c5c16d4fa30f27318e38bbf1037e | 203 | sql | SQL | src/FirebirdDbComparer.Tests/Compare/ComparerTestsData/Changing/ViewUsedInChangingProcedure_00.Target.sql | cincuranet/FirebirdDbComparer | d12c6c7fda24e6ff290984d00e80a5fb187d1ef1 | [
"MIT"
] | 17 | 2018-07-09T08:32:29.000Z | 2022-02-10T06:50:52.000Z | src/FirebirdDbComparer.Tests/Compare/ComparerTestsData/Changing/ViewUsedInChangingProcedure_00.Target.sql | cincuranet/FirebirdDbComparer | d12c6c7fda24e6ff290984d00e80a5fb187d1ef1 | [
"MIT"
] | 27 | 2019-01-08T14:20:57.000Z | 2022-02-21T10:02:16.000Z | src/FirebirdDbComparer.Tests/Compare/ComparerTestsData/Changing/ViewUsedInChangingProcedure_00.Target.sql | cincuranet/FirebirdDbComparer | d12c6c7fda24e6ff290984d00e80a5fb187d1ef1 | [
"MIT"
] | 4 | 2019-01-09T22:40:44.000Z | 2019-10-19T17:51:45.000Z | create view v
as
select 1 as i from rdb$database;
set term ^ ;
create procedure p
returns (out_i int)
as
begin
for select i from v into out_i do
begin
suspend;
end
end^
set term ;^ | 11.941176 | 37 | 0.660099 |
2ce037e27e8e8117661949752bcf15f93902ee23 | 260 | swift | Swift | Core/Domain/FactoryTypes/OnboardingModuleFactory.swift | SocratisM/TestLocation | cf920feb772c6e99f030456fab0a0a1f5d0586bc | [
"MIT"
] | null | null | null | Core/Domain/FactoryTypes/OnboardingModuleFactory.swift | SocratisM/TestLocation | cf920feb772c6e99f030456fab0a0a1f5d0586bc | [
"MIT"
] | null | null | null | Core/Domain/FactoryTypes/OnboardingModuleFactory.swift | SocratisM/TestLocation | cf920feb772c6e99f030456fab0a0a1f5d0586bc | [
"MIT"
] | null | null | null | //
// OnboardingModuleFactory.swift
// Core
//
// Created by Socratis Michaelides on 07/11/2018.
// Copyright © 2018 Socratis Michaelides. All rights reserved.
//
public protocol OnboardingModuleFactory {
func makeOnboardingModule() -> OnboardingView
}
| 21.666667 | 63 | 0.746154 |
fd24cb5fb573e48249707c4d75fd8d81cec08a11 | 104,939 | sql | SQL | sql/ry.sql | 1774214410/-ruoyi | db939b846337a8d682f780697c0233607e33ca2c | [
"MIT"
] | null | null | null | sql/ry.sql | 1774214410/-ruoyi | db939b846337a8d682f780697c0233607e33ca2c | [
"MIT"
] | null | null | null | sql/ry.sql | 1774214410/-ruoyi | db939b846337a8d682f780697c0233607e33ca2c | [
"MIT"
] | null | null | null | /*
Navicat MySQL Data Transfer
Source Server : localhost_3306
Source Server Version : 50138
Source Host : localhost:3306
Source Database : ry
Target Server Type : MYSQL
Target Server Version : 50138
File Encoding : 65001
Date: 2018-09-01 09:41:07
*/
SET FOREIGN_KEY_CHECKS=0;
-- -... | 97.98226 | 2,049 | 0.625135 |
af01cdff0b95ff48d87028cc1c6847f3e83e7eaf | 5,041 | kt | Kotlin | app/src/main/java/com/hollabrowser/meforce/utils/IntentUtils.kt | meforce/holla-android | 43bac79108cbd9074ab21ade96f1c12d30db4c9f | [
"MIT"
] | null | null | null | app/src/main/java/com/hollabrowser/meforce/utils/IntentUtils.kt | meforce/holla-android | 43bac79108cbd9074ab21ade96f1c12d30db4c9f | [
"MIT"
] | null | null | null | app/src/main/java/com/hollabrowser/meforce/utils/IntentUtils.kt | meforce/holla-android | 43bac79108cbd9074ab21ade96f1c12d30db4c9f | [
"MIT"
] | null | null | null | package com.hollabrowser.meforce.utils
import android.app.Activity
import android.content.Intent
import android.content.pm.PackageManager
import android.net.Uri
import android.util.Log
import android.webkit.WebView
import androidx.annotation.NonNull
import androidx.annotation.Nullable
import com.hollabrowser.meforce.R... | 34.527397 | 99 | 0.556834 |
ce7e23abcf05af5370d5a9d14eb425112664c165 | 2,198 | ps1 | PowerShell | manage_orphaned_disks.ps1 | nolanprewit1/manage_orphaned_disks | 5cbf56d7200ee50d728fc47f449e5335d8fcf94b | [
"Apache-2.0"
] | null | null | null | manage_orphaned_disks.ps1 | nolanprewit1/manage_orphaned_disks | 5cbf56d7200ee50d728fc47f449e5335d8fcf94b | [
"Apache-2.0"
] | null | null | null | manage_orphaned_disks.ps1 | nolanprewit1/manage_orphaned_disks | 5cbf56d7200ee50d728fc47f449e5335d8fcf94b | [
"Apache-2.0"
] | null | null | null | #===========================================================================
# PARAMETERS
#===========================================================================
param(
[Parameter(Mandatory=$true)]
[string]$vcenter_url,
[Parameter(Mandatory=$true)]
[string]$vcenter_username,
[Parameter(Mandatory... | 32.323529 | 113 | 0.578708 |
fb47c815d290e28c429797e0db9b1fc0083b09ac | 87 | java | Java | offer/src/main/java/com/java/study/algorithm/zuo/emiddle/class05/Code06_MinHeight.java | seawindnick/javaFamily | d8a6cf8b185e98d6e60961e306a4bbeb4e7360dc | [
"MIT"
] | 1 | 2020-12-02T03:14:19.000Z | 2020-12-02T03:14:19.000Z | offer/src/main/java/com/java/study/algorithm/zuo/emiddle/class05/Code06_MinHeight.java | seawindnick/javaFamily | d8a6cf8b185e98d6e60961e306a4bbeb4e7360dc | [
"MIT"
] | 1 | 2021-05-08T18:03:22.000Z | 2021-05-08T18:03:22.000Z | offer/src/main/java/com/java/study/algorithm/zuo/emiddle/class05/Code06_MinHeight.java | seawindnick/javafamily | f0ac988170bbc6ad562aaf562b2c7907ba68a56a | [
"MIT"
] | null | null | null | package com.java.study.algorithm.zuo.emiddle.class05;
public class Code06_MinHeight{
} | 21.75 | 53 | 0.827586 |
504f9d851865c73fd4958e9d82f814e4d681d3bd | 376 | swift | Swift | my-extensions/my-extensions/Extensions/Double+Extension.swift | winfredzen/my-extensions | 24924865ff40e5ad4b01a74a0413c3316e3e25a0 | [
"MIT"
] | null | null | null | my-extensions/my-extensions/Extensions/Double+Extension.swift | winfredzen/my-extensions | 24924865ff40e5ad4b01a74a0413c3316e3e25a0 | [
"MIT"
] | null | null | null | my-extensions/my-extensions/Extensions/Double+Extension.swift | winfredzen/my-extensions | 24924865ff40e5ad4b01a74a0413c3316e3e25a0 | [
"MIT"
] | null | null | null | //
// Double+Extension.swift
// my-extensions
//
// Created by 王振 on 2018/9/4.
// Copyright © 2018年 wz. All rights reserved.
//
import Foundation
public extension Double {
public func isValidLat() -> Bool {
return self <= 90.0 && self >= -90.0
}
public func validLong() -> Bool {
... | 17.090909 | 46 | 0.558511 |
ddbc8815316eda16610c6e6c4f9e2690e41cccde | 1,825 | php | PHP | application/views/guru/tugas/lihat_pekerjaan.php | MuhammadSyamsi/sekolah | 12b9015d454b64f9105444af404c9cc17271a4a2 | [
"MIT"
] | null | null | null | application/views/guru/tugas/lihat_pekerjaan.php | MuhammadSyamsi/sekolah | 12b9015d454b64f9105444af404c9cc17271a4a2 | [
"MIT"
] | null | null | null | application/views/guru/tugas/lihat_pekerjaan.php | MuhammadSyamsi/sekolah | 12b9015d454b64f9105444af404c9cc17271a4a2 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="en">
<div class='container-fluid' id="page-wrapper">
<br/>
<?php $this->load->view("admin/_partials/breadcrumb.php") ?>
<!-- DataTables -->
<div class="panel-group">
<div class='panel panel-info'>
<div class='panel-heading'>
<a href="<?php echo base_url('admin/tu... | 33.181818 | 133 | 0.511233 |
04c60f213cc77cec0a2d3822ff44be2bcfdf0afe | 12,999 | java | Java | app/src/main/java/nkarasch/repeatingreminder/gui/DialogBuilder.java | nkarasch/RepeatingReminder | 090e7dbc0d7fac5c9ea7b431137f69c5f007ef77 | [
"Apache-2.0"
] | 2 | 2015-06-06T18:46:57.000Z | 2018-03-07T05:12:23.000Z | app/src/main/java/nkarasch/repeatingreminder/gui/DialogBuilder.java | nkarasch/RepeatingReminder | 090e7dbc0d7fac5c9ea7b431137f69c5f007ef77 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/nkarasch/repeatingreminder/gui/DialogBuilder.java | nkarasch/RepeatingReminder | 090e7dbc0d7fac5c9ea7b431137f69c5f007ef77 | [
"Apache-2.0"
] | 1 | 2019-06-11T04:12:07.000Z | 2019-06-11T04:12:07.000Z | package nkarasch.repeatingreminder.gui;
/*
* Copyright (C) 2014 Jared Rummler <jared.rummler@gmail.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/l... | 32.908861 | 149 | 0.608431 |
816370f0291b4f4c17031876542b792948b22bfe | 1,200 | go | Go | pkg/http/middlewares/path.go | contiamo/go-base | acc1e73b5964d01b9a99597ae08dc693324227ec | [
"MIT"
] | 13 | 2019-11-14T12:22:49.000Z | 2021-12-18T16:25:46.000Z | pkg/http/middlewares/path.go | contiamo/go-base | acc1e73b5964d01b9a99597ae08dc693324227ec | [
"MIT"
] | 74 | 2019-08-13T16:21:21.000Z | 2022-03-29T07:07:54.000Z | pkg/http/middlewares/path.go | contiamo/go-base | acc1e73b5964d01b9a99597ae08dc693324227ec | [
"MIT"
] | 1 | 2020-09-09T09:00:49.000Z | 2020-09-09T09:00:49.000Z | package middlewares
import (
"net/http"
"strconv"
"strings"
"github.com/go-chi/chi"
uuid "github.com/satori/go.uuid"
)
// PathWithCleanID replace string values that look like ids (uuids and int) with "*"
func PathWithCleanID(r *http.Request) string {
pathParts := strings.Split(r.URL.Path, "/")
for i, part := ... | 25.531915 | 84 | 0.646667 |
fb17373ff2fb4f1f32bab618d910fba84d69dc53 | 360 | h | C | src/obj/types/vertex_t.h | nsixcancode/game | aceaa7ea74f04e31baf9cef7c102d2e9d47d33d9 | [
"MIT"
] | null | null | null | src/obj/types/vertex_t.h | nsixcancode/game | aceaa7ea74f04e31baf9cef7c102d2e9d47d33d9 | [
"MIT"
] | null | null | null | src/obj/types/vertex_t.h | nsixcancode/game | aceaa7ea74f04e31baf9cef7c102d2e9d47d33d9 | [
"MIT"
] | null | null | null | /**
* @author nsix
* @file vertex_t
* @brief defines the obj vertex
* @note vertex indices start at 1 -- same as obj files
*/
#ifndef GAME_VERTEX_T_H
#define GAME_VERTEX_T_H
typedef struct vertex_t {
float x;
float y;
float z;
unsigned int index;
struct vertex_t *next;
struct vertex_t *las... | 18.947368 | 55 | 0.683333 |
99f5faf6bcdc0e3a7b8d19699a351d87163ef016 | 2,601 | dart | Dart | lib/models/report.dart | Bhautik102/doctor-appointment | 510dd251b2903f5052fecd9a186038bde48c3f9e | [
"Apache-2.0"
] | null | null | null | lib/models/report.dart | Bhautik102/doctor-appointment | 510dd251b2903f5052fecd9a186038bde48c3f9e | [
"Apache-2.0"
] | null | null | null | lib/models/report.dart | Bhautik102/doctor-appointment | 510dd251b2903f5052fecd9a186038bde48c3f9e | [
"Apache-2.0"
] | null | null | null | import 'package:block1/models/Model.dart';
import 'package:enum_to_string/enum_to_string.dart';
enum ReportType {
Cancer,
Corona,
BloodPressure,
HeartReport,
Others,
}
class Report extends Model {
static const String IMAGES_KEY = "images";
static const String TITLE_KEY = "title";
static const Str... | 25.252427 | 77 | 0.664744 |
4c26be2bbae58fbe86876057d7af5c6ac957cf20 | 473 | lua | Lua | data/talents/death.lua | urmane/its | e7d90894edb479074cb4ff12b4fc8be3ed5f872a | [
"CC-BY-4.0"
] | null | null | null | data/talents/death.lua | urmane/its | e7d90894edb479074cb4ff12b4fc8be3ed5f872a | [
"CC-BY-4.0"
] | null | null | null | data/talents/death.lua | urmane/its | e7d90894edb479074cb4ff12b4fc8be3ed5f872a | [
"CC-BY-4.0"
] | null | null | null | newTalentType{ type="anti-elemental/death", name = "death", description = "Death skills" }
newTalent{
name = "Nerve Strike",
short_name = "Nervestrike",
type = {"anti-elemental/death", 1},
info = "Cause massive damage with a targeted shot to a vital spot",
mode = "activated",
}
newTalent{
name =... | 27.823529 | 90 | 0.638478 |
e577b0b35c59bf69b3311fa405bdae638eda3da4 | 91 | ts | TypeScript | packages/IC-Development/marketplace/src/views/home/components/info-panel/components/tabs/components/index.ts | behfarkhosravi/Blockchain-in-a-Box | cde00b7a5073971e052e3fbb955781c380d18c8d | [
"MIT"
] | 33 | 2021-07-11T00:01:51.000Z | 2022-03-31T18:59:57.000Z | packages/IC-Development/marketplace/src/views/home/components/info-panel/components/tabs/components/index.ts | behfarkhosravi/Blockchain-in-a-Box | cde00b7a5073971e052e3fbb955781c380d18c8d | [
"MIT"
] | 70 | 2021-07-11T06:46:07.000Z | 2022-03-29T22:28:02.000Z | packages/IC-Development/marketplace/src/views/home/components/info-panel/components/tabs/components/index.ts | behfarkhosravi/Blockchain-in-a-Box | cde00b7a5073971e052e3fbb955781c380d18c8d | [
"MIT"
] | 19 | 2021-07-14T08:52:24.000Z | 2022-03-28T04:03:02.000Z | export * from './tab-details';
export * from './tab-history';
export * from './tab-panel';
| 22.75 | 30 | 0.637363 |
fee83aad069c809eb8e267d097a4d4bb77df401c | 1,692 | html | HTML | jekyll/deployment/render-db/index.html | toggle-corp/posm-admin | 4edaaecae7ebdbec9d376eadfde68eaa5243fb36 | [
"BSD-3-Clause"
] | 4 | 2016-04-04T19:23:49.000Z | 2017-01-03T15:40:15.000Z | jekyll/deployment/render-db/index.html | toggle-corp/posm-admin | 4edaaecae7ebdbec9d376eadfde68eaa5243fb36 | [
"BSD-3-Clause"
] | 7 | 2016-04-05T00:15:44.000Z | 2016-06-01T21:55:46.000Z | jekyll/deployment/render-db/index.html | toggle-corp/posm-admin | 4edaaecae7ebdbec9d376eadfde68eaa5243fb36 | [
"BSD-3-Clause"
] | 2 | 2016-08-11T15:58:04.000Z | 2016-11-11T21:56:46.000Z | ---
layout: default
title: Update Render DB
---
<div class="mdl-grid demo-content">
<div class="top-card mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col">
<div class="mdl-card__title mdl-card--expand posm-grey">
<h2 class="mdl-card__title-text">Update Render DB</h2>
</div>
<d... | 51.272727 | 167 | 0.647754 |
94b0a38b930786f442321a4a10f5fd2aa5f13328 | 2,807 | rs | Rust | src/transform/transformer2.rs | NoelWidmer/game_engine | 646ea62a46af1a9c120cccba1e145ec94bb9ef8e | [
"Apache-2.0"
] | null | null | null | src/transform/transformer2.rs | NoelWidmer/game_engine | 646ea62a46af1a9c120cccba1e145ec94bb9ef8e | [
"Apache-2.0"
] | null | null | null | src/transform/transformer2.rs | NoelWidmer/game_engine | 646ea62a46af1a9c120cccba1e145ec94bb9ef8e | [
"Apache-2.0"
] | null | null | null | use crate::{
ecs::{
World,
EntityId
},
math::Vec2,
transform::Transform2,
};
use std::collections::HashSet;
pub struct Transformer2 { }
impl Transformer2 {
pub fn adopt(world: &mut World, parent_entity_id: EntityId, child_entity_id: EntityId) -> Result<(), ()> {
let paren... | 38.452055 | 116 | 0.575704 |
32552d37f2f72e7bfd4517d0da863e833ee35abd | 186 | kt | Kotlin | EasyAdapter/src/main/java/com/chani/easyadapter/EasyViewHolder.kt | chani01/EasyAdapter | b30edc48b5d573539e3ef91266aa7c00895f5d22 | [
"Apache-2.0"
] | 2 | 2020-05-08T04:12:24.000Z | 2020-08-18T02:58:10.000Z | EasyAdapter/src/main/java/com/chani/easyadapter/EasyViewHolder.kt | chani01/EasyAdapter | b30edc48b5d573539e3ef91266aa7c00895f5d22 | [
"Apache-2.0"
] | null | null | null | EasyAdapter/src/main/java/com/chani/easyadapter/EasyViewHolder.kt | chani01/EasyAdapter | b30edc48b5d573539e3ef91266aa7c00895f5d22 | [
"Apache-2.0"
] | null | null | null | package com.chani.easyadapter
import android.view.View
import androidx.recyclerview.widget.RecyclerView
open class EasyViewHolder(itemsView: View): RecyclerView.ViewHolder(itemsView)
| 23.25 | 78 | 0.849462 |
1955c8605b474d9a748d330f1b344483579edcb7 | 3,242 | kt | Kotlin | thistle-console/src/commonMain/kotlin/com/copperleaf/thistle/console/renderer/ConsoleThistleRenderer.kt | copper-leaf/thistle | f661f01f6a97f68140c757ce300822a5f08d26d8 | [
"BSD-3-Clause"
] | 46 | 2021-05-06T17:37:08.000Z | 2022-02-01T19:23:29.000Z | thistle-console/src/commonMain/kotlin/com/copperleaf/thistle/console/renderer/ConsoleThistleRenderer.kt | copper-leaf/thistle | f661f01f6a97f68140c757ce300822a5f08d26d8 | [
"BSD-3-Clause"
] | 7 | 2021-05-13T15:05:56.000Z | 2022-03-03T20:48:31.000Z | thistle-console/src/commonMain/kotlin/com/copperleaf/thistle/console/renderer/ConsoleThistleRenderer.kt | copper-leaf/thistle | f661f01f6a97f68140c757ce300822a5f08d26d8 | [
"BSD-3-Clause"
] | 2 | 2021-12-08T08:44:47.000Z | 2021-12-19T16:34:20.000Z | package com.copperleaf.thistle.console.renderer
import com.copperleaf.kudzu.node.Node
import com.copperleaf.kudzu.node.many.ManyNode
import com.copperleaf.kudzu.node.tag.TagNode
import com.copperleaf.kudzu.node.text.TextNode
import com.copperleaf.thistle.console.ansi.AnsiEscapeCode
import com.copperleaf.thistle.consol... | 41.037975 | 114 | 0.580197 |
d4dbff542b75083d865511f0930bebc0feaf0923 | 2,016 | dart | Dart | shop_repository/lib/src/models/shopp.dart | AnandSaran/vivasayi | d0af7783055208853c3e602d311bc6d6b85c9f05 | [
"MIT"
] | null | null | null | shop_repository/lib/src/models/shopp.dart | AnandSaran/vivasayi | d0af7783055208853c3e602d311bc6d6b85c9f05 | [
"MIT"
] | null | null | null | shop_repository/lib/src/models/shopp.dart | AnandSaran/vivasayi | d0af7783055208853c3e602d311bc6d6b85c9f05 | [
"MIT"
] | null | null | null | /*
import 'package:flutter/material.dart';
import 'package:geoflutterfire/geoflutterfire.dart';
import 'package:shop_repository/src/entities/entities.dart';
@immutable
class Shopp {
final String id;
final String name;
final String imageUrl;
final String phoneNumber;
final String whatsAppNumber;
final Strin... | 23.717647 | 121 | 0.631944 |
24aee9e90eacca61fec680a6b26468b58d2c1008 | 706 | swift | Swift | iOS/IssueTracker/IssueTracker/MilestoneScene/Models/MilestoneInteractor.swift | ahrimy/IssueTracker-16 | ef4587a5d4288590ebfb468df317e3a3ff9b0eab | [
"MIT"
] | 11 | 2020-10-26T12:48:59.000Z | 2021-06-20T08:52:33.000Z | iOS/IssueTracker/IssueTracker/MilestoneScene/Models/MilestoneInteractor.swift | ahrimy/IssueTracker-16 | ef4587a5d4288590ebfb468df317e3a3ff9b0eab | [
"MIT"
] | 159 | 2020-10-26T10:40:46.000Z | 2020-11-22T09:14:14.000Z | iOS/IssueTracker/IssueTracker/MilestoneScene/Models/MilestoneInteractor.swift | ahrimy/IssueTracker-16 | ef4587a5d4288590ebfb468df317e3a3ff9b0eab | [
"MIT"
] | 5 | 2020-11-21T12:55:32.000Z | 2021-09-01T13:17:56.000Z | //
// MilestoneInteractor.swift
// IssueTracker
//
// Created by woong on 2020/11/02.
//
import Foundation
import NetworkService
protocol MilestoneBusinessLogic {
func request<T: Codable>(endPoint: MilestoneEndPoint, completionHandler: @escaping (T?) -> Void)
}
class MilestoneInteractor: MilestoneBusinessLogi... | 27.153846 | 109 | 0.65864 |
45fdadae5ae659912edd347a54d3fa681cfdd4eb | 311 | kt | Kotlin | app/src/main/java/com/myotive/celeryman/CeleryApplication.kt | myotive/celeryman | 39f1209326254be138d4d9cbe1925af01a06f4b8 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/myotive/celeryman/CeleryApplication.kt | myotive/celeryman | 39f1209326254be138d4d9cbe1925af01a06f4b8 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/myotive/celeryman/CeleryApplication.kt | myotive/celeryman | 39f1209326254be138d4d9cbe1925af01a06f4b8 | [
"Apache-2.0"
] | null | null | null | package com.myotive.celeryman
import android.app.Application
import com.myotive.celeryman.di.CeleryModule
import org.koin.android.ext.android.startKoin
class CeleryApplication(): Application(){
override fun onCreate() {
super.onCreate()
startKoin(this, listOf(CeleryModule.get()))
}
} | 23.923077 | 51 | 0.73955 |
a9cbe90132cd9404077bd0fa5c899c8b535aa68f | 8,465 | html | HTML | admin.html | charles2910/trab_Web | b854f97f1930c099fb9b3d62a7c5e920e8924750 | [
"MIT"
] | null | null | null | admin.html | charles2910/trab_Web | b854f97f1930c099fb9b3d62a7c5e920e8924750 | [
"MIT"
] | null | null | null | admin.html | charles2910/trab_Web | b854f97f1930c099fb9b3d62a7c5e920e8924750 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<!-- Feito por Carlos Henrique Lima Melara - 9805380 -->
<!-- com base no template disponibilizado em materialize.com -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Fi... | 35.567227 | 195 | 0.41264 |
107c5c6259c5bf6318a58d0255aa83114cc01c09 | 3,804 | ps1 | PowerShell | JenkinsPipelines/Scripts/UpdatePublisherImages.ps1 | asofron/LISAv2 | 3817f304f2ab16830266f96f857e68b235fe2483 | [
"Apache-2.0"
] | null | null | null | JenkinsPipelines/Scripts/UpdatePublisherImages.ps1 | asofron/LISAv2 | 3817f304f2ab16830266f96f857e68b235fe2483 | [
"Apache-2.0"
] | 1 | 2018-07-17T12:30:35.000Z | 2018-07-17T12:30:35.000Z | JenkinsPipelines/Scripts/UpdatePublisherImages.ps1 | asofron/LISAv2 | 3817f304f2ab16830266f96f857e68b235fe2483 | [
"Apache-2.0"
] | 1 | 2018-07-30T18:55:31.000Z | 2018-07-30T18:55:31.000Z | ##############################################################################################
# UpdatePublisherImages.ps1
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache License.
# Operations :
#
<#
.SYNOPSIS
<Description>
.PARAMETER
<Parameters>
.INPUTS
.NOTES
C... | 36.576923 | 178 | 0.495005 |
f0571f9fa4afbc250ffbbd1dd3bed40b228bfe8d | 46 | py | Python | cne/__init__.py | BartWojtowicz/cne | 16612292c1c938fc9ec53a14642fb7d40bcc9e25 | [
"Apache-2.0"
] | null | null | null | cne/__init__.py | BartWojtowicz/cne | 16612292c1c938fc9ec53a14642fb7d40bcc9e25 | [
"Apache-2.0"
] | null | null | null | cne/__init__.py | BartWojtowicz/cne | 16612292c1c938fc9ec53a14642fb7d40bcc9e25 | [
"Apache-2.0"
] | null | null | null | from .cne import CNE
__version__ = "0.0.dev"
| 11.5 | 23 | 0.695652 |
400512de1b938de4ea0af7890927aefcba57f312 | 4,134 | py | Python | kmeans.py | iqbalsublime/ML_DataScience | 85cf796d4568d246e3b814c64f0272c8c8dd5f8b | [
"MIT"
] | null | null | null | kmeans.py | iqbalsublime/ML_DataScience | 85cf796d4568d246e3b814c64f0272c8c8dd5f8b | [
"MIT"
] | null | null | null | kmeans.py | iqbalsublime/ML_DataScience | 85cf796d4568d246e3b814c64f0272c8c8dd5f8b | [
"MIT"
] | null | null | null | # -*- coding: utf-8 -*-
"""
Created on Mon Dec 9 01:58:58 2019
@author: iqbalsublime
"""
#================================================================================================================
#---------------------------------------------------------------------------------------------------------... | 33.609756 | 167 | 0.613449 |
3f68024020301d51c2ca64693b40f38bc0417e94 | 1,776 | kt | Kotlin | dashboard/src/main/java/com/kienht/gapo/dashboard/menu/adapter/loadmore/LoadmoreAdapter.kt | hantrungkien/Gapo-Dashboard-Demo | 32bdbc5f3e2ed9965898be9b892b06cb2da26da7 | [
"Apache-2.0"
] | 11 | 2020-05-20T09:45:32.000Z | 2022-03-06T08:09:39.000Z | dashboard/src/main/java/com/kienht/gapo/dashboard/menu/adapter/loadmore/LoadmoreAdapter.kt | hantrungkien/Gapo-Dashboard-Demo | 32bdbc5f3e2ed9965898be9b892b06cb2da26da7 | [
"Apache-2.0"
] | null | null | null | dashboard/src/main/java/com/kienht/gapo/dashboard/menu/adapter/loadmore/LoadmoreAdapter.kt | hantrungkien/Gapo-Dashboard-Demo | 32bdbc5f3e2ed9965898be9b892b06cb2da26da7 | [
"Apache-2.0"
] | 4 | 2020-05-27T03:32:46.000Z | 2021-03-03T10:41:53.000Z | package com.kienht.gapo.dashboard.menu.adapter.loadmore
import android.view.ViewGroup
import androidx.lifecycle.LifecycleOwner
import androidx.recyclerview.widget.RecyclerView
import com.kienht.gapo.core.utils.inflateViewDataBinding
import com.kienht.gapo.dashboard.R
import com.kienht.gapo.dashboard.databinding.Loadmo... | 28.645161 | 85 | 0.644144 |
75009dac96ad78223644929135a8cd8ebe9b659e | 1,417 | ps1 | PowerShell | PSClarifai/Public/Add-ImageFromFileWithConcepts.ps1 | Claustn/Clarifai | e45d7b052c11002fd733bd096ac173233112f4a1 | [
"MIT"
] | null | null | null | PSClarifai/Public/Add-ImageFromFileWithConcepts.ps1 | Claustn/Clarifai | e45d7b052c11002fd733bd096ac173233112f4a1 | [
"MIT"
] | null | null | null | PSClarifai/Public/Add-ImageFromFileWithConcepts.ps1 | Claustn/Clarifai | e45d7b052c11002fd733bd096ac173233112f4a1 | [
"MIT"
] | null | null | null | #requires -Version 3.0
function Add-ImageFromFileWithConcepts
{
[CmdletBinding()]
param
(
[string]$ImagePath,
[string]$Token = (Get-ClarifaiToken),
[string[]]$Concepts,
[string[]]$Not_Concepts
)
$uri = 'https://api.clarifai.com/v2/inputs'
$headers = @{
Authorization = 'Bearer... | 18.893333 | 103 | 0.530699 |
8c6fde3546da1c540bf7273edfd0e466d67c4fc5 | 797 | sql | SQL | backend/de.metas.adempiere.adempiere/migration/src/main/sql/postgresql/system/10-de.metas.adempiere/5467750_sys_gh1996-remove-client-from-gridview-webui.sql | dram/metasfresh | a1b881a5b7df8b108d4c4ac03082b72c323873eb | [
"RSA-MD"
] | 1,144 | 2016-02-14T10:29:35.000Z | 2022-03-30T09:50:41.000Z | backend/de.metas.adempiere.adempiere/migration/src/main/sql/postgresql/system/10-de.metas.adempiere/5467750_sys_gh1996-remove-client-from-gridview-webui.sql | vestigegroup/metasfresh | 4b2d48c091fb2a73e6f186260a06c715f5e2fe96 | [
"RSA-MD"
] | 8,283 | 2016-04-28T17:41:34.000Z | 2022-03-30T13:30:12.000Z | backend/de.metas.adempiere.adempiere/migration/src/main/sql/postgresql/system/10-de.metas.adempiere/5467750_sys_gh1996-remove-client-from-gridview-webui.sql | vestigegroup/metasfresh | 4b2d48c091fb2a73e6f186260a06c715f5e2fe96 | [
"RSA-MD"
] | 441 | 2016-04-29T08:06:07.000Z | 2022-03-28T06:09:56.000Z | --
-- Remove all ad_client_id from GridViews
--
update ad_ui_element
set isdisplayedgrid = 'N', seqnogrid = 0
where ad_ui_element_id in
(
select uie.AD_UI_Element_ID
from AD_UI_Element uie
left join ad_field f on uie.ad_field_id = f.ad_field_id
left join ad_column c on f.ad_column_id = c.ad_column_id
where true
and lo... | 25.709677 | 56 | 0.78921 |
c3aba7c816394d4a97ff0f87ed3b7d70e2b3389c | 196 | kt | Kotlin | app/src/main/java/id/co/horveno/discovermovies/util/Constant.kt | MAlvinR/KotlinDiscoverMovies | 08be0254a3651c04e2b2b3971ce8dc76e97bbd1e | [
"Apache-2.0"
] | 1 | 2017-10-09T11:39:57.000Z | 2017-10-09T11:39:57.000Z | app/src/main/java/id/co/horveno/discovermovies/util/Constant.kt | MAlvinR/KotlinDiscoverMovies | 08be0254a3651c04e2b2b3971ce8dc76e97bbd1e | [
"Apache-2.0"
] | null | null | null | app/src/main/java/id/co/horveno/discovermovies/util/Constant.kt | MAlvinR/KotlinDiscoverMovies | 08be0254a3651c04e2b2b3971ce8dc76e97bbd1e | [
"Apache-2.0"
] | null | null | null | package id.co.horveno.discovermovies.util
/**
* Created by ASUS on 03/09/2017.
*/
object Constant {
/*val API_KEY = "YOUR_API_KEY"*/
val API_KEY = "5bcd103535c907563275e5c79a7abd77"
}
| 17.818182 | 52 | 0.69898 |
495d51dcb9d9a031048658a3664cc4424a3ca9ff | 887 | asm | Assembly | libsrc/vz/vz_plot_callee.asm | andydansby/z88dk-mk2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | 1 | 2020-09-15T08:35:49.000Z | 2020-09-15T08:35:49.000Z | libsrc/vz/vz_plot_callee.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | libsrc/vz/vz_plot_callee.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | ;*****************************************************
;
; Video Technology library for small C compiler
;
; Juergen Buchmueller
;
;*****************************************************
; ----- void __CALLEE__ vz_plot_callee(int x, int y, int c)
XLIB vz_plot_callee
XDEF ASMDISP_VZ_PLOT_CALLEE
XREF scrbase
.vz_plot_... | 12.855072 | 59 | 0.483653 |
e8336d58f76085c418e0c61015fa2abf1da0c19e | 1,436 | sql | SQL | Ora_SQLPlus_SQLcL_sql_scripts/my_proxy.sql | gpipperr/OraPowerShell | 4209ef928229daf0942975610f1ff7a1bcc95e0f | [
"MS-PL"
] | 4 | 2018-02-19T11:07:37.000Z | 2021-04-22T17:34:47.000Z | Ora_SQLPlus_SQLcL_sql_scripts/my_proxy.sql | gpipperr/OraPowerShell | 4209ef928229daf0942975610f1ff7a1bcc95e0f | [
"MS-PL"
] | null | null | null | Ora_SQLPlus_SQLcL_sql_scripts/my_proxy.sql | gpipperr/OraPowerShell | 4209ef928229daf0942975610f1ff7a1bcc95e0f | [
"MS-PL"
] | 2 | 2018-06-20T14:57:56.000Z | 2019-06-06T03:38:39.000Z | --==============================================================================
-- GPI - Gunther Pippèrr
-- Desc: get the users of the database
-- Date: November 2017
--
--==============================================================================
set verify off
set linesize 130 pagesize 300
column CURRENT_U... | 29.916667 | 80 | 0.624652 |
047876ea1115288449181321cc2713ca86919fdc | 5,256 | java | Java | src/main/java/com/webix/ui/model/GraphItemConfig.java | zhv/webix-api | 84d44c89b9f162ecddf6cf40409ece02eaacf559 | [
"BSD-3-Clause"
] | null | null | null | src/main/java/com/webix/ui/model/GraphItemConfig.java | zhv/webix-api | 84d44c89b9f162ecddf6cf40409ece02eaacf559 | [
"BSD-3-Clause"
] | null | null | null | src/main/java/com/webix/ui/model/GraphItemConfig.java | zhv/webix-api | 84d44c89b9f162ecddf6cf40409ece02eaacf559 | [
"BSD-3-Clause"
] | null | null | null | // =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.8.3,
// any modifications will be overwritten.
// ==============================================================
package com.webix.ui.model;
//---------------------------------/
//- Imported classes and packages -/
//------... | 26.545455 | 66 | 0.646689 |
5590e3471302a1889da3009419a9ce30fd6ba7c0 | 33,328 | htm | HTML | railway/imag/1.htm | atiqur167/railway | 5295e3b25f166e9f2c48abe8cd58d5610514e843 | [
"MIT"
] | null | null | null | railway/imag/1.htm | atiqur167/railway | 5295e3b25f166e9f2c48abe8cd58d5610514e843 | [
"MIT"
] | null | null | null | railway/imag/1.htm | atiqur167/railway | 5295e3b25f166e9f2c48abe8cd58d5610514e843 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html lang="en"> <!--<![endif]-->
<head>
<title>Crowds of Ram... | 17.661897 | 860 | 0.528355 |
9b205a60732c94c37af22ba960cac937babdd224 | 125 | kt | Kotlin | src/main/kotlin/core/IRuleBuilder.kt | effe-megna/ValiflaKtion | 1262acd7dab65f9ce8bdaf246082de02e1d20032 | [
"MIT"
] | 8 | 2019-01-21T10:01:29.000Z | 2020-12-24T10:25:37.000Z | src/main/kotlin/core/IRuleBuilder.kt | effe-megna/ValiflaKtion | 1262acd7dab65f9ce8bdaf246082de02e1d20032 | [
"MIT"
] | null | null | null | src/main/kotlin/core/IRuleBuilder.kt | effe-megna/ValiflaKtion | 1262acd7dab65f9ce8bdaf246082de02e1d20032 | [
"MIT"
] | null | null | null | package org.example.core
interface IRuleBuilder <T : Any> {
fun buildFromAnnotation(annotation: Annotation): IRule<T>?
} | 25 | 62 | 0.752 |
9526064f60b57a18a31fa29a2f91921534ed9556 | 36 | ps1 | PowerShell | ROM/SumGame/Game/OnKey_Esc.ps1 | StartAutomating/PowerArcade | 2f45408db51c55c44c93d363eec551b29eb74f64 | [
"MIT"
] | 42 | 2020-04-01T11:33:08.000Z | 2022-01-09T16:22:33.000Z | ROM/SumGame/Game/OnKey_Esc.ps1 | StartAutomating/PowerArcade | 2f45408db51c55c44c93d363eec551b29eb74f64 | [
"MIT"
] | null | null | null | ROM/SumGame/Game/OnKey_Esc.ps1 | StartAutomating/PowerArcade | 2f45408db51c55c44c93d363eec551b29eb74f64 | [
"MIT"
] | null | null | null | $game.IsRunning = $false
Clear-Host | 18 | 25 | 0.75 |
f55aa8223efbded32f7102a3ee6a867a5d07455c | 5,461 | rs | Rust | src/day_16.rs | jacobguenther/advent_of_code_2020 | c1e4ea46e106b9845b9a30ec9240c7527ec5fd11 | [
"MIT"
] | null | null | null | src/day_16.rs | jacobguenther/advent_of_code_2020 | c1e4ea46e106b9845b9a30ec9240c7527ec5fd11 | [
"MIT"
] | null | null | null | src/day_16.rs | jacobguenther/advent_of_code_2020 | c1e4ea46e106b9845b9a30ec9240c7527ec5fd11 | [
"MIT"
] | null | null | null | // File: day_16.rs
// Author: Jacob Guenther
// Date: December 2020
/*
Copyright 2020 Jacob Guenther
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitat... | 24.710407 | 85 | 0.627358 |
532f8abd35d6d5ee71f124b6cbcb324abbced5a5 | 4,506 | lua | Lua | src-lua/prelude.lua | Vespertinus/tarantool | 7b7f6168e1b8630ac059e9e747487df82ae48369 | [
"BSD-2-Clause"
] | 12 | 2017-03-14T11:33:08.000Z | 2022-01-18T13:23:17.000Z | src-lua/prelude.lua | Vespertinus/tarantool | 7b7f6168e1b8630ac059e9e747487df82ae48369 | [
"BSD-2-Clause"
] | null | null | null | src-lua/prelude.lua | Vespertinus/tarantool | 7b7f6168e1b8630ac059e9e747487df82ae48369 | [
"BSD-2-Clause"
] | 2 | 2019-09-24T23:36:05.000Z | 2020-12-14T18:49:48.000Z | local ffi = require("ffi")
local bit = require('bit')
local C = ffi.C
require('cdef_base')
require('cdef')
require('packer')
ddump = require('ddump')
make_repl_env = require 'repl'
function os.ev_time()
return C.ev_time()
end
function os.ev_now()
return C.ev_rt_now
end
local print_ = print
function print (..... | 26.046243 | 101 | 0.601864 |
24c38817d0b4623001ed1cd471a184038bfc62ae | 1,292 | asm | Assembly | libsrc/_DEVELOPMENT/adt/b_array/z80/asm_b_array_append_n.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/adt/b_array/z80/asm_b_array_append_n.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/adt/b_array/z80/asm_b_array_append_n.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
; ===============================================================
; Mar 2014
; ===============================================================
;
; size_t b_array_append_n(b_array_t *a, size_t n, int c)
;
; Append n copies of char c to the end of the array, return
; index of new block.
;
; ============================... | 19.283582 | 65 | 0.442724 |
57b303fb9186fb4e06af7f221fbc0590b3201c3a | 2,284 | lua | Lua | addons/cw2/lua/cw/client/cw_umsgs.lua | JacubRSTNC/PoliceRP-OpenSource | adcf19f765331521b6934ecb1c180a978ba7f44d | [
"MIT"
] | 17 | 2021-08-17T16:05:20.000Z | 2022-03-17T09:55:24.000Z | addons/cw2/lua/cw/client/cw_umsgs.lua | JacubRSTNC/PoliceRP-OpenSource | adcf19f765331521b6934ecb1c180a978ba7f44d | [
"MIT"
] | 1 | 2022-02-10T19:12:08.000Z | 2022-02-10T19:36:02.000Z | addons/cw2/lua/cw/client/cw_umsgs.lua | JacubRSTNC/PoliceRP-OpenSource | adcf19f765331521b6934ecb1c180a978ba7f44d | [
"MIT"
] | 4 | 2021-08-19T11:41:36.000Z | 2022-03-20T08:56:28.000Z | local function CW20_LOSTATTACHMENTS()
local ply = LocalPlayer()
CustomizableWeaponry.postSpawn(ply)
end
usermessage.Hook("CW20_LOSTATTACHMENTS", CW20_LOSTATTACHMENTS)
-- this event removes previous attachments and adds new ones
net.Receive("CW20_OVERWRITEATTACHMENTS", function()
local ply = LocalPlayer()
ply.C... | 28.55 | 160 | 0.728546 |
aefda514c0d2a626d218711b3688b7cb104e668b | 372 | swift | Swift | CoronaContact/Scenes/Shared/LaunchScreen/LaunchScreenViewController.swift | emrdgrmnci/stopp-corona-ios | 2ce3d95cc9359e0f68dbc3c0a64c5ffcd096f899 | [
"Apache-2.0"
] | null | null | null | CoronaContact/Scenes/Shared/LaunchScreen/LaunchScreenViewController.swift | emrdgrmnci/stopp-corona-ios | 2ce3d95cc9359e0f68dbc3c0a64c5ffcd096f899 | [
"Apache-2.0"
] | null | null | null | CoronaContact/Scenes/Shared/LaunchScreen/LaunchScreenViewController.swift | emrdgrmnci/stopp-corona-ios | 2ce3d95cc9359e0f68dbc3c0a64c5ffcd096f899 | [
"Apache-2.0"
] | null | null | null | //
// LaunchScreenViewController.swift
// CoronaContact
//
import UIKit
import Reusable
final class LaunchScreenViewController: UIViewController, StoryboardBased {
@IBOutlet private weak var launchScreenView: LaunchScreenView!
func fadeOut(withDuration duration: TimeInterval) {
launchScreenView.st... | 21.882353 | 75 | 0.77957 |
53dd236bcea7912bff4d373b735186d03d530295 | 4,136 | java | Java | backend/de.metas.ui.web.base/src/main/java/de/metas/ui/web/payment_allocation/process/PaymentsView_PaymentWriteOff.java | metas-fresh/fresh | 265b6e00fbbf154d6a7bbb9aaf9cf7135f9d6a27 | [
"RSA-MD"
] | 1 | 2015-11-09T07:13:14.000Z | 2015-11-09T07:13:14.000Z | backend/de.metas.ui.web.base/src/main/java/de/metas/ui/web/payment_allocation/process/PaymentsView_PaymentWriteOff.java | metas-fresh/fresh | 265b6e00fbbf154d6a7bbb9aaf9cf7135f9d6a27 | [
"RSA-MD"
] | null | null | null | backend/de.metas.ui.web.base/src/main/java/de/metas/ui/web/payment_allocation/process/PaymentsView_PaymentWriteOff.java | metas-fresh/fresh | 265b6e00fbbf154d6a7bbb9aaf9cf7135f9d6a27 | [
"RSA-MD"
] | null | null | null | /*
* #%L
* de.metas.ui.web.base
* %%
* Copyright (C) 2022 metas GmbH
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of the
* License, or (at your option) any late... | 31.097744 | 131 | 0.774662 |
502bfd12471286153d4b47ca59be229bf56aa928 | 866 | go | Go | api/product/TaobaoProductsSearch.go | phpyandong/opentaobao | a7e3cc3ec7eeb492b20a6b8023798d5592d15fe5 | [
"Apache-2.0"
] | 1 | 2021-06-29T08:56:24.000Z | 2021-06-29T08:56:24.000Z | api/product/TaobaoProductsSearch.go | phpyandong/opentaobao | a7e3cc3ec7eeb492b20a6b8023798d5592d15fe5 | [
"Apache-2.0"
] | null | null | null | api/product/TaobaoProductsSearch.go | phpyandong/opentaobao | a7e3cc3ec7eeb492b20a6b8023798d5592d15fe5 | [
"Apache-2.0"
] | null | null | null | package product
import (
"github.com/bububa/opentaobao/core"
"github.com/bububa/opentaobao/model/product"
)
/*
搜索产品信息
taobao.products.search
只有天猫商家发布商品时才需要用到,并非商品搜索api,当前暂不提供商品搜索api。<br/>二种方式搜索所有产品信息(二种至少传一种): <br/>
传入关键字q搜索<br/>
传入cid和props搜索<br/>
返回值支持:product_id,name,pic_path,cid,props,price,tsc<br/>
当用... | 29.862069 | 156 | 0.766744 |
043eb5ad96695889bfca135c737941c56f978ea6 | 9,472 | java | Java | testbench/modules/testBehavior/languages/L7/source_gen/BHL7/structure/StructureAspectDescriptor.java | trespasserw/MPS | dbc5c76496e8ccef46dd420eefcd5089b1bc234b | [
"Apache-2.0"
] | null | null | null | testbench/modules/testBehavior/languages/L7/source_gen/BHL7/structure/StructureAspectDescriptor.java | trespasserw/MPS | dbc5c76496e8ccef46dd420eefcd5089b1bc234b | [
"Apache-2.0"
] | null | null | null | testbench/modules/testBehavior/languages/L7/source_gen/BHL7/structure/StructureAspectDescriptor.java | trespasserw/MPS | dbc5c76496e8ccef46dd420eefcd5089b1bc234b | [
"Apache-2.0"
] | null | null | null | package BHL7.structure;
/*Generated by MPS */
import jetbrains.mps.smodel.runtime.BaseStructureAspectDescriptor;
import jetbrains.mps.smodel.runtime.ConceptDescriptor;
import java.util.Collection;
import java.util.Arrays;
import org.jetbrains.annotations.Nullable;
import jetbrains.mps.smodel.adapter.ids.SConceptId;
i... | 47.59799 | 196 | 0.761613 |
44d96563e3c673d68f88e1952782945c39c00b39 | 12,138 | swift | Swift | Sources/Satin/Core/Raycaster.swift | OskarGroth/Satin | c29677b9e7217c66511998fff10b72a00204f76a | [
"MIT"
] | null | null | null | Sources/Satin/Core/Raycaster.swift | OskarGroth/Satin | c29677b9e7217c66511998fff10b72a00204f76a | [
"MIT"
] | null | null | null | Sources/Satin/Core/Raycaster.swift | OskarGroth/Satin | c29677b9e7217c66511998fff10b72a00204f76a | [
"MIT"
] | null | null | null | //
// Raycaster.swift
// Satin
//
// Created by Reza Ali on 4/22/20.
//
#if os(iOS) || os(macOS)
import Combine
import Metal
import MetalPerformanceShaders
import simd
public struct RaycastResult {
public let barycentricCoordinates: simd_float3
public let distance: Float
public let normal: simd_float3... | 37.119266 | 228 | 0.630499 |
394409342b3e677bea8ec6d8071e8210e0a2a17b | 588 | asm | Assembly | src/hook_deploy_pfx_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | 17 | 2018-07-11T20:53:46.000Z | 2022-03-01T18:20:42.000Z | src/hook_deploy_pfx_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | 24 | 2018-10-23T07:47:33.000Z | 2021-02-09T09:06:25.000Z | src/hook_deploy_pfx_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | null | null | null | ; Hook PFX parser in zCParticleFX::ParseParticleFXScript
%include "inc/macros.inc"
%if GOTHIC_BASE_VERSION == 1
%include "inc/symbols_g1.inc"
%elif GOTHIC_BASE_VERSION == 2
%include "inc/symbols_g2.inc"
%endif
%ifidn __OUTPUT_FORMAT__, bin
org g1g2(0x58CA22,0x5AC7BC)
%endif
bits 32
section .tex... | 22.615385 | 99 | 0.605442 |
83c966be27128ee19d1a29bbd37dc78a0884576a | 9,349 | sql | SQL | sql/data-cats.sql | novirael/school-codebase | efa2f99740d473a4121f62095dffe1b93f666819 | [
"MIT"
] | 1 | 2017-04-02T07:10:34.000Z | 2017-04-02T07:10:34.000Z | sql/data-cats.sql | novirael/school-codebase | efa2f99740d473a4121f62095dffe1b93f666819 | [
"MIT"
] | null | null | null | sql/data-cats.sql | novirael/school-codebase | efa2f99740d473a4121f62095dffe1b93f666819 | [
"MIT"
] | null | null | null | INSERT INTO Wrogowie
(nazwa_wroga, gatunek)
VALUES ('Fafik', 'Pies');
INSERT INTO Wrogowie
(nazwa_wroga, gatunek)
VALUES ('Stefan', 'Czlowiek');
INSERT INTO Wrogowie
(nazwa_wroga, gatunek)
VALUES ('Ochroniarz', 'Czlowiek');
INSERT INTO Wrogowie
(nazwa_wroga, gatunek)
VALUES ('Andrzej', 'Golab');
INSERT INTO Wrogowi... | 27.74184 | 111 | 0.74992 |
fb86f7d83d2f8babc49298ff083a2cdadf1058ab | 944 | java | Java | jms/jms-xa/src/main/java/org/javaee7/jms/xa/Mailman.java | ramsrib/javaee7-samples | a63598d3b56ea3eb1aed98ac36d2468e26b3b5c9 | [
"MIT"
] | 3 | 2017-05-29T02:01:24.000Z | 2020-02-27T20:55:04.000Z | jms/jms-xa/src/main/java/org/javaee7/jms/xa/Mailman.java | ramsrib/javaee7-samples | a63598d3b56ea3eb1aed98ac36d2468e26b3b5c9 | [
"MIT"
] | 1 | 2022-01-21T23:55:12.000Z | 2022-01-21T23:55:12.000Z | jms/jms-xa/src/main/java/org/javaee7/jms/xa/Mailman.java | ramsrib/javaee7-samples | a63598d3b56ea3eb1aed98ac36d2468e26b3b5c9 | [
"MIT"
] | 17 | 2016-03-27T22:49:33.000Z | 2022-03-30T11:55:16.000Z | package org.javaee7.jms.xa;
import javax.annotation.Resource;
import javax.ejb.Singleton;
import javax.inject.Inject;
import javax.jms.ConnectionFactory;
import javax.jms.JMSContext;
import javax.jms.JMSDestinationDefinition;
import javax.jms.Queue;
@JMSDestinationDefinition(
name = Mailman.CLASSIC_QUEUE,
res... | 26.222222 | 77 | 0.73411 |
f0f3b8de8164ba560e89543bda9a448e5eb56e01 | 546 | dart | Dart | zold_wallet/test/wallet_test.dart | Nermeen78/zold-flutter-client | 2ca3e3dff69e622d4fd9765d9c1a9d4cf59bc40c | [
"MIT"
] | 22 | 2019-02-12T10:39:40.000Z | 2022-01-08T09:00:14.000Z | zold_wallet/test/wallet_test.dart | Nermeen78/zold-flutter-client | 2ca3e3dff69e622d4fd9765d9c1a9d4cf59bc40c | [
"MIT"
] | 135 | 2019-02-12T10:38:56.000Z | 2020-07-28T04:24:18.000Z | zold_wallet/test/wallet_test.dart | Nermeen78/zold-flutter-client | 2ca3e3dff69e622d4fd9765d9c1a9d4cf59bc40c | [
"MIT"
] | 11 | 2019-03-30T12:39:05.000Z | 2020-05-27T13:45:06.000Z |
import 'package:flutter_test/flutter_test.dart';
import 'package:zold_wallet/wallet.dart';
import 'secret.dart';
void main() {
final Wallet wallet = Wallet.instance()
..apiKey = Secrets.apiKey;
/// test the order of transactions (descending).
test('test transactions order', () async {
await wallet.update... | 30.333333 | 78 | 0.695971 |
0cb15ac607e79bbb7d26c6e214f8e05599ab28c1 | 3,613 | lua | Lua | .config/nvim/lua/user/plugins.lua | abrfr/dotfiles | 8371a594ae88131c21c705d92ef01aa3b62d8b17 | [
"MIT"
] | null | null | null | .config/nvim/lua/user/plugins.lua | abrfr/dotfiles | 8371a594ae88131c21c705d92ef01aa3b62d8b17 | [
"MIT"
] | null | null | null | .config/nvim/lua/user/plugins.lua | abrfr/dotfiles | 8371a594ae88131c21c705d92ef01aa3b62d8b17 | [
"MIT"
] | null | null | null | local fn = vim.fn
-- Automatically install packer
local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
if fn.empty(fn.glob(install_path)) > 0 then
PACKER_BOOTSTRAP = fn.system({
"git",
"clone",
"--depth",
"1",
"https://github.com/wbthomason/packer.nvim",
install_path,
})
prin... | 29.373984 | 105 | 0.718793 |