Skip to content

Instantly share code, notes, and snippets.

View quangtuyen1993's full-sized avatar

Nguyễn Quang Tuyến quangtuyen1993

  • Free
  • vietnam
View GitHub Profile
@n0mi1k
n0mi1k / ipagrabber.py
Last active May 4, 2024 15:59
.IPA file extracter for Apple Configurator
import os
import shutil
"""
Steps to retrieve the IPA file from the Configurator app:
1. Install Apple Configurator from the Mac App Store and sign in
2. Connect your iOS device to your Mac
3. Select "Add > Apps..." and search for the app you want to install, click "Add"
4. The newer Apple Configurator deletes the IPA after installing it, so you'll need to use this tool to grab it
@laterbreh
laterbreh / Express 4 and Socket.io: Passing socket.io to routes - app.js
Last active August 15, 2023 13:58
Express 4 and Socket.io: Passing socket.io to routes.
var app = express();
app.io = require('socket.io')();
var routes = require('./routes/index')(app.io);
app.use('/', routes);