Skip to content
View Khazbs's full-sized avatar
🐺
.let { it.be() }
🐺
.let { it.be() }
  • TelePat, LLC
  • Moscow, Russia
  • 20:54 (UTC +03:00)

Highlights

  • Pro

Organizations

@telepat-llc

Block or report Khazbs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Try this site conf if you (use SSL/T... Try this site conf if you (use SSL/TLS certificates by letsencrypt certbot for nginx and) want to redirect http: to https: and www to non-www
    1
    server {
    2
        # Listen for http:
    3
        listen [::]:80;
    4
        listen 80;
    5
    
                  
  2. Having this in your ~/.bashrc will a... Having this in your ~/.bashrc will allow you to write persistent alias into ~/.bash_aliases with the aka command (and use them without sourcing ~/.bashrc)
    1
    # Alias definitions.
    2
    # You may want to put all your additions into a separate file like
    3
    # ~/.bash_aliases, instead of adding them here directly.
    4
    # See /usr/share/doc/bash-doc/examples in the bash-doc package.
    5
    
                  
  3. Add this to your .bashrc to get a ha... Add this to your .bashrc to get a handy bak function for backing up files and directories
    1
    # Create backup copies of files or directories
    2
    
                  
    3
    bak() {
    4
      local name="$1.bak"
    5
      if [ -e "$name" ]; then
  4. This snippet might help you make a M... This snippet might help you make a Material Design 3 theme for your Jetpack Compose app
    1
    package my.awesome.package // put your package name here
    2
    
                  
    3
    import android.app.Activity
    4
    import android.os.Build
    5
    import androidx.compose.foundation.isSystemInDarkTheme