One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| on run | |
| tell application "Finder" to set aliasItemName to selection as alias | |
| set posixPathName to POSIX path of aliasItemName | |
| return posixPathName | |
| end run |
| "____________________________________________________________ | |
| " | |
| " /\__\ /\ \ /\ \ /\__\ | |
| " /::| | /::\ \ /::\ \ /::| | | |
| " /:|:| | /:/\:\ \ /:/\:\ \ /:|:| | | |
| " /:/|:|__|__ /:/ \:\ \ /:/ \:\ \ /:/|:| |__ | |
| " /:/ |::::\__\ /:/__/ \:\__\ /:/__/ \:\__\ /:/ |:| /\__\ | |
| " \/__/~~/:/ / \:\ \ /:/ / \:\ \ /:/ / \/__|:|/:/ / | |
| " /:/ / \:\ /:/ / \:\ /:/ / |:/:/ / | |
| " /:/ / \:\/:/ / \:\/:/ / |::/ / |
| (* | |
| From http://www.labnol.org/software/resize-mac-windows-to-specific-size/28345/ | |
| This Apple script will resize any program window to an exact size and the | |
| window is then moved to the center of your screen. Specify the program name, | |
| height and width below and run the script. | |
| Written by Amit Agarwal on December 10, 2013 | |
| *) |
| -server | |
| -Xms2048m | |
| -Xmx2048m | |
| -XX:NewSize=512m | |
| -XX:MaxNewSize=512m | |
| -XX:PermSize=512m | |
| -XX:MaxPermSize=512m | |
| -XX:+UseParNewGC | |
| -XX:ParallelGCThreads=4 | |
| -XX:MaxTenuringThreshold=1 |
| sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; |
| /* | |
| * $Id$ | |
| * | |
| * Licensed to the Apache Software Foundation (ASF) under one | |
| * or more contributor license agreements. See the NOTICE file | |
| * distributed with this work for additional information | |
| * regarding copyright ownership. The ASF licenses this file | |
| * to you under the Apache License, Version 2.0 (the | |
| * "License"); you may not use this file except in compliance | |
| * with the License. You may obtain a copy of the License at |
| ; /usr/local/bin/nasm -f macho 32.asm && ld -macosx_version_min 10.7.0 -o 32 32.o && ./32 | |
| global start | |
| section .text | |
| start: | |
| push dword msg.len | |
| push dword msg | |
| push dword 1 | |
| mov eax, 4 |