Skip to content

Instantly share code, notes, and snippets.

View emurillo510's full-sized avatar

Elton Murillo emurillo510

View GitHub Profile
@emurillo510
emurillo510 / gist:1ff737eda5aeacf793990648b82c773b
Created January 30, 2018 05:20
Trying to get HTTPoison running
defmodule ElixirBart.MixProject do
use Mix.Project
def project do
[
app: :elixir_bart,
version: "0.1.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps()
import Ember from 'ember';
export default Ember.Component.extend({
didInsertElement(){
},
actions: {
changeData(){
this.set('data', 'sadfasfdasfa');
}
import Ember from 'ember';
export default Ember.Component.extend({
firstName:"Elton",
actions: {
getData(fromChild){
alert('i got it' + fromChild);
}
}
});
public class HelloWorld{
public static void main(String[]args){
System.out.println();
}
}