Leaving Again

Started by Tirea Aean, August 22, 2011, 09:26:31 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Eana Tanhì


Dreams die first because people give them up so easily...

archaic

Pasha, an Avatar story, my most recent fanfic, Avatar related, now complete.

The Dragon Affair my last fanfic, non Avatar related.

Txantslusam Skxawng

WirelessTsaheylu=Bluetooth
Inventor of the word NARF


Swoka Ikran

You'll be missed while you're at college :( School does come first though.

Any idea about vCLI and NRD updates?
2010 was the year of the Na'vi.Vivar 'ivong Na'vi!


 
Avatray | NWOTD Sigbars | Sacred's Sigbar Tool | My collection of Avatar merchandise

Tirea Aean

Quote from: Swoka Ikran on August 24, 2011, 06:29:51 PM
You'll be missed while you're at college :( School does come first though.

Any idea about vCLI and NRD updates?

I will be worknig on vCLI. I'm not sure what NRD refers to

Swoka Ikran

Quote from: Tirea Aean on August 24, 2011, 09:09:05 PM
Quote from: Swoka Ikran on August 24, 2011, 06:29:51 PM
You'll be missed while you're at college :( School does come first though.

Any idea about vCLI and NRD updates?

I will be worknig on vCLI. I'm not sure what NRD refers to
Na'viRhymeDict...probably not that important since its maintenance is pretty straight forward.
2010 was the year of the Na'vi.Vivar 'ivong Na'vi!


 
Avatray | NWOTD Sigbars | Sacred's Sigbar Tool | My collection of Avatar merchandise

Tirea Aean

#26
Quote from: Swoka Ikran on August 25, 2011, 04:27:25 PM
Quote from: Tirea Aean on August 24, 2011, 09:09:05 PM
Quote from: Swoka Ikran on August 24, 2011, 06:29:51 PM
You'll be missed while you're at college :( School does come first though.

Any idea about vCLI and NRD updates?

I will be worknig on vCLI. I'm not sure what NRD refers to
Na'viRhymeDict...probably not that important since its maintenance is pretty straight forward.

it will remain updated. it's actually part of my process to keep vCLI updated. (which all that is is just some really quick work with wget, MySQL, and a bash script)

Swoka Ikran

Quote from: Tirea Aean on August 25, 2011, 04:33:39 PM
it will remain updated. it's actually part of my process to keep vCLI updated. (which all that is is just some really quick work with wget, MySQL, and a bash script)
Curious what the MySQL is for...I thought the dictionary data came as a flat file. Is it offered as an SQL dump?
2010 was the year of the Na'vi.Vivar 'ivong Na'vi!


 
Avatray | NWOTD Sigbars | Sacred's Sigbar Tool | My collection of Avatar merchandise

Tirea Aean

#28
Quote from: Swoka Ikran on August 25, 2011, 04:56:53 PM
Quote from: Tirea Aean on August 25, 2011, 04:33:39 PM
it will remain updated. it's actually part of my process to keep vCLI updated. (which all that is is just some really quick work with wget, MySQL, and a bash script)
Curious what the MySQL is for...I thought the dictionary data came as a flat file. Is it offered as an SQL dump?


The PDFs are actually generated in LaTeX via the database. it's all Eana Eltu. Surely you've heard of that. it's our database. there is a .sql dump. basically my process is:

delete my copy of the database;
wget the current version from the LearnNavi server;
create a new database on my machine by importing the .sql;
dump the tables as .txt to /tmp;
dump certain columns as .txt to /tmp;
scp all that stuff to tirea.skxawng.lu/source;
create a new version of the NaviRhymeDict.html;
scp that;
update dictversion.txt;
scp that;
manually udpate RSS feed;
update vrrtepcli on my machine

I think I didn't miss anything.

essentially, I'm doing all this MySQL stuff behind the scenes and pushing out  the updates manually so that the user is not required to need mySQL installed or know what it is/how to use it in order to use the app. I chose to make it read .txt files (which are dumped off the database by me)

Swoka Ikran

Quote from: Tirea Aean on August 25, 2011, 05:15:15 PM
Quote from: Swoka Ikran on August 25, 2011, 04:56:53 PM
Quote from: Tirea Aean on August 25, 2011, 04:33:39 PM
it will remain updated. it's actually part of my process to keep vCLI updated. (which all that is is just some really quick work with wget, MySQL, and a bash script)
Curious what the MySQL is for...I thought the dictionary data came as a flat file. Is it offered as an SQL dump?


The PDFs are actually generated in LaTeX via the database. it's all Eana Eltu. Surely you've heard of that. it's our database. there is a .sql dump. basically my process is:

delete my copy of the database;
wget the current version from the LearnNavi server;
create a new database on my machine by importing the .sql;
dump the tables as .txt to /tmp;
dump certain columns as .txt to /tmp;
scp all that stuff to tirea.skxawng.lu/source;
create a new version of the NaviRhymeDict.html;
scp that;
update dictversion.txt;
scp that;
manually udpate RSS feed;
update vrrtepcli on my machine

I think I didn't miss anything.

essentially, I'm doing all this MySQL stuff behind the scenes and pushing out  the updates manually so that the user is not required to need mySQL installed or know what it is/how to use it in order to use the app. I chose to make it read .txt files (which are dumped off the database by me)
Sounds like another app of mine. My script downloaded a database containing tables with everything from source code to changelogs, then retrieved source from DB, built it, compiled an installer, FTP'd the final EXE, then dropped the tables containing the source. The rest of the DB was then used by PHP to produce updated HTML for a website that showed changes, version, etc.

I never knew EE's DB was downloadable...I was thinking about making a vCLI->SQL converter so I had a DB. I'm considering messing with an infix engine for the new vCLI stuff in PHP since it's one of my primary languages. Now I just got to go find that DB dump...
2010 was the year of the Na'vi.Vivar 'ivong Na'vi!


 
Avatray | NWOTD Sigbars | Sacred's Sigbar Tool | My collection of Avatar merchandise

Tirea Aean

Quote from: Swoka Ikran on August 25, 2011, 05:33:44 PM
Quote from: Tirea Aean on August 25, 2011, 05:15:15 PM
Quote from: Swoka Ikran on August 25, 2011, 04:56:53 PM
Quote from: Tirea Aean on August 25, 2011, 04:33:39 PM
it will remain updated. it's actually part of my process to keep vCLI updated. (which all that is is just some really quick work with wget, MySQL, and a bash script)
Curious what the MySQL is for...I thought the dictionary data came as a flat file. Is it offered as an SQL dump?


The PDFs are actually generated in LaTeX via the database. it's all Eana Eltu. Surely you've heard of that. it's our database. there is a .sql dump. basically my process is:

delete my copy of the database;
wget the current version from the LearnNavi server;
create a new database on my machine by importing the .sql;
dump the tables as .txt to /tmp;
dump certain columns as .txt to /tmp;
scp all that stuff to tirea.skxawng.lu/source;
create a new version of the NaviRhymeDict.html;
scp that;
update dictversion.txt;
scp that;
manually udpate RSS feed;
update vrrtepcli on my machine

I think I didn't miss anything.

essentially, I'm doing all this MySQL stuff behind the scenes and pushing out  the updates manually so that the user is not required to need mySQL installed or know what it is/how to use it in order to use the app. I chose to make it read .txt files (which are dumped off the database by me)
Sounds like another app of mine. My script downloaded a database containing tables with everything from source code to changelogs, then retrieved source from DB, built it, compiled an installer, FTP'd the final EXE, then dropped the tables containing the source. The rest of the DB was then used by PHP to produce updated HTML for a website that showed changes, version, etc.

I never knew EE's DB was downloadable...I was thinking about making a vCLI->SQL converter so I had a DB. I'm considering messing with an infix engine for the new vCLI stuff in PHP since it's one of my primary languages. Now I just got to go find that DB dump...


PM out.

Human No More

:'(

Well, good luck with what you're doing.
"I can barely remember my old life. I don't know who I am any more."

HNM, not 'Human' :)

Na'vi tattoo:
1 | 2 (finished) | 3
ToS: Human No More
dA
Personal site coming soon(ish

"God was invented to explain mystery. God is always invented to explain those things that you do not understand."
- Richard P. Feynman

Yayo

Indeed! We eagerly await your return.


Yayo on facebook
Skxaypxe: callofdoty95

Tirea Aean


Ftiafpi

Quote from: Tirea Aean on August 27, 2011, 08:09:27 AM
yall are the best.

Eh, who's this Tirea Aean guy? Oh well, never heard of him, don't care.

....:P :P  ;D

Take your time, we'll be here when you get back.

Toast

Quote from: Ftiafpi on August 27, 2011, 01:15:50 PM
Quote from: Tirea Aean on August 27, 2011, 08:09:27 AM
yall are the best.

Eh, who's this Tirea Aean guy? Oh well, never heard of him, don't care.

....:P :P  ;D

Take your time, we'll be here when you get back.

I'm not sure. But it looks like many will miss him. even me ;D

YOU CANNOT KILL ME!

Seze Mune

Oe mllte.  Tirea, send the occasional message just to let us know you're still embodied. :D  Oh, and ne kllte when Irene comes dancing through your neighborhood!

Tirea Aean

Quote from: Seze Mune on August 27, 2011, 03:52:53 PM
Oe mllte.  Tirea, send the occasional message just to let us know you're still embodied. :D  Oh, and ne kllte when Irene comes dancing through your neighborhood!

its rainin pretty dang hard and its windy... nothin devastating tho...I will not post but if any of you be curious or need/wanna reach me, mail me. [email protected] Ill be around, but hopefully involved in my computer science studies at uni. ;)

Txonä Unil Stä'nìyu Rolyusì





AvatarMeet was fantastic. Thanks to all who attended :D

Avatar Nation Karyu :D

Na'vi Kintrrä #70° :D

Keyeyluke ke tsun livu kea tìnusume

Oeri Uniltìrantokxìl txe'lanit nì'aw takeiuk nì'ul txa' fralo

Fpìl na Na'vi. Plltxe na Na'vi. Tìran na Na'vi. Kame na Na'vi

Seze Mune