Skip to content
June 27, 2025

Pupli

  • .NET
    • .NET Core
    • ASP.NET
    • ASP.NET Blazor
    • ASP.NET MVC
    • ASP.NET Web APIs
    • ASP.NET Worker Services
    • async/await
    • AutoMapper
    • BenchmarkDotNet
    • C#
    • Dapper
    • DateTime
    • Dependency Injection
    • Entity Framework
    • EPPlus
    • FluentEmail
    • gRPC
    • Hangfire
    • HttpClient
    • Identity
    • Image Processing
    • MailKit
    • MassTransit
    • MediatR
    • MessagePipe
    • ML.NET
    • MongoDB
    • NuGet
    • Polly
    • PostgreSQL
    • Protobuf
    • Quartz.NET
    • Resources
    • RestSharp
    • Security
    • Selenium
    • Seq
    • Serilog
    • Sharp7
    • SharpVectors
    • SharpZipLib
    • SignalR
    • SOAP
    • StackExchange.Redis
    • String
    • Syncfusion
    • Windows
    • WPF
    • XML
  • C/C++
    • Qt
  • Database
    • Hibernate
    • MongoDB
    • MySQL
    • PostgreSQL
    • Redis
  • Electrical
    • PLC
  • Go
  • Java
    • Apache POI
    • Gradle
    • Groovy
    • Gson
    • Java
    • Joda
    • Kotlin
    • OkHttp
    • Quartz
    • RxJava
    • Spring
  • JavaScript
    • Express
    • JavaScript
    • Moment.js
    • Mongoose
    • Node.js
    • PM2
    • RxJS
    • Socket.IO
    • TypeScript
    • Yarn
  • Linux
    • Apache
    • Bash
    • Fedora
    • Git
    • Kali
    • Linux
    • Manjaro
    • Mint
    • Nginx
    • PDF
    • SSH
    • Tools
      • Certbot
      • cron
      • cURL
      • DNS
      • FFmpeg
      • GPG
      • grep
      • HAProxy
      • ip
      • iptables
      • Nmap
      • ProxyChains
      • rsync
      • sch
      • Superset
      • systemd
      • ufw
    • Ubuntu
    • VPN
  • Math
    • Formula
  • Microsoft
    • BAT
    • BI
    • Excel
    • PowerShell
    • Windows
      • DNS
    • Windows Server
    • WSL
  • Mobile
    • Android
    • Ionic
  • MQ
    • MQTT
    • RabbitMQ
  • Network
    • Cisco
    • Network+
  • Programming
    • Architectural Patterns
  • Python
    • Bokeh
    • Celery
    • Django
    • dnspython
    • Flask
    • Gunicorn
    • Network
    • NumPy
    • OpenCV
    • openpyxl
    • Pandas
    • PIL
    • psutil
    • PyInstaller
    • PyScreeze
    • PySide
    • pytesseract
    • Python
    • requests
    • Selenium
    • SQLAlchemy
    • SQLite
    • Telegram Bot
    • Virtualenv
    • Windows
  • Tools
    • GitHub Copilot
  • Web
    • Angular
    • Bootstrap
    • HTML
    • Next.js
    • PWA
    • React
    • Tailwind CSS
    • Vite
    • WordPress
    • XPath
    • CSS
Main Menu

Tag: jetbrains

Uninstall Jetbrains Products in Linux

August 28, 2022

Delete the installation directory.
Remove the following directories:

Syntax
~/.config/JetBrains/<product><version>

~/.cache/JetBrains/<product><version>

~/.local/share/JetBrains/<product><version>
Example
~/.config/JetBrains/IntelliJIdea2022.2

~/.cache/JetBrains/IntelliJIdea2022.2

~/.local/share/JetBrains/IntelliJIdea2022.2

References
https://www.jetbrains.com/help/idea/uninstall.html#standalone

IntelliJ Main Menu not showing on Linux

August 23, 2022

disable linux.native.menu key in Help | Find Action | Registry and restart IDE

References
https://intellij-support.jetbrains.com/hc/en-us/community/posts/360006677720-main-menu-not-showing-on-ubuntu

Chage Host and Port of Flask in PyCharm

June 22, 2019

Additional options

--host=127.0.0.2 --port=1234

 

Disable global Ctrl-Alt-L hotkey in KDE

May 2, 2019

The IntelliJ IDEA short-cut to reformat source code is Ctrl+Alt+L. This happens to lock the screen in KDE (Gnome too?). How can I disable this so IntelliJ receives the key sequence?

On KDE Plasma 5 go to System Settings | Desktop Behaviour | Screen Locking

Here you will find a “Keyboard Shortcut” option. Change it to something else or set to none

References
https://stackoverflow.com/questions/211043/disable-global-ctrl-alt-l-hotkey-in-kde

Make Flask externally visible on PyCharm

July 25, 2018

Additional options

--host=0.0.0.0 --port=1883

References
https://www.jetbrains.com/help/pycharm/run-debug-configuration-flask-server.html

Type Hinting in Python

July 21, 2018
fig: matplotlib.figure.Figure=plt.figure()
ax: matplotlib.axes.Axes=fig.add_subplot(111)

or

fig, ax=plt.subplots()

assert isinstance(fig,matplotlib.figure.Figure)
assert isinstance(ax,matplotlib.axes.Axes)

Dictionary

from typing import Dict
cache: Dict[str, TemplateProperties] = {}

References
https://www.jetbrains.com/help/pycharm/type-hinting-in-product.html
https://docs.python.org/3/library/typing.html

Copyright © 2025 Pupli.
Powered by WordPress and HitMag.