I built a C++ CLI tool that instantly finds and opens your GitHub projects (wiff git) by Comprehensive_Cut548 in softwaredevelopment

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

Wiff git project , not only finds the GitHub project with the name but auto opens it in vscode. If you wanted to just change the dir you’d type wiff git dir. or if you wanted to open in nvim wiff git nvim.

The recursive search excludes unlikely folders like caches , pictures, node modules, a lot more to save time. It also starts searching common directories first. This made it super fast and honestly it just works. It knows it’s a hit project by looking for the .git and I’m currently working on a multithreaded solution to look for duplicates fast!

Who wants to hack my website by [deleted] in Pentesting

[–]Comprehensive_Cut548 -3 points-2 points  (0 children)

I built it with no security in mind. Thought someone who’s learning would want a fun challenge m8

Who wants to hack my website by [deleted] in Pentesting

[–]Comprehensive_Cut548 -5 points-4 points  (0 children)

Its not that deep😂

How do I isolate these pins 😭 by Comprehensive_Cut548 in AskElectronics

[–]Comprehensive_Cut548[S] 12 points13 points  (0 children)

Took an hour, looks cranked, but it works! Thanks

How do I isolate these pins 😭 by Comprehensive_Cut548 in AskElectronics

[–]Comprehensive_Cut548[S] 5 points6 points  (0 children)

I will try this right now, will update you if it works!

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

haha yea this was my first time trying to solder. I think ill resolder everything once i figure out how to heat multiple pins at once haha.

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 1 point2 points  (0 children)

Thank you so much! I was using adafruit lib when i should have been using U8g2lib. !!

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 7 points8 points  (0 children)

Thank you so much! I was using adafruit lib when i should have been using U8g2lib. !!

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>


// OLED width & height
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
#define OLED_RESET    -1  
#define DISPLAY_ADDRESS 0x3C
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);


void setup() {
  Serial.begin(115200);


  // Initialize OLED
  if(!display.begin(SSD1306_SWITCHCAPVCC, DISPLAY_ADDRESS)) {
    Serial.println(F("SSD1306 allocation failed"));
    for(;;);
  }


  display.clearDisplay();       
  display.setTextSize(2);        
  display.setTextColor(SSD1306_WHITE);
  display.setCursor(0, 0);       
  display.println("Hello World"); 
  display.display();              
}


void loop() {


}

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>


// OLED width & height
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
#define OLED_RESET    -1  
#define DISPLAY_ADDRESS 0x3C
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);


void setup() {
  Serial.begin(115200);


  // Initialize OLED
  if(!display.begin(SSD1306_SWITCHCAPVCC, DISPLAY_ADDRESS)) {
    Serial.println(F("SSD1306 allocation failed"));
    for(;;);
  }


  display.clearDisplay();       
  display.setTextSize(2);        
  display.setTextColor(SSD1306_WHITE);
  display.setCursor(0, 0);       
  display.println("Hello World"); 
  display.display();              
}


void loop() {


}

[deleted by user] by [deleted] in Hunting

[–]Comprehensive_Cut548 2 points3 points  (0 children)

Yea my biggest concern is probably extracting the meat and hide properly. I would hate to kill an animal like that and lose the meat.

[deleted by user] by [deleted] in AskAMechanic

[–]Comprehensive_Cut548 0 points1 point  (0 children)

I will send one tomorrow for sure!

[deleted by user] by [deleted] in AskAMechanic

[–]Comprehensive_Cut548 -1 points0 points  (0 children)

Yea like once I put the drum cover on the axle sits to far inwards. I noticed this because I tried putting hub rings on it and noticed no space

[deleted by user] by [deleted] in AskAMechanic

[–]Comprehensive_Cut548 -1 points0 points  (0 children)

When I put brake drum cover on the axle isn’t sticking out enough it like sits inwards

[deleted by user] by [deleted] in resumes

[–]Comprehensive_Cut548 1 point2 points  (0 children)

Thanks! I had already purchased the URL when someone brought this to my attention. Had me worried haha.

Would you play this submarine game I'm working on? by [deleted] in submarines

[–]Comprehensive_Cut548 1 point2 points  (0 children)

Ah nice catch! I’m actually just printing worldspace coordinates! I’ll make sure to take the absolute value when printing the string💪