mikebai.com

  • Home
  • dev
  • DotNET
  • M365
  • 搞笑
  • 杂七杂八
  • FocusDict
杂七杂八
杂七杂八

openwrt黑白名单

爱奇艺 iqiyi.com qiyi.com aiqiyicloud.com qiyi.cn 谷歌关联 start----------------------- google.com findyoutube.net/ googlevideo.com/ ytimg.com/ youtube.com/ googleapis.com/ youtu.be gstatic.com googleusercontent.com googlevideo.com youtu.be youtube.com.br youtube.co.nz youtube.de youtube.es youtube.googleapis.com youtubei.googleapis.com youtube.it youtube.nl youtube-nocookie.com youtube.ru video-stats.l.google.com ytimg.l.google.com rewind.youtube blog.youtube 谷歌关联 end-----------------------

2020-11-21 0comments 134hotness 0likes mikebai Read all
杂七杂八

CentOS / RHEL 7 : How to Install GUI

For the new installation of RHEL 7, GUI doesn’t come with the default installation. If you do not click on the “Software Selection” link and pick “server with GUI” then there will be no GUI after reboot, only “Base Environment ” will be installed. To enable GUI after system installation, you can use the following method. Installing the environment group “Server with GUI” 1. Check the available environment groups : # yum grouplist Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register. There is no installed groups file. Maybe run: yum groups mark convert (see man yum) Available Environment Groups: Minimal Install Infrastructure Server File and Print Server Basic Web Server Virtualization Host Server with GUI Available Groups: Compatibility Libraries Console Internet Tools Development Tools Graphical Administration Tools Legacy UNIX Compatibility Scientific Support Security Tools Smart Card Support System Administration Tools System Management Done 2. Execute the following to install the environments for GUI.

2020-05-26 0comments 146hotness 0likes mikebai Read all
杂七杂八

Windows10でBluetoothキーボードのペアリングの際にPINコードが表示されなくなってしまった時の対処方法

Windows10でBluetoothキーボードとペアリングしようとしても、次のような画面が出てしまって困ってしまいました。 「Anker Bluetooth KeyboardのPINを入力してください」と出ています。キーボード自体が固有にもっているPINは本体にもマニュアルにもどこにも記載がありません。一体どうすればいいのか途方に暮れちゃいました。 本来ならば次のような画面が出るはずです。 Sponsored Link 「デバイスでこのPINを入力し、必要な場合はEnterキーを押してください。」とあり、その下に8桁の数字がランダムに表示されます。この数字をペアリングしたいキーボードで入力するとペアリングが完了となるわけです。ところが、最初の画像のようにペアリングのための8桁の数字が出てこないのですよ。 Bluetoothキーボードの電源をオフにして、またオンにしてもだめ。電池を抜いて入れ直してもダメ。Windowsを再起動してもダメ。ずっと同じように最初の画像のようになってしまいました。 この状態になった時の対処方法は以下になります。キーボードのメーカーにかかわらず同じ操作になると思います。まずはWindowsの設定画面を出してください。一番上に検索窓があるので、そこにコントロールと入力してください。 検索候補にコントロール パネルがありますので、そこをクリックします。ちなみに、「コントロールパネル」と入力しても出てきません。正確には「コントロール パネル」というようにルとパの間には半角スペースが入ります。なので、無理せず

2020-05-15 0comments 163hotness 1likes mikebai Read all
杂七杂八

Fix Portable WiFi Hotspot Turns Off Automatically

Some Android users are facing the problem that their portable Wi-Fi hotspot turns off automatically after a second or two. It is very annoying for users to realize that the Wi-Fi hotspot has turned off specially when they are in the middle of something important. Below are some solutions to fix portable Wi-Fi hotspot turning off automatically. Fast Boot Go to your phone’s Settings and then go to Applications. In the Applications tab, turn off the ‘fast boot’ option. Finally, reboot your phone. This will fix portable Wi-Fi hotspot turn off automatically issue as the fast boot was upholding few settings and preventing the Wi-Fi hotspot from staying on. Timeout Settings Another solution to fix Wi-Fi hotspot turn off automatically problem is to set your Wi-Fi timeout settings to never. To do this, go to your Phone’s Settings and then go to Wi-Fi or network settings. Next, go to more settings and select ‘tethering and portable hotspot’. Then, go to advanced settings, by pressing the 3 dots, of your desired network. In the advanced settings, set the timeout setting to the highest value you can; if the option of ‘never’ exists, select it. It is worth trying this simple solution to resolve the issue of Wi-Fi hotspot turning off automatically. IPV4 An easy solution to fix Wi-Fi hotspot turning off automatically is to go to your hotspot or network settings and scroll down to IP setting. Make sure it is set to IPv4 and not to ‘IPv4 and IPv6’. When the Wi-Fi hotspot is set to ‘IPv4 and IPv6’, the…

2019-06-14 0comments 139hotness 0likes mikebai Read all
杂七杂八

一時リンク

固定リンク: http://amzn.asia/1eDleXk https://www.amazon.co.jp/dp/B00RD365X8/ref=sspa_dk_detail_1?psc=1 https://www.c-sharpcorner.com/UploadFile/vemuhemanth/cascading-dropdown-in-Asp-Net-using-jquery/ https://www.aspsnippets.com/Articles/AJAX-Cascading-DropDownList-using-jQuery-in-ASP.Net.aspx https://forums.asp.net/p/1717977/4587810.aspx?Re+JQuery+AJAX+call+to+page+method+not+working https://www.aspdotnet-suresh.com/2013/10/jquery-cascading-dropdown-list-in-aspnet.html

2018-04-11 0comments 166hotness 0likes mikebai Read all
杂七杂八

SharePoint ListFieldIterator

    public class MyListFieldIterator : ListFieldIterator     {         protected override void OnInit(EventArgs e)         {             base.OnInit(e);             //SPContext.Current.FormContext.OnSaveHandler += new EventHandler(CustomOnSave);         }         protected void CustomOnSave(object sender, EventArgs e)         {         }         protected override bool IsFieldExcluded(Microsoft.SharePoint.SPField field)         {             bool result = base.IsFieldExcluded(field);             if (!result)             {                 //bool result2 = BaseIsFieldExcluded(field);                 //If field matches the name of exclude it                 if (field.InternalName == "MemoWithHistory"|| field.InternalName == "MemoWithHistory2")                 {                     return true;                 }             }             return result;         }     } } <MySharePoint:MyListFieldIterator runat="server"  /> <%--<SharePoint:ListFieldIterator runat="server" />--%>

2017-12-14 0comments 128hotness 0likes mikebai Read all
杂七杂八

temp note

http://115.com/file/bexnw5gv#1.0GHz_A-T.2.3.5ROM_EXT4.zip

2012-03-29 0comments 178hotness 0likes mikebai Read all
杂七杂八

有毒的海鱼

  河豚鱼 有剧毒,不可食用。 海蛇钓到时要千万小心谨慎,不要被咬到。 狮子鱼(又称海蝎子)要是被刺到,必须马上去医院,否则你会很惨! 篮子鱼(又称泥猛)身上的刺有毒,摘钩时要格外小心,如被刺中,奇痛无比。要先把头抓紧再摘钩。 鬼蚰(又称老虎鱼)身上的刺有毒,摘钩时要格外小心,如被刺中,奇痛无比不过肉质美味。 金钱鱼(金鼓)棘有毒。 毒鲉(石头鱼) 棘有毒,令神经毒疼痛、高烧、抽筋、怕冷,严重者呼吸困难、休克。 鳗鲇 鳗鲇底背、胸、臀鳍有强毒,不慎被刺到,不但剧痛难忍,其毒素会影响关节。劇烈的紅腫刺痛、高熱,嚴重時血壓降低,呼吸困難。 褐菖鲉 棘有毒,剧烈的神经毒疼痛、高烧、抽筋、怕冷。严重者呼吸困难、休克。

2012-01-14 0comments 137hotness 0likes mikebai Read all
杂七杂八

Word 2007 如何设置多级符号和编号?

  Word 2007中建立多级编号比较简单,直接在工具栏的下拉菜单就可以,但是如何定义并修改,如何建立 多级编号 与 各级标题的链接呢?       Word 03中,这个问题直接在 样式修改——编号 里,就可以设置单击或多级编号,并与各级标题进行链接,格式修改起来也方便,比如修改缩进、字号、字体等等。但是这些在07中,并非那么容易实现,具体过程如何呢? 刚研究完这个问题,与大家分享。(下面每张图都可以点开放大)   首先,点击 图1 中红圈里的按钮,新建样式;在弹出窗口的[样式类型]里选“列表”,如图2所示:   图1   图2然后点击[格式]——[编号],弹出[修改多级列表]对话框,可以分别对各级符号和编号的格式进行设置,点击左下角“更多”按钮,然后点击右侧[将级别连接到样式]下面的下拉框,可以将各个级别分别连接到文档中的不同样式,例如:将1级链接到“标题1”,将2级链接到“标题2”,将3级链接到“标题3”,如图3所示: 图3设定好之后,确定,返回创建样式对话框,将样式名称修改为“BianHao”,确定,多级符号编号设置完毕,以后撰写论文时,只需将文字设为标题1,2,3类型,就会自动按级别编号。      但是,如果以后想要修改多级符号编号或修改其链接到的样式,就会发现,建立的这个样式类型为列表、名称为“BianHao”的样式,在图1所示的“样式”列

2011-09-16 0comments 147hotness 0likes mikebai Read all
杂七杂八

解决移动硬盘无法访问磁盘的办法

我的一块移动硬盘突然出现“无法访问磁盘”的情况,无论使用什么方法都不能访问硬盘其中的一个分区。右键打开该分区属性,显示已用和可用空间均为0,想要修复提示需要格式化,真是惊得我一身冷汗。 我怀疑是没有安全删除就拔下usb的结果,于是上网搜到了一个解决的办法,一试果然好使!大喜啊!方法如下(就是修复的时间很长): 在开始菜单“运行”中输入命令:CHKDSK C: /F /R (注意!其中C:是指出错的那个盘的盘符,也就是你文件出现损坏的那个硬盘的盘符,不要打错,要注意其中的空格)。 就这么一个简单命令就可以了,数据完好无损,真是太帅了。 ========================网络的力量无穷大======================== 再附上一份详细的参数解释: 语法chkdsk [volume:][[Path] FileName] [/f] [/v] [/r] [/x] [/c] [/l[:size]] 参数volume:指定驱动器号(冒号分隔)、装入点或卷名。 [Path} FileName]指定需要 chkdsk 检查碎片整理的文件或文件集的位置和名称。使用通配符(* 和 ?)可以指定多个文件。/f修复磁盘上的错误。必须锁定磁盘。如果 chkdsk 无法锁定驱动器,则会显示一条消息,询问您是否希望在下次重新启动计算机时检查该驱动器。/v当检查磁盘时,显示所有目录中每个文件的名称。/r找到坏扇区并恢复可读取的信息。必须锁定磁盘。/x仅在 NTFS 上使用。如果必要,首先强制卸载卷。该驱动器的所有打开句柄都无效。/x 还包含了/f 的功能。/i仅随 NTFS 使用。对索引项执行充分检查,降低运行 chkdsk 的所用时间量。/c仅随 NTFS 使用。跳过文件夹结构中的周期检查,减少运行 chkdsk 所需的时间量。/l[:size]仅随 NTFS 使用。将日志文件的大小更改为由用户输入的大小。如果省略该参数,则 /l 会显示当前日志文件的大小。/?在命令提示符显示帮助。

2010-08-15 0comments 127hotness 0likes mikebai Read all
12345

Recent Posts

  • c# winform适配高dpi
  • com.microsoft.sqlserver.jdbc.SQLServerException “trustServerCertificate”属性设置为“false”,但驱动程序无法使用安全套接字层 (SSL) 加密与 SQL Server建立安全连接
  • java -cp 用法介绍
  • HTML 容器元素
  • MVC的cshtml的介绍

Recent Comments

No comments to show.

COPYRIGHT © 2025 mikebai.com. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang