Thursday, December 30, 2010

Salton Waffle Maker Instructions

brute force effectiveness threshold =

Personally I love programming and although I've never been in a chair since I started programming computers have troubled me for making my pc run my creative ideas with the collaboration of a person (Jorge Ardila) met the schedule and with the help of a lot of creativity and a bit of reading I managed to do very interesting things within those things my undergraduate thesis (an application of Matlab for the study of conics), plus I joined the Project Euler is a very interesting challenge for those of us in the algorithm. The fact is that after years programming in my own way (sitting in front of the pc more than an idea without a language and a couple of books) the Euler project has taught me that it is better to start thinking about the idea and creativity not only exploit but the algorithm generated other ideas, in particular, last night to face the Euler Project Problem 25 I found a surprise. Resa Problem 25 (in summary):

The tenth second term in the Fibonacci series is the first to have three digits, and the question is which is the first term of the series that has 1000 digits.

As usual, with the clear objective I sat opposite to my super computer and I started thinking about how to achieve the goal, my first thought was to lay down one by one each term of the Fibonacci series and count how many digits each term has so that the program would end when you find the first term of 1000 digits, so I did, a few lines of code, a couple of tests and everything was ready, I started doing walking, I saw that it took too long but I stopped because I knew my other algorithms have been taken up to two hours to find the answer, but reached a point where my intuition more than my impatience led me to stop process, and go off to rest.

Today when I wake up first thing I did was sit back with my super friend and start breaking down what was happening, I began to test my algorithm gradually increasing the number of digits 100, 200, 300, 400 and started late, I stopped because I knew that the beginning of the delay was between 300 and 400, new test at 350 and nothing (demora. ..), then started increasing digit by digit from 300, 301, 302, ... 309 and all good but ... at 310, delay. Well, I decided to make the calculation of the term with 310 digits to pedal, then take the general form of the Fibonacci series and looked for calculating the first term with 310 digits, INF response, ie after the end with 309 digits, the sum is too large to be calculated, that means ups think of another way to tackle the problem.

then I started making a list of items from the number of digits and I found the feature that allowed me to determine my model. The thing is, determining the number of digits that must have a term specific Fibonnacci series can be determined that the first term to have one digit more than the previous 5 positions below this for example the term with 9 digits is at position 40 and 10-digit term is in position 45 However, each 5-digit increases only four positions, ie the term 14 is in position 64, after that term again adding 5 positions for each digit, but curiosity can be more easily seen in the table below


Position 28 131
# Digit Position # Digits
9 40 29 136
10 45 30 141
11 50 31 146
12 55 32 151
13 60 33 155
14 64 34 160
15 69 35 165
16 74 36 170
17 79 37 174
18 84 +5=42 +24=198
19 88 +5=47 +24=222
20 93 +4=51 +19=241
21 98 +10=61 +48=289
22 103 +4=65 +19=308
23 107 +14=79 +67=375
24 112 +28=107 +134=509
25 117 +28=135 +134=643
26 122
27 127

then I found some patterns that allow modeling the behavior of the Fibonacci series with respect to at least number of digits of each term, the model is: the first five digits are the previous positions twenty-four forward, but every fourteen digits, only four positions increases which leads us to create a model in which every 28 134 positions digit increases.

This was very easy to make a script which could find the first term to have more than 1000 digits (1003) and the first being close to a thousand digits but below a thousand (975), with this and the application logic of the model found it was easy and fast response.

CONCLUSION: Sometimes
worth thinking about the question on how to answer it.

esDebian

Tuesday, December 28, 2010

Prices List Amc Cookware

Matlab problems to solve large products

Solve Euler project has become a daily habit and more to discover that we advance in the list the problems get more and more interesting, however there are some really simple solution, the question is to give the best look to avoid a brute force algorithm that consumes too much processing time when not strictly necessary (although this type of algorithm is good to create them because they leave open the interesting code changes).

However, although he continued to solve problems, today I want to say something very interesting that met yesterday to attempt to resolve the problem 20 proposed to determine the sum of all digits of the 100!, Really easy to work and that using num2str function and its inverse str2num can build a string vector with the vectors and add all the entries in this vector, the error appeared to get the final result because it does not coincide with that calculated on my calculator (Texas Instruments Voyage 200).

After a rigorous treatment of the issue found that:

Texas Instruments Voyage 300 Net operating

50 * 49 * 48 * 47 * 46 * 45 * 44 * 43 * 42 * 41 * 40 * 58150627116341760000 39
is

Matlab R2008b (GNU / Linux Debian Squeeze)
the same operation results
58150627116341755904

and from 39, the factor of 100 change with respect to the results obtained in calculator as a pedal (manual check done).

Explanation?? I wish I had answers
.

esDebian

Sunday, December 26, 2010

Upper Lips Of Dog Swells. Causes?

Two hours of processing for a number

The problem or Collatz Conjecture, a problem proposed by the mathematician Lothar Collatz in 1937 and has not yet been shown, generates a series of whole numbers is always presumed that ends in one, approach says that if n is even the new term is n / 2, where 3n +1 is odd, so for example with the entire first 13, the series will

13 to 40 - 20 - 10 - 5 to 16 - 8 - 4 - 2 -1

The problem proposed in the draft to find the entire Euler indicates less than a million producing the longest Collatz chain, this implies in the script that I developed to calculate Collatz chain with all the integers less than 1000000 and determine each of those million channels, few elements have, so after just over two hours I dropped the response process, the longest string that is generated with an integer less than a million contains 525 items, the question concerned at what the original whole that generates that string, the answer can be found running the following script in matlab ;-)


clc;
clear all;
i = 2, j = 1;
k = input ('Enter the initial maximum value k =');
while k ~ = 1
n = k;
 c(1)=n;
    while n~=1
        if rem(n,2)~=0
            n=3*n+1;
        elseif rem(n,2)==0
            n=n/2;
        end
        c(i)=n; % Vector containing the full chain including the initial term if

n ~ = 1 i = i +1;% Indisa the terms of the chain

elseif n == 1 i = 2;
end end

m1 (j, 1) = c (1);% Vector of initial values \u200b\u200bof the chain
m2 (j, 1) = length (c);% Vector of the number of terms each string
M = [m1 m2];
clear c;
j = j +1, k = k-
1;

end disp (m1 (find (m2 == max (m2)), 1));


PDTA: This algorithm makes it equivalent to a brute force attack because it determines each of the chains Collatz The most practical way to resolve reduce running time Collatz function built into Matlab .

esDebian

Wednesday, December 22, 2010

Ontario Driver License Id Template

Project Euler Problem 14 Project Euler - Problem interesting !?!?!

So far, spend the time and moments with the coding to solve the issues raised by the Project Euler has been a task of immense satisfaction especially as outstanding challenges posed by new concepts of concern and knowledge, but some of these issues have some seem tasteless when asked to get out of step, it is even more offensive to be problematic as meaningless, example is the problem for its development 13 that more time is taken squalid enter 100 numbers of 50 digits each, which means add them all to know what the first ten digits of this result. I personally prefer

problems involving the generation script's to find results with special features such as the problem 12 in the calling discover the first triangular number is over five hundred divisors.

But anyway, the problems have already been written and there is no way I leave I generated script to solve the problem 12, this script should be improved to be more precise execution but as this achieves the goal. Find

% triangular numbers, including triangular numbers (in
% this case) has more than 501 divisors, to improve when you find the first
% the condition stops.
d = (1:1000000) 1:1000000

for n = T = n * (n +1) / 2;
p = find (rem (T, d) == 0);
if length (d (p))> = 501
disp (T);
; disp (length (d (p)));

end end


So far they are determined 12 of the 13 problems where I worked because the problem 11 asked to teach the computer to solve puzzles with 20x20 matrix, solve that problem will be sublime jejeje.

esDebian

Tuesday, December 21, 2010

When Will Costco Have 2010 Makeup Brush Sets

Al-Hakim-Demo (1998) and Shadow Sooul

Al-Hakim, made by Moopy Pro in the production and MC's Arthur (under the pseudonym El Puto Mazo), the sisters La Primera and La Nana, LNita and DieMeis (now known as Eleme One), gave us this great band in February 1998 showing that the rap of Cordoba would remain at the forefront after the dissolution of his group germ, the legendary 957 Kolt. The band performed in many concerts in the south of the country until LNita left the project and changed its name to 4x4. With such training, the band would continue to act until its dissolution in 2000 leaving a mini-cd recorded 6 song self-titled recorded in Superior Records. Today, Eleme One, located in Malaga, continues his work managing Pussy Clap Productions with 137 and Solitary Cio, where he has recently published and born and breeding work mixtape format where it appears among other collaborators El Puto Mazo.

01 - blow verbal
02 - We think
05 - Under the law
06 - Simple and direct
07 - Checkmate
08 - The flowers of Al-Hakim

Friday, December 17, 2010

Tranfering Music From Vuze To Itunes

presented Kioltape 2000 (2001)

The renowned producer and DJ Terrassa Giro er Nene, formerly known as Kiol, took his first steps as an MC in 1989 and later Permanent Vado group in 21 with Zenia (now known as Tremendo). In 2000 he began to emerge nationally in his role as producer to appear on the discs A2Velas, Dobleache and the second album of remixes of La Puta OPP. This wonderful film saw the light and was distributed in 2001 as a promotional gift by type stores nationwide next to the debut album by Payo Malo "With land in the pockets', released on the label and produced almost Avoid entirely by our protagonist. It showed a good example of scratch's own productions and Giro, Juan Pro and Pitch Control Pin is the voice that put a good selection of MC's from around the country as Ari, El Puto Coke, Kase.O, Double H and Great people.

01 - Payo Malo "The night (mixtape version)
02 - Great People" From one end to the 1998
03 - "A big issue Nomah
04 - Intro 1999
Arizona 05 - Arizona quiet and listen
06 - Double H" When the illusion does not sell
07 - Dilemma "You're not going to get
08 - Kiko G Without AKA - My early
09 - As many as two-way
flowed 10 - Pin is Pitch Control-The Adventures of ...
11 - Grand Village (+ Juan Pro) - We put in on!
12 - El Puto Coke "In 41 minutes
13 - Kase.O-Again improvising
14 - A2V (+ El Barbas) - Second time
15 - Marra
Funkarra-Genesis 16 - The Sixth People-Things are well
17 - John the Deep-The two pearls
18 - El Rubio (+ Juan Pro) - Funkinkis
Download

Tuesday, December 14, 2010

Scaricare F S F Pokemon

Solutions (Project Euler and others)

After a long absence Mauripides becomes active first trouble connecting to the internet (thank God and solved) and second a challenge to correctly interpret what the seventh issue of the Project Euler proposed the original question here

Find the greatest product of five consecutive digits in the number of 1000 digits
73167176531330624919225119674426574742355349194934
96983520312774506326239578318016984801869478851843
85861560789112949495459501737958331952853208805511
12540698747158523863050715693290963295227443043557
66896648950445244523161731856403098711121722383113
62229893423380308135336276614282806444486645238749
30358907296290491560440772390713810515859307960866
70172427121883998797908792274921901699720888093776
65727333001053367881220235421809751254540594752243
52584907711670556013604839586446706324415722155397
53697817977846174064955149290862569321978468622482
83972241375657056057490261407972968652414535100474
82166370484403199890008895243450658541227588666881
16427171479924442928230863465674813919123162824586

17866458359124566529476545682848912883142607690042 24219022671055626321111109370544217506941658960408 07198403850962455444362981230987879927244284909188


84580156166097919133875499200524063689912560717606 05886116467109405077541002256983155200055935729725 71636269561882670428252483600823257530420752963450

What many may become apparent to me took several days to understand, this is the correct interpretation

In 1000 the number of digits, select quintublas of adjacent digits and these quintuplets to find the largest product of five digits.

For after to achieve this performance (support included), to develop the algorithm that was resolved some just seconds

n = [7 3 1 6 7 1 7 6 5 3 1 3 3 0 6 2 4 9 1 9 2 2 5 1 1 9 ... 0];% Vector with the 1000 digit
i = 1, j = 5;
while j \u0026lt;= 1000

r (j) = prod (n ( i, j));% Creates a vector which stores all the products of consecutive digits quintublas
i = i +1, j = j +1; end
;
disp (max (r)),% print the maximum of consecutive digits quintublas

On the other hand, after resolving connection problems, go ahead and Culture Universe Alcuerno by RadioGNU and other Mauripides project, others are preparing for the book Notes from Trigonometry and Geometry Analytics will be released under creative commons license.

esDebian

Poptropica Counterfeint

E1MD-Recordings (1998)

LGS
The collective (The Thugs), formed by b-boys and graffiti writers from Madrid, Paracuellos del Jarama, La Alameda de Osuna, Barrio de la Concepción, La Elipa and Manuel Becerra in the mid-90, gave birth to the first bands of some of the most notable artists of the Madrid scene today as High Gambino, Latex Diamond, Truth or Zeki Sholo. E1MD (in 1 time) was a band created in 1997 by Kiba, who came from a short-lived formations called Narcotyk LHB and Crew with Mine (now Mitsuruggy) and Koma (High Gambino) after passing through 4 Insane with Seker (Latex Diamond), Zeki and Nano (grouped under the name of the entry Pidaras Glaxo and DJ Kaze, now known as Sholo Truth). This film contains some home recordings of the duo produced by Koma himself (except the track 05 produced by Kaze, who alternated his work in live DJ in the group) and showed the good form of its components years before the creation of The collective Traga'M (Latex Diamond, Sholo Truth, Kiba and Mitsuruggy) in 1999, the group LaCalle family (headed by High Gambino after his stay in London) and the current independent label Uglyworkz.

01 - No Way Out
02 - Thugs
03 - Always present
04 - Love of My Life (Intro)
05 - The love of my life
06 - Freestyle in
Rimadero Download

Sunday, December 5, 2010

Where To Buy Katydids




On Saturday December 4th Workshop Family Constellation had. A day called FAMILY. Was the workshop with which I close the group activities in 2010 and was a gift not only for the participants, but where we work.

Some of the most important ideas that I'm of work yesterday, I can be summarized as follows:

* The importance of agreeing and acknowledging what it is. When it is motivated by anger and resentment, we see what it is, the facts as they are, we engaged with the childish idea of \u200b\u200bwanting to change what we dislike, which do not accept and what hurts us.

* The best way to honor our beloved dead in embracing life with strength and nodding to their destinations and to ours with the same force. We do nothing if we do not accept this pain. That's when someone in our system, sees the pain for us, for example our children.

* The soul knows more than our thoughts and our minds. The soul knows what it needs, what hurts, what you need. So just think of what participants say and then leave it to the system that report what happens "in the truth." It is a wonder to be awed by the system.

* Sometimes we engage in to achieve a specific goal and not on the resources needed to achieve this or that goal. Yesterday work showed us how when we focus on potential and actual resources, my relationship with the target can be better, stronger and more accurate.

* Some conditions come to show us something. They are lessons. Sometimes, the real subject of the soul is not the disease itself, but how we handle it, so who is sick and who is at his side. Many times, trust, let go, do little or nothing, may be a better way to be, for all involved.

* There is little I can do for the prosperity of another. In any case I can take care of myself and look with love and honor the other's destiny. Everyone in their place.

* The system is so great, so wise and shows the truth that even decide to stop a job, the same issue could arise again to look at why we need to look. Just have to trust. Once I can look with love to my family, I am more available for my partner.

a day is difficult to summarize in a few lines ... because what happens in a workshop is always bigger than all that we are there and participate.
I can only thank my people, my teachers, this powerful force I moves from the soul to continue this work, each of the participants who will lovingly and delivered. Thanks a lot! Raiza Ramirez

Thursday, December 2, 2010

18 Year Old Nephew Birthday Wishes

Other problems already solved - Project Euler Palindromes

After finding the solution to the problem of palindromes, (which he think) the fifth was also very interesting problem to solve but comfortable, the most interesting of this problem is so such as palindromes, the generated script allows you to test the processing power of the machine, the fifth problem, my laptop took 28 minutes to throw a response as my desktop only took 8 minutes to get to devote only one of its four cores.

The problem is to find the smallest positive number that is divisible by all the natural range of 1 to 20, the answer is 232792560.

The script was generated to achieve the following

% Find the smallest number that is divisible by all the series and to n

% n = input ('Enter the number of splitters');% initial dividend
d = (1: n) % Vector of divisors
r = rem (n, d);% of the remaining vector
while any (r) == 1% if any of the remaining non-zero
n = n +1 ;% new dividing
r = rem (n, d);

end if r == 0% if all remnants are zero
disp (n);
disp (r);

end


After this problem appeared one that is very easy to fix. Find the difference between the sum of the squares of the first 100 natural and the square of the sum of the first 100 natural. 25164150 Response. For this problem is not necessary to generate any script, simply create a natural vector of one (1) to twenty (20) and use the SUM function.

N = (1:20)% generates a natural vector of 1 to 20
d = sum (N ^ 2) - (sum (N)) ^ 2


and that's it. The next problem is also very simple to solve. Ask to meet the prime number 10001, that by using the primes is in a couple of seconds.

I still addressing the problems of the Euler Project, I pair the eighth problem.
esDebian

Thursday, November 25, 2010

Neuschwanstein Ho Scale

generated by the product of three-digit numbers

The fourth problem with the Euler project aims to find the largest palindrome generated by the product of three-digit numbers, a task which by inspection can be determined as something not easily done with pencil and paper by the product of three-digit numbers are generated 988200 results. Work to build the script to calculate all these results, select from there the 628 palindromes and find among these the largest, was not something a few minutes more, but not working on this problem a few days ago, I can say which were approximately 12 hours the whole I build this script that about 5 minutes (on my laptop) 906609 response yields the largest palindrome generated by the product of two three-digit numbers.

for i = 100:999% creates a square matrix P (ixn) with products of all figures x values \u200b\u200bfor n = 100:999

P (i, n) = i * n;

end
end for j = 1: length (P)% P Because finding a square matrix makes the matrix size
for q = 1: length (P)
if P (j, q) ~ = 0% does not start in 1 there are few zeros in P, are discarded
k = num2str (P (j, q)),% Convert each entry of P in a string
seqreverse if k == (k)% P compares each entry with your writing upside
% disp ( str2num (k)),% activate if you want to see a list of all palindromes
M (q ^ 2) = str2num (k);
Pm = max (M);
;

end end end


end disp (Pm)


esDebian

Sunday, November 21, 2010

Parent Teacher Conference Jokes

Third Project Euler problem - Solved! Second problem

The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143?

To achieve this response was sufficient to read the code function factor () in Matlab, Matlab fortunately is not as exclusive as to study their code and even modify it, maybe (most secure) has not "permission" to do such a thing, but doing a little reading of the code of this function of Matlab could not be used directly because it only solves the decomposition of numbers up to 2 ^ 32, I wrote this little script which I found solution to Project Euler Problem 3.

n = input ('Enter the value to decompose into prime factors')
if n \u0026lt;0

error ('n must be a non-negative integer') end

primes p = (sqrt (n )),% find many prime numbers as the square root of u = find (rem (n, p) == 0);% compare the contents of the vector p with the divisors of n and selects those with remaining 0
disp (p (d))% show the prime factors of n

One way to verify that this was correct was to use the fundamental theorem of arithmetic TFA: "Every integer n> 1, or is prime, or can be factored as a product of primes. This product is unique except for the order of the factors. "

This still learning and continuing progress in the Project Euler list.

esDebian

Saturday, November 20, 2010

Pro Ana Sayings Pro Ana?! =)?

Euler Project - "Resolved" PROJECT EULER

The second problem took a little more work, and taking into account at least in Latin America the majority of those enrolled have not passed the second, okay it has already resolved.

The problem is to code a script to take all pairs terms no greater than 4000000, in Fibonacci series and add, then the code site which resolved that question.

clc;
f (1) = 1, f (2) = 1, RTA = 0;
n = input ('Enter the number of elements to calculate the Fibonacci series');
disp (f (1) ) disp (f (2));
for i = 3: n
f (i) = f (i-1) + f (i-2);
if f (i) \u0026lt;4000000 & & rem (f (i), 2) == 0% sum all terms no more than 4,000,000 pairs

; RTA = RTA + f (i);

end disp (f (i))% displays the items in the series end disp ('sum of the series') end

disp ('The sum of pair terms is not greater than 4000000')
disp (RTA)% shows the result of the sum


esDebian

Tuesday, November 16, 2010

What Happens To Kates Playground



discovered a few minutes ago arg reading that there is a collection of 310 (increasing) problems for math lovers of programming (in any language), called Project Euler. This is an excellent opportunity for those worried about the schedule you have as a main way of life mathematics.

stamp in honor of Leonard Euler.


Leonard Euler was a Swiss mathematician who lived between 1707 and 1783, known as golden or Cyclops Cyclops mathematician, left vast contributions to mathematics, especially the number and discovered, much progress made in graph theory, mathematical analysis, the notation mathematical language as well as in areas such as mechanics and optics.

The first problem that appears in the Euler project proposes:

If you have a list of all natural numbers below 10 that are multiples of 3 or 5 have 3, 5, 6 and 9. The sum of these multiples is 23.

Find the sum of all multiples of 3 or 5 below 1000.


A solution made to run in Matlab (Scilab)

M = 0;% starts at zero accumulated
L = input ('Enter the limit of the search for multiples of 3 and 5:');
for i = 1: L,% Start the loop 1 to the limit
if rem (i, 3) == 0 mathematics.






Saturday, November 6, 2010

Red Scorpion Six Wsk Knife

attack on freedom! Recta de Euler

recently, doing something you really do not usually do, check the copyright statement of my books, I found something that I consider a serious attack on freedom.

A Calculus book (which I will not mention for obvious reasons) is imprinted on the page dedicated to the publisher and authors, and a pride logo editorial in the lower left corner, a phrase, the last page, which is really alarming, as well known is that the books are protected by international laws of copyright misnamed, but until I knew where it lay in the unauthorized copying by any means, however, my surprise came when I read what follows verbatim quote: esDebian "



words, now I have no right even to lend my book, a book for which I paid my money and I can not even lend not authorized to give me my book, really ridiculous, but still alarming because there are still people who do not understand that all they get laws restricting knowledge is becoming more raw and vulnerable.
hope generated opinions.
I took a picture of the page that says the quoted text in the image does not compress or persons undertake, but it is clear that it is taken from the book, if someone could help reveal whether there would be no problem to indicate that book publishing is and that would go full images of the paste of this material.



Tuesday, November 2, 2010

Shrimp Diablo Pasta Recipe

Learning Day Workshop Family Constellation - FAMILY - December 2010


To close the year 2010 in Family, wherever you are-

To begin to celebrate Christmas with your family, wherever you are-

To learn to look at your family , the one you have.

For a little peace.

To learn to nod and look through the eyes of the soul.

To see your great love for your family.

deciding.

To make your way and take charge of your destiny. We will meet


Saturday 4 December to work together. Systemic exercises work for all attendees and the questions take the case of family constellations.







DATA Time:
Saturday December 4, 2010, 9 am to 4 pm

Price:
Bs F.
300 includes certificate of attendance, materials and refreshments.

Held
Book Bank, Altamira, Caracas.

For information and reserve your quota:
Call the following numbers: 414-2841097 / 412-9631191 or write an email to raizaramirez@gmail.com or a direct message through FB.



Facilitator:
Raiza Ramírez. Family Gestalt psychotherapist and constellations. Web
: http://gestaltvenezuela.blogspot.com






Thursday, October 21, 2010

Romantic Expressions In Hebrew




The Euler line is the line orthocenter containing the centroid and the circumcenter of a triangle, is named in honor of the Swiss mathematician Leonard Euler esDebian. Preliminary definitions Medium:
are the lines through the vertices of the triangle and the midpoint of the respective opposite each vertex, the three medians coincide at a point called the centroid
. The centroid has the property that its distance from the vertex is twice the distance to the opposite side. Mediatrices:
are lines perpendicular to the sides of the triangle passing through the respective midpoint on each side, the bisectors coincide in circumcenter, the circumcenter is the center of the circumcircle in the triangle, circle whose radius distance from the circumcenter to a vertex.
Heights:
are lines perpendicular to each side of the triangle or the extension and pass through the correspondingly opposite corner. Agree Heights orthocenter point may be located inside the triangle if it is an acute triangle, in the case of a right triangle corresponds to one of the corners and outside the triangle if it is obtuse. Below is a construction of the Euler line made in GeoGebra.

View
Construction


Tuesday, October 19, 2010

What Can I Do With An Ms In Finance?

2010 Free Software


esDebian Bolivar Desnudo - raised concerns remain in many areas, important initiatives that can be hoped, will provide fruit in favor of free knowledge.
Pereira Pereira were performed in the Free Software 2010, an event bringing together "all?" the user community of Software Libre de Colombia, shook ties with friends who are very willing to be a vital support for initiatives under way in Duitama Free Software, achievable goals were laid out within a year, at the tables work, such as dialogue with political bodies home town to find the formulation of a decree of Free Software and is similar to the district capital, and the inclusion of an area of \u200b\u200bpublic outreach events in Free Software that already exist, this order the creation of a national forum of technology policy against free software.




Sonia Liliana, Fausto Mauricio (Mauripides) and Farid
Foundation Casa del Bosque

Kronos and Mauripides

Wednesday, October 13, 2010

What Kind Of Hair Does Myam

Chile, the miners and their moods


Chile, its miners and their moods
from the look Ontological

always
we are in a mood. We have and we will possess them. Our movements of life are related to these moods.

Under Ontological Coaching, our actions are moved to the state of mind in which we live. They further note that not choose, we are simply there.

And although we did not choose or control our moods, we can-under the gaze of Coaching-go editing them with our actions and finding a chance to do otherwise.

Ontological Coaching speaks of four state mood: resentment, resignation, peace and ambition.

What the difference? What sets them apart? How do I know what I am?

There are two variables that mark these states: the factual and what is possible, on one hand, and acceptance and rejection, on the other. Detail what is seen in the image.
factual
What concerns these facts I can not change.

The possibility refers to those actions that I can do.

And then, as human beings can move in this space to accept or reject, both the facts and possibilities.

to know and from the look of Ontological Coaching, I am in Resentment , when rejecting the factual. That is, when I do not accept what is happening and I can not change.

I am in PAZ, when he accepted the factual. This happens when I fight with what is happening and I can not change.

'm in RESIGNATION when possible rejection. When I can not accept or look at the possibilities that exist and could be around me.

And I move from the Ambition accept when possible. When I take the chance in my hands and from there actions and I move.

The case of Chile and Mining




Seeing the case of Chile the 33 miners who spent 69 days trapped in the mine of San Jose and they were rescued one by one, in a joint effort, I thought this quadrant of moods. I figured that both the protagonists of this story, as his family and authorities to the case, surely have gone through these feelings during the duration history.

The August 5, 2010, as indicated by reports from the media, 33 miners were trapped in their workplace after a collapse. At first, neither they nor family members nor the authorities know if the bailout could be so successful. Outside, they did not know if the miners were alive or not.

What could be the mood of the time? Perhaps the Resentment . To reject or not accept a factual impossible to change fact. How to modify the mine collapse? How do I change the fact that these 33 men were trapped 700 meters underground?

But What if I stay installed on Resentment? What if I stopped in not accepting what can not be changed? From this mood is hard to trigger actions that can make them feel better. If I install hopelessness can start there, in the case of Chile, both for those who were confined to those who were outside, relatives and authorities.




The first Chilean government's message was "We will do everything humanly possible to rescue the survivors." What mood can be found behind this phrase? AMBITION .

one hand, indicates that Chilean President will "humanly possible" from the language it speaks of power from the possibility, from what can be. And second, refers to "rescue the survivors." This may be a hint of PEACE (between the lines) because at the time of issuing this message, still did not know in what state of health and if the miners were alive everyone. In La Paz we accept that I can not change, for example, could have been the fact that some of the workers were injured or one had died in the collapse.

The Resignation could be present in a subdued, when on 12 August (one week after the accident), the Minister of Mines says that there is little chance of finding the miners alive. Despite the possibilities (different forms of rescue), the actions could have been paralyzed by the lack of news of the 33 men trapped underground.
However, AMBITION appears to be installed from the time when authorities received a written message that said "We're fine, 33, in the shelter. " Ambition both for the miners, and for the relatives and the authorities in charge of the case.

From that time until the October 12, 2010, late at night when the Phoenix 2 began to fall to rescue the 33 miners most famous and popular of the moment, would AMBITION mood that allowed everyone involved to move resources, power and generate movements that ended in a full day of excitement, tears, hugs and success.

AMBITION That translates into action and see the possibilities around them to achieve a goal or a goal.

To be in the AMBITION, I need to look at these possibilities, see what can be done yes, and even search for other eyes to help me look (as did the Chilean government to seek help other countries like Switzerland and the United States).

To be on the AMBITION need a goal, in this case was very clear: to rescue the 33 miners, bringing them back to earth.

And this same state of mind was what had to be present in the miners inside the shelter where they were. The AMBITION is the of mind that allowed them to stay healthy, active, moving despite the small space. This same state of mind helped to organize, have a routine and take advantage of potential resources and their own resources. Organized three groups, placed them names, were leaders. Each man was recognized for its qualities (one of the miners was nicknamed "the doctor" because he knew more about first aid, for example)

Whenever I saw out the Phoenix 2 and a new mining appeared healthy and full of emotion, hugging their relatives and the authorities to wait at all during the nearly 24-hour-long rescue, thinking that word and how powerful it may be: AMBITION. And I said, this is the mood that mobilized the entire country in order to achieve this feat. It is this mood which could move those involved in the case for action from the possibilities and reach the goal.



When he arrived the night of 13 October and the President of Chile thanked everyone and said it was the time for rest, closed this chapter in Chilean history. And I think there is a great lesson in it.

Latest questions you should ask in this paper are rather thoughtful: What mood are you? "What can you identify? Would you be there? Where do you want to move? What do you gain and what you lose if you stay in the state where you are? The time is NOW. And sure you can.


Author of text: Raiza Ramírez
Gestalt Psychotherapist and Family Constellation Therapist
Currently studying Training Coaching in indels, Venezuela.

Sunday, October 3, 2010

Televid Apo 77 F Stop

How the Coaching?

In the past month of July 2010 I started training in Ontological Coaching.
is a new chapter of learning. And one way to add tools to my job.
I leave you a video I found that explains very clearly how Coaching works! I hope you enjoy it. Raiza