Skip to content

Instantly share code, notes, and snippets.

View bumb7ebee's full-sized avatar
🏠
Working from home

İlker Yasin AKSOY bumb7ebee

🏠
Working from home
View GitHub Profile
@slikts
slikts / Linuxifying Windows.md
Last active September 4, 2023 07:30
Linuxifying Windows

nelabs.dev

Linuxifying Windows for development

This guide is for 'linuxing-up' Windows as a development environment; it focuses on setting up [WSL], an Ubuntu Hyper-V virtual machine, [wsltty] (a nice terminal emulator) and various tweaks.

Rationale

@Sawaba
Sawaba / javainstall.sh
Created March 6, 2019 16:02
Java JDK 11 install script for Windows Subsystem for Linux (WSL)
#!/bin/bash
# This script adapted from an older post on StackOverflow by user fieldju
# https://stackoverflow.com/questions/36478741/installing-oracle-jdk-on-windows-subsystem-for-linux
# The script was for JDK 8.
# Due to major changes with JDK 11 (no JRE, no Derby, Unlimited Strength included), it was necessary to update the entire script.
set -ex
# UPDATE THESE URLs (this one updated as of 2019-03-06)
export JDK_URL=http://download.oracle.com/otn-pub/java/jdk/11.0.2+9/f51449fcd52f4d52b93a989c5c56ed3c/jdk-11.0.2_linux-x64_bin.tar.gz
@gmolveau
gmolveau / firefox_dark_background.md
Last active October 7, 2024 08:10
Firefox dark background / theme for new tab and loading screen

Firefox Dark Background

  • How to change the background on Firefox to a dark one on new tab / loading screen ?

Procedure

  • Type about:config in the URL bar
  • Search toolkit.legacyUserProfileCustomizations.stylesheets and double-click the field to set it to true
  • Type about:support in the URL bar
  • Look for Profile folder field and click on the open button next to it.
@midoriiro
midoriiro / qt_rasp-pi3_cross_compile.md
Last active February 8, 2024 18:00
Cross-compile Qt-5.11.3 from Linux to Raspberry PI 3 B+
@AveYo
AveYo / .. MediaCreationTool.bat ..md
Last active November 10, 2024 14:53
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat
@sinclairtarget
sinclairtarget / bernoulli.c
Created August 17, 2018 20:22
Lovelace's Note G Program in C
#include <stdio.h>
/*
* Calculates what Ada Lovelace labeled "B7", which today we would call the 8th
* Bernoulli number.
*/
int main(int argc, char* argv[])
{
// ------------------------------------------------------------------------
// Data
@1duo
1duo / centos.install.cmake.from.source.md
Last active October 24, 2024 05:58
Install CMake on CentOS 7.

Download CMake from: https://cmake.org/download/

wget https://cmake.org/files/v3.12/cmake-3.12.3.tar.gz

Compile from source and install

tar zxvf cmake-3.*
Keyifli okumalar.
17 sayfalık PDF hali için link. https://rb.gy/56tvey
medium link https://medium.com/@muratdemirtastr/g%C3%B6m%C3%BCl%C3%BC-sistemlerde-do%C4%9Fru-yaz%C4%B1l%C4%B1m-g%C3%BCncelleme-stratejileri-a337242089a9
@rnagarajanmca
rnagarajanmca / emulate_rpi_on_windows.md
Last active July 28, 2024 09:54
Raspberry pi emulator for windows

Emulate Raspberry pi on windows

Following files required to emulate raspberry pi on windows

  • QEMU Emulator
  • Raspberry pi kernel
  • Raspberry pi OS image

QEMU emulator

  • QEMU is an emulator
@yu4u
yu4u / real_time_face.py
Created February 11, 2017 08:55
Real-time face recognition and visualization via dlib and matplotlib
import cv2
import dlib
import matplotlib.pyplot as plt
import matplotlib.patches as patches
import os
predictor_path = "shape_predictor_68_face_landmarks.dat"
# download trained model
if not os.path.isfile(predictor_path):