Skip to content →

flowingmotion Posts

Build your first SQLITE3 database in Windows in less than 1 hour

Here are some quick & dirty notes on getting SQLITE3 up-and-running on a Windows machine in less than an hour.

#1 Decide where to store SQLITE3 and where you will work

  • I decided to keep a copy of SQLITE3 in a sub-directory of my c:tools directory where I have stored other tools
  • I also decided to put a copy in the directory where I will keep the database. Being able to access SQLITE3 from the data directory saves me some typing later.
  • My data directory is what is sometimes called my desktop.  It is the Windows default setting.  To see the full “path” in Windows, click at the top of the screen where your browser bar usualy is.  C>USER> ….etc turns into the path looking like this C:USERUSERNAMEDocuments…  We’ll cut and paste this path later.

#2  Download SQLITE3

  • The Window binaries for SQLITE3 are here.
  • Download the command shell only.
  • Copy the zip file into both directories: c:toolssqlite and the data directory c:userusernamedocuments… [wherever you will be keeping your database]

#3 Prepare a little file to structure your database

  • As an example copy and paste this code into Wordpad
  • Save the file as “creategobble.sql”
  • Make sure it goes into the directory where you will be working (see above)
  • This file is going to make four tables in the new database.

#4 Go to your command prompt

  • Go to Start and type in “command prompt”.  You should see it come up top right
  • Select Command Prompt
  • Go back briefly to the directory holding your data and copy the path at the top (click on the >Libraries etc and the path will come up C:Users…etc
  • Go back to the Command Prompt and type in cd (for change directory) followed by the path (right click and paste).  Return
  • You will see that you are now working in your data directory

#5 Set up your database

  • Type in “sqlite3 gobble” (gobble is the name of our database)
  • You will see the sqlite come up
  • Type in this line: .read creategobble.sql <return>
  • Hey presto you have a made the little database

#6 Now get some data

  • Open Excel and label four sheets, one for each table : Person, Frequents, Eats, Serves
  • Add data to each table.  Either cut and past the information below, or open this teaching file from Stanford and cut and paste their data.

Person

1 Amy 16 female

2 Bert 20 male

3 Charles 22 male

Frequents

1 Amy PizzaHut

2 Bert Dominos

3 Charles PizzaHut

Eats

1 Amy mushroom

2 Amy cheese

3 Bert cheese

4 Bert seafood

5 Charles cheese

Serves

1 PizzaHut cheese 7.75

2 Dominos cheese 9.75

3 PizzaHut mushroom 8

4 Dominos seafood 11

  • Save each sheet as separate .csv file called persontable.csv, eatstable.csv, etc.

#7 Load your data into your table

  • Go back to your command prompt
  • If you have closed it, then check you are in the right directory.  If not look at #4.
  • Re-open your database “sqlite3 gobble”
  • Tell Sqlite3 that you are uploading .csv files.  Type in “.mode csv” <return>
  • Upload all four files one-by-one: .import persontable.csv person <enter>

#8 Prove to yourself that your data is in the database

  • Type “select * from person;” <return>
  • You should see your data.

There you are. You have made your first database in SQLITE3 and you are ready to play around with it and learn more commands.

CHECK OUT SIMILAR POSTS

Leave a Comment

3 steps to download xmllint

Xmllint is an XML validator. What does that mean?

XML are the codes, or tags, we put around data so we can send it easily from computer to computer.  xmllint audits my tags for errors.

There are three steps to download xmllint onto a Windows machine.

We will get the code from XMLsoft. Looking carefully on their home page, we see that Ivor Zlatkovic has precompiled what we need for Windows.  I didn’t get mine downloaded correctly first time.  So I have prepared an outline to read before we read the more technical notes from Ivor.

Step 1.   Decide where you are going to store your xmllint files

  • I followed Ivor’s suggestion and created a directory in my C: folder called tools.
  • And then I created a sub-directory in C:tools called libxml
  • The complete name of this sub-directory is C:toolslibxml

Step 2.  Download the software for xmllint to run and put it in C:toolslibxml

  • In addition to Ivor’s page at XML soft, these instructions are also worth reading.
  • Basically, you will download 4 zip files (not 3 as the second set of instructions says).  This involves 4 steps.
  • Step One.  Look where Ivor lists the files for the latest win32 versions of libxml2, libxslt, iconv and zlib.
  • Step Two.  Download all four zipfiles. They will go to your default download folder.
  • Step Three.  Open all four zipfiles and look for their bin directory.  In Windows 7, the zipfiles open without using winzip.
  • Step Four.  One-by-one, copy the files in each of the four bin directories into the folder you made earlier: C:toolslibxml

Step 3: Zdjust your Path statement so that if you can work keep this folder neat and work on XML files elsewhere.

  • Basically, you have three steps
  • Step A.  Find your Path statement.
  • Step B.  Edit your Path statement by adding “;C:toolslibxml”
  • Step C.  Save! And Restart your machine.

Instructions for finding your Path Statement.

Check everything is working.

  • Go to your Command Prompt (Go to Start and type in Command Prompt; Look at the top)
  • Type in “xmllint” <return>
  • A whole heap of information about xmllint should scroll down.

Now you can use xmllint to validate XML.

CHECK OUT SIMILAR POSTS

19 Comments

4 reasons why business students should understand XML

I found that Bill Gates gives the simplest explanation of why we should at least have an intuitive understanding of XML.

First a reminder of how the internet and world wide web works

1. The internet is made of networks of networks of computers and computer-like devices like our smart phones.
2. We often (though not always) access information on a computer through webpage on a website.
3. A web page is laid out using HTML. For example, my headings on this page have tags (code) around them that looks like this “<h3>my heading</h3>”.

4. There are two more things we should know about this code. First, the code is not visible to us unless we ask to see it.
5. Second, we put the definition of, that is the size, the colour and the font in another set of code called CSS. The CSS might be at the top or bottom of the web page but is probably in another file.  To link up our webpage to that code, we simply put a line of code (invisible unless we ask to see it) telling the webpage where to find the CSS file and what it is called.

And now to why we need XML

If we only intend people to read a web page, then we only need to lay out our page with HTML (to make it look nice) and have a separate CSS (style) file which defines headings and other formats, like fonts, consistently.
But we often want people to use our data as well.

Example of when we want to tag our data with XML

For example, an airline wants me to read its page (so it should look nice and be consistent).
It also wants travel agents to pick up information about its flights and prices and put up-to-date relevant information into their websites.
XML is used to label the data itself (in addition to labelling is style using HTML tags). So the airlines will tag a departure time as , for example. They will tag an airport name as , perhaps.
By tagging the data, another computer knows immediately that some numbers are a departure time or a name is the name of an airport.

Business people need to understand XML

As Bill Gates puts it, “XML ‘unlocks’ data so that it can be organized, programmed and edited”.
Business managers need to understand XML because the need to understand
1. What data is shared in their industry and what the advantages are of doing so
2. How their data can be structured consistently so computers can work with it
3. Where and how XML tags are added so they can plan workflows and maintain systems efficiently
4. How to check and audit XML (unless they want to be taken to the cleaners)

 
In a later post, I’ll make a simple example of working XML so that you can see what you should be looking out for.

CHECK OUT SIMILAR POSTS

Leave a Comment

Testing my theme

Links break when you move your site from WAMP to your hosting service?

The solution is to set up a parallel Virtual Host on WAMP so that http://mysite.localhost redirects to the default http://localhost/mysite (where mysite is the name of your site).

3 steps to set up a Virtual Host and solve those broken links when you move from WAMP to your hosting service

#1  Get oriented

  • You will only able to see your WAMP based site in your browser after you have turn on your WAMPSERVER by going to Start/All Programs.
  • Look where your files are stored by going into Windows Explorer or My Computer.
    • Look at your C://wamp/ folder
      • You will see c://wamp/www where you store all your websites (right?)
      • And c://wamp/bin/apache/conf/ folder where you see a file called httpd.conf
Leave a Comment

Stop links breaking when you move your site from WAMP to your hosting service

Links break when you move your site from WAMP to your hosting service?

The solution is to set up a parallel Virtual Host on WAMP so that http://mysite.localhost redirects to the default http://localhost/mysite (where mysite is the name of your site).

Three steps to set up a Virtual Host and solve those broken links when you move from WAMP to your hosting service

#1  Get oriented

  • You will only able to see your WAMP based site in your browser after you have turn on your WAMPSERVER by going to Start/All Programs.
  • Look where your files are stored by going into Windows Explorer or My Computer.
  • Look at your C://wamp/ folder
  • You will see c://wamp/www where you store all your websites (right?)
  • And c://wamp/bin/apache/conf/ folder where you see a file called httpd.conf
  • Look at your C://Windows/ folder
  • Track to c://windows/system32/drivers/etc folder where you see a file called hosts
  • Inside the httpd.conf folder, we will list Virtual Server for each (and every) site that we are developing on WAMP for later export to a hosting service
  • That means you should edit this file every time you start work on a new website and clean it this file when you finish work on a website and remove it from your laptop.
  • Inside the hosts file, we are going to tell Windows (as distinct from WAMP) that when it sees a reference to mysite.localhost, it should redirect/loopback to 127.0.0.1 which is the IP address of your computer (and mine when I am working on mine.)
  • Windows 7 will stop you editing this file and we must work around that restriction.
  • Of course, you must do this for every site you are working on and remember to clean off what you no longer need at the end of a job.

#2  Set up your Virtual Server

  • Go to the httpd.conf file and open it in a text editor (Notepad or Wordpad)
  • Look for the line that reads: Servername localhost :80
  • Add the following text below this line.  Substitute your sitename for mysitename and remember to duplicate the last four lines for each website that you are working on

 NameVirtualHost *:80

<VirtualHost *:80>
DocumentRoot “c:/wamp/www/”
ServerName localhost
</VirtualHost>

<VirtualHost *:80>
DocumentRoot “c:/wamp/www/mysitename”
ServerName mysitename.localhost
ServerAlias mysitename
</VirtualHost>

  • Save as httpd.conf (don’t forget the extension)

#3 Tell Windows to redirect from mysitename.localhost to 127.0.0.1

  • Windows 7 will discourage you from editing the hosts file.  This is your workaround.
  • Go to Start and type in Notepad
  • Right click Notepad and open as Administrator.
  • Track to the hosts file (see #1) and open the file.  You may have to change the setting from Textfiles to All Files.
  • Look at the last line. It probably reads 127.0.0.1 localhost.
  • Add another line reading 127.0.0.1 mysitename.localhost
  • Close and save

Check you are redirecting your site successfully

  • Confirm nothing is broken
  • Go back to WAMPSERVER (look for the W, bottom right on the task bar)
  • Select localhost
  • Open your website and others too
  • Close the other tabs so there is no confusion
  • Enter the link above.
  • Everything still working?
  • Prove your redirect works
  • Shut all the tabs
  • Does your site open correctly?

 

Set up links that don’t break when you export your site

Now you can set up all your links without them breaking when you move your site.  Hmm. . . not sure this is the last word here.  I suspect the format is important.

 

CHECKOUT SIMILAR POSTS

Leave a Comment

5 minute install of DRUPAL on WAMP

Install Drupal with WAMP

Situation: To develop DRUPAL on my laptop

I want to download DRUPAL onto my laptop so that I can develop DRUPAL websites on my laptop before I load them up to my hosted server accessible by the public.

I already develop WordPress and Wikis on my laptop and with a local server WAMP.  I got the instructions to download WAMP from Lifehacker.

Mission: A 5 minute install of DRUPAL on WAMP

I want to download Drupal and set it up successfully.

Execution:  Critical steps for downloading DRUPAL quickly and successfully first time

#1  Check my directory structures

  • C:WAMP
  • C:wampbinapached
  • C:wampwww. . . .[all my development sites]

#2  Make  a directory to receive DRUPAL

  • C:WAMPwwwmynewsite

#3  Start WAMPSERVER

  • Go to Start/All Programs
  • Active WAMPSERVER (my installation asks me to confirm permission)
  • Look for icon in the bottom right of the task bar (W)
  • Check options ( localhost, phpMyAdmin, PHP which includes php.ini)
  • Go to localhost and see the folder you create “mynewsite” (though there is nothing in it yet)

#4  Set up my new SQL database

  • Go back to the WAMPSERVER menu (W) and select phpMyAdmin
  • Look in the middle of the page for Create database
  • Insert the name of the database.  I usually use the name of the website. Hit Create
  • Check your privileges.  If you set up your WAMPSERVER using the instructions from Lifehacker, then you will have two root users and yourself and all three users have global privileges.  Note your username (!) and recall your password.  You will need them shortly.

#5  Download Drupal and unzip it into your folder : c:wampwwwmynewsite (or whatever you called it)

#6  Install Drupal

  • Go back to the WAMPSERVER menu ( W on taskbar bottom right)
  • Select localhost
  • Select “mynewsite” (or whatever you called it)
  • You should be looking at the Drupal installation screen.

#7 Activate the DRUPAL installation programme

  • Select standard install
  • In English (assuming that is your preference)
  • Leave the selection as SQL
  • Insert the name of your database
  • Insert your username (see step 4 above)
  • Insert your password
  • Let DRUPAL do its thing

#8  Now do as DRUPAL asks and put in the email address, admin name and password for the website

  • NB These are not the same as the database in steps 4 and 7.

#9  Go to configuration

  • Make sure “clean urls” (pretty permalinks) is ticked.

Confirmation

I now have a working DRUPAL website accessible through my WAMPSERVER/local host or through my browser http://localhost /mynewsite and in under 5 minutes.

It’s ready for tweaking and development prior to being loaded up to a hosting service for public use.

CHECK OUT SIMILAR WEBSITES

2 Comments

The Secret or Sour Grapes?

The Secret

don’t worry, nobody has the
beautiful lady, not really, and

nobody has the strange and
hidden power, nobody is
exceptional or wonderful or
magic, they only seem to be
it’s all a trick, an in, a con,
don’t buy it, don’t believe it.
the world is packed with
billions of people whose lives
and deaths are useless and
when one of these jumps up
and the light of history shines
upon them, forget it, it’s not
what it seems, it’s just
another act to fool the fools
again.

there are no strong men, there
are no beautiful women.
at least, you can die knowing
this
and you will have
the only possible
victory.

Charles “Hank” Bukowski
1920-1989

I never know quite what I think of Bukowski’s poetry – realist? cynical? ugly? brutal?

But perhaps the view that “there are no strong men, there are no beautiful women” is essential to mindfulness – to be fully present with whomever we are with, wherever we are.

CHECK OUT SIMILAR POSTS

Leave a Comment

Denial, anger, depression, bargaining, adjustment: put the banking crisis behind us

Ladies and gentlemen, where are we are the path of psychological recovery after learning, not only that our country is not only flat broke, but that our prosperity in the last ten years was a house built on sand?

Denial?

Anger?

Depression?

Bargaining?

Adjustment?

Denial about the banking crisis is over

I believe we are out of denial.  Do you agree?  Not everyone understands the extent of our financial woes, or the rate that they are getting worse, but we have grasped that when we wake up in the morning, the problem will still be with us.

Anger about the banking crisis . . . still with us?

Much of the citizenry is still very angry about the financial crisis.  We are still looking for someone to blame and somebody to hurt back in return for the hurt we have suffered?

Am I right so far?

Depression . . . the politicians are depressed about the crisis?

Politicians, to a man and woman, seem depressed about the crisis.  They are busy having meetings and telephone conference calls.  But by-and-large, they are being busy.  Of course, they are busy. They are ‘shaking the tree’ or in the parlance of a domestic household, looking down the sofa for small change to pay the rent.  That doesn’t put anyone in a good mood.  But their gloom is the result of more than penny-pinching and cash flow management.

Do you think they are acting with a positive sense of the future or just getting-by?

Bargaining  . . . what does bargaining look like?

What does bargaining look like anyway?  I don’t really know.

In other countries and other crises, I have seen people protest a country’s position ‘between a rock and a hard place’ by going on ‘fasts’ (not, hunger strikes, ‘fasts’ or ‘pacts with God’).  The country didn’t move forward very much but the fasters did get very slim and they learned to get up early in the morning.  I can say that for their methods.  Whether their lives improved in other ways, I doubt.  Unsurprisingly, they did very little work.  Their electronic diaries were pristine with the exception of their prayer schedules.

The secular equivalent of keeping one’s head down can be just as dangerous, by-the-way.   It normally involves being very busy doing-the-boss’-bidding while he or she sits out of harm’s way- a bit as Carne Ross described in talk at LSE this week on life as British diplomat.

Does satire play the role of bargaining?  Does laughing about ‘their idiocy’ without taking action not perform the same function of reducing emotional concerns without moving forward?  Resignation rather than adjustment which is really a form of bargaining?  If I laugh, then it will be alright?

Is writing this post a form of bargaining?  I guess it is.  I am being an observer of ‘them’.

Adjustment . . . is it possible?  Can we just adjust and get on with it?

If I don’t really understand bargaining (as much because we think this stage of recovery is a delaying tactic rather than useful), I do know what adjustment is going to mean.

Adjustment is accepting that we were all part of the mess and are all part of the mess.

Adjustment rests on a foundation of “who we are”.  Who are we loyal to?  Who is ‘me and mine’?  Until we really feel solidarity with each other and are willingly to form a new social compact based on that solidarity, then we aren’t going anywhere fast.  We will ‘lurching from church to school’.  I’ve no idea where the expression came from but it conveys the idea.

Our solutions will be in direct proportion to our solidarity.  While we hate each other, our solutions will be correspondingly mean and inadequate.

Getting to adjustment in a country that is in trouble

Getting to ‘adjustment’ when a country is severe trouble is a tough one.  The psychological key is our own good temper, or whatever kernel of good temper that we can find.

When we identify what we believe is good in Britain, when we can point to what is, rather than to what we want to be (usually through someone else’s efforts); until we believe the something is sufficiently good that we are willing to get out of bed to work on it, whether or not anyone else is working on it, we – I mean you, I mean me – are not going anywhere very fast.

The questions, to me, are three fold:

  • What is, right now, is so good that it fills me with awe?
  • What is, right now, that I can bounce out of bed to look after and nurture?
  • What am I willing to do right now, whether or not you support me or not, but which can include you if you want to be included?

Keeping my good temper intact

So here I am writing a post ‘about’ Britain – and in a way about what is wrong with Britain. Here I am apparently procrastinating and avoiding doing some work which has shards of pleasure and the sharp edges of tedium.

Am I being a hypocrite?  Or am I saying that I like to process the news and know what I think and feel?  Am I saying that I like to read between the lines and see the big events that might be affecting us all (the government is looking for small change down the sofa)?  Am I saying that I like to use the heuristics I have gathered over the years to think economically?  Am I saying that I think people like Carne Ross (apostate diplomat) are right?  Change in UK will not start in Whitehall. It will start at street-level with small matters, with whatever we care about executed, not an angry, contested manner (even when that is concealed under do-goodery), but in a respectful, collaborative manner that demonstrates democracy in the minute detail?  Am I saying that I like Web2.0 (blogs etc) because they minimally give me a neat place to store my thoughts and writings and a place where others can read them if they choose?

And having cleared my mind, I can get back to work, because work is like hoovering the carpet – it’s not much fun but the results are pleasant.

And for every moment I spend doing work that matters, I might be building a foundation for future solidarity.  And from there we might find solutions to build a Britain fit for the next 50 years.

So here ends my thoughts on where we are psychologically in making sense of the financial crisis using the well known heuristic of the grief cycle – denial/not us,anger/blame, depression/loss of direction, bargaining/magical thinking, action/affection.  The kernel of your good temper is Britain’s future.

CHECK OUT SIMILAR POSTS

Leave a Comment

What did the garrulous Lao Zi know?

读老子

言者不如知者默
此语吾闻于老君
若道老君是知者
缘何自著五千文

dú lǎo zi

yán zhě bù zhī zhī zhě mò
cǐ yǔ wú wén yú lǎo jūn
ruò dào lǎo jūn shì zhī zhě
yuán hé zì ruò wǔ qiān wén

Reading Lao Zi

Speak person not know know person silent
This saying I hear from old gentleman
If Way old gentleman be know person
Reason what confident five thousand characters

Reading Lao Zi

Bai Juyi

Those who speak do not know, those who know are silent,
I heard this saying from the old gentleman.
If the old gentleman was one who knew the way,
Why did he feel able to write five thousand words?

Published Version

This poem is volume (juàn) 455, no. 1 in the Complete Tang Poems (quán táng shī).

My Source

Mark Alexander who has a book available at GBP 7.99.

MY CORRECTIONS

I am not a Chinese-speaker. Nor do I have a copy of the original poem. But I think there may be mistakes in the Chinese at the top. I have corrected the characters in three places.

言者不知, 知者默.
此语我闻于老君.
若道老君是知者,
缘何自若五千文?

CHECK OUT RELATED POSTS

2 Comments

3 questions for a winning week

“It’s time to get up. The time is 6:30.”  Who in the world does not get up to those words or some close equivalent?  And who does not turn over and wait for the reminder ten minutes later, “It’s time to get up.  The time is 6:40”.

Psychologists spend a lot of time wondering situations like these where we just cannot gather the will power to do something – or when we appear to procrastinate. Sports people have simpler explanations.

  • Are we trying to take charge of a game?
  • Do we have some energy and pace?
  • Are we paying attention to what needs to be done right now?

Or alternatively:

  • Have I thought through what it means to have a winning day (rather than just a day)?
  • What do I need to do right now (rather than what others need me to do)?
  • Am I enjoying focusing all my attention on the task of the moment?

Knowing these questions probably won’t make me better friends with my phone when I am woken before I am ready to wake up but it sure makes planning my week a lot more fun.

  • What is winning to me?
  • What needs my attention right now?
  • Am I enjoying this?

I hope these questions help you turn some tiresome weeks into weeks that are easier and more enjoyable.

CHECKOUT SIMILAR POSTS

Leave a Comment