Skip to content

Instantly share code, notes, and snippets.

View maricris-sn's full-sized avatar
😺

Maricris Nonato maricris-sn

😺
View GitHub Profile
@maricris-sn
maricris-sn / ghost-sitemap.rb
Last active August 29, 2015 13:56
Walking a sticko-themed blog to create sitemap links
require 'nokogiri'
require 'open-uri'
home = 'http://your-blog.com'
sitemap_file = File.open('sitemap.xml', 'wb')
sitemap_file.puts('<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Collapsible Tree Example</title>
<style>
.node circle {
gibbon = Gibbon::API.new
view = ActionView::Base.new('app/views/', {instance_variable_for_templates: 5324}, ActionController::Base.new)
campaign = gibbon.campaigns.create(
type: "regular",
options: {
list_id: 'xxxy',
from_email: 'you@example.com',
from_name: 'Your From',
subject: "the subject",
@maricris-sn
maricris-sn / do-ghost-upgrade
Last active August 29, 2015 14:05
Upgrading Ghost
# Login to your server as root
# Stop ghost service to prevent database corruption
service ghost stop
# Do some manual backups
cd /var/www
CURRENT_GHOST_TAR=/var/www/ghost-$(date +"%Y-%m-%d").tar
tar cvf $CURRENT_GHOST_TAR /var/www/ghost
@maricris-sn
maricris-sn / read-split-name
Created October 28, 2014 10:07
Read a spreadsheet's fullname column; and split into first and last names
# Assumes gem install 'roo' has been done
require 'roo'
# Spreadsheet filename I want to read
file_path = ENV["CONTACT_PATH"]
puts "Importing data from " + file_path
# Opening the file using roo
spreadsheet = case File.extname(file_path)
Remove osxfuse if installed via homebrew:
> brew uninstall osxfuse
Install osxfuse binary and choose to install the MacFUSE compatibility layer:
http://sourceforge.net/projects/osxfuse/files/latest/download?source=files
Reboot (optional but recommended by osxfuse)
Install ntfs-3g via homebrew:
> brew update && brew install ntfs-3g
@maricris-sn
maricris-sn / bench_rails_memory_usage.rb
Last active August 29, 2015 14:27 — forked from brianhempel/bench_rails_memory_usage.rb
A script to test the memory usage of your Rails application over time. It will run 30 requests against the specified action and report the final RSS. Choose the URL to hit on line 45 and then run with `ruby bench_rails_memory_usage.rb`.
require "net/http"
def start_server
# Remove the X to enable the parameters for tuning.
# These are the default values as of Ruby 2.2.0.
@child = spawn(<<-EOC.split.join(" "))
XRUBY_GC_HEAP_FREE_SLOTS=4096
XRUBY_GC_HEAP_INIT_SLOTS=10000
XRUBY_GC_HEAP_GROWTH_FACTOR=1.8
XRUBY_GC_HEAP_GROWTH_MAX_SLOTS=0
require 'rubygems'
require 'net/sftp'
require 'faster_csv'
# Load our constants
host = "my.server.com"
user = "my_username"
password = "my_password"
port = 12345
dirs_to_create = "dirs_to_create.txt"
@maricris-sn
maricris-sn / ftp-upload.rb
Last active September 18, 2015 04:30 — forked from taf2/ftp-upload.rb
uploading a file in ruby is hard. ftp is hard.
# fireway configured with: http://major.io/2007/07/01/active-ftp-connections-through-iptables/
require 'net/ftp'
require 'stringio'
# allows us to upload files by content instead of writing to disk first
class Net::FTP
def puttextcontent(content, remotefile, &block)
f = StringIO.new(content)
begin
## vendor/extensions/database_form/app/models/database_form_page.rb
# Save form data
def save_form
form_response = FormResponse.new(:name => form_name)
form_response.content = form_data
if !form_response.save
@form_error = "Error encountered while trying to submit form. #{$!}"
false
else