repo stringlengths 4 140 | commit_id stringlengths 7 7 | rel_path stringlengths 1 3.5k | language stringclasses 37
values | url stringlengths 37 3.56k | raw_url stringlengths 54 3.58k | key stringlengths 20 3.54k | ok bool 1
class | status int64 200 200 | bytes int64 48 425k | content stringlengths 40 425k | worker_id int64 0 7 |
|---|---|---|---|---|---|---|---|---|---|---|---|
barani19/flutter_basic_1project | 04e6e74 | lib/Appbar/Appbar.dart | Dart | www.github.com/barani19/flutter_basic_1project/tree/main/lib/Appbar/Appbar.dart | https://raw.githubusercontent.com/barani19/flutter_basic_1project/04e6e74/lib/Appbar/Appbar.dart | barani19/flutter_basic_1project 04e6e74 lib/Appbar/Appbar.dart | true | 200 | 813 | import 'package:flutter/material.dart';
class Abar extends StatelessWidget {
const Abar({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
... | 6 |
NicolasGretten/kgb | 638203c | lib/models/question.dart | Dart | www.github.com/NicolasGretten/kgb/tree/main/lib/models/question.dart | https://raw.githubusercontent.com/NicolasGretten/kgb/638203c/lib/models/question.dart | NicolasGretten/kgb 638203c lib/models/question.dart | true | 200 | 1,609 |
import 'dart:convert';
class QuestionList {
QuestionList({
this.questions,
});
List<Question>? questions;
factory QuestionList.fromJson(Map<String, dynamic> json) => QuestionList(
questions: json["data"] == null ? null : List<Question>.from(json["data"].map((x) => Question.fromJson(x))));
Map<S... | 7 |
Treamz/cgteamreborn | a474b00 | lib/main.dart | Dart | www.github.com/Treamz/cgteamreborn/tree/main/lib/main.dart | https://raw.githubusercontent.com/Treamz/cgteamreborn/a474b00/lib/main.dart | Treamz/cgteamreborn a474b00 lib/main.dart | true | 200 | 11,763 | import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:cgteam/root/blocs/app_bloc.dart';
import 'package:cgteam/root/blocs/app_events.dart';
import 'package:cgteam/root/blocs/form_bloc/form_cubit.dart';
import 'package:cgteam/root/core/helpers.dart';
import 'package:cgteam/root/home_screen.dart'... | 4 |
cnmquan/musix-admin | d279b2e | lib/models/post.dart | Dart | www.github.com/cnmquan/musix-admin/tree/main/lib/models/post.dart | https://raw.githubusercontent.com/cnmquan/musix-admin/d279b2e/lib/models/post.dart | cnmquan/musix-admin d279b2e lib/models/post.dart | true | 200 | 2,186 | import 'package:equatable/equatable.dart';
class Post extends Equatable {
final String id;
final String ownerId;
final String ownerName;
final String fileId;
final String fileUrl;
final String fileName;
final String content;
final String thumbnailId;
final int? dateCreated;
final int? lastModified;... | 5 |
alaabenmohamed/EcommerceFlutter | edaebb6 | lib/pages/home.dart | Dart | www.github.com/alaabenmohamed/EcommerceFlutter/tree/main/lib/pages/home.dart | https://raw.githubusercontent.com/alaabenmohamed/EcommerceFlutter/edaebb6/lib/pages/home.dart | alaabenmohamed/EcommerceFlutter edaebb6 lib/pages/home.dart | true | 200 | 6,841 | // ignore_for_file: prefer_const_literals_to_create_immutables, prefer_const_constructors, sort_child_properties_last, use_key_in_widget_constructors
import 'dart:html';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
import 'package:flutter_application/pages/detailsPage.dar... | 0 |
Murtazaalimeo/hostel-app | 2b2f245 | lib/modules/usermodel.dart | Dart | www.github.com/Murtazaalimeo/hostel-app/tree/main/lib/modules/usermodel.dart | https://raw.githubusercontent.com/Murtazaalimeo/hostel-app/2b2f245/lib/modules/usermodel.dart | Murtazaalimeo/hostel-app 2b2f245 lib/modules/usermodel.dart | true | 200 | 1,020 | import 'dart:developer';
class UserModel{
String? uid;
String? fname;
String? lname;
String? pimgurl;
String? phoneno;
String? address;
String? district;
String? city;
String? country;
String? province;
UserModel({this.uid, this.fname, this.lname, this.pimgurl, this.phoneno, this.address, this.... | 2 |
christ-e/machinetest-coral | 7416990 | lib/controller/cartscreen_controller.dart | Dart | www.github.com/christ-e/machinetest-coral/tree/main/lib/controller/cartscreen_controller.dart | https://raw.githubusercontent.com/christ-e/machinetest-coral/7416990/lib/controller/cartscreen_controller.dart | christ-e/machinetest-coral 7416990 lib/controller/cartscreen_controller.dart | true | 200 | 3,781 | import 'package:cart_coral_machinetest/model/cart_api_model.dart';
import 'package:cart_coral_machinetest/model/fakestore_api.model.dart';
import 'package:cart_coral_machinetest/view/screens/screen_home/homescreen.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:lottie/lotti... | 3 |
ia4kash/TodoApp | 9ff1430 | lib/app/modules/auth/signup/controllers/auth_signup_controller.dart | Dart | www.github.com/ia4kash/TodoApp/tree/main/lib/app/modules/auth/signup/controllers/auth_signup_controller.dart | https://raw.githubusercontent.com/ia4kash/TodoApp/9ff1430/lib/app/modules/auth/signup/controllers/auth_signup_controller.dart | ia4kash/TodoApp 9ff1430 lib/app/modules/auth/signup/controllers/auth_signup_controller.dart | true | 200 | 1,880 | import 'dart:developer';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:get/get.dart';
import 'package:google_sign_in/google_sign_in.dart';
import 'package:todo/app/data/models/dto/response.dart';
import 'package:todo/app/data/models/dto/User.dart';
import 'package:todo/app/data/repository/user_rep... | 1 |
ali711104320/robo_manager | 3183310 | lib/Screen/reports_screen.dart | Dart | www.github.com/ali711104320/robo_manager/tree/main/lib/Screen/reports_screen.dart | https://raw.githubusercontent.com/ali711104320/robo_manager/3183310/lib/Screen/reports_screen.dart | ali711104320/robo_manager 3183310 lib/Screen/reports_screen.dart | true | 200 | 9,700 | import 'package:flutter/material.dart';
import 'package:robo_manager_for_clients/Screen/tables_screen.dart';
import 'package:robo_manager_for_clients/services/database_helper.dart';
class ReportsScreen extends StatefulWidget {
@override
_ReportsScreenState createState() => _ReportsScreenState();
}
class _ReportsS... | 6 |
tamiratdereje/hakim_hub_mobile | bd03b8b | hakim_hub_mobile/lib/features/hospital/domain/entities/hospital_search_domain.dart | Dart | www.github.com/tamiratdereje/hakim_hub_mobile/tree/main/hakim_hub_mobile/lib/features/hospital/domain/entities/hospital_search_domain.dart | https://raw.githubusercontent.com/tamiratdereje/hakim_hub_mobile/bd03b8b/hakim_hub_mobile/lib/features/hospital/domain/entities/hospital_search_domain.dart | tamiratdereje/hakim_hub_mobile bd03b8b hakim_hub_mobile/lib/features/hospital/domain/entities/hospital_search_domain.dart | true | 200 | 1,439 | import 'package:equatable/equatable.dart';
import 'package:hakim_hub_mobile/features/hospital/domain/entities/hospital_address_domain.dart';
import 'package:hakim_hub_mobile/features/hospital/domain/entities/hospital_availability_domain.dart';
class InstitutionSearchDomain extends Equatable {
String institution... | 7 |
Rdani2005/learning-flutter | 3de4154 | admin_dashboard/lib/ui/views/login_view.dart | Dart | www.github.com/Rdani2005/learning-flutter/tree/main/admin_dashboard/lib/ui/views/login_view.dart | https://raw.githubusercontent.com/Rdani2005/learning-flutter/3de4154/admin_dashboard/lib/ui/views/login_view.dart | Rdani2005/learning-flutter 3de4154 admin_dashboard/lib/ui/views/login_view.dart | true | 200 | 4,115 | import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:email_validator/email_validator.dart';
import 'package:admin_dashboard/providers/providers.dart';
import 'package:admin_dashboard/router/router.dart';
import 'package:admin_dashboard/ui/buttons/buttons.dart';
import 'pac... | 5 |
chihabMe/stocksync | 7aa2989 | app/lib/screens/seller/seller_orders_screen.dart | Dart | www.github.com/chihabMe/stocksync/tree/main/app/lib/screens/seller/seller_orders_screen.dart | https://raw.githubusercontent.com/chihabMe/stocksync/7aa2989/app/lib/screens/seller/seller_orders_screen.dart | chihabMe/stocksync 7aa2989 app/lib/screens/seller/seller_orders_screen.dart | true | 200 | 6,791 | import 'package:flutter/material.dart';
import 'package:shop_app/models/Order.dart';
import 'package:shop_app/services/order_servies.dart';
class SellerOrderScreen extends StatefulWidget {
@override
_SellerOrderScreenState createState() => _SellerOrderScreenState();
}
class _SellerOrderScreenState extends State<S... | 4 |
pwargulak/mycarehub-frontend-daktari | 22cea19 | test/unit_tests/app_setup_data_test.dart | Dart | www.github.com/pwargulak/mycarehub-frontend-daktari/tree/main/test/unit_tests/app_setup_data_test.dart | https://raw.githubusercontent.com/pwargulak/mycarehub-frontend-daktari/22cea19/test/unit_tests/app_setup_data_test.dart | pwargulak/mycarehub-frontend-daktari 22cea19 test/unit_tests/app_setup_data_test.dart | true | 200 | 871 | // Package imports:
import 'package:flutter_test/flutter_test.dart';
// Project imports:
import 'package:prohealth360_daktari/application/core/services/app_setup_data.dart';
import 'package:sghi_core/app_wrapper/enums.dart';
void main() {
test('AppSetupData creates a valid object', () {
final AppSetupData appSe... | 2 |
trey-a-hope/lit-pic | 1cc5b0e | lib/common/tab_icon.dart | Dart | www.github.com/trey-a-hope/lit-pic/tree/main/lib/common/tab_icon.dart | https://raw.githubusercontent.com/trey-a-hope/lit-pic/1cc5b0e/lib/common/tab_icon.dart | trey-a-hope/lit-pic 1cc5b0e lib/common/tab_icon.dart | true | 200 | 4,555 | import 'package:flutter/material.dart';
import 'package:litpic/litpic_theme.dart';
import '../constants.dart';
class TabIcon extends StatefulWidget {
final TabIconData tabIconData;
final Function removeAllSelect;
const TabIcon({
required this.tabIconData,
required this.removeAllSelect,
});
@overrid... | 0 |
Akshaydevak/callcenter | 21e450c | lib/Callcenter_Screens/Callcenter/widgets.dart | Dart | www.github.com/Akshaydevak/callcenter/tree/main/lib/Callcenter_Screens/Callcenter/widgets.dart | https://raw.githubusercontent.com/Akshaydevak/callcenter/21e450c/lib/Callcenter_Screens/Callcenter/widgets.dart | Akshaydevak/callcenter 21e450c lib/Callcenter_Screens/Callcenter/widgets.dart | true | 200 | 38,261 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:lottie/lottie.dart';
import 'package:salesapp/Callcenter_Screens/common/focus_node.dart... | 3 |
MamikonP/ayaintel_assignment | ee415c6 | lib/presentation/logic/auth/auth_bloc.dart | Dart | www.github.com/MamikonP/ayaintel_assignment/tree/main/lib/presentation/logic/auth/auth_bloc.dart | https://raw.githubusercontent.com/MamikonP/ayaintel_assignment/ee415c6/lib/presentation/logic/auth/auth_bloc.dart | MamikonP/ayaintel_assignment ee415c6 lib/presentation/logic/auth/auth_bloc.dart | true | 200 | 2,258 | import 'dart:async';
import 'package:bloc/bloc.dart';
import 'package:equatable/equatable.dart';
import 'package:firebase_auth/firebase_auth.dart';
import '../../../domain/repositories/auth_repository.dart';
part 'auth_event.dart';
part 'auth_state.dart';
class AuthBloc extends Bloc<AuthEvent, AuthState> {
AuthBl... | 1 |
Usama0444/company_cam | 27b1cfc | lib/screens/company_login.dart | Dart | www.github.com/Usama0444/company_cam/tree/main/lib/screens/company_login.dart | https://raw.githubusercontent.com/Usama0444/company_cam/27b1cfc/lib/screens/company_login.dart | Usama0444/company_cam 27b1cfc lib/screens/company_login.dart | true | 200 | 3,878 | import 'package:company_cam/core/Text_styles.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:responsive_sizer/responsive_sizer.dart';
class CompanyLoginScreen extends StatefulWidget {
@override
_CompanyLoginScreenState createState() => _CompanyLoginScreenStat... | 6 |
chornerman/survey-flutter | f3191b3 | integration_test/take_survey_flow_test.dart | Dart | www.github.com/chornerman/survey-flutter/tree/main/integration_test/take_survey_flow_test.dart | https://raw.githubusercontent.com/chornerman/survey-flutter/f3191b3/integration_test/take_survey_flow_test.dart | chornerman/survey-flutter f3191b3 integration_test/take_survey_flow_test.dart | true | 200 | 8,965 | import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'package:survey/navigator.dart';
import 'package:survey/page/home/home_page.dart';
import 'package:survey/page/home/home_page_key.dart';
import 'package:survey/page/qu... | 7 |
mllrr96/medusa_admin_dart_client | 87a769f | lib/src/data/models/response_models/payment_collection.dart | Dart | www.github.com/mllrr96/medusa_admin_dart_client/tree/main/lib/src/data/models/response_models/payment_collection.dart | https://raw.githubusercontent.com/mllrr96/medusa_admin_dart_client/87a769f/lib/src/data/models/response_models/payment_collection.dart | mllrr96/medusa_admin_dart_client 87a769f lib/src/data/models/response_models/payment_collection.dart | true | 200 | 556 | class DeletePaymentCollectionRes {
/// The ID of the deleted Payment Collection.
final String? id;
/// The type of the object that was deleted.
///
/// Default: "payment_collection"
final String? object;
/// Whether or not the Payment Collection was deleted.
final bool deleted;
const DeletePaymentC... | 4 |
Nadersaye/bookly | 315d6e3 | lib/features/search/presentation/view/widgets/search_resualt_list_view.dart | Dart | www.github.com/Nadersaye/bookly/tree/main/lib/features/search/presentation/view/widgets/search_resualt_list_view.dart | https://raw.githubusercontent.com/Nadersaye/bookly/315d6e3/lib/features/search/presentation/view/widgets/search_resualt_list_view.dart | Nadersaye/bookly 315d6e3 lib/features/search/presentation/view/widgets/search_resualt_list_view.dart | true | 200 | 1,385 | import 'package:bookly/core/widgets/custom_error_widget.dart';
import 'package:bookly/core/widgets/custom_loading_widget.dart';
import 'package:bookly/features/search/presentation/manager/search_result_cubit/search_result_cubit.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dar... | 5 |
hsinyi-lin/HealNow-2.0 | 88793f3 | lib/screen/collect_rumor.dart | Dart | www.github.com/hsinyi-lin/HealNow-2.0/tree/main/lib/screen/collect_rumor.dart | https://raw.githubusercontent.com/hsinyi-lin/HealNow-2.0/88793f3/lib/screen/collect_rumor.dart | hsinyi-lin/HealNow-2.0 88793f3 lib/screen/collect_rumor.dart | true | 200 | 2,993 | import 'package:flutter/material.dart';
import '../services/opendata_service.dart';
import '../widgets/rumor_card.dart';
import 'rumor_detail.dart';
import '../utils/token.dart';
class CollectRumorPage extends StatefulWidget {
@override
State<CollectRumorPage> createState() => _CollectRumorPageState();
}
class _C... | 2 |
themiyakasun/medicare | 463da58 | lib/common/widgets/success_screen.dart | Dart | www.github.com/themiyakasun/medicare/tree/main/lib/common/widgets/success_screen.dart | https://raw.githubusercontent.com/themiyakasun/medicare/463da58/lib/common/widgets/success_screen.dart | themiyakasun/medicare 463da58 lib/common/widgets/success_screen.dart | true | 200 | 1,983 | import 'package:flutter/material.dart';
import 'package:lottie/lottie.dart';
import 'package:medicare/common/styles/spacing_styles.dart';
import 'package:medicare/utils/constants/sizes.dart';
class SuccessScreen extends StatelessWidget {
const SuccessScreen(
{super.key,
required this.image,
require... | 0 |
NadaAymanElsayed/MovieApp | bcf2058 | lib/controllers/loginControllers/loginControllers.dart | Dart | www.github.com/NadaAymanElsayed/MovieApp/tree/main/lib/controllers/loginControllers/loginControllers.dart | https://raw.githubusercontent.com/NadaAymanElsayed/MovieApp/bcf2058/lib/controllers/loginControllers/loginControllers.dart | NadaAymanElsayed/MovieApp bcf2058 lib/controllers/loginControllers/loginControllers.dart | true | 200 | 2,648 | import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:http/http.dart' as http;
import '../../Screens/home/home_screen.dart';
class LoginController extends GetxController {
final TextEditingController ... | 7 |
NazildoSouza/MovieDB_Flutter | 0c81745 | lib/src/model/genres.dart | Dart | www.github.com/NazildoSouza/MovieDB_Flutter/tree/main/lib/src/model/genres.dart | https://raw.githubusercontent.com/NazildoSouza/MovieDB_Flutter/0c81745/lib/src/model/genres.dart | NazildoSouza/MovieDB_Flutter 0c81745 lib/src/model/genres.dart | true | 200 | 787 | // To parse this JSON data, do
//
// final genre = genreFromJson(jsonString);
import 'dart:convert';
GenresResponse genreFromJson(String str) =>
GenresResponse.fromJson(json.decode(str));
class GenresResponse {
GenresResponse({
this.genres,
});
List<Genre>? genres;
factory GenresResponse.fromJs... | 5 |
doshaheen-dev/frontend | d3c4680 | lib/widgets/image_circle.dart | Dart | www.github.com/doshaheen-dev/frontend/tree/main/lib/widgets/image_circle.dart | https://raw.githubusercontent.com/doshaheen-dev/frontend/d3c4680/lib/widgets/image_circle.dart | doshaheen-dev/frontend d3c4680 lib/widgets/image_circle.dart | true | 200 | 419 | import 'package:flutter/material.dart';
class ImageCircle extends StatelessWidget {
const ImageCircle({
Key key,
@required this.borderRadius,
@required this.image,
}) : super(key: key);
final double borderRadius;
final Widget image;
@override
Widget build(BuildContext context) {
return Cl... | 4 |
B1909880/thu | afddbb5 | lib/presentation/tim_kiem_huong_dan_nuoitrong_screen/controller/tim_kiem_huong_dan_nuoitrong_controller.dart | Dart | www.github.com/B1909880/thu/tree/main/lib/presentation/tim_kiem_huong_dan_nuoitrong_screen/controller/tim_kiem_huong_dan_nuoitrong_controller.dart | https://raw.githubusercontent.com/B1909880/thu/afddbb5/lib/presentation/tim_kiem_huong_dan_nuoitrong_screen/controller/tim_kiem_huong_dan_nuoitrong_controller.dart | B1909880/thu afddbb5 lib/presentation/tim_kiem_huong_dan_nuoitrong_screen/controller/tim_kiem_huong_dan_nuoitrong_controller.dart | true | 200 | 544 | import 'package:test_giao_dien/core/app_export.dart';
import 'package:test_giao_dien/presentation/tim_kiem_huong_dan_nuoitrong_screen/models/tim_kiem_huong_dan_nuoitrong_model.dart';
import 'package:test_giao_dien/widgets/custom_bottom_bar.dart';
class TimKiemHuongDanNuoitrongController extends GetxController {
Rx<T... | 2 |
Sahilb315/News-App | b7a41a7 | lib/features/category/bloc/category_bloc.dart | Dart | www.github.com/Sahilb315/News-App/tree/main/lib/features/category/bloc/category_bloc.dart | https://raw.githubusercontent.com/Sahilb315/News-App/b7a41a7/lib/features/category/bloc/category_bloc.dart | Sahilb315/News-App b7a41a7 lib/features/category/bloc/category_bloc.dart | true | 200 | 1,693 | // ignore_for_file: depend_on_referenced_packages
import 'dart:async';
import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
import 'package:news_app/features/category/repo/category_repo.dart';
import 'package:news_app/features/home/model/news_model.dart';
part 'category_event.dart';
part 'category_state... | 3 |
yuehernkang/tp_app | a229ba1 | lib/ui/chat/aminated_listeg.dart | Dart | www.github.com/yuehernkang/tp_app/tree/main/lib/ui/chat/aminated_listeg.dart | https://raw.githubusercontent.com/yuehernkang/tp_app/a229ba1/lib/ui/chat/aminated_listeg.dart | yuehernkang/tp_app a229ba1 lib/ui/chat/aminated_listeg.dart | true | 200 | 6,523 | // Flutter code sample for AnimatedList
// This sample application uses an [AnimatedList] to create an effect when
// items are removed or added to the list.
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:tp_app/ui/chat/chat_message.dart';
class AnimatedLis... | 6 |
Taku-Android/Bookly | f3b4f87 | lib/feature/splash/presentation/views/widgets/splash_view_body.dart | Dart | www.github.com/Taku-Android/Bookly/tree/main/lib/feature/splash/presentation/views/widgets/splash_view_body.dart | https://raw.githubusercontent.com/Taku-Android/Bookly/f3b4f87/lib/feature/splash/presentation/views/widgets/splash_view_body.dart | Taku-Android/Bookly f3b4f87 lib/feature/splash/presentation/views/widgets/splash_view_body.dart | true | 200 | 2,103 | import 'package:bookly/core/utils/Styles.dart';
import 'package:bookly/core/utils/app_routes.dart';
import 'package:bookly/core/utils/assets.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
class SplashViewBody extends StatefulWidget {
const SplashViewBody({super.key});
@o... | 1 |
ideaver/alvamind-three-library-frontend | 4a5aa4a | lib/widget/molecule/app_segmented_tab_bar.dart | Dart | www.github.com/ideaver/alvamind-three-library-frontend/tree/main/lib/widget/molecule/app_segmented_tab_bar.dart | https://raw.githubusercontent.com/ideaver/alvamind-three-library-frontend/4a5aa4a/lib/widget/molecule/app_segmented_tab_bar.dart | ideaver/alvamind-three-library-frontend 4a5aa4a lib/widget/molecule/app_segmented_tab_bar.dart | true | 200 | 4,347 | import 'package:flutter/material.dart';
import '../../app/theme/app_colors.dart';
import '../../app/theme/app_sizes.dart';
import '../../app/theme/app_text_style.dart';
import '../../model/tab_bar_model.dart';
class AppSegmentedTabBar extends StatefulWidget {
final TabController? tabController;
final List<TabBarM... | 5 |
fluttereasy/queapp | b6fdce4 | lib/SCreen/home_screen.dart | Dart | www.github.com/fluttereasy/queapp/tree/main/lib/SCreen/home_screen.dart | https://raw.githubusercontent.com/fluttereasy/queapp/b6fdce4/lib/SCreen/home_screen.dart | fluttereasy/queapp b6fdce4 lib/SCreen/home_screen.dart | true | 200 | 4,604 | import 'package:easysolution/SCreen/singleurl_screen.dart';
import 'package:easysolution/SCreen/url1_screen.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
class HomeScreen extends StatefulWidget {
const HomeScreen({... | 7 |
DouglasValerio/SoletraApp | 756d482 | lib/bloc/letters/letters_bloc.dart | Dart | www.github.com/DouglasValerio/SoletraApp/tree/main/lib/bloc/letters/letters_bloc.dart | https://raw.githubusercontent.com/DouglasValerio/SoletraApp/756d482/lib/bloc/letters/letters_bloc.dart | DouglasValerio/SoletraApp 756d482 lib/bloc/letters/letters_bloc.dart | true | 200 | 1,712 | import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
import 'package:soletra_app/external/sensors/accelerometer_service.dart';
import 'package:soletra_app/models/letters_model.dart';
import 'package:soletra_app/repositories/word_game_repository.dart';
part 'letters_event.dart';
part 'letters_state.dart';
... | 2 |
soccerbro421/boonjae | e4cad6a | lib/src/ui/profile/settings/edit_notifications_view.dart | Dart | www.github.com/soccerbro421/boonjae/tree/main/lib/src/ui/profile/settings/edit_notifications_view.dart | https://raw.githubusercontent.com/soccerbro421/boonjae/e4cad6a/lib/src/ui/profile/settings/edit_notifications_view.dart | soccerbro421/boonjae e4cad6a lib/src/ui/profile/settings/edit_notifications_view.dart | true | 200 | 6,287 | import 'package:boonjae/src/services/notification_service.dart';
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
class EditNotificationsView extends StatefulWidget {
const EditNotificationsView({Key? key}) : super(key: key);
@override
State<EditNotificationsV... | 4 |
Stanislavo-QA-Compie/FertilAI | 1ed1d72 | lib/shared_widgets/country_code_selector_dropdown.dart | Dart | www.github.com/Stanislavo-QA-Compie/FertilAI/tree/main/lib/shared_widgets/country_code_selector_dropdown.dart | https://raw.githubusercontent.com/Stanislavo-QA-Compie/FertilAI/1ed1d72/lib/shared_widgets/country_code_selector_dropdown.dart | Stanislavo-QA-Compie/FertilAI 1ed1d72 lib/shared_widgets/country_code_selector_dropdown.dart | true | 200 | 4,508 | import 'package:fertilane_doctor/theme/style/app_colors.dart';
import 'package:fertilane_doctor/theme/style/app_shadows.dart';
import 'package:fertilane_doctor/theme/style/app_text_styles.dart';
import 'package:fertilane_doctor/utils/countries.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/mate... | 6 |
AlbiTegarPrayoga/finalproject_pmoif20b_albitegarprayoga | 2dec016 | lib/Screens/register_page.dart | Dart | www.github.com/AlbiTegarPrayoga/finalproject_pmoif20b_albitegarprayoga/tree/main/lib/Screens/register_page.dart | https://raw.githubusercontent.com/AlbiTegarPrayoga/finalproject_pmoif20b_albitegarprayoga/2dec016/lib/Screens/register_page.dart | AlbiTegarPrayoga/finalproject_pmoif20b_albitegarprayoga 2dec016 lib/Screens/register_page.dart | true | 200 | 9,909 | import 'package:finalproject_pmoif20b_albitegarprayoga/Api/api.dart';
import 'package:finalproject_pmoif20b_albitegarprayoga/Screens/login_page.dart';
import 'package:finalproject_pmoif20b_albitegarprayoga/Screens/background.dart';
import 'package:flutter/material.dart';
class RegisterPage extends StatefulWidget {
c... | 3 |
cds-reis/gerencia_net_plus | 9a43c3d | example/pix/transactions/list_sent_pix_example.dart | Dart | www.github.com/cds-reis/gerencia_net_plus/tree/main/example/pix/transactions/list_sent_pix_example.dart | https://raw.githubusercontent.com/cds-reis/gerencia_net_plus/9a43c3d/example/pix/transactions/list_sent_pix_example.dart | cds-reis/gerencia_net_plus 9a43c3d example/pix/transactions/list_sent_pix_example.dart | true | 200 | 466 | import 'package:gerencia_net_plus/gerencia_net_plus.dart';
import '../../base_credentials.dart';
Future<void> main(List<String> args) async {
final gerenciaNetPlus = GerenciaNetPlus(credentials: baseCredentials);
final pix = await gerenciaNetPlus.pix.transactions.listSentPix(
start: DateTime(2023),
end: ... | 0 |
xephas-official/firebase_url | 47aee8e | lib/data/user/user_cloud_service.dart | Dart | www.github.com/xephas-official/firebase_url/tree/main/lib/data/user/user_cloud_service.dart | https://raw.githubusercontent.com/xephas-official/firebase_url/47aee8e/lib/data/user/user_cloud_service.dart | xephas-official/firebase_url 47aee8e lib/data/user/user_cloud_service.dart | true | 200 | 2,187 | import '../../app_exporter.dart';
/// A service for interacting with the Cloud Database
class UserCloudService {
//
/// ? ---- Users Database Service ----
///This function uploads the user to cloud under the [usersDatabaseRef]
static Future<void> uploadAppUser({required AppUser appUser}) async =>
usersD... | 1 |
msalman360/CashDroid | 3f9dd49 | lib/pages/accounts_page.dart | Dart | www.github.com/msalman360/CashDroid/tree/main/lib/pages/accounts_page.dart | https://raw.githubusercontent.com/msalman360/CashDroid/3f9dd49/lib/pages/accounts_page.dart | msalman360/CashDroid 3f9dd49 lib/pages/accounts_page.dart | true | 200 | 12,542 | // ignore_for_file: unnecessary_null_comparison
import 'package:collection/collection.dart';
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:provider/provider.dart'; // Import the provider package
import 'package:cash_droid/database_helper.dart';
class AccountPage extends ... | 5 |
ilyin0/horoskope | 310f79b | lib/presentation/pages/compatibility_details/compatibility_details_state.dart | Dart | www.github.com/ilyin0/horoskope/tree/main/lib/presentation/pages/compatibility_details/compatibility_details_state.dart | https://raw.githubusercontent.com/ilyin0/horoskope/310f79b/lib/presentation/pages/compatibility_details/compatibility_details_state.dart | ilyin0/horoskope 310f79b lib/presentation/pages/compatibility_details/compatibility_details_state.dart | true | 200 | 726 | import 'package:equatable/equatable.dart';
import 'package:horoskope/domain/entities/compatibility.dart';
class CompatibilityDetailsState extends Equatable {
final CompatibilityDetailsTab tab;
final Compatibility? compatibility;
const CompatibilityDetailsState({
this.compatibility,
this.tab = Compatibil... | 7 |
akshatt25/weather_app | 7a4079e | lib/provider/weather_provider.dart | Dart | www.github.com/akshatt25/weather_app/tree/main/lib/provider/weather_provider.dart | https://raw.githubusercontent.com/akshatt25/weather_app/7a4079e/lib/provider/weather_provider.dart | akshatt25/weather_app 7a4079e lib/provider/weather_provider.dart | true | 200 | 807 | // providers/weather_provider.dart
import 'package:flutter/foundation.dart';
import 'package:weather_app/service/weather_service.dart';
class WeatherProvider with ChangeNotifier {
final WeatherService _weatherService = WeatherService();
Map<String, dynamic>? _weatherData;
bool _isLoading = false;
String? _err... | 4 |
mallisettiyaswanth/flutter-ios-whatsapp-clone-frontend | f91aed8 | lib/Api/sockets.dart | Dart | www.github.com/mallisettiyaswanth/flutter-ios-whatsapp-clone-frontend/tree/main/lib/Api/sockets.dart | https://raw.githubusercontent.com/mallisettiyaswanth/flutter-ios-whatsapp-clone-frontend/f91aed8/lib/Api/sockets.dart | mallisettiyaswanth/flutter-ios-whatsapp-clone-frontend f91aed8 lib/Api/sockets.dart | true | 200 | 1,040 | import 'package:socket_io_client/socket_io_client.dart' as IO;
import 'package:textz/Api/user_requests.dart';
import 'package:textz/main.dart';
class IosSocket {
late IO.Socket socket;
Future<void> initialize() async {
final number = await phoneNumber.getNumber();
socket = IO.io(backEndUri, <String, dyna... | 2 |
wispborne/wispatisfactory | 77f0010 | lib/extensions.dart | Dart | www.github.com/wispborne/wispatisfactory/tree/main/lib/extensions.dart | https://raw.githubusercontent.com/wispborne/wispatisfactory/77f0010/lib/extensions.dart | wispborne/wispatisfactory 77f0010 lib/extensions.dart | true | 200 | 18,476 | import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:dart_extensions_methods/dart_extension_methods.dart';
import 'package:flutter/material.dart';
import 'package:path/path.dart' as p;
import 'package:wispatisfactory/logging.dart';
import 'package:yaml/yaml.dart';
extension DoubleExt on doubl... | 3 |
chilex111/Assessment | b36607b | lib/widget/loading.dart | Dart | www.github.com/chilex111/Assessment/tree/main/lib/widget/loading.dart | https://raw.githubusercontent.com/chilex111/Assessment/b36607b/lib/widget/loading.dart | chilex111/Assessment b36607b lib/widget/loading.dart | true | 200 | 1,175 | import 'dart:math';
import 'package:flutter/material.dart';
class LoadingScreen extends StatefulWidget {
const LoadingScreen({super.key});
@override
_LoadingScreenState createState() => _LoadingScreenState();
}
class _LoadingScreenState extends State<LoadingScreen> with SingleTickerProviderStateMixin {
late A... | 1 |
NadaAyman292/c11_exam_fraiday | 83662f9 | lib/widgets/carousel_with_dot_indicator.dart | Dart | www.github.com/NadaAyman292/c11_exam_fraiday/tree/main/lib/widgets/carousel_with_dot_indicator.dart | https://raw.githubusercontent.com/NadaAyman292/c11_exam_fraiday/83662f9/lib/widgets/carousel_with_dot_indicator.dart | NadaAyman292/c11_exam_fraiday 83662f9 lib/widgets/carousel_with_dot_indicator.dart | true | 200 | 1,846 | import 'package:c11_exam_friday/widgets/features_item.dart';
import 'package:carousel_slider/carousel_slider.dart';
import 'package:flutter/material.dart';
import 'package:smooth_page_indicator/smooth_page_indicator.dart';
class CarouselWithDotIndicator extends StatefulWidget {
const CarouselWithDotIndicator({super.... | 0 |
otocampos/cuban-engineers-recipe-challenge | bd82d57 | test/notifiers/recipe_by_id_notifier_test.dart | Dart | www.github.com/otocampos/cuban-engineers-recipe-challenge/tree/main/test/notifiers/recipe_by_id_notifier_test.dart | https://raw.githubusercontent.com/otocampos/cuban-engineers-recipe-challenge/bd82d57/test/notifiers/recipe_by_id_notifier_test.dart | otocampos/cuban-engineers-recipe-challenge bd82d57 test/notifiers/recipe_by_id_notifier_test.dart | true | 200 | 2,038 | import 'package:cuban_recipes/mocks/mock_recipes.dart';
import 'package:cuban_recipes/domain/use_cases/get_recipe_by_id_use_case.dart';
import 'package:cuban_recipes/domain/use_cases/get_recipes_use_case.dart';
import 'package:cuban_recipes/models/recipe_item.dart';
import 'package:cuban_recipes/models/recipes.dart';
i... | 6 |
havya123/social_media | e804c25 | lib/repository/user_repo.dart | Dart | www.github.com/havya123/social_media/tree/main/lib/repository/user_repo.dart | https://raw.githubusercontent.com/havya123/social_media/e804c25/lib/repository/user_repo.dart | havya123/social_media e804c25 lib/repository/user_repo.dart | true | 200 | 3,483 | import 'dart:io';
import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_storage/firebase_storage.dart';
import 'package:social_media/app/assets/assets.dart';
import 'package:social_media/manage/firebase_service/firebase_service.dart';
import 'package:social_media/model/user.dart';
import 'package:... | 5 |
chen040129/FPGA_ADC | 34b784a | output_files/uart.cdf | Mathematica | www.github.com/chen040129/FPGA_ADC/tree/main/output_files/uart.cdf | https://raw.githubusercontent.com/chen040129/FPGA_ADC/34b784a/output_files/uart.cdf | chen040129/FPGA_ADC 34b784a output_files/uart.cdf | true | 200 | 340 | /* Quartus Prime Version 18.0.0 Build 614 04/24/2018 SJ Standard Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP4CE10) Path("E:/FPGA_FILE/MY_UART/") File("output_file.jic") MfrSpec(OpMask(1) SEC_Device(EPCS4) Child_OpMask(1 1));
ChainEnd;
AlteraBegin;
ChainTyp... | 7 |
pseudotensor/mathematica | ef031a3 | mathematica_merged/harmcoordinates_interpolation_riemann_gravity/2gdet.nb | Mathematica | www.github.com/pseudotensor/mathematica/tree/main/mathematica_merged/harmcoordinates_interpolation_riemann_gravity/2gdet.nb | https://raw.githubusercontent.com/pseudotensor/mathematica/ef031a3/mathematica_merged/harmcoordinates_interpolation_riemann_gravity/2gdet.nb | pseudotensor/mathematica ef031a3 mathematica_merged/harmcoordinates_interpolation_riemann_gravity/2gdet.nb | true | 200 | 4,032 | (***********************************************************************
Mathematica-Compatible Notebook
This notebook can be used on any computer system with Mathematica 4.0,
MathReader 4.0, or any compatible application. The data for the notebook
starts with the line containing stars abov... | 3 |
SaintAngeLs/matlab_functions | 9bceab0 | lab4/linsolve3_2.m | Mathematica | www.github.com/SaintAngeLs/matlab_functions/tree/main/lab4/linsolve3_2.m | https://raw.githubusercontent.com/SaintAngeLs/matlab_functions/9bceab0/lab4/linsolve3_2.m | SaintAngeLs/matlab_functions 9bceab0 lab4/linsolve3_2.m | true | 200 | 2,447 | function [x] = linsolve3(a, b, c, r)
% Macierz drójdiagonalna A o elemntach a_{i,j} to taka macierz, dla której
% spełniony będzie warunek a_{ij} = 0, gdt |i - j| > 0. Nie musie to
% oznaczać, że a_{ij} != 0dla każdych |i - j| <= 1. W praktyce elementy
% takiej macierzy są przechporywane w trzech wektorzch albo w tabli... | 2 |
HiggstonRainbird/AoC-2022 | 02264f6 | Day 07/AoC Day 07.m | Mathematica | www.github.com/HiggstonRainbird/AoC-2022/tree/main/Day 07/AoC Day 07.m | https://raw.githubusercontent.com/HiggstonRainbird/AoC-2022/02264f6/Day%2007/AoC%20Day%2007.m | HiggstonRainbird/AoC-2022 02264f6 Day 07/AoC Day 07.m | true | 200 | 969 | (* ::Package:: *)
(* ::Text:: *)
(*Written December 7th, 2022.*)
(*Import*)
day = 7;
inputPath = FileNameJoin[{NotebookDirectory[], "Day" <> ToString[day] <> "Input.txt"}];
input=Import[inputPath,"List"][[1]];
(*Setup*)
directory = {}; level = {"/"};
Do[
Which[
line[[2]] == "cd",
Which[
line[[3]] == "... | 0 |
rhennigan/ComputationalFitness | b75ed66 | Kernel/FIT/FileType.wl | Mathematica | www.github.com/rhennigan/ComputationalFitness/tree/main/Kernel/FIT/FileType.wl | https://raw.githubusercontent.com/rhennigan/ComputationalFitness/b75ed66/Kernel/FIT/FileType.wl | rhennigan/ComputationalFitness b75ed66 Kernel/FIT/FileType.wl | true | 200 | 3,176 | (* ::**************************************************************************************************************:: *)
(* ::Section::Closed:: *)
(*Package Header*)
BeginPackage[ "RickHennigan`ComputationalFitness`FIT`" ];
Needs[ "RickHennigan`ComputationalFitness`" ];
Needs[ "RickHennigan`ComputationalFitness`Package... | 1 |
polfosol/mathematica | 3aa9dca | 20.10.15 Poincaré Conjecture/poincare.nb | Mathematica | www.github.com/polfosol/mathematica/tree/main/20.10.15 Poincaré Conjecture/poincare.nb | https://raw.githubusercontent.com/polfosol/mathematica/3aa9dca/20.10.15%20Poincar%C3%A9%20Conjecture/poincare.nb | polfosol/mathematica 3aa9dca 20.10.15 Poincaré Conjecture/poincare.nb | true | 200 | 6,476 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 4 |
pseudotensor/mathematica | ef031a3 | mathematica_merged/general/mri_relativistic.nb | Mathematica | www.github.com/pseudotensor/mathematica/tree/main/mathematica_merged/general/mri_relativistic.nb | https://raw.githubusercontent.com/pseudotensor/mathematica/ef031a3/mathematica_merged/general/mri_relativistic.nb | pseudotensor/mathematica ef031a3 mathematica_merged/general/mri_relativistic.nb | true | 200 | 3,625 | (************** Content-type: application/mathematica **************
CreatedBy='Mathematica 5.0'
Mathematica-Compatible Notebook
This notebook can be used with any Mathematica-compatible
application, such as Mathematica, MathReader or Publicon. The data
for the notebook... | 5 |
Arockiyalipson/Rapid-CoreX | c0b5e45 | Library/LIB_W25Q32JVXGIQ_TR/W25Q32JVXGIQ_TR/CR-5000/W25Q32JVXGIQ_TR.cdf | Mathematica | www.github.com/Arockiyalipson/Rapid-CoreX/tree/main/Library/LIB_W25Q32JVXGIQ_TR/W25Q32JVXGIQ_TR/CR-5000/W25Q32JVXGIQ_TR.cdf | https://raw.githubusercontent.com/Arockiyalipson/Rapid-CoreX/c0b5e45/Library/LIB_W25Q32JVXGIQ_TR/W25Q32JVXGIQ_TR/CR-5000/W25Q32JVXGIQ_TR.cdf | Arockiyalipson/Rapid-CoreX c0b5e45 Library/LIB_W25Q32JVXGIQ_TR/W25Q32JVXGIQ_TR/CR-5000/W25Q32JVXGIQ_TR.cdf | true | 200 | 1,466 | (part "W25Q32JVXGIQ_TR"
(packageRef "SON80P400X400X50-9N")
(interface
(port "1" (symbPinId 1) (portName "%CS%") (portType INOUT))
(port "2" (symbPinId 2) (portName "DO_(IO1)") (portType INOUT))
(port "3" (symbPinId 3) (portName "%WP_(IO2)%") (portType INOUT))
(port "4" (symbPinId... | 7 |
JArgenton/Circuitos-Digitais | 6ba1bd3 | SOMADOR/output_files/SOMADOR.cdf | Mathematica | www.github.com/JArgenton/Circuitos-Digitais/tree/main/SOMADOR/output_files/SOMADOR.cdf | https://raw.githubusercontent.com/JArgenton/Circuitos-Digitais/6ba1bd3/SOMADOR/output_files/SOMADOR.cdf | JArgenton/Circuitos-Digitais 6ba1bd3 SOMADOR/output_files/SOMADOR.cdf | true | 200 | 341 | /* Quartus Prime Version 18.1.0 Build 625 09/12/2018 SJ Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(10M50DAF484) Path("/home/pedro/Documents/Circuitos Digitais/SOMADOR/output_files/") File("SOMADOR.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;
ChainTy... | 6 |
nekomiya-kasane/group_theory_mma | f2183b6 | Documentation/English/ReferencePages/Symbols/GOPhPol.nb | Mathematica | www.github.com/nekomiya-kasane/group_theory_mma/tree/main/Documentation/English/ReferencePages/Symbols/GOPhPol.nb | https://raw.githubusercontent.com/nekomiya-kasane/group_theory_mma/f2183b6/Documentation/English/ReferencePages/Symbols/GOPhPol.nb | nekomiya-kasane/group_theory_mma f2183b6 Documentation/English/ReferencePages/Symbols/GOPhPol.nb | true | 200 | 45,391 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.2' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 0 |
alumae/k6net6lke-benchmark | 3d527e8 | outputs/ru/mt/nllb/lfSFo1ruPnA.ru.et.mt | Mathematica | www.github.com/alumae/k6net6lke-benchmark/tree/main/outputs/ru/mt/nllb/lfSFo1ruPnA.ru.et.mt | https://raw.githubusercontent.com/alumae/k6net6lke-benchmark/3d527e8/outputs/ru/mt/nllb/lfSFo1ruPnA.ru.et.mt | alumae/k6net6lke-benchmark 3d527e8 outputs/ru/mt/nllb/lfSFo1ruPnA.ru.et.mt | true | 200 | 21,806 | Uudiste eetris beloreeka stuudios juriidiline sokid tere sponsor väljaanne
Autosalon auto liiga ametlik diiler lada
Auto liiga Lada sai veelgi kättesaadavam taaselustatud
esimese pereauto pluss täiendavad allahindlused ja kingitused
üksikasjalik auto salong tähelepanu maksimaalselt alandada hinnad
Lada rohkem kui 100 a... | 3 |
pikipity/FPGA-Laboratory | d94b088 | Lab1/4_Half_Adder/Quartus_prj/output_files/half_adder.cdf | Mathematica | www.github.com/pikipity/FPGA-Laboratory/tree/main/Lab1/4_Half_Adder/Quartus_prj/output_files/half_adder.cdf | https://raw.githubusercontent.com/pikipity/FPGA-Laboratory/d94b088/Lab1/4_Half_Adder/Quartus_prj/output_files/half_adder.cdf | pikipity/FPGA-Laboratory d94b088 Lab1/4_Half_Adder/Quartus_prj/output_files/half_adder.cdf | true | 200 | 375 | /* Quartus Prime Version 23.1std.1 Build 993 05/14/2024 SC Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP4CE10F17) Path("C:/Users/wangz/Documents/GitHub/FPGA-Laboratory/Lab1/4_Half_Adder/Quartus_prj/output_files/") File("half_adder.sof") MfrSpec(OpMask(1));... | 2 |
GwGibson/oberon-interpreter | ac55b72 | tests/test8.m | Mathematica | www.github.com/GwGibson/oberon-interpreter/tree/main/tests/test8.m | https://raw.githubusercontent.com/GwGibson/oberon-interpreter/ac55b72/tests/test8.m | GwGibson/oberon-interpreter ac55b72 tests/test8.m | true | 200 | 465 | (*s-*)
MODULE test8;
CONST A = 13;
VAR a : INTEGER;
PROCEDURE test;
VAR p : INTEGER;
BEGIN
p := 2;
WRITE(p)
END test;
PROCEDURE test2(z, w : INTEGER);
VAR p : INTEGER;
BEGIN
p := 1;
WRITE(z + w + p)
END test2;
PROCEDURE test3(z : INTEGER) : INTEGER;
BEGIN
RE... | 4 |
srossd/TensorTools | 2faff15 | Documentation/English/ReferencePages/Symbols/TensorPermutation.nb | Mathematica | www.github.com/srossd/TensorTools/tree/main/Documentation/English/ReferencePages/Symbols/TensorPermutation.nb | https://raw.githubusercontent.com/srossd/TensorTools/2faff15/Documentation/English/ReferencePages/Symbols/TensorPermutation.nb | srossd/TensorTools 2faff15 Documentation/English/ReferencePages/Symbols/TensorPermutation.nb | true | 200 | 20,140 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 14.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
Noteb... | 1 |
Xabo-RB/Benchmarking_files | 914ab26 | EAR/HIV1 a.nb | Mathematica | www.github.com/Xabo-RB/Benchmarking_files/tree/main/EAR/HIV1 a.nb | https://raw.githubusercontent.com/Xabo-RB/Benchmarking_files/914ab26/EAR/HIV1%20a.nb | Xabo-RB/Benchmarking_files 914ab26 EAR/HIV1 a.nb | true | 200 | 3,845 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.3' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 5 |
128atharvask/Course-Project---EE_214_LABS | 7d3eb8b | Endsem/FSM/output_files/fsm.cdf | Mathematica | www.github.com/128atharvask/Course-Project---EE_214_LABS/tree/main/Endsem/FSM/output_files/fsm.cdf | https://raw.githubusercontent.com/128atharvask/Course-Project---EE_214_LABS/7d3eb8b/Endsem/FSM/output_files/fsm.cdf | 128atharvask/Course-Project---EE_214_LABS 7d3eb8b Endsem/FSM/output_files/fsm.cdf | true | 200 | 336 | /* Quartus Prime Version 20.1.1 Build 720 11/11/2020 SJ Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(10M25SAE144) Path("C:/Users/theas/Documents/EE_214_LABS/Endsem/FSM/output_files/") File("fsm.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;
ChainType(JT... | 6 |
sacerdot/matita | 7c14cce | matita/broken_contribs/lambdadelta/delayed_updating/substitution/fsubst_eq.ma | Mathematica | www.github.com/sacerdot/matita/tree/main/matita/broken_contribs/lambdadelta/delayed_updating/substitution/fsubst_eq.ma | https://raw.githubusercontent.com/sacerdot/matita/7c14cce/matita/broken_contribs/lambdadelta/delayed_updating/substitution/fsubst_eq.ma | sacerdot/matita 7c14cce matita/broken_contribs/lambdadelta/delayed_updating/substitution/fsubst_eq.ma | true | 200 | 6,237 | (**************************************************************************)
(* ___ *)
(* ||M|| *)
(* ||A|| A project by Andrea Asperti *)
(* ||T|... | 7 |
taliesinb/MathTools | 0151a2f | Kernel/Typesetting/Animation.m | Mathematica | www.github.com/taliesinb/MathTools/tree/main/Kernel/Typesetting/Animation.m | https://raw.githubusercontent.com/taliesinb/MathTools/0151a2f/Kernel/Typesetting/Animation.m | taliesinb/MathTools 0151a2f Kernel/Typesetting/Animation.m | true | 200 | 21,525 | PublicOption[MaxFrames]
SetUsage @ "
MaxFrames is an option for animation-related functions that puts an upper bound on the number of frames to render.
"
PublicOption[AnimationLooping]
PublicSymbol[Bidirectional]
SetUsage @ "
AnimationLooping is an option for animation-related functions that has the following settings... | 3 |
RiskWe/Design-a-configurable-32-bit-Floating-Point-Arithmetic-Unit-supporting- | 3076fdf | Quartus Projects/8bit_adder/output_files/8bit_adder.cdf | Mathematica | www.github.com/RiskWe/Design-a-configurable-32-bit-Floating-Point-Arithmetic-Unit-supporting-/tree/main/Quartus Projects/8bit_adder/output_files/8bit_adder.cdf | https://raw.githubusercontent.com/RiskWe/Design-a-configurable-32-bit-Floating-Point-Arithmetic-Unit-supporting-/3076fdf/Quartus%20Projects/8bit_adder/output_files/8bit_adder.cdf | RiskWe/Design-a-configurable-32-bit-Floating-Point-Arithmetic-Unit-supporting- 3076fdf Quartus Projects/8bit_adder/output_files/8bit_adder.cdf | true | 200 | 338 | /* Quartus Prime Version 20.1.1 Build 720 11/11/2020 SJ Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EPCS64) Path("E:/Quartus Projects/8bit_adder/output_files/") File("8bit_adder.pof") MfrSpec(OpMask(1) Child_OpMask(1 1));
ChainEnd;
AlteraBegin;
ChainType... | 0 |
Co1dmountain/VGA_experiment | bfb8045 | prj/output_files/vga_colorbar.cdf | Mathematica | www.github.com/Co1dmountain/VGA_experiment/tree/main/prj/output_files/vga_colorbar.cdf | https://raw.githubusercontent.com/Co1dmountain/VGA_experiment/bfb8045/prj/output_files/vga_colorbar.cdf | Co1dmountain/VGA_experiment bfb8045 prj/output_files/vga_colorbar.cdf | true | 200 | 354 | /* Quartus II 64-Bit Version 13.0.0 Build 156 04/24/2013 SJ Full Version */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP2C35F672) Path("D:/altera/project/earnmoney/snake_game/VGA_driver/prj/output_files/") File("vga_colorbar.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBe... | 2 |
unal-edigital1-lab/entrega-proyecto-2024-2-grupo15-2024-2 | f825c19 | audio1/proyecto_audio/output_files/montaje_audio.cdf | Mathematica | www.github.com/unal-edigital1-lab/entrega-proyecto-2024-2-grupo15-2024-2/tree/main/audio1/proyecto_audio/output_files/montaje_audio.cdf | https://raw.githubusercontent.com/unal-edigital1-lab/entrega-proyecto-2024-2-grupo15-2024-2/f825c19/audio1/proyecto_audio/output_files/montaje_audio.cdf | unal-edigital1-lab/entrega-proyecto-2024-2-grupo15-2024-2 f825c19 audio1/proyecto_audio/output_files/montaje_audio.cdf | true | 200 | 382 | /* Quartus Prime Version 20.1.1 Build 720 11/11/2020 SJ Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP4CE6E22) Path("/home/alejandro/ADigital/entrega-proyecto-2024-2-grupo15-2024-2/audio1/proyecto_audio/output_files/") File("montaje_audio.sof") MfrSpec(OpMa... | 4 |
SimulationEverywhere-Models/CDPP-UNMANNED-GROUND-VEHICLE | 88b18c0 | MainComputerMA.ma | Mathematica | www.github.com/SimulationEverywhere-Models/CDPP-UNMANNED-GROUND-VEHICLE/tree/main/MainComputerMA.ma | https://raw.githubusercontent.com/SimulationEverywhere-Models/CDPP-UNMANNED-GROUND-VEHICLE/88b18c0/MainComputerMA.ma | SimulationEverywhere-Models/CDPP-UNMANNED-GROUND-VEHICLE 88b18c0 MainComputerMA.ma | true | 200 | 388 | [top]
components : mc1@MainComputer
in : heading inputHeading intruder
out : status turningPort turnLeft turnRight
Link : heading heading@mc1
Link : inputHeading inputHeading@mc1
Link : intruder intruder@mc1
Link : status@mc1 status
Link : turningPort@mc1 turningPort
Link : turnLeft@mc1 turnLeft
Link ... | 5 |
taroyabuki/comath | 75dea7e | code/mathematica/results/mathematica.m | Mathematica | www.github.com/taroyabuki/comath/tree/main/code/mathematica/results/mathematica.m | https://raw.githubusercontent.com/taroyabuki/comath/75dea7e/code/mathematica/results/mathematica.m | taroyabuki/comath 75dea7e code/mathematica/results/mathematica.m | true | 200 | 45,349 | $CharacterEncoding = "UTF-8";
(* 1 実行環境 *)
Clear["Global`*"];
data = {{1, 7}, {3, 1}, {6, 6}, {10, 14}};
model = LinearModelFit[data, X1, X1]
model["BestFitParameters"]
(* 2 数と変数 *)
Clear["Global`*"];
2 * (-3)
2 (-3)
(1 + 2) * 3
2^10
-2 < -1
2 + 2 == 5
If[7 < 5, 10, 20]
x<1
x == y
x^2 - 1 == (x + 1) (x -... | 1 |
rsdc-hydra/hydra-processor | 0eff4f7 | hydra/output_files/hydra.cdf | Mathematica | www.github.com/rsdc-hydra/hydra-processor/tree/main/hydra/output_files/hydra.cdf | https://raw.githubusercontent.com/rsdc-hydra/hydra-processor/0eff4f7/hydra/output_files/hydra.cdf | rsdc-hydra/hydra-processor 0eff4f7 hydra/output_files/hydra.cdf | true | 200 | 383 | /* Quartus Prime Version 20.1.1 Build 720 11/11/2020 SJ Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP4CE115F29) Path("M:/Academics/Sem5/WorkPlace/Circuits and Systems Design/Digital/Final Processor Design/hydra/output_files/") File("hydra.sof") MfrSpec(OpM... | 7 |
willyhereman/ConservationLawsMD-Mathematica | 126d401 | ConservationLawsMD.m | Mathematica | www.github.com/willyhereman/ConservationLawsMD-Mathematica/tree/main/ConservationLawsMD.m | https://raw.githubusercontent.com/willyhereman/ConservationLawsMD-Mathematica/126d401/ConservationLawsMD.m | willyhereman/ConservationLawsMD-Mathematica 126d401 ConservationLawsMD.m | true | 200 | 71,562 | (* Time-stamp: 4 February, 2010, 13:40 Mountain Daylight Time *)
(* Last updated: 6 June, 2024, 10:20 AM in Houston by U. Goktas *)
(*****************************************************************************)
(* *)
(* *** M A T H E M... | 6 |
restrepo/Model | ba2503f | particles.m | Mathematica | www.github.com/restrepo/Model/tree/main/particles.m | https://raw.githubusercontent.com/restrepo/Model/ba2503f/particles.m | restrepo/Model ba2503f particles.m | true | 200 | 7,416 | (*Reads configuration file in both unix and windows*)
Get[FileNameJoin[{$sarahDir,"Models",Model`Name,"config.m"}]];
If [GaugeU1,
EvenSingletScalar = True;,
seesaw = False;
];
If [EvenSingletScalar,
Ahlist = {Ah , { Description -> "Pseudo-Scalar Higgs"}};
hhlist = {hh , { Description ... | 0 |
nekomiya-kasane/group_theory_mma | f2183b6 | Documentation/English/ReferencePages/Symbols/GTTransformation.nb | Mathematica | www.github.com/nekomiya-kasane/group_theory_mma/tree/main/Documentation/English/ReferencePages/Symbols/GTTransformation.nb | https://raw.githubusercontent.com/nekomiya-kasane/group_theory_mma/f2183b6/Documentation/English/ReferencePages/Symbols/GTTransformation.nb | nekomiya-kasane/group_theory_mma f2183b6 Documentation/English/ReferencePages/Symbols/GTTransformation.nb | true | 200 | 28,861 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.2' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 2 |
taliesinb/CoreTools | 7742a48 | Kernel/Dynamic/Plots/DLinearChart.wl | Mathematica | www.github.com/taliesinb/CoreTools/tree/main/Kernel/Dynamic/Plots/DLinearChart.wl | https://raw.githubusercontent.com/taliesinb/CoreTools/7742a48/Kernel/Dynamic/Plots/DLinearChart.wl | taliesinb/CoreTools 7742a48 Kernel/Dynamic/Plots/DLinearChart.wl | true | 200 | 2,661 | PackageExports[
"GraphicsBoxFunction", DLinearChartBox,
"Option", BinTicks
];
(**************************************************************************************************)
Options[DLinearChartBox] = JoinOptions[
$baseDPlotOptions,
ChartLabels -> None
];
DLinearChartBox[data_, n_Integer, opts:Op... | 3 |
jasondbiggs/WeakCache | 5de1101 | scripts/Build.wl | Mathematica | www.github.com/jasondbiggs/WeakCache/tree/main/scripts/Build.wl | https://raw.githubusercontent.com/jasondbiggs/WeakCache/5de1101/scripts/Build.wl | jasondbiggs/WeakCache 5de1101 scripts/Build.wl | true | 200 | 901 | (* ::Package:: *)
(* Wolfram Language Package *)
BeginPackage["CachUtilities`Build`"]
buildLibrary
buildPaclet
Begin["`Private`"] (* Begin Private Context *)
$libraryName = "CleanupAfter"
$pacletName = "WeakCache"
$inputFileName = $InputFileName
$pacletSourceDir = ParentDirectory @ DirectoryName[$inputFileName]
... | 4 |
MateusMaruzka/aqm_envcity_hw | 9269409 | libs/LIB_PESD24VS1UL-QZ/PESD24VS1UL-QZ/CR-8000/PESD24VS1UL-QZ.cdf | Mathematica | www.github.com/MateusMaruzka/aqm_envcity_hw/tree/main/libs/LIB_PESD24VS1UL-QZ/PESD24VS1UL-QZ/CR-8000/PESD24VS1UL-QZ.cdf | https://raw.githubusercontent.com/MateusMaruzka/aqm_envcity_hw/9269409/libs/LIB_PESD24VS1UL-QZ/PESD24VS1UL-QZ/CR-8000/PESD24VS1UL-QZ.cdf | MateusMaruzka/aqm_envcity_hw 9269409 libs/LIB_PESD24VS1UL-QZ/PESD24VS1UL-QZ/CR-8000/PESD24VS1UL-QZ.cdf | true | 200 | 771 | (part "PESD24VS1UL-QZ"
(packageRef "PESD24VS1ULQZ")
(interface
(port "1" (symbPinId 1) (portName "K") (portType INOUT))
(port "2" (symbPinId 2) (portName "A") (portType INOUT))
)
(partClass UNDEF)
(useInSchema Y)
(useInLayout Y)
(inPartsList Y)
(partType NORMAL)
(plac... | 5 |
StasBeep/FPGA | a5c2e0b | project/raspin/output_files/RaspinProject.cdf | Mathematica | www.github.com/StasBeep/FPGA/tree/main/project/raspin/output_files/RaspinProject.cdf | https://raw.githubusercontent.com/StasBeep/FPGA/a5c2e0b/project/raspin/output_files/RaspinProject.cdf | StasBeep/FPGA a5c2e0b project/raspin/output_files/RaspinProject.cdf | true | 200 | 350 | /* Quartus Prime Version 23.1std.0 Build 991 11/28/2023 SC Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP4CE6E22) Path("C:/Users/Stanislav/Desktop/GiT/FPGA/project/raspin/output_files/") File("RaspinProject.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;... | 1 |
BartoszDutka/Projects-VHDL- | 358a264 | VHDL/1/output_files/alu.cdf | Mathematica | www.github.com/BartoszDutka/Projects-VHDL-/tree/main/VHDL/1/output_files/alu.cdf | https://raw.githubusercontent.com/BartoszDutka/Projects-VHDL-/358a264/VHDL/1/output_files/alu.cdf | BartoszDutka/Projects-VHDL- 358a264 VHDL/1/output_files/alu.cdf | true | 200 | 335 | /* Quartus Prime Version 21.1.0 Build 842 10/21/2021 SJ Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP4CGX150DF31) Path("/home/ask/ASK_NIESTACJONARNE/Dutka_Fryt/LAB1/output_files/") File("alu.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;
ChainType(JTA... | 7 |
BarathanKalanathan/TMU-Study | dcef85b | BME 328/Lab5/output_files/Lab5.cdf | Mathematica | www.github.com/BarathanKalanathan/TMU-Study/tree/main/BME 328/Lab5/output_files/Lab5.cdf | https://raw.githubusercontent.com/BarathanKalanathan/TMU-Study/dcef85b/BME%20328/Lab5/output_files/Lab5.cdf | BarathanKalanathan/TMU-Study dcef85b BME 328/Lab5/output_files/Lab5.cdf | true | 200 | 341 | /* Quartus II 32-bit Version 13.0.1 Build 232 06/12/2013 Service Pack 1 SJ Full Version */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP2C35F672) Path("/home/student2/bkalanat/Lab5part1/output_files/") File("Lab5.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;
ChainTy... | 3 |
angeelorenaoc/ED2 | 5fdf96d | Practica_I/output_files/Practica_I.cdf | Mathematica | www.github.com/angeelorenaoc/ED2/tree/main/Practica_I/output_files/Practica_I.cdf | https://raw.githubusercontent.com/angeelorenaoc/ED2/5fdf96d/Practica_I/output_files/Practica_I.cdf | angeelorenaoc/ED2 5fdf96d Practica_I/output_files/Practica_I.cdf | true | 200 | 339 | /* Quartus Prime Version 22.1std.2 Build 922 07/20/2023 SC Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(10M50DAF484ES) Path("C:/Users/oscar/Documents/ED/Practica_I/output_files/") File("Practica_I.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;
ChainType... | 0 |
LucasVMonteiro/Projetos_VHDL | 7b5e53c | LCD_DRIVER_externo/output_files/LCD_DRIVER.cdf | Mathematica | www.github.com/LucasVMonteiro/Projetos_VHDL/tree/main/LCD_DRIVER_externo/output_files/LCD_DRIVER.cdf | https://raw.githubusercontent.com/LucasVMonteiro/Projetos_VHDL/7b5e53c/LCD_DRIVER_externo/output_files/LCD_DRIVER.cdf | LucasVMonteiro/Projetos_VHDL 7b5e53c LCD_DRIVER_externo/output_files/LCD_DRIVER.cdf | true | 200 | 387 | /* Quartus II 64-Bit Version 13.0.1 Build 232 06/12/2013 Service Pack 1 SJ Web Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP2C35F672) Path("C:/Users/vieir/OneDrive/Documentos/GitHub/Projetos_VHDL/LCD_DRIVER_externo/output_files/") File("LCD_DRIVER.sof") MfrSpec... | 6 |
BrandenXia/AoC2024 | fff6f58 | day8/second.wl | Mathematica | www.github.com/BrandenXia/AoC2024/tree/main/day8/second.wl | https://raw.githubusercontent.com/BrandenXia/AoC2024/fff6f58/day8/second.wl | BrandenXia/AoC2024 fff6f58 day8/second.wl | true | 200 | 626 | #!/usr/bin/env wolframscript
input = Import["input.txt", "Text"];
input = StringSplit[#, ""] & /@ StringSplit[input, "\n"];
w = Length[input]; h = Length[Part[input, 1]];
chars = DeleteElements @@ {DeleteDuplicates[Flatten[input]], {"."}};
charLocs = AssociationMap[Position[input, #] &] @ chars;
genAntinodes = Select[... | 2 |
fuzzy41316/2D-Image-Processing-Module | eb0daee | DE1_SoC_CAMERA_ref/DE1_SoC_CAMERA.cdf | Mathematica | www.github.com/fuzzy41316/2D-Image-Processing-Module/tree/main/DE1_SoC_CAMERA_ref/DE1_SoC_CAMERA.cdf | https://raw.githubusercontent.com/fuzzy41316/2D-Image-Processing-Module/eb0daee/DE1_SoC_CAMERA_ref/DE1_SoC_CAMERA.cdf | fuzzy41316/2D-Image-Processing-Module eb0daee DE1_SoC_CAMERA_ref/DE1_SoC_CAMERA.cdf | true | 200 | 473 | /* Quartus Prime Version 23.1std.0 Build 991 11/28/2023 SC Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Ign)
Device PartName(SOCVHPS) MfrSpec(OpMask(0));
P ActionCode(Cfg)
Device PartName(5CSEMA5F31) Path("I:/ECE554/DE1-SoC_v.5.1.1_HWrevF_SystemCD/Tools/SystemBuilder/CodeGene... | 4 |
PeterCullenBurbery/undirected-graphs-paclet | 3763ae9 | Undirected Graphs/build/PeterBurbery__UndirectedGraphs/Documentation/English/Guides/GraphConstructionandRepresentation.nb | Mathematica | www.github.com/PeterCullenBurbery/undirected-graphs-paclet/tree/main/Undirected Graphs/build/PeterBurbery__UndirectedGraphs/Documentation/English/Guides/GraphConstructionandRepresentation.nb | https://raw.githubusercontent.com/PeterCullenBurbery/undirected-graphs-paclet/3763ae9/Undirected%20Graphs/build/PeterBurbery__UndirectedGraphs/Documentation/English/Guides/GraphConstructionandRepresentation.nb | PeterCullenBurbery/undirected-graphs-paclet 3763ae9 Undirected Graphs/build/PeterBurbery__UndirectedGraphs/Documentation/English/Guides/GraphConstructionandRepresentation.nb | true | 200 | 25,673 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.3' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 1 |
Aleph-GORY/ZeroKnowledgeAuthentication | daf6159 | authentication_server/classical_authentication/index.wl | Mathematica | www.github.com/Aleph-GORY/ZeroKnowledgeAuthentication/tree/main/authentication_server/classical_authentication/index.wl | https://raw.githubusercontent.com/Aleph-GORY/ZeroKnowledgeAuthentication/daf6159/authentication_server/classical_authentication/index.wl | Aleph-GORY/ZeroKnowledgeAuthentication daf6159 authentication_server/classical_authentication/index.wl | true | 200 | 916 | serverData = If[
Length[classicalUsers] > 0,
Column@Table[
Column[{
Style[user["Username"], Bold, Underlined, 20],
"Registration Date: " <> user["registrationDate"],
"Password: " <> user["Password"],
Style[".", 20, White],
}],
{user, class... | 5 |
bohdan-zhytnik/University-subjects | 0f6c100 | LSP/Led_snake/output_files/SvHad.cdf | Mathematica | www.github.com/bohdan-zhytnik/University-subjects/tree/main/LSP/Led_snake/output_files/SvHad.cdf | https://raw.githubusercontent.com/bohdan-zhytnik/University-subjects/0f6c100/LSP/Led_snake/output_files/SvHad.cdf | bohdan-zhytnik/University-subjects 0f6c100 LSP/Led_snake/output_files/SvHad.cdf | true | 200 | 337 | /* Quartus II 64-Bit Version 13.0.1 Build 232 06/12/2013 Service Pack 1 SJ Full Version */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP4CE115F29) Path("C:/Users/zhytnboh/LSP/SvHad/output_files/") File("SvHad.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;
ChainType(J... | 7 |
COLVERTYETY/MagicTouch | 3a8921a | pcb/LIB_ABLS-16.000MHz-20-B-3-H-T/ABLS-16.000MHz-20-B-3-H-T/CR-8000/ABLS-16.000MHz-20-B-3-H-T.cdf | Mathematica | www.github.com/COLVERTYETY/MagicTouch/tree/main/pcb/LIB_ABLS-16.000MHz-20-B-3-H-T/ABLS-16.000MHz-20-B-3-H-T/CR-8000/ABLS-16.000MHz-20-B-3-H-T.cdf | https://raw.githubusercontent.com/COLVERTYETY/MagicTouch/3a8921a/pcb/LIB_ABLS-16.000MHz-20-B-3-H-T/ABLS-16.000MHz-20-B-3-H-T/CR-8000/ABLS-16.000MHz-20-B-3-H-T.cdf | COLVERTYETY/MagicTouch 3a8921a pcb/LIB_ABLS-16.000MHz-20-B-3-H-T/ABLS-16.000MHz-20-B-3-H-T/CR-8000/ABLS-16.000MHz-20-B-3-H-T.cdf | true | 200 | 953 | (part "ABLS-16_000MHz-20-B-3-H-T"
(packageRef "ABLS16000MHz20B3HT")
(interface
(port "1" (symbPinId 1) (portName "CRYSTAL_1") (portType INOUT))
(port "2" (symbPinId 2) (portName "CRYSTAL_2") (portType INOUT))
)
(partClass UNDEF)
(useInSchema Y)
(useInLayout Y)
(inPar... | 0 |
b1rose/Wolfram_C2C_Project | 417bfdc | code/Finished/page0133b_primeprops.2.nb | Mathematica | www.github.com/b1rose/Wolfram_C2C_Project/tree/main/code/Finished/page0133b_primeprops.2.nb | https://raw.githubusercontent.com/b1rose/Wolfram_C2C_Project/417bfdc/code/Finished/page0133b_primeprops.2.nb | b1rose/Wolfram_C2C_Project 417bfdc code/Finished/page0133b_primeprops.2.nb | true | 200 | 5,275 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 3 |
nekomiya-kasane/group_theory_mma | f2183b6 | Documentation/English/ReferencePages/Symbols/GOLeftCosets.nb | Mathematica | www.github.com/nekomiya-kasane/group_theory_mma/tree/main/Documentation/English/ReferencePages/Symbols/GOLeftCosets.nb | https://raw.githubusercontent.com/nekomiya-kasane/group_theory_mma/f2183b6/Documentation/English/ReferencePages/Symbols/GOLeftCosets.nb | nekomiya-kasane/group_theory_mma f2183b6 Documentation/English/ReferencePages/Symbols/GOLeftCosets.nb | true | 200 | 25,869 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.2' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 2 |
sacerdot/matita | 7c14cce | matita/broken_contribs/lambdadelta/delayed_updating/unwind/unwind2_prototerm_eq.ma | Mathematica | www.github.com/sacerdot/matita/tree/main/matita/broken_contribs/lambdadelta/delayed_updating/unwind/unwind2_prototerm_eq.ma | https://raw.githubusercontent.com/sacerdot/matita/7c14cce/matita/broken_contribs/lambdadelta/delayed_updating/unwind/unwind2_prototerm_eq.ma | sacerdot/matita 7c14cce matita/broken_contribs/lambdadelta/delayed_updating/unwind/unwind2_prototerm_eq.ma | true | 200 | 1,888 | (**************************************************************************)
(* ___ *)
(* ||M|| *)
(* ||A|| A project by Andrea Asperti *)
(* ||T|... | 6 |
SimulationEverywhere-Models/CDPP-TRANSPORT | 772a2d2 | load.ma | Mathematica | www.github.com/SimulationEverywhere-Models/CDPP-TRANSPORT/tree/main/load.ma | https://raw.githubusercontent.com/SimulationEverywhere-Models/CDPP-TRANSPORT/772a2d2/load.ma | SimulationEverywhere-Models/CDPP-TRANSPORT 772a2d2 load.ma | true | 200 | 365 | [top]
components : loadque@Loadqueue loadser@Loadserver
out : exitload
in : arriveload
Link : arriveload arriveload@loadque
Link : readygoload@loadque enterload@loadser
Link : readyaccept@loadser loaddone@loadque
Link : exitload@loadser exitload
[loadque]
preparation : 00:00:10:000
[loadser]
distribu... | 4 |
eswagel/variational_FPE | ad903c5 | GaussianIntegrals.wl | Mathematica | www.github.com/eswagel/variational_FPE/tree/main/GaussianIntegrals.wl | https://raw.githubusercontent.com/eswagel/variational_FPE/ad903c5/GaussianIntegrals.wl | eswagel/variational_FPE ad903c5 GaussianIntegrals.wl | true | 200 | 2,253 | (* ::Package:: *)
BeginPackage["GaussianIntegrals`"];
GaussianIntegral::usage="Integrate from -\[Infinity] to \[Infinity], speeding up Gaussian integrals. Defaults to Integrate when it cannot identify a Gaussian integral.";
Begin["`Private`"];
IsElExp[el_] :=
(Head[el] == Power && Length[el] > 1 && ... | 1 |
trakkabase/Coxeter-groups | 877d167 | Back-up of application/CoxeterGroups/Documentation/English/Tutorials/Defining a new Coxeter system.nb | Mathematica | www.github.com/trakkabase/Coxeter-groups/tree/main/Back-up of application/CoxeterGroups/Documentation/English/Tutorials/Defining a new Coxeter system.nb | https://raw.githubusercontent.com/trakkabase/Coxeter-groups/877d167/Back-up%20of%20application/CoxeterGroups/Documentation/English/Tutorials/Defining%20a%20new%20Coxeter%20system.nb | trakkabase/Coxeter-groups 877d167 Back-up of application/CoxeterGroups/Documentation/English/Tutorials/Defining a new Coxeter system.nb | true | 200 | 13,507 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 5 |
bdjones13/KhovanovLaplacian | e17b2ae | basic_khovanov_testing/KnotTheory/QuantumGroups/QuantumGroups/RMatrix.nb | Mathematica | www.github.com/bdjones13/KhovanovLaplacian/tree/main/basic_khovanov_testing/KnotTheory/QuantumGroups/QuantumGroups/RMatrix.nb | https://raw.githubusercontent.com/bdjones13/KhovanovLaplacian/e17b2ae/basic_khovanov_testing/KnotTheory/QuantumGroups/QuantumGroups/RMatrix.nb | bdjones13/KhovanovLaplacian e17b2ae basic_khovanov_testing/KnotTheory/QuantumGroups/QuantumGroups/RMatrix.nb | true | 200 | 29,599 | (* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 6.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 29413,... | 2 |
zinaid/KLRotationAvg-InterpolationModel | aae2feb | rotation_package.wl | Mathematica | www.github.com/zinaid/KLRotationAvg-InterpolationModel/tree/main/rotation_package.wl | https://raw.githubusercontent.com/zinaid/KLRotationAvg-InterpolationModel/aae2feb/rotation_package.wl | zinaid/KLRotationAvg-InterpolationModel aae2feb rotation_package.wl | true | 200 | 8,796 | (* ::Package:: *)
BeginPackage["Rotation`"]
PolarForm::usage="";
sph::usage="";
ToQuaternion::usage="";
ToMatrix::usage="";
CreateQuaternion::usage="";
UnesiMkvaterniona::usage="";
Rotation::usage="";
RotationAveraging::usage="";
InterpolationTwoQuat::usage="";
SimulationConsensus::usage="";
Simulatio... | 0 |
AnupamShaw/QuantumMechanicsGriffiths | 17455b7 | Problem_2_62.nb | Mathematica | www.github.com/AnupamShaw/QuantumMechanicsGriffiths/tree/main/Problem_2_62.nb | https://raw.githubusercontent.com/AnupamShaw/QuantumMechanicsGriffiths/17455b7/Problem_2_62.nb | AnupamShaw/QuantumMechanicsGriffiths 17455b7 Problem_2_62.nb | true | 200 | 16,114 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
Noteb... | 3 |
gerroman/RG | 9367e40 | Kinematics/PhysicalRegion.wl | Mathematica | www.github.com/gerroman/RG/tree/main/Kinematics/PhysicalRegion.wl | https://raw.githubusercontent.com/gerroman/RG/9367e40/Kinematics/PhysicalRegion.wl | gerroman/RG 9367e40 Kinematics/PhysicalRegion.wl | true | 200 | 8,221 | BeginPackage["RG`Kinematics`PhysicalRegion`", {
"RG`Lorentz`ScalarProduct`",
"RG`Kinematics`ScalarProductRules`"
}]
GetPhysicalRegion::usage="GetPhysicalRegion[process, constraints] return inequalities in the physical region\nGetPhysicalRegion[process, spRules] uses rule`sp as scalar product rules"
Begin["`Priv... | 7 |
hassanbein/mathematica | 38dddfb | fonction/Nouveau Wolfram Notebook.nb | Mathematica | www.github.com/hassanbein/mathematica/tree/main/fonction/Nouveau Wolfram Notebook.nb | https://raw.githubusercontent.com/hassanbein/mathematica/38dddfb/fonction/Nouveau%20Wolfram%20Notebook.nb | hassanbein/mathematica 38dddfb fonction/Nouveau Wolfram Notebook.nb | true | 200 | 2,729 | (* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLengt... | 6 |
AlejaV17/DIG_PROYECTO | 590a719 | ALU_test/output_files/ALU_test.cdf | Mathematica | www.github.com/AlejaV17/DIG_PROYECTO/tree/main/ALU_test/output_files/ALU_test.cdf | https://raw.githubusercontent.com/AlejaV17/DIG_PROYECTO/590a719/ALU_test/output_files/ALU_test.cdf | AlejaV17/DIG_PROYECTO 590a719 ALU_test/output_files/ALU_test.cdf | true | 200 | 339 | /* Quartus II 64-Bit Version 13.1.0 Build 162 10/23/2013 SJ Web Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP3C16F484) Path("D:/DIGII_PROYECTOI/DIGII_PROYECTOI/ALU_test/output_files/") File("ALU_test.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;
ChainType... | 4 |
alumae/k6net6lke-benchmark | 3d527e8 | outputs/ru/mt/google-translate/3W8FnvTITx0.ru.et.mt | Mathematica | www.github.com/alumae/k6net6lke-benchmark/tree/main/outputs/ru/mt/google-translate/3W8FnvTITx0.ru.et.mt | https://raw.githubusercontent.com/alumae/k6net6lke-benchmark/3d527e8/outputs/ru/mt/google-translate/3W8FnvTITx0.ru.et.mt | alumae/k6net6lke-benchmark 3d527e8 outputs/ru/mt/google-translate/3W8FnvTITx0.ru.et.mt | true | 200 | 65,111 | Tere! See on "Kõige vajalikum" - saade sellest, mis Venemaal valesti on,
ja mida teha selle paremaks muutmiseks. Käime igal nädalal YouTube'is väljas,
reedeti vaadake meid siit, kuulake kõigil taskuhäälingusaadete platvormidel.
Kui kaalute meid Patreonis toetada, teeme seda hea meelega
ja siis saame veel rohkem rääkida... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.