Skip to content

Instantly share code, notes, and snippets.

@WhereJuly
WhereJuly / app.js
Last active May 9, 2020 07:51
Basic Express server serving a simplest app with server object exported for tests
'use strict';
const app = require('express')();
app.get('/', (req, res) => {
res.status(200).json({ message: 'Connected!' });
});
// Turn on that server!
const server = app.listen(3000, () => {
@WhereJuly
WhereJuly / Export All Text Layers.jsx
Created January 21, 2017 08:04
Export All Text Layers.jsx
// https://github.com/keyboardface/photoshop-scripts
/*
*
* Export All Text Layers
* 1.1.4
* Pavel Ivanov
* https://github.com/pivanov/photoshop-scripts
*
*/
@WhereJuly
WhereJuly / Photoshop: TextExtract.jsx
Last active December 7, 2016 09:02
Photoshop: Really working text extract from PSD
// modified by WhereJuly
// changed useDialog to false
// replaced filePath with opened psd's full path
/*
*
* TextExport 1.3 - by Bramus! - http://www.bram.us/
* text layer style export added by Max Glenister (@omgmog) http://www.omgmog.net
*
* v 1.x - ????.??.?? - UPD: HTML Output (?)
@WhereJuly
WhereJuly / Photoshop: zoom300.jsx
Last active July 31, 2026 16:01
Photoshop: script for zooming in
main();
function main(){
// Change the value between the parentheses below
// into your desired percentage:
setZoomLevel(300);
// Leave the code below unchanged
function setZoomLevel(zoom){
if(zoom < 1) zoom =1;