ICode9

精准搜索请尝试: 精确搜索
  • 新建Github仓库并上传本地代码2022-09-09 00:32:51

    按照Github的教程 Adding a local repository to GitHub using Git 1. 创建空的Github仓库 创建远程仓库

  • 模仿安卓系统原生的亮度调节框 --->Android弹出框2022-08-23 11:01:39

    源码 public class HintActivity extends AppCompatActivity { public static final String TAG = "HintActivity"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentV

  • Flink SQl 语法(hint,with,select,分组窗口聚合,时间属性(处理,事件))2022-07-31 22:36:36

    6、Flink SQl 语法 1、查询语句 1、hint 在对表进行查询的是偶动态修改表的属性 -- 创建表 CREATE TABLE word ( lines STRING ) WITH ( 'connector' = 'kafka', 'topic' = 'word', 'properties.bootstrap.servers' = 'master:9092,no

  • clue, hint, tip2022-07-20 20:01:47

    clue翻译成“线索”特别贴切。The word clue was originally a variant spelling of clew, meaning "ball of thread or yarn." Our modern sense of clue, "guide to the solution of a mystery," grows out of a motif [(文学)主题] in myth and folklore, the ball of

  • SQL Server table hints – WITH (NOLOCK) best practices2022-07-08 14:34:26

    SQL Server table hints – WITH (NOLOCK) best practices SQL Server table hints are a special type of explicit command that is used to override the default behavior of the SQL Server query optimizer during the T-SQL query execution This is accomplished by en

  • Git同时推送代码到Github与Gitee2022-06-17 16:35:17

    文章转载:git技巧-项目同时推送至github和gitee   一次push推送代码到多个远程仓库(以第一个仓库为主,第二个仓库作为备份) (1)初始化本地仓库 git init (2)设置第一个目标远程仓库 Github git remote add origin git@github.com:远程仓库地址 (3)设置第二个目标远程仓库 Gitee git remote

  • Git同时推送代码到Github与Gitee2022-06-16 21:37:12

    文章转载:git技巧-项目同时推送至github和gitee  一次push推送代码到多个远程仓库(以第一个仓库为主,第二个仓库作为备份) 1.初始化本地仓库 git init 2.设置第一个目标远程仓库 Github git remote add origin git@github.com:远程仓库地址 3.设置第二个目标远程仓库 Gitee git remo

  • BUUCTF-WarmUp2022-02-28 18:00:08

    BUUCTF-WARMUP WP 打开之后,首先看到是一个笑脸,查看源代码后发现一个source.php 访问它 highlight_file(__FILE__)和show_source(__FILE__)两个函数都一样,都是显示出文件的源代码。接下来,细细分析一下 先看一下hint.php文件 可以猜测,flag在ffffllllaaaagggg这个文

  • 在idea中push到github失败2022-02-25 20:34:52

    error 点击查看代码 error: failed to push some refs to 'xxxx' hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing ! refs/heads/master:refs/heads/master

  • hint2022-02-15 15:35:13

    int 由于数据量较大,不推荐直接使用 cin, cout 输入输出。 另外,请确保最终结果是直接输出整个字符串,而非使用 printf("%c") 或 putchar() 等函数一个一个地输出字符,否则可能导致超时。

  • Vue-cli项目上传至GitHub2022-02-11 11:33:18

    由于用脚手架创建的项目自带git文件,所以就不需要在将远程仓库先拉到本地再上传,可以直接在vue项目中进行上传,打开git bash 1.初始化仓库 git init 2.将项目暂存到本地仓库中 git add . git commit -m "描述信息" 4.添加远程仓库路径 git remote add origin https://gitee.

  • 利用codemirror,生成yaml编辑器(vue)2022-01-27 14:04:29

    1.YAML和yaml互换json和yaml文件: 1.1 下载js-yaml和yaml组件 npm install yaml --save npm install js-yaml --save 1.2 封装工具类 import YAML from 'yaml' import yaml from 'js-yaml' // json转换为yaml格式 export const json2yaml = (jsonData) => { try {

  • Spark-Sql Hint 解决小文件导致查询慢的问题2022-01-23 16:34:45

    对一个大表进行了30个天分区的查询, spark客户端显示了所有excutor均已执行完毕. 查看hdfs分区也显示已有数据, desc表名显示表还没作成. 于是用 hadoop fs -ls 看了下hdfs文件数发现有上万个小文件. 导致合并查询结果时间巨长 小文件过多会导致文件系统效率低下.我们可以在写spar

  • git 解决push报错2022-01-11 14:34:59

    今天对代码进行了修改优化,然后往往远程push,但push后报错了 1.git 操作 git add . git commit -m"fix" git push origin master:dev-gaochao 2. 报错信息 To https://amc-msra.visualstudio.com/trading-algo/_git/real-trading ! [rejected] master -> dev-gaochao (fet

  • 今天开发,搞了半天关于Oracle索引的问题,记录2021-12-10 11:34:02

    今天开发使用两张不同的表,这两张表的索引相同,去分别关联另外两张表,但是走的索引不同,不太明白其中的原理。 使用的EXCH_AIR_MATCHED表,表中的所有如下:    使用的EXCH_OTHER表,表中的索引如下:    使用EXCH_AIR_MATCHED关联的查询解释计划    使用EXCH_OTHER关联的解释计划

  • [HCTF 2018]WarmUp_BUUCTF2021-12-08 22:00:19

    打开网站 查看源码 访问source.php文件,开始代码审计 <!--?php highlight_file(__FILE__); class emmm { public static function checkFile(&$page) { $whitelist = ["source"=-->"source.php","hint"=>

  • Buuoj [HCTF 2018]WarmUp2021-11-21 01:33:17

    源码看到source.php 和hint.php hint: flag not here, and flag in ffffllllaaaagggg source.php: <?php highlight_file(__FILE__); class emmm { public static function checkFile(&$page) //check函数 { $whitelist = ["source"=>"source.php",&q

  • 基础UI控件:TextView、Button、EditText(安卓开发学习笔记————10)2021-11-19 23:05:39

    1.TextView: 1-1.TextView属性: (1) (2) (3) 2.View: (1) (2) (3) 3.EditText: <EditText //文本输入 … … android:hint=“提示文本”>

  • SCTL 涅槃重生:投入 RAL 的怀抱2021-11-18 14:30:17

    在《DistSQL:像数据库一样使用 Apache ShardingSphere》一文中,PMC 孟浩然为大家介绍了 DistSQL 的设计初衷和语法体系,并通过实战操作展示了一条 SQL 创建分布式数据库表的强大能力,展现了 Apache ShardingSphere 在新形态下的交互体验。 近期,ShardingSphere 社区对 SCTL 语法和

  • git 中遇到的错误及解决方法2021-11-16 11:02:00

    ​ 1.git pull遇到错误:error: Your local changes to the following files would be overwritten by merge: 方法1:如果你想保留刚才本地修改的代码,并把git服务器上的代码pull到本地(本地刚才修改的代码将会被暂时封存起来) git stash git pull origin master git

  • git 无法push, 出现: Updates were rejected because the tip of your current branch is behind2021-11-16 09:00:33

    git 无法push, 出现: Updates were rejected because the tip of your current branch is behind D:\code\git\mw\umc_file_service> D:\code\git\mw\umc_file_service>git pull mine dev From http://192.169.2.234/luokai/umc_file_service * branch

  • 攻防世界-warmup2021-11-14 00:01:53

    这看不懂,还是看源代码吧。  找到一个东西,查看一下。 欸,慢慢看吧。先看看hint.php吧 确定flag在哪。    

  • vue codemirror 代码编辑器2021-11-10 19:00:39

    一、npm安装 npm i codemirror  二、具体使用 1、依赖引入 import "codemirror/theme/ambiance.css";   //主题 import "codemirror/lib/codemirror.css"; import "codemirror/addon/hint/show-hint.css"; let CodeMirror = require("codemirror/lib/cod

  • Java加密程序2021-11-10 09:35:27

    package mypack; import java.util.*; /** @author qile_0 * @create 2021-11-8 * ****************** */ public class Encry{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); sc.useDelimiter("\n")

  • LeetCode 299 猜数字游戏2021-11-08 20:01:58

    你在和朋友一起玩 猜数字(Bulls and Cows)游戏,该游戏规则如下: 写出一个秘密数字,并请朋友猜这个数字是多少。朋友每猜测一次,你就会给他一个包含下述信息的提示: 猜测数字中有多少位属于数字和确切位置都猜对了(称为 "Bulls", 公牛), 有多少位属于数字猜对了但是位置不对(称为 "Cows", 奶

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有