Skip to content

Instantly share code, notes, and snippets.

View rohanrudra55's full-sized avatar
👋
Working from home

Rohan Rudra rohanrudra55

👋
Working from home
View GitHub Profile
@rohanrudra55
rohanrudra55 / torrent-2-drive-stream.ipynb
Last active February 15, 2023 04:59
Torrent To Google Drive Downloader
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

To check and repair storage drive in windows using powershell follow this steps:


Start PowerShell as administrator

Repair-Volume C –Scan
Repair-Volume C –OfflineScanAndFix
@rohanrudra55
rohanrudra55 / Xilinx.md
Created May 13, 2022 08:42
How to download and setup VIvado

VIvado Setup


  • This is a 2014 version.
  • It requires 10 GB of disk space.
  • Works with low specification PC.
  • Tested on Intel i3 5th genteration, 4 GB Ram, Windows 10 64 bit.

Follow


library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.numeric_std.all;
entity digital_clock is
port (
clk: in std_logic;
rst_n: in std_logic;
H_in1: in std_logic_vector(1 downto 0);
@rohanrudra55
rohanrudra55 / AutoBoot.md
Created January 8, 2022 11:01
Disable autobot feature in MacBooks

Why it's needed ?

To reapir or clean you MacBook.

Disable


  • Open terminal sudo nvram AutoBoot=%00 paste and hit return

Enable

@rohanrudra55
rohanrudra55 / SetupOpencv.md
Last active January 24, 2022 08:23
To setup OpenCV for C++ environment in macOS

First Mehtod

NOTE: Folder names may vary and may need tweaking

Dependencies

  • Open terminal and check for xcode tools xcode-select --install

Using Homebrew

  • Run: brew install opencv (It will take some time)
  • It's installed location is: cd /usr/local/Cellar/opencv and locate for opencv4 folder
@rohanrudra55
rohanrudra55 / samba-elementary-os.md
Created January 5, 2022 08:20 — forked from tanyuan/samba-elementary-os.md
Elementary OS (Ubuntu) Samba Server Setup

Setup up Samba file server on Elementary OS (Ubuntu)

So you can access files from other computers (Linux, Mac, Windows) on the same network!

  1. Install Samba:
sudo apt install samba samba-common
@rohanrudra55
rohanrudra55 / TNT’s certificate.md
Last active January 5, 2022 08:19 — forked from rampfox/TNT’s certificate.md
If Crashes when opening Mac Cracked Apps

TNT

Apple removed TNT’s certificate, so the app will crash after July 12th. The current solution is to sign it yourself.

Run in Terminal

sudo codesign --force --deep --sign - /Applications/name.app

always add sudo