This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:dio/dio.dart'; | |
| import 'package:flutter/foundation.dart'; | |
| import 'dio_error_util.dart'; | |
| typedef ResponseDecoderCallBack<DecoderType> = DecoderType Function(dynamic); | |
| class DioClient { | |
| final Dio dio; | |
| DioClient(this.dio); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) | |
| # Copyright (c) 2021-2025 tteck | |
| # Author: tteck (tteckster) | |
| # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE | |
| # Source: https://alpinelinux.org/ | |
| APP="My App" | |
| var_tags="os;alpine" | |
| var_cpu="1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"data": "Make me great again"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class NestedWillPopScope extends StatefulWidget { | |
| const NestedWillPopScope({ | |
| Key? key, | |
| required this.child, | |
| required this.onWillPop, | |
| }) : super(key: key); | |
| final Widget child; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Open Voz App | |
| // @version 1.0.0 | |
| // @author beebeo | |
| // @match *://*.voz.vn/* | |
| // @downloadURL https://gist.github.com/hienlt0610/b60b38ac2bf23523d214a5d96d6a8786/raw/d7180f4e9d0c511bc372042793008a3d1720e794/open-voz-app.user.js | |
| // @updateURL https://gist.github.com/hienlt0610/b60b38ac2bf23523d214a5d96d6a8786/raw/d7180f4e9d0c511bc372042793008a3d1720e794/open-voz-app.user.js | |
| // @homepage https://gist.github.com/hienlt0610/b60b38ac2bf23523d214a5d96d6a8786 | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file contains the fastlane.tools configuration | |
| # You can find the documentation at https://docs.fastlane.tools | |
| # | |
| # For a list of all available actions, check out | |
| # | |
| # https://docs.fastlane.tools/actions | |
| # | |
| # For a list of all available plugins, check out | |
| # | |
| # https://docs.fastlane.tools/plugins/available-plugins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cloudflare Dynamic DNS update script | |
| # Required policy: read, write, test, policy | |
| # Add this script to scheduler | |
| # Install DigiCert root CA or disable check-certificate | |
| # Configuration --------------------------------------------------------------------- | |
| :local TOKEN "__APITOKEN__" | |
| :local ZONEID "__ZONEIDENTIFIER__" | |
| :local RECORDID "__RECORDIDENTIFIER__" | |
| :local RECORDNAME "__DNSRECORD__" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import re | |
| class Twitter: | |
| def __init__(self): | |
| self.s = requests.Session() | |
| self.get_tokens() | |
| def get_tokens(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:io'; | |
| import 'package:path/path.dart'; | |
| import 'package:sqflite/sqflite.dart'; | |
| import 'package:path_provider/path_provider.dart'; | |
| class DatabaseHelper { | |
| static final _databaseName = "MyDatabase.db"; | |
| static final _databaseVersion = 1; |
NewerOlder