New pages

Views
From Tech
Jump to: navigation, search
New pages
Hide logged-in users | Hide bots | Show redirects
(Latest | Earliest) View (newer 50) (older 50) (20 | 50 | 100 | 250 | 500)
  • 16:22, 12 December 2011 ‎IPhone Demo (hist) ‎[437 bytes] ‎Doug (Talk | contribs) (Created page with 'If you want to create a mockup for an iPhone and give it a realistic demo, you can create images and put them in web pages with click maps, then add the following tag to the page…')
  • 15:38, 30 November 2011 ‎Personal git hosting (hist) ‎[317 bytes] ‎Doug (Talk | contribs) (Created page with 'gitblit - runs in tomcat, really easy to set up. gitorious - Runs in apache, very difficult to set up, but will hopefully get easier to set up. gitosis - Managed through a git …')
  • 15:31, 30 November 2011 ‎Recursive wc (hist) ‎[191 bytes] ‎Doug (Talk | contribs) (Created page with '<pre>find /topleveldirectory/ -type f -exec wc -l {} \; | awk '{total += $1} END{print total}'</pre> Or modify the find command to find what you are looking for. [[Category:Qui…')
  • 21:41, 10 November 2011 ‎Programmatic Style (hist) ‎[375 bytes] ‎Doug (Talk | contribs) (Created page with 'In javascript, you can programmatically set a style on an element. get or create your element: <pre>var input = document.createElement("input");</pre> Then you can set a style …')
  • 14:11, 19 July 2011 ‎PHP xml2array (hist) ‎[2,429 bytes] ‎Doug (Talk | contribs) (Created page with '[http://www.bin-co.com/php/scripts/xml2array/ xml2array xml2array] Category:PHP')
  • 16:04, 21 December 2010 ‎John the Ripper (hist) ‎[887 bytes] ‎Doug (Talk | contribs) (Created page with 'If you are using John the ripper to scan your linux system passwords on a modern linux system, you will need the version of john that is most recent at the time of this writing, …')
  • 15:24, 3 December 2010 ‎Add-apt-repository (hist) ‎[73 bytes] ‎Doug (Talk | contribs) (Created page with '<pre>sudo add-apt-repository ppa:git-core/ppa</pre> Category:apt-get')
  • 14:32, 2 December 2010 ‎Playonlinux Won't Start (hist) ‎[1,532 bytes] ‎Doug (Talk | contribs) (Created page with '==The System== Playonlinux ==The Problem== There is a bug, probably between Playonlinux and Ubuntu that causes Playonlinux to not start with the following error. <pre>PlayOnLi…')
  • 17:31, 15 November 2010 ‎Dpkg (hist) ‎[181 bytes] ‎Doug (Talk | contribs) (Created page with 'Common uses for dpkg. List which package owns a file: dpkg --search /path/to/file')
  • 15:07, 9 August 2010 ‎Mdadm array recovery (hist) ‎[1,360 bytes] ‎Doug (Talk | contribs) (Created page with 'To recover an mdadm array where multiple drives have been disconnected, but have not actually failed (they can be reconnected). determine which drive was disconnected first. md…')
  • 16:16, 9 June 2010 ‎Push to Pushy with wget (hist) ‎[365 bytes] ‎Doug (Talk | contribs) (Created page with 'Push is a robot for google wave that will let you add new blips with nothing other than an HTTP POST. Here's how to do this post with wget. <pre>wget "http://pushyrobot.appspot…')
  • 19:51, 25 May 2010 ‎Disable apache icons folder (hist) ‎[227 bytes] ‎Doug (Talk | contribs) (Created page with 'to disable the icons folder that is enabled and indexable by default in the version of apache that ships with ubuntu, open the file /etc/apache2/mods-available/alias.conf and rem…')
  • 15:03, 30 April 2010 ‎Apt-cacher (hist) ‎[151 bytes] ‎Doug (Talk | contribs) (Created page with 'Client set-up <pre>echo 'Acquire::http::Proxy "http://euclid:3142";' > /etc/apt/apt.conf.d/01proxy</pre>')
  • 19:02, 29 April 2010 ‎Mysqldump (hist) ‎[413 bytes] ‎Doug (Talk | contribs) (New page: Dump a single database, and compress it <pre>mysqldump database -u root -p | gzip --best > filename.dump.gz</pre> Dump all databases <pre>mysqldump --all-databases -u root -p | gzip --b...)
  • 19:49, 8 April 2010 ‎Netcat (hist) ‎[207 bytes] ‎Doug (Talk | contribs) (New page: Transfer a file using netcat First, make the file available <pre>cat file | nc -l -p 1111 -q 2</pre> Next, download the file from another computer <pre>netcat host 1111 > file</pre> [[Ca...)
  • 20:39, 5 March 2010 ‎For Each Line in a File (hist) ‎[123 bytes] ‎Doug (Talk | contribs) (New page: To perform an action for each line in a file: <pre>cat infile | while read arg; do echo $arg; done</pre> Category:Bash)
  • 21:35, 19 February 2010 ‎Git sparse checkout (hist) ‎[705 bytes] ‎Doug (Talk | contribs) (New page: The sparse checkout for git is new with version 1.7.0. It can be used to hide all but specified folders. In order to use it, you must first specify that you want to use it, then specify ...)
  • 20:33, 19 February 2010 ‎Git changes (hist) ‎[2,072 bytes] ‎Doug (Talk | contribs) (New page: Following is a list of changes in git that I should learn and get used to when I start using the new version. Taken from [http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.tx...)
  • 15:01, 17 February 2010 ‎Org mode (hist) ‎[208 bytes] ‎Doug (Talk | contribs) (New page: =Subtrees= A header is specified with one or more asterisks at the beginning of the line, one additional for each sub-level. The contents under the header can be toggled visible with tab....)
  • 03:14, 16 February 2010 ‎Git hosting (hist) ‎[1,286 bytes] ‎Doug (Talk | contribs) (New page: You can find free git hosting for public git repositories in a few places. [http://gitorious.com/] <br> Free hosting for seemingly unlimited repositories, organized into projects. It has...)
  • 23:54, 9 December 2009 ‎X inside X (hist) ‎[735 bytes] ‎Doug (Talk | contribs) (New page: I checked out xnest a while ago, looks like there's a new program for running X inside X. <code>startx -- /usr/bin/Xephyr :2</code> This will look at your .xinitrc file. Here is an exam...)
(Latest | Earliest) View (newer 50) (older 50) (20 | 50 | 100 | 250 | 500)
Toolbox
Personal tools