Skip to content

Instantly share code, notes, and snippets.

View trackq's full-sized avatar
💭
🏄‍♂️🤖

Kaweh Ebrahimi-Far trackq

💭
🏄‍♂️🤖
  • Yesplease.ai
  • The Netherlands
View GitHub Profile
require 'rest_client'
require 'json'
require 'addressable/uri'
def write_to_file(file_name, info)
open(file_name, 'a') do |f|
p info
f.puts info
end
end
@trackq
trackq / architecture.md
Last active May 10, 2020 11:42
Scratchpad - finding my way around Wordpress Mobile

Wordpress Mobile

The team works according to the The Heartbeat release process.

GitHub

Github is used as the main version control, tracking, collaboration tool.

Main repositories

Wordpress-IOS

Wordpress iOS app

@trackq
trackq / bootstrap4-social_media_buttons.scss
Created October 29, 2018 09:53
Social media color list and button generator
$social-media-colors: (
facebook: #3b5998,
twitter: #1da1f2,
youtube: #ff0000,
instagram: #c32aa3,
instagramblue: #4c5fd7,
instagrampurple: #7232bd,
instagramorange: #f46f30,
instagramyellow: #ffdc7d,
google: #4285f4,
@trackq
trackq / .zshrc
Last active August 13, 2023 10:51
Quake 3 arena config OSX
alias q3="/Applications/ioquake3/ioquake3.app/Contents/MacOS/ioquake3fe& watch sudo renice -15 -p `ps -ax | awk '/ioquake3.app/ {print $1}'`"
<?php
final class Image {
private $file;
private $image;
private $info;
public function __construct($file) {
if (file_exists($file)) {
$this->file = $file;