tasinone

Search

Author

  • Razonex
  • My photo Tasin

Labels

  • Android (8)
  • Blogger (1)
  • Games (1)
  • Linux (13)
  • Other (2)
  • Resource (12)
  • Windows (14)

Pages

  • Home

Archive

  • 2026 (7)
    • May (6)
    • February (1)
  • 2025 (11)
    • September (1)
    • May (1)
    • March (6)
    • January (3)
  • 2024 (13)
    • December (2)
    • October (1)
    • July (3)
    • April (1)
    • March (3)
    • February (3)
  • 2023 (4)
    • November (1)
    • July (1)
    • June (1)
    • January (1)
  • 2022 (13)
    • December (2)
    • November (1)
    • September (1)
    • August (9)
Home

How to rename git branch name

Suppose we run this command git push -u origin main and get the following errors: error: src refspec main does not match any error: failed to push some refs to 'https://codeberg.org/tasin/Clarity.git' So this is happening because my remote branch name is master while we are trying to push to…

How to switch git repository on local project

Start Completely Fresh (Recommended for new platform) # Remove the current git history rm -rf .git # Reinitialize git git init # Add your files git add . # Make initial commit git commit -m "Initial commit" # Add Codeberg remote git remote add origin https://codeberg.org/your-username/…

How to use Git on Windows and Linux using terminal

In this blog, we are gonna learn all the commands to use Git on our project. First of all, navigate to the project directory using the $cd path/to/the/project and then follow the steps below. Step 1: Initialize git (if not already) Run this (only once per project): git init Step 2:Add your remote GitHu…

How to build release version apk on Android Studio

How to build release version apk on Android Studio
In this blog, we will learn how to build a release version apk fine on Android Studio.

How to run local AI model using llama.cpp

Running a local AI model is a game-changer. It means complete privacy, zero subscription fees, and an assistant that works entirely offline. While popular apps like Ollama, LM Studio, or Faraday are great options, they can be incredibly heavy and resource-hungry. Today, we are going to learn how t…

Turn Android into second display monitor using Spacedesk

https://www.spacedesk.net/

© tasinone.