Skip to content

Instantly share code, notes, and snippets.

@caktux
caktux / drush_module_status
Created June 11, 2013 13:03
Find the status of a module in a site list
drush @SITELIST pmi MODULE -y | grep Status
@caktux
caktux / change_files_directory
Created June 11, 2013 13:07
Change files directory
UPDATE `files` SET `filepath` = REPLACE(`filepath`, "sites/SITEDOMAIN/files/", "files/SITEDOMAIN/");
@caktux
caktux / disable_module_sql
Created June 11, 2013 13:08
Disable module with SQL
UPDATE `system` SET `status` = '0' WHERE `name` = 'MODULENAME' LIMIT 1;
@caktux
caktux / reset_drupal_cron
Created July 12, 2013 13:02
Reset Drupal cron
drush @ALIAS vdel cron_semaphore
drush @ALIAS vdel cron_last
drush @ALIAS sqlq "delete from semaphore"
@caktux
caktux / ssh_push_key
Created July 18, 2013 03:31
SSH push key
ssh user@host "echo '`cat ~/.ssh/id_rsa.pub`' >> ~/.ssh/authorized_keys"
#!/bin/bash
# find all .git directories and exec "git pull" on the parent.
find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git pull" \;
@caktux
caktux / find_replace_with_sed.sh
Created October 16, 2013 21:43
Find and replace with sed
find . -type f -exec sed -i 's/find/replace/g' {} \;
@caktux
caktux / docker_cleanup.sh
Last active December 26, 2015 13:39
Docker cleanup
# ~/.bashrc function
# Use `docker-cleanup --dry-run` to see what would be deleted.
function docker-cleanup {
EXITED=$(docker ps -q -f status=exited)
DANGLING=$(docker images -q -f "dangling=true")
if [ "$1" == "--dry-run" ]; then
echo "==> Would stop containers:"
echo $EXITED
echo "==> And images:"
diff --git a/eth/main.cpp b/eth/main.cpp
index 499a43b..54c7409 100644
--- a/eth/main.cpp
+++ b/eth/main.cpp
@@ -34,6 +34,7 @@
#include "FileSystem.h"
#include "Instruction.h"
#include "BuildInfo.h"
+#include <boost/filesystem.hpp>
using namespace std;
diff --git a/src/jsonrpccpp/server/connectors/httpserver.cpp b/src/jsonrpccpp/server/connectors/httpserver.cpp
index 29088b3..b316a3a 100644
--- a/src/jsonrpccpp/server/connectors/httpserver.cpp
+++ b/src/jsonrpccpp/server/connectors/httpserver.cpp
@@ -124,8 +124,10 @@ bool HttpServer::SendResponse(const std::string& response, void* addInfo)
{
struct mg_connection* conn = (struct mg_connection*) addInfo;
if (mg_printf(conn, "HTTP/1.1 200 OK\r\n"
- "Content-Type: application/json\r\n"
+ "Content-Type: application/json; charset=utf-8\r\n"