Dennys Diary
open-menu closeme
Home
Doc
About
Comment
🌐
繁體中文 English
rss
  • How to Skip Podcast's Introduction

    calendar Jul 9, 2022 · 1 min read · Software Podcast  ·
    Share on: twitter facebook linkedin copy

    I usually use Spotify to listen to podcasts, but because I use Spotify with my children, I want to find another Podcast App for my personal use. And I find Pocket Casts has an interesting feature, it can skip the first or last *** seconds. It means some podcasts have an introduction at the beginning, if you want to …


    Read More
  • SQL to get 1st record of a range

    calendar Jul 7, 2022 · 1 min read · Database  ·
    Share on: twitter facebook linkedin copy

    If you want to get the 1st record of range records, you can use this SQL command. 1SELECT * FROM 2(SELECT DISTINCT rank() over(PARTITION BY a.username ORDER BY a.update_dt desc) rn, a.* 3 FROM table_name a 4 WHERE a.update_dt > p_cur_timestamp 5 AND a.update_dt <= p_cur_timestamp + C_PERIOD 6 ) 7WHERE rn = 1


    Read More
  • Use GitLab to do .NET 4.8 CI/CD

    calendar Mar 25, 2022 · 3 min read · GitLab .NET CI/CD  ·
    Share on: twitter facebook linkedin copy

    Remind This is for .NET 4.8 or below only!! Precondition You already have a GitLab (GitLab Saas or GitLab self-managed). This document is for .NET 4.X, if you want to build .NET core or .NET 5/6/7/..., you can use docker to run GitLab Runner. Procedure Step 1 - Prepare .NET build environment First, you need to prepare …


    Read More
  • Use IFTTT to send currency exchange rate mail daily

    calendar Mar 24, 2022 · 2 min read · IFTTT  ·
    Share on: twitter facebook linkedin copy

    Requirement I want to have daily mail including currency exchange rate information. Mail subject: include the exchange rate in the mail subject. Mail content: Has some links to banks' exchange rate pages. Include some exchange rate history charts. Solution Use ifttt.com Create a new Applet on IFTTT Add a new "If This" …


    Read More
  • Use WISE to send currency exchange rate mail daily

    calendar Mar 24, 2022 · 1 min read · Software  ·
    Share on: twitter facebook linkedin copy

    Requirement I want to have daily mail including currency exchange rate information. Solution use https://wise.com (no need to register an account) Connect to https://wise.com/tools/exchange-rate-alerts/ Input the currency exchange rate you want to know and your email address. Mail result You will receive the mail …


    Read More
  • GitLab Checkmarx CI/CD Integration

    calendar Jan 15, 2022 · 9 min read · GitLab Checkmarx  ·
    Share on: twitter facebook linkedin copy

    Purpose Checkmarx is a good tool to do code analysis, but there are 2 pain points during the flow. Checkmarx can integrate SCM like GitHub/GitLab/..., but it cannot be triggered by by a code commit, it can only schedule the job to run the scan. (If I don't commit code, I don't want to waste resources scanning the …


    Read More
  • GitLab Checkmarx SonarQube Integration

    calendar Jan 15, 2022 · 2 min read · GitLab Checkmarx SonarQube  ·
    Share on: twitter facebook linkedin copy

    Purpose In previous article, we know how to integrate GitLab and Checkmarx. In this article, we want to integrate SonarQube too. When we commit code to GitLab, we want GitLab to trigger these actions automatically: GitLab sends the code to Checkmarx to scan. GitLab triggers SonarQube to scan. SonarQube integrates …


    Read More
  • How to analyze size of table, index in Oracle

    calendar May 5, 2005 · 1 min read · Database  ·
    Share on: twitter facebook linkedin copy

    Check table size (remember to check last_analyzed_date) 1SELECT * FROM all_tables WHERE table_name LIKE 'AB%' Re-analyze table 1ANALYZE table TABLE_NAME estimate statisitics Check index-related information (it doesn't contain block information) 1SELECT * FROM all_indexes WHERE table_name LIKE 'AB%' Re-analyze index: …


    Read More
    • ««
    • «
    • 1
    • 2
    • 3
    • »
    • »»

Recent Posts

  • Never Type Your Password Again: Automatic SSH Logins in Windows Terminal
  • GitLab Node.js SonarQube Integration
  • Python Code Quality: GitLab, SonarQube, OWASP, Dependency-Check, and Essential Dev Tools Integration
  • Micro:bit Shooting Game with Sound and Light Effects
  • Node.js + MySQL (Connecton Pool + Prepared Statement + Transaction)
  • Run SonarQube on Linux Docker with Mono to scan .NET 4.8 Code
  • Micro:bit Rainbow Lighting (with Expansion Board)
  • Node + Fastify + OpenAPI + Statistics

Categories

IT 29 DEVOPS 3 CI/CD 1

Series

GITLAB DEVOPS 9 ANDROID 使用小技巧 2 MICRO:BIT 2 NODE 2 ANDROID TIPS 1 DOTNET 1 OPENWRT 改機 1

Tags

GITLAB 7 SOFTWARE 6 SONARQUBE 6 CI/CD 5 .NET 3 ANDROID 3 JAVASCRIPT 3 CHECKMARX 2 DATABASE 2 GRAFANA 2 MICRO:BIT 2 NODE 2 DOTNET 1 GOOGLE PHOTOS 1
All Tags
.NET3 ANDROID3 CHECKMARX2 CI/CD5 DATABASE2 DOTNET1 GITLAB7 GOOGLE PHOTOS1 GRAFANA2 IFTTT1 JAVASCRIPT3 MICRO:BIT2 NETWORK1 NODE2 OPENWRT1 PODCAST1 PROMETHEUS1 PYTHON1 ROUTER1 SOFTWARE6 SONARQUBE6 YOUTUBE1 改機1
[A~Z][0~9]
Copyright © 2008–2018, Steve Francia and the Hugo Authors; all rights reserved.

Copyright 2003-  COPYRIGHT © 2008–2018, STEVE FRANCIA AND THE HUGO AUTHORS; ALL RIGHTS RESERVED.. All Rights Reserved

to-top