I hereby claim:
- I am knibals on github.
- I am knibals (https://keybase.io/knibals) on keybase.
- I have a public key ASAt-c3vDWMV9XL6kUSeazJZGL7IJPKY6MjhzstWpkJS6Ao
To claim this, I am signing this object:
<?php | |
/** | |
* Implements hook_form_alter(). | |
* | |
* Redirects user logins to the front page. | |
*/ | |
function HOOK_form_user_login_alter(&$form, &$form_state) { | |
$form['#action'] = url('user', array('query' => array('destination' => '<front>'))); | |
} |
<?php | |
/** | |
* Implements hook_menu(). | |
*/ | |
function mymodule_menu() { | |
$items['mymodule/%ctools_js/add'] = array( | |
'page callback' => 'mymodule_node_add_modal_callback', | |
'page arguments' => array(1), | |
'access arguments' => array('access content'), |
/** | |
* Implements hook_js_alter(). | |
*/ | |
function YOUR_THEME_js_alter(&$js) { | |
if (isset($js['misc/jquery.js'])) { | |
$jquery_path = 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js'; | |
$js['misc/jquery.js']['data'] = $jquery_path; | |
$js['misc/jquery.js']['version'] = '1.8.0'; | |
$js['misc/jquery.js']['type'] = 'external'; | |
} |
<?php | |
/** | |
* @file helpers.module | |
*/ | |
/** | |
* Implements hook_custom_theme(). | |
* Activer le theme uniquement pour le themer (par adresse IP) | |
*/ |
package main | |
import ( | |
"encoding/json" | |
"errors" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net" |
I hereby claim:
To claim this, I am signing this object:
# Ignore docs files | |
styles/.sass-cache | |
styles/.sass-cache/* | |
To untrack a single file that has already been added/initialized to your repository, i.e., stop tracking the file but not delete it from your system use: git rm --cached filename | |
To untrack every file that is now in your .gitignore: | |
First commit any outstanding code changes, and then, run this command: |
package main | |
import ( | |
"./binding" | |
"fmt" | |
) | |
func main() { | |
binding.PrintHello() | |
binding.Seed(1) | |
fmt.Println(binding.Random()) |
Verifying that +knibals is my blockchain ID. https://onename.com/knibals |