Skip to content

Instantly share code, notes, and snippets.

View Remzi1993's full-sized avatar
🎯
Busy & focusing

Remzi Cavdar Remzi1993

🎯
Busy & focusing
View GitHub Profile
@winnekes
winnekes / localStorage.js
Created October 22, 2019 20:21
localStorage Example
let myDetails = {
name: 'Simona',
hobbies: ['reading', 'sleeping'],
cats: ['Fetti', 'Diego'],
loves: 'Robots'
};
// add key/value pairs to your localStorage
// to store JS objects you need to serialise them first
localStorage.setItem('details', JSON.stringify(myDetails));
@mattiasghodsian
mattiasghodsian / readme.md
Last active February 19, 2025 23:37
How to create a Windows application Installer with NSIS

Nullsoft Scriptable Install System is also known as NSIS open-source system to create Windows application installers. NSIS is a script-based system allowing you to create the logic behind your installer/setup file in a complex way to install tasks. NSIS offers plug-ins and other scripts, for example, to download/install 3rd-party files or communicate with Windows.

The tutorial application

This tutorial will guide you through installing and creating your first Windows installer with Nullsoft Scriptable Install System and how to compile your project. Captura Portable will be used as "our application" for the sake of this tutorial.

Installation

Head to NSIS official site and download the latest release and install it. Run NSIS and you will be welcomed with a menu like below, It's always a good practice to read the Documentation before jumping in t

@keshav-space
keshav-space / transporter.py
Last active April 14, 2025 20:14
Migrate GitHub project between accounts
#
# Copyright (c) nexB Inc. and others. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
# See https://aboutcode.org for more information about nexB OSS projects.
#
import getpass
from traceback import format_exc as traceback_format_exc
@chmolto
chmolto / transporter.py
Last active April 14, 2025 20:13 — forked from keshav-space/transporter.py
Migrate GitHub project between accounts
#
# Copyright (c) nexB Inc. and others. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
# See https://aboutcode.org for more information about nexB OSS projects.
#
from traceback import format_exc as traceback_format_exc
import requests