プラグイン名 | バージョン | URL |
---|---|---|
Add Selected Colours To Document Palette | 1.3.0 | https://github.com/johnmcclumpha/sketch-add-colors-to-palette |
Add Selected colors... | 0.11.4 | |
Batch Create Symbols | 1.1 | https://github.com/demersdesigns/sketch-batch-symbols |
Craft | 1.0.60 | http://labs.invisionapp.com/craft |
Design System Manager | 1.1.25 | |
Find and Replace | 2.8.3 | https://github.com/thierryc/Sketch-Find-And-Replace/ |
Font Finder | 1.2 | https://github.com/ukn530/FontFinder |
Image average color | 1.1 | https://github.com/AntonioJMartinez/sketch-imageAverageColor |
This file contains 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
function fadeOut(el){ | |
el.style.opacity = 1; | |
(function fade() { | |
if ((el.style.opacity -= .1) < 0) { | |
el.style.display = "none"; | |
} else { | |
requestAnimationFrame(fade); | |
} | |
})(); |
This file contains 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
interface ZodString { | |
type: "string", | |
parse(val: unknown): string | |
} | |
interface ZodNumber { | |
type: "number", | |
parse(val: unknown): number | |
} | |
interface ZodUnknown { | |
type: "unknown", |
This file contains 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
{ | |
"meta": { | |
"theme": "flat" | |
}, | |
"basics": { | |
"name": "Alireza Sarabchi", | |
"label": "Front-end Developer", | |
"image": "https://avatars0.githubusercontent.com/u/416209?s=460&u=38f220a2c9c658141804f881c334c594eb1642ac&v=4", | |
"summary": "I am a multidisciplinary designer and front-end developer with over 15 years of experience. During my career, I've worked in various fields of web development, including back-end development, UI/UX, research, management, and business development. These experiences have given me the insight to build, develop, and implement software with companies' needs and business requirements in mind. Additionally, I have experience in managing and mentoring teams and individuals.", | |
"website": "https://alireza.ws", |
This file contains 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
// ==UserScript== | |
// @name RTL Slack | |
// @namespace slask.com | |
// @include https://*.slack.com/* | |
// @version 1.2.2 | |
// @grant none | |
// ==/UserScript== | |
function isRTL(text) { | |
if (text !== "") { |
This file contains 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
function validateNationalNumber(value) { | |
if (value == '0000000000' || | |
value == '1111111111' || | |
value == '2222222222' || | |
value == '3333333333' || | |
value == '4444444444' || | |
value == '5555555555' || | |
value == '6666666666' || | |
value == '7777777777' || | |
value == '8888888888' || |
This file contains 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
# backup all postgres databases in a gz file | |
pg_dumpall -U postgres -p 5432 --quote-all-identifiers | gzip >postgresapp.sql.gz | |
# restore backup file | |
gunzip <postgresapp.sql.gz | psql |
This file contains 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
import os | |
path = os.chdir('DIRECTORY_PATH') | |
files = os.listdir(path) | |
for file in files: | |
os.rename(file, file.lower()) |
This file contains 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
var deadline = '2017-03-15'; | |
function getTimeRemaining(endtime){ | |
var t = Date.parse(endtime) - Date.parse(new Date()); | |
var seconds = Math.floor( (t/1000) % 60 ); | |
var minutes = Math.floor( (t/1000/60) % 60 ); | |
var hours = Math.floor( (t/(1000*60*60)) % 24 ); | |
var days = Math.floor( t/(1000*60*60*24) ); | |
return { | |
'total': t, |
This file contains 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
String.prototype.toPersianDigit = function (latinDigit) { | |
return this.replace(/\d+/g, function (digit) { | |
var enDigitArr = [], peDigitArr = [], i, j; | |
for (i = 0; i < digit.length; i += 1) { | |
enDigitArr.push(digit.charCodeAt(i)); | |
} | |
for (j = 0; j < enDigitArr.length; j += 1) { | |
peDigitArr.push(String.fromCharCode(enDigitArr[j] + ((!!latinDigit && latinDigit === true) ? 1584 : 1728))); | |
} | |
return peDigitArr.join(''); |
NewerOlder