Skip to content

Instantly share code, notes, and snippets.

View manniru's full-sized avatar

MUHAMMAD MANNIR AHMAD manniru

View GitHub Profile
var mediaJSON = { "categories" : [ { "name" : "Movies",
"videos" : [
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org",
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ],
"subtitle" : "By Blender Foundation",
"thumb" : "images/BigBuckBunny.jpg",
"title" : "Big Buck Bunny"
},
{ "description" : "The first Blender Open Movie from 2006",
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ],
@manniru
manniru / udpserver.py
Created November 19, 2024 09:25 — forked from umer0586/udpserver.py
A simple UDP server in python
import socket
import threading
class UDPServer:
def __init__(self,address,buffer_size = 1024):
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.address = address
self.buffer_size = buffer_size
@manniru
manniru / rotate.py
Created November 19, 2024 09:25 — forked from umer0586/rotate.py
import json
import bpy
import signal
import socket
import threading
# Global variable to store the latest quaternion data
latest_quaternion_data = None
server_running = False
@manniru
manniru / sipTcpTransport.js
Created November 11, 2024 00:00 — forked from phanmn/sipTcpTransport.js
SIP.js TCP Transport Implementation
const SIP = require('sip.js');
const net = require('net');
const TransportStatus = {
STATUS_CONNECTING: 'STATUS_CONNECTING',
STATUS_CONNECTED: 'STATUS_CONNECTED',
STATUS_CLOSING: 'STATUS_CLOSING',
STATUS_CLOSED: 'STATUS_CLOSED'
};
<?php
{
"school_name": "ABC High School",
"school_id": "SCH123",
"email": "[email protected]",
"contact_person": "Jane Doe"
}
@manniru
manniru / m3u-2-JSON.R
Created August 7, 2024 23:34 — forked from christopherlovell/m3u-2-JSON.R
m3u to JSON converter
library(rjson)
trim <- function (x) gsub("^\\s+|\\s+$", "", x)
data_dir = 'Documents/playlists/'
play_list = list()
for(i in list.files(data_dir,"^.*\\.(m3u)$")){
year = substr(i,1,4) # record file specific information, in this case year from playlist group
@manniru
manniru / AllGattCharacteristics.java
Created June 25, 2024 14:09 — forked from sam016/AllGattCharacteristics.java
Bluetooth GATT Services & Characteristics
package com.sam016.vsflatomation.service.ble;
import java.util.HashMap;
import java.util.UUID;
public class AllGattCharacteristics {
private static HashMap<String, String> attributes = new HashMap();
static {
attributes.put("00002a00-0000-1000-8000-00805f9b34fb", "Device Name");
@manniru
manniru / nllb200_translate.py
Created April 27, 2024 16:35 — forked from glowinthedark/nllb200_translate.py
Text translation with facebook/nllb-200-3.3B model
#!/usr/bin/env python3
# Dependencies
# =============================
# pip install nltk transformers
import argparse
import sys
from pathlib import Path
@manniru
manniru / BBC-Radio-HLS.m3u
Created March 13, 2024 00:23 — forked from bpsib/BBC-Radio-HLS.m3u
BBC Radio Streams
#EXTM3U
#EXTINF:-1,BBC - Radio 1
http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8
#EXTINF:-1,BBC - Radio 1Xtra
http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8
#EXTINF:-1,BBC - Radio 1Dance
http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8
#EXTINF:-1,BBC - Radio 1Relax
http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_relax/bbc_radio_one_relax.isml/bbc_radio_one_relax-audio%3d96000.norewind.m3u8
#EXTINF:-1,BBC - Radio 2
#!/bin/bash
set -e
green="\033[00;32m"
txtrst="\033[00;0m"
# Disable UFW
if [ -x "$(command -v ufw)" ]; then
echo -e "${green}Disabling UFW...${txtrst}"
ufw disable