Skip to content

Instantly share code, notes, and snippets.

View cakirefekan's full-sized avatar
🎯
Seeking a Job

efekan cakir cakirefekan

🎯
Seeking a Job
View GitHub Profile
@cakirefekan
cakirefekan / More-links.txt
Last active November 19, 2024 11:10 — forked from dreamsparkx/More-links.txt
Install Apache, PHP, MySQL and phpMyAdmin on Mac OS X
@cakirefekan
cakirefekan / GetShapeArea.jsx
Last active March 29, 2021 22:11 — forked from bryanbuchanan/GetShapeArea.jsx
Script to find the area of shapes in Adobe Illustrator
/* Save this file with a jsx extension and place in your
Illustrator/Presets/en_US/Scripts folder. You can then
access it from the File > Scripts menu */
var decimalPlaces = 3;
var scale = prompt("1/", " ", "Enter Scale");
if (app.documents.length > 0) {
if (app.activeDocument.selection.length < 1) {
alert("Select a path");
} else if (app.activeDocument.selection[0].area) {