This page is a NO-INDEX summary of comments posted in this blog.

Total 849 Comments (5/34 Pages) - Newer Comments - Older Comments

101. 2022-02-07 12:50:10 Chris Slambery Comments on Using the External Fan to Cool the Hot AMD Radeon HD 6700 Graphic Card:

The 1024MB ATI AMD Radeon HD 6700 Series (ATI) is huge – and also with a Fan onboard. However, you would need to plugin a 6-pin cable to power it up otherwise the BIOS of HPZ800 will show 6-beeps error when booting.


102. 2022-01-27 19:45:17 ACMer Comments on Simple Example - Use Bash Shell to Match IP address:
Nice, thank you.


103. 2022-01-27 15:52:24 Raul Saez Comments on Simple Example - Use Bash Shell to Match IP address:
You can condense it a little bit: #!/bin/bash ip="192.168.0.1" if [[ $ip =~ ^(([0-9]{1,2}|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]{1,2}|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$ ]] then echo "Match" echo ${BASH_REMATCH[1]} echo ${BASH_REMATCH[2]} echo ${BASH_REMATCH[3]} echo ${BASH_REMATCH[4]} else echo "Not match" fi


104. 2022-01-16 15:01:49 ACMer Comments on How to Claim the Witness (Super Representative) Voting Rewards on Tron Blockchain using Node Js (Javascript)?:
I believe, you have to stake and vote in order to earn rewards.


105. 2022-01-16 13:48:12 Boris Comments on How to Claim the Witness (Super Representative) Voting Rewards on Tron Blockchain using Node Js (Javascript)?:
Excuse me, but don't you need to vote for the Super-Representative in order to receive a reward? Do you just freeze and claim reward every 24 hours? Btw, you can get the next voting time with this method: https://developers.tron.network/reference/walletgetnextmaintenancetime


106. 2022-01-13 09:09:23 ACMer Comments on Free API Endpoints:
Hey.. no, urlencode/urldecode has been taken out since many languages provide these two functions. You can easily do this using Javascript or PHP.


107. 2022-01-07 11:42:11 baconspiritnotorious Comments on Free API Endpoints:
Hi, thanks for great work. I used to use the 'urlencode' api for percent encoding url but it fails now. Do you happen to know any substituion? Thanks again!


108. 2022-01-05 12:46:23 ACMer Comments on Teaching Kids Programming - Shortest Path Algorithms by Iterative Deepening Search (IDS), Depth First Search (DFS) or Breadth First Search (BFS) on Undirected Graphs:
1. visit is just to do whatever with the node before marking it visited 2. yes.


109. 2022-01-05 11:49:52 Akhil Singh Chauhan Comments on Teaching Kids Programming - Shortest Path Algorithms by Iterative Deepening Search (IDS), Depth First Search (DFS) or Breadth First Search (BFS) on Undirected Graphs:
Hi Doctor Lai Thank you for creating such beautiful videos where you explain DSA tough concepts that so easy to understand.Although my question is what is visit(cur) in the above DFS and BFS codes. 2) Also how is G defined for the above codes in Python?Is it like this G={ “A”:[“B”,”C”,”D”], “B”:[“A”,”E”], “C”:[“A”], “D”:[“A”,”E”], “E”:[“A”,”D”], }


110. 2021-11-24 23:25:13 random Comments on Teaching Kids Programming - Different Algorithms to Check if a String is Palindrome:
是代码块的用的字体不太好吧 小写的f看不清


111. 2021-11-03 03:45:54 Captain Comments on Simple xargs Batch Implementation for Windows:
set | FOR /F "tokens=*" %x IN ('more') DO @Echo %x using your script, I realized we could bypass it, by piping into the very for command you used!


112. 2021-10-22 03:55:14 Orlando Fernando Marconi Comments on How to Cache Audio/Video (*.mp4) (Static Resources) using CloudFlare CDN?:
You say 512mb per account or per video? I would like to be more sure of these data...


113. 2021-10-22 03:22:27 Orlando Fernando Marconi Comments on How to Cache Audio/Video (*.mp4) (Static Resources) using CloudFlare CDN?:
Thanks for the reply, I just tested it, it works perfectly on everything but the damn safari. Is there a solution for it? Do any rules identify the browser and deliver the original file instead of the cache?


114. 2021-10-21 20:53:09 ACMer Comments on How to Cache Audio/Video (*.mp4) (Static Resources) using CloudFlare CDN?:
I believe Maximum size is 512 MB


115. 2021-10-21 20:47:40 Orlando Marconi Comments on How to Cache Audio/Video (*.mp4) (Static Resources) using CloudFlare CDN?:
Does Cloudflare impose limits on this technique? They have a video delivery service, but they don't give access to the .mp4 file I imagine they don't like this "Hack"


116. 2021-10-06 05:50:05 Xav Comments on Finding the Predecessor and Successor Node of a Binary Search Tree:
Your algorithms doesn't work when a node is a leaf, and it also has no predecessor (if you're looking for the predecessor), like the MIN( tree ).


117. 2021-09-03 09:29:18 Abhijit Sarkar Comments on How to Design a Design Bounded Blocking Queue in Python using Threading Library?:
An alternative implementation using threading.Condition also works on LeetCode. I'm curious how to test such a bounded queue. class BoundedBlockingQueue(): def __init__(self, capacity: int): self.capacity = capacity self.data: collections.deque[int] = collections.deque() self.cond: threading.Condition = threading.Condition() def enqueue(self, element: int) -> None: with self.cond: self.cond.wait_for(lambda: self.size() int: with self.cond: self.cond.wait_for(lambda: self.size() > 0) val = self.data.popleft() self.cond.notify_all() return val def size(self) -> int: return len(self.data)


118. 2021-08-30 03:36:09 Akash Patra Comments on C++ Coding Exercise - Parallel For - Monte Carlo PI Calculation:
Delhi Chalo Bhailog!


119. 2021-08-18 09:02:59 Anon Comments on How to Validate UTF-8 Encoding? (The Simple UTF-8 Validation Algorithm):
This code does not check for overlong encoding; do not use! This page is very poor.


120. 2021-07-24 12:34:45 Rob Comments on Lock Serial Number to Hardware in Licensing using VMProtect:
Totally usless feature when you cannot decide which components are good for you. The worst support ever experienced waste of money, no I'm not from competition but customer. Developer is rude.


121. 2021-06-26 17:48:41 Special Monkey Comments on How to Get a Email when System Load Average is High ? (Crontab):
Thanks for this nice script. It seems to do what I want. The only thing that isn't working for me is - $load isn't printed in the email. Any idea how to fix? I tried single quoting '$load' - but it didn't change the behavior.


122. 2021-06-18 14:23:27 Prakash Singh Comments on A Concise Python Function to Check Subsequence using Iterator:
Smart use of python.


123. 2021-03-17 12:28:25 Ryan C. Comments on Fast Integer Log10:
It's exactly 1 branch misprediction, which is circa 16 cycles on x86_64. Hardly a big deal.


124. 2021-01-13 21:59:26 George B Comments on How to Solve SMTP: Could Not Authenticate using Gmail + PHPMailer?:
So far the best example on how to get PHPMailer to work with Google email. However make sure that extension=openssl is enabled in the PHP.ini file for PHP 7.4,12.


125. 2020-12-17 21:02:24 Steve Nicklen Comments on Use PHP Script to Monitor Temperature and Uptime for Raspberry PI in the Browser:
For this to work you need to add the script sources for ajax. I tried to post the lines here but it blocked me.


Newer Comments - Older Comments

–EOF (The Ultimate Computing & Technology Blog) —

46 words

The Permanent URL is: List of Comments