iT邦幫忙

技術文章

RSS

nodjs 使用 fabric 套件 在 centos7 下 error: /lib64/libstdc++.so.6: version `CXXABI_1.3.9'

****error**: /lib64/libstdc++.so.6: version `CXXABI_1.3.9'** 除網上提供 更換 libstdc++...

leetcode with python:34. Find First and Last Position of Element in Sorted Array

題目: Given an array of integers nums sorted in non-decreasing order, find the st...

leetcode with python:33. Search in Rotated Sorted Array

題目: There is an integer array nums sorted in ascending order (with distinct val...

Neo4j Graph Data Science 基本語法與演算法實作資料分析

回顧鐵人賽 一年一度的鐵人賽又到了!!今年...今年沒有報名的打算 XD ... 來亂的但想延續 2020 第十二屆鐵人賽的主題,Neo4j 看圖說故事,開始在...

PowerShell 使用 PSReadLine 模組

PowerShell的PSReadLine模組可用來輔助PowerShell來做到類似zsh的效果:根據命令列歷史提示自動完成,以及可用方向鍵在選單式介面選擇候...

IMC範仲元:ETF絢麗背後:整體增速放緩、“迷你”激增

2022年,ETF看似延續了前兩年的百花齊放形式,但受市場波動的影響,新發數量和規模增速卻呈現斷崖式下滑。 挑選ETF主要需要關注ETF的流動性、跟踪誤差等。...

leetcode with python:31. Next Permutation

題目: A permutation of an array of integers is an arrangement of its members into...

leetcode with python:459. Repeated Substring Pattern

題目: Given a string s, check if it can be constructed by taking a substring of i...

使用 Discord.js v14 開發全能Discord機器人 | Ep.2 官方範例操作

這個系列會帶著您通過Node.js中的Discord.js套件,從0到1開始製作屬於自己的Discord機器人,希望可以幫助大家成為機器人的開發者哦! 前言...

使用 Discord.js v14 開發全能Discord機器人 | Ep.1 建立機器人

這個系列會帶著您通過Node.js中的Discord.js套件,從0到1開始製作屬於自己的Discord機器人,希望可以幫助大家成為機器人的開發者哦! 前言...

使用 Discord.js v14 開發全能Discord機器人 | Ep.0 前置配備

這個系列會帶著您通過Node.js中的Discord.js套件,從0到1開始製作屬於自己的Discord機器人,希望可以幫助大家成為機器人的開發者哦! 前言...

leetcode with python:455. Assign Cookies

題目: Assume you are an awesome parent and want to give your children some cookie...

【閒聊】怎產生小型軟體開發團隊的量化數據

最近與學弟聚餐,剛好他接下公司委任的軟體開發團隊(4-5人)小主管,公司要求他要有團隊的專案 關鍵績效指標( Key Performance Indicator...

網域轉移注意事項與為何發生? 如何轉移網域到別家網域註冊商?

網域轉移該注意什麼? 申請網域轉移的資格: 僅「網域擁有者/管理者」有權申請網域轉移 網域註冊未滿 60 天無法轉移 未續約或未繳費而停用的網域不能轉移 網域...

leetcode with python:448. Find All Numbers Disappeared in an Array

題目: Given an array nums of n integers where nums[i] is in the range [1, n], ret...

程式碼混淆,代碼混淆

Envelope是一個自動檔案包裝器,通過檔案加密、程式碼混淆和系統級的反除錯,針對軟體逆向工程提供强大的知識產權保護。這確保了嵌入在軟體中的演算法、商業機密和...

一句話說清楚什麼是混合線性模型?(linear mixed effects models)

直線方程知道嗎?一句話說明就是:多條直線方程的集合; 拆解:1 每條線性回歸的直線,都是一個group;2 這些直線之所以能在同一個坐標軸中,是因為x和y因素是...

達標好文 面試軟體開發人員:從細節觀察

version: 2022062401在講專案管理前,我先講個小故事在2021年時我打算買房子,所以我看了140間的房子。有次我跟一個預售屋建案的工地主任聊天,...

C3.js 從0開始的座標軸

想直接看本文重點可以直接跳過前3小節喔! 為什麼會選 C3.js ? 最近在做畢業專題的時候,碰巧遇到需要將大量數據做資料視覺化的狀況,為此作為網頁資料視覺...

SSL憑證是什麼? 我的網站適合哪種SSL憑證? DV, OV, EV SSL憑證比較

SSL 憑證是什麼? SSL 憑證能為網站與網站或網站與使用者之間的資料傳輸進行加密與驗證網站的身分,可預防資料遭攔截或竊取產生的風險,若網站有涉及信用卡或金融...

leetcode with python:441. Arranging Coins

題目: You have n coins and you want to build a staircase with these coins. The st...

leetcode with python:434. Number of Segments in a String

題目: Given a string s, return the number of segments in the string. A segment...

leetcode with python:415. Add Strings

題目: Given two non-negative integers, num1 and num2 represented as string, retur...

React Custom hook 踩坑日記 - useDebounce

今天要分享的是我們在優化前端時常會做的處理,Debounce & Throttle,那關於這兩個名詞的解釋,網路上有很多專門在講解的文章,也可以參考連結...

leetcode with python:414. Third Maximum Number

題目: Given an integer array nums, return the third distinct maximum number in th...

UML 分析 Android 架構 - KunMinX 的 MVVM 架構框架 (MVVM 架構框架的首選, 7.7k 顆星)

KunMinX - Jetpack-MVVM-Best-Practice 別忘了按下讚並追蹤我喔~作者的 Blog 官方架構圖 UML MVVM 架構圖 既...

leetcode with python:412. Fizz Buzz

題目: Given an integer n, return a string array answer (1-indexed) where: answe...

leetcode with python:409. Longest Palindrome

題目: Given a string s which consists of lowercase or uppercase letters, return t...

資料科學

DIKW Hierarchy (Credit: Drill)何謂資料?資料(data)是事實(facts)的記錄;主要以客體(object)方式存在,沒有相對的...

註冊vee-validate筆記

官方文件:https://vee-validate.logaretm.com/v4/ npm 安裝npm install vee-validate @vee-v...