Skip to content

Instantly share code, notes, and snippets.

View pixelite's full-sized avatar

Suzanne Dergacheva pixelite

View GitHub Profile
<div style="width:100%; text-align:left;"><iframe src="//eventbrite.ca/tickets-external?eid=20483772515&ref=etckt" frameborder="0" height="563" width="100%" vspace="0" hspace="0" marginheight="5" marginwidth="5" scrolling="auto" allowtransparency="true"></iframe><div style="font-family:Helvetica, Arial; font-size:12px; padding:10px 0 5px; margin:2px; width:100%; text-align:left;" ><a class="powered-by-eb" style="color: #ADB0B6; text-decoration: none;" target="_blank" href="http://www.eventbrite.ca/">Powered by Eventbrite</a></div></div>
open-sans:
remote: https://www.google.com/fonts/specimen/Open+Sans
license:
name: Apache License, Version 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
gpl-compatible: true
css:
theme:
https://fonts.googleapis.com/css?family=Open+Sans: { type: external }
font-awesome:
@pixelite
pixelite / suzanne-tools.md
Last active April 1, 2016 17:37 — forked from dergachev/alex-tools.md
The tools I use.

Tools we use for PM for project management and communication

  • LaTeX for company proposals, converted via custom script to google docs
  • git for code and structured docs
  • dropbox for screenshots and file sharing
  • markdown (in github) and textile (in redmine)
  • markdown for blog posts and presentations
  • Vim for code and text editing

Communication:

@pixelite
pixelite / sass.md
Last active November 27, 2015 16:17 — forked from jorgediazgutierrez/sass.md
How SASS and Bourbon Neat Can Save Non-Mobile Websites

How SASS and Bourbon Neat Can Save Non-Mobile Websites

It's 2015, we are already in the "Mobile Era" and we all love how our modern sites fit and adapt to any screen. It's amazing how a website can stretch to the 52 inches of a Samsung TV and also look good on your mobile phone. But you know what? There are 20 years of "non-mobile" websites out there screaming to be upgraded. And the first word that comes to mind is "redesign".

Redesign means Higher Cost

Mobile OS manufacturers tend to improve their browsers to allow resizing, double tap zooming and dragging around, so we can use these non-mobile websites on mobile. But this is just a usability workaround, and only fixes half of the "browser + site = UX" equation. If the businesses behind old sites want to upgrade their "non adaptive" websites, they will need to pay for it. If they have a good budget, they will have a lot of options, but what if they don't?

Instead of leaving websites to "die" because they were made more than 4 years ago, why do

@pixelite
pixelite / iterm-alt-arrows
Created November 24, 2015 17:56
iterm alt-left and alt-right support
cat - >> ~/.inputrc <<'EOT'
"\e\e[C": forward-word
"\e\e[D": backward-word
EOT
@pixelite
pixelite / migrate_programs.module.php
Created September 12, 2015 19:17
migrate_programs.module
<?php
/**
* Implements hook_migrate_api().
*/
function migrate_programs_migrate_api() {
return array(
'api' => 2,
'groups' => array(
'migrate_programs' => array(
@pixelite
pixelite / migrate_programs.install.php
Last active September 12, 2015 19:05
migrate_programs.install
<?php
/**
* Implements hook_install().
*/
function migrate_programs_install() {
// Force migrations to be registered.
migrate_static_registration();
}
@pixelite
pixelite / migrate_programs.migrate.inc.php
Last active September 22, 2015 15:45
migrate_programs.migrate.inc
<?php
/**
* @file
* A migration to import program nodes.
*
*/
class MigratePrograms extends Migration {
public function __construct($arguments) {
@pixelite
pixelite / migrate_programs.info
Last active September 12, 2015 19:11
migrate_programs.info
name = Migrate Programs
description = Migrate program information from CSV
core = 7.x
dependencies[] = migrate
files[] = migrate_programs.migrate.inc
@pixelite
pixelite / my-modules.md
Last active December 24, 2015 08:19
Here's a list of modules I would suggest using when you're getting started with Drupal.