Skip to content

Instantly share code, notes, and snippets.

View bekirbakar's full-sized avatar
💭
Thinking

Bekir Bakar bekirbakar

💭
Thinking
View GitHub Profile
@bekirbakar
bekirbakar / software-testing-guide.md
Created April 29, 2023 18:08
Software Testing Guide

Software Testing Guide

Prompt results ts from GPT.

Software testing is an essential part of software development, aimed at ensuring the quality, reliability, and maintainability. This guide provides an overview of the key concepts, practices ...

Test Types

  1. Unit Tests: Test individual components or functions in isolation.
@bekirbakar
bekirbakar / git-stash-and-squash.md
Created April 20, 2023 11:15
Git: Stash and Squash

Git: Stash and Squash

This tutorial demonstrates how to use Git's stash and squash features to manage changes across different branches and combine multiple commits into one when merging.

By following these steps, you can efficiently manage changes across branches and keep your commit history clean by squashing multiple commits into one when merging.

Prerequisites

  • Git installed on your system.
  • Basic understanding of Git commands and concepts.
@bekirbakar
bekirbakar / python-notes.md
Created April 19, 2023 12:00
Python Notes

Python Notes

Standalone Python Distribution - Portable Python

  • PyOxidizer

  • PyInstaller

  • Without a Package

    • Create Python Executable
  • Pack Wheel Files

@bekirbakar
bekirbakar / google-search.md
Created April 19, 2023 11:30
Google Search

Google Search

Advanced Google Search

Quotation Marks: Use "" to search for exact phrase. Example: "Phrase"

Dashes -

Tilde ~

@bekirbakar
bekirbakar / copy-files-from-docker-container.md
Last active April 24, 2023 18:45
Docker Quick Reference

Copy Files from Docker Container

To copy a folder from a running Docker container to your local machine, use the docker cp command. Here's how to do it:

First, find the container ID or name of the running container by listing all running containers:

docker ps
@bekirbakar
bekirbakar / README.md
Last active April 18, 2023 20:36
VGGNet Keras Implementation

 VGGNet Keras Implementation

This script contains an implementation of the VGGNet architecture using Keras. The module provides functions to create VGG16 and VGG19 models, as well as utility functions to process images for use with the models.

Dependencies

  • Python 3.6+
@bekirbakar
bekirbakar / README.md
Last active April 6, 2023 21:05
File Manager Utilities in Node.js

File Manager Utilities in Node.js

Features

  1. Configuration: A class that manages the application configuration.

    • Reads and updates the application configuration JSON file.
    • Saves the updated configuration to the JSON file.
  2. JsonFileManager: A class that reads and updates JSON files.

  • Reads JSON files and assigns their content to the class instance.