Blog | 博客

Titanium disk and ufile.io: temporary file transfer and sharing station

Original link: https://www.blueskyxn.com/202207/6216.html?utm_source=rss&utm_medium=rss&utm_campaign=%25e9%2592%259b%25e7%259b%2598%25e5%2592%258cufile-io%25ef%25bc% 259a%25e4%25b8%25b4%25e6%2597%25b6%25e6%2596%2587%25e4%25bb%25b6%25e4%25b8%25ad%25e8%25bd%25ac%25e4%25b8%258e%25e5%2588%2586% 25e4%25ba%25ab%25e7%25ab%2599 foreword Sometimes it is necessary to temporarily share files externally. In addition to common online disks (OD, GD, etc.), social media (TW, FB, TG, QQ, WX, etc.) can be considered websites dedicated to temporarily sharing files. Of course, the anonymous network disk and video network disk introduced before can also […]

Titanium disk and ufile.io: temporary file transfer and sharing station Read More »

China Telecom LOOKING GLASS (including CN2 GIA)

Original link: https://www.blueskyxn.com/202207/6213.html?utm_source=rss&utm_medium=rss&utm_campaign=%25e4%25b8%25ad%25e5%259b%25bd%25e7%2594%25b5%25e4%25bf%25a1- looking-glass%25ef%25bc%2588%25e5%2590%25abcn2-gia%25ef%25bc%2589 foreword LOOKING GLASS is a commonly used tool for operation and maintenance, which can quickly and easily check many network connections and other related network problems. address https://ift.tt/9qSkbtc Introduction This test station of China Telecom provides three networks: CN2, ChinaNet, CTGNET, supports multiple self-selected node tests, supports ping and trace It

China Telecom LOOKING GLASS (including CN2 GIA) Read More »

Recipe: ecstasy hummus

Original link: https://vocus.cc/article/62dbb341fd89780001e960b5 Make it yourself, it is guaranteed to be the most beautiful hummus you have ever eaten. This article is reproduced from: https://vocus.cc/article/62dbb341fd89780001e960b5 This site is for inclusion only, and the copyright belongs to the original author.

Recipe: ecstasy hummus Read More »

The second attempt to record life

Original link: https://blog.othing.xyz/archives/2022-record-activities-on-calendar.html Use Google Calendar for small time records, and use Sleep as Android to sync sleep records to Google Calendar (yes, I’m a night owl!). The effect is as follows: https://othing.xyz/calendar I did not choose to use special time management software, because it is very questionable whether these software can be used for

The second attempt to record life Read More »

ACTF2022 safer-tg-bot-{1,2} WP

safer-telegram-bot-1 Search for flag1 in the source code 1 const user1 = createUser(~~( 1 + Math .random() * 1000000 ), “test” , fs.readFileSync(__dirname + “/flag1.txt” , “utf8” )); Search for user1.flag 1 2 3 4 5 6 7 8 9 10 11 12 13 bot.on( “callback_query” , async (query) => { const callbackData = query.data

ACTF2022 safer-tg-bot-{1,2} WP Read More »

Repair Epson Printer

Original link: http://www.chenshake.com/the-repair-of-the-epson-printer/ I have an Epson L3151 printer at home, which is very convenient. Back then, the preparation of materials for my child’s trip abroad was all done by this printer. Recently, it was found that the printer lacks color, but the ink cartridges are full. In fact, most of them are black, and

Repair Epson Printer Read More »

how to send Synchronous and asynchronous ajax requests

XMLHttpRequest supports both synchronous and asynchronous communications. In general, however, asynchronous requests should be preferred to synchronous requests for performance reasons. Synchronous requests block the execution of code which causes “freezing” on the screen and an unresponsive user experience. Asynchronous … The post how to send Synchronous and asynchronous ajax requests first appeared on Lenix

how to send Synchronous and asynchronous ajax requests Read More »

jQuery judges the display state of the current element and controls the display and hiding of the element

1. jQuery determines whether the current state of an element is displayed or hidden $(“#id”).is(‘:visible’); //true is displayed, false is hidden $(“#id”).is(‘:hidden’); //true is hidden, false is displayed if($(“#id”).is(‘:hidden’)){ // logic code } 2. jQuery controls the display of css $(“#id”).show(); //Indicates display:block $(“#id”).hide(); //Indicates display:none $(“#id”).toggle(); //Toggle the visible state of the element $(“#id”).css(‘display’,’none’);

jQuery judges the display state of the current element and controls the display and hiding of the element Read More »