Skip to content

Instantly share code, notes, and snippets.

View keremciu's full-sized avatar
💅
focusing on what is beautiful

Kerem Sevencan keremciu

💅
focusing on what is beautiful
View GitHub Profile
@keremciu
keremciu / service.css
Last active March 20, 2019 19:01
Slack Dark Mode for Franz 1. Go to ~/Library/Application Support/Franz/ 2. Backup recipes folder like copy and change the name 3. Go to your service folder like Slack then edit your service.css 4. In this one, you can find dark theme colors ti put your service.css, don't forget to remove `.theme-transparent-dark` classes inside service.css
#banner {
display: none !important;
}
html {
background: none !important; }
body {
background: transparent !important; }
body .c-message--ephemeral, body .c-message--sli_highlight_negative,
@keremciu
keremciu / wp-admin-includes-export.php
Last active July 13, 2017 17:32
wordpress export problem when you are using featured-image(dfiFeatured) plugin to import Medium
<?php
/**
* WordPress Export Administration API
*
* @package WordPress
* @subpackage Administration
*/
/**
* Version number for the export format.
@keremciu
keremciu / mailchimp_request_handler.php
Created June 27, 2017 22:52
MailChimp api v3 - request handler for browser
<?php
include('./MailChimp.php');
use \DrewM\MailChimp\MailChimp;
function cors() {
// Allow from any origin
if (isset($_SERVER['HTTP_ORIGIN'])) {
// Decide if the origin in $_SERVER['HTTP_ORIGIN'] is one
// you want to allow, and if so:
@keremciu
keremciu / index.js
Created October 18, 2016 12:03
src/routes/index.js
/**
* React Starter Kit (https://www.reactstarterkit.com/)
*
* Copyright © 2014-2016 Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
/* eslint-disable global-require */
@keremciu
keremciu / gulpfile.js
Last active August 29, 2015 14:27
An example for blog post.
// node modules içerisindeki gulp modülünü çağıran kod parçamız.
// Onu 'gulp' adında bir değişkene atıyoruz.
var gulp = require('gulp');
// node modules içerisindeki gulp-imagemin modülünü çağıran kod parçamız.
// Onu 'imagemin' adında bir değişkene atıyoruz.
var imagemin = require('gulp-imagemin');
// En basta 'gulp' degiskenine gulp modulunu tanimlamistik.
// Artik gulp. şeklinde gulp işlevlerini kullanabiliriz.
// gulp işlevleri neler mi?
@keremciu
keremciu / Select_Invisibles.sketchplugin
Last active August 29, 2015 14:26
Sketch App: Select Invisible Layers
function is_group(layer) {
return [layer isMemberOfClass:[MSLayerGroup class]] || [layer isMemberOfClass:[MSArtboardGroup class]]
}
function is_invisible_selectit(layer) {
if([layer isVisible] == false) {
[layer select:true byExpandingSelection:true]
}
}

Colorful box - CSS3 Trick

It has one color but animation is colorful. How did it happen? Click and see it.

A Pen by keremciu on CodePen.

License.