Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | sudo bash -s
| C:\Users\theblang>npm install -g sha3 | |
| > [email protected] install C:\Users\theblang\AppData\Roaming\npm\node_modules\sha3 | |
| > node-gyp rebuild | |
| C:\Users\theblang\AppData\Roaming\npm\node_modules\sha3>if not defined npm_config_node_gyp (node "C:\Users\theblang\AppData\Roaming\npm\node_modules\npm\bin\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "" rebuild ) | |
| Traceback (most recent call last): | |
| File "C:\Users\theblang\AppData\Roaming\npm\node_modules\npm\node_modules\node-gyp\gyp\gyp_main.py", line 16, in <module> | |
| sys.exit(gyp.script_main()) |
| { | |
| "address_components": [ | |
| { | |
| "long_name": "Starkville", | |
| "short_name": "Starkville", | |
| "types": [ | |
| "locality", | |
| "political" | |
| ] | |
| }, |
| { | |
| "address_components": [ | |
| { | |
| "long_name": "College Station", | |
| "short_name": "College Station", | |
| "types": [ | |
| "locality", | |
| "political" | |
| ] | |
| }, |
| String token = Jwts.builder() | |
| .setExpiration(new Date()) | |
| .setSubject("Joe") | |
| .signWith(SignatureAlgorithm.HS512, MacProvider.generateKey()) | |
| .compact(); | |
| System.out.println(token); | |
| String[] pieces = token.split("\\."); |
| public class MyApplication extends Application { | |
| @Override | |
| public void onCreate() { | |
| super.onCreate(); | |
| Toast.makeText(getApplicationContext(), "Hello World", Toast.LENGTH_SHORT).show(); | |
| } | |
| } | |
| then in manifest |
| { | |
| "generators": { | |
| "modules": {} | |
| }, | |
| "hooks": { | |
| "grunt": false | |
| } | |
| } |
Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | sudo bash -s
| package edu.msstate.nsparc.mdes.fragments; | |
| import android.app.Activity; | |
| import android.app.ProgressDialog; | |
| import android.content.DialogInterface; | |
| import android.content.SharedPreferences; | |
| import android.os.AsyncTask; | |
| import android.os.Bundle; | |
| import android.preference.EditTextPreference; | |
| import android.preference.ListPreference; |
| module.exports.paths = { | |
| public: __dirname + '../public' | |
| }; |
| module.exports = function(grunt) { | |
| grunt.config.set('bower', { | |
| dev: { | |
| dest: '.tmp/public', | |
| js_dest: '.tmp/public/js', | |
| css_dest: '.tmp/public/styles' | |
| } | |
| }); | |
| grunt.loadNpmTasks('grunt-bower'); |