This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Builds mpv & mpv.app on Apple silicon Macs. | |
| # Run this script from the root directory of the mpv repo. | |
| # if anything fails, gtfo | |
| set -ex | |
| meson setup build | |
| meson compile -C build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Key Sublime Text 3.2.1 Build 3207 | |
| ----- BEGIN LICENSE ----- | |
| Member J2TeaM | |
| Single User License | |
| EA7E-1011316 | |
| D7DA350E 1B8B0760 972F8B60 F3E64036 | |
| B9B4E234 F356F38F 0AD1E3B7 0E9C5FAD | |
| FA0A2ABE 25F65BD8 D51458E5 3923CE80 | |
| 87428428 79079A01 AA69F319 A1AF29A4 | |
| A684C2DC 0B1583D4 19CBD290 217618CD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Deploy App(war) in Glassfish & run through virtual server | |
| open glassfish admin console | |
| http://<server-ip>:<admin-port> | |
| eg http://192.168.10.1:4848 | |
| Set environment for domain | |
| Goto Enterprise server/Server admin -> System properties tab -> click Add propertie | |
| Enter: Name=environment, value=testing/development | |
| Deploy war file | |
| - Goto -> Application -> click on deploy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo add-apt-repository ppa:noobslab/macbuntu -y | |
| sudo add-apt-repository ppa:noobslab/themes -y | |
| sudo apt-get update | |
| #Download Wallpapers MACOSX | |
| cd /usr/share/backgrounds/ | |
| wget http://drive.noobslab.com/data/Mac/MacBuntu-Wallpapers.zip | |
| unzip MacBuntu-Wallpapers.zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Created on 2012. 2. 19. | |
| This module is for playing mp3 (limited) and wav formatted audio file | |
| @author: John | |
| ''' | |
| import pygame | |
| def playsound(soundfile): | |
| """Play sound through default mixer channel in blocking manner. | |
| This will load the whole sound into memory before playback |