Difference between revisions of "Technology"

From Wiki2
 
(204 intermediate revisions by 5 users not shown)
Line 1: Line 1:
==log==
{{TOC right}}
there is a book on Ajax in pdf  in code
{|border="2" cellpadding="5" cellspacing="0"
|-
|
[[tech notes]]


;autocompl: have put up autocompl for voacab database in http://pathboston.com/vocab/autocomp
[[crowdsource]]


;grid: http://pathboston.com/vocab/grid/ has code to get from vocab db to web
[[ideas]]
:[[startup]]
:[[obforum]]
:[[workshops]]
[[log]]


=====quizlet export -> csv2sql ->mysql=====
[[todo]]
http://pathboston.com/ajax/csv2sql.php runs the conversion which gets uploaded through phpmyadmin


=====visualthesaurus vocgrabber to db=====
[[electronics]]
11/19 - vocab from vocabgrabber  a javascript that you rum with an article open in the browser that you want to grab then you select the words you want and save the list. the URL to that list is fed into vocabgb2csv.php which turns looks uo the def and returns a bunch of arrays
:[[arduino]]
[[stacks]]<br/>
[[front end]]<br/>
:[[frameworks]]<br/>
[[TDD]]<br/>
[[cloud]]
:[[openshift]]
:[[heroku]]
:[[docker]]
|
[[editors]]
:[[vim]]
:[[sublime]]
[[software]] languages
:[[git]]
:[[javascript]]
:[[jquery]]
:[[jQuery-Mobile]]
:[[html5]]
:[[php]]
:[[sql]]
:[[c]]
:[[regex]]
:[[ruby]]
:[[css]]
:[[xml]]
|
[[servers]]
:[[parleyvale.com]]
:[http://christophermeiklejohn.com/distributed/systems/2013/07/12/readings-in-distributed-systems.html distrib systems readings]
:[[backups]]
:[[mysql]]
:[[mongodb]]
:[[node]]
:[[linux]]
:[[wamp]]
:[[mediawiki]]
:[[ReST]]
machines
:[[asus]]
:[[hudsonvalley]]
:[[home ubuntu]]
:Amazon [[aws]]
:[http://www.networksolutions.com/whois/index.jsp whois]
:[http://www.namecheap.com/myaccount/index.asp namecheap]
:[[Moving from shared to VPS]]


javascript:var%20_vgurl='http://www.visualthesaurus.com';%20var%20s=document.createElement('script');s.src=_vgurl+'/vocabgrabber/bookmarklet.js';document.getElementsByTagName('head')[0].appendChild(s);%20void(0);
my apps
:[[webeshoppin]]
:[[Online heating system control project]]


==mediawiki==
|
http://www.linux.com/archive/feature/54334
[[MOOCs]]


{{:comp}}
[[Altenergy]]
:[[Solar]]
:[[tintML]]
edtech
:[[quizlet]]
:[[visual thesaurus]]
:[[quiz authoring environments, vocab]]


=[[installedMACtools]]=
platforms
:[http://www.sagenb.org/home/mckenna.tim/ Sage]
:[[google]]
:[[android]]
:[[microsoft]]
:[[installedMACtools]]
:[[Cad | AutoCAD]]


==pic==
other technology
http://www.rentron.com/Myke3.htm
:[[AI]]
:[[OCR]]
:[[Image, Photo & Video]]
:[[ebooks]] kindle
|}


http://www.play-hookey.com/digital/jk_nand_flip-flop.html


http://www.digital-diy.net/16F%20Examples/LM35DZ.aspx
Failed to attach disk 'C:\Users\mcken\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu22.04LTS_79rhkp1fndgsc\LocalState\ext4.vhdx' to WSL2: The system cannot find the file specified.
 
Error code: Wsl/Service/CreateInstance/MountVhd/HCS/ERROR_FILE_NOT_FOUND
[http://www.opencircuits.com/Main_Page open source circuits wiki]
 
[http://www.sparkfun.com/commerce/tutorials.php sparkfun hobby shop]
 
[http://www.batchpcb.com/index.php/Home batchpcb.com pcb fabrication]
 
[http://www.avrfreaks.net/index.php?module=Freaks%20Devices&func=displayDev&objectid=78 AVR is alternative to PIC]
 
[http://www.sparkfun.com/commerce/tutorial_info.php?tutorials_id=57 a good tutorial on embedded systems]
:Google any of these for more info. I have chosen the ATmega168 as the learning IC of choice. Why?
 
* 20 MIPs (million instructions per second!) is powerful enough to do some really cool projects
* It's cheap! $2.13 currently
* It's got all the goodies under the hood (UART, SPI, I2C, ADC, internal osc, PWM, kitchen sink, etc)
* 16K of program memory is enough for almost any beginner project
* The tools are free! (C compilers for many of the other micros cost a lot of money)
* The programming and debugging tools are low cost ($20 will get you started)
 
[http://www.evilmadscientist.com/article.php/avrtargetboards evil mad scientist on AVR programming]
 
==isp==
host
206.71.150.94
 
http://www.networksolutions.com/whois/index.jsp
 
http://www.namecheap.com/myaccount/index.asp mckennatim nanj
 
https://thenynocportal.com/clientarea.php
 
==text a photo to picasa==
text it to your and then forward it without the tmobile gifs  then forward it to mckenna.tim.upload@picasaweb.com
 
==making transparent in gimp==
1. open image
 
2. Right click the image and go to LAYERS then ADD ALPHA CHANNEL. You won't notice anything happening, but don't be concerned. It basically adds a transparent layer at the bottom of your image so when we erase the colors.....it's shows the transparent layer. Which of course would show whatever was under it on the screen.
 
3. Right click on the image again and go to SELECT and then down to BY COLOR. A window that is all black opens up. Don't change any of the settings....just use the defaults for now.
 
4. Now click on the color in the image you want to be transparent. These colors will now show up outlined.
 
5. Right click on the image again and go to EDIT and then down to CLEAR. This should now erase the outlined color you just picked from the image and the "transparent gimp checkerbox" should show through. This is the Gimps way of showing you that section is now transparent.
 
6. Right click on the image and choose SAVE AS and make sure to save as a GIF file if you want the transparency to work on the web.
 
==embedding video==
  1. find the file Sanitizer.php in the folder /includes of your mediawiki installation
  2. find the function removeHTMLtags in that file. below that you’ll find a list of whitelisted HTML tags. add the tag embed to the list.
  3. find the function setupAttributeWhitelist in the same file. several lines below you will find HTML-attributes being whitelisted for each HTML tag. so you add a new line (maybe below the line that defines span):
      ‘embed’ => array( ’style’, ‘id’, ‘type’, ’src’, ‘width’, ‘height’ ),
 
take care to replace the typographic ‘-quotes by straight ones when doing copy&paste. (wordpress converts the quotes on this blog, so you need to convert them back.)
 
you’re done. now you can copy the HTML-code provided by google or youtube into your wiki textbox and it’ll work. (make sure to make backups and document so you know what you’ve changed. when upgrading you’ll have to repeat the process. no warranties for possibile security leaks resulting from the hack.)
 
update april 2007: i just tested, this hack also works with mediawiki 1.9.2, just that you need to add embed to $htmlpairs. (note: in case the embed-code you want to use has the format <embed /> you now have to convert it to <embed> </embed> before posting it to your wiki.) i also would recommend to paste the last line of code near br instead of span (the file has got rearranged a bit).
==mediawiki memory problem==
php.ini is in public_html, it has to be copied into everywhere that uses php
left ini_set commented out in localsettins.php
.htaccess php_mem ... didn't work
==mediawiki upgrade==
http://www.g-loaded.eu/2006/09/05/mediawiki-upgrade-procedure/
easy way:
*goto maintainance directory and run php dumpBackup.php --current> dumfile.xml
*on new site install wiki, put dumpfile.xml on its maintenance dir run php importDump.php dumfile.xml
 
==mediawiki css==
*sitewide changes go in Mediawiki:Monobook.css
*user changes go in User:MrMcKenna/monobook.css
==lynx==
==[[Moving_from_shared_to_VPS]]==

Latest revision as of 16:26, 29 January 2024

tech notes

crowdsource

ideas

startup
obforum
workshops

log

todo

electronics

arduino

stacks
front end

frameworks

TDD
cloud

openshift
heroku
docker

editors

vim
sublime

software languages

git
javascript
jquery
jQuery-Mobile
html5
php
sql
c
regex
ruby
css
xml

servers

parleyvale.com
distrib systems readings
backups
mysql
mongodb
node
linux
wamp
mediawiki
ReST

machines

asus
hudsonvalley
home ubuntu
Amazon aws
whois
namecheap
Moving from shared to VPS

my apps

webeshoppin
Online heating system control project

MOOCs

Altenergy

Solar
tintML

edtech

quizlet
visual thesaurus
quiz authoring environments, vocab

platforms

Sage
google
android
microsoft
installedMACtools
AutoCAD

other technology

AI
OCR
Image, Photo & Video
ebooks kindle


Failed to attach disk 'C:\Users\mcken\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu22.04LTS_79rhkp1fndgsc\LocalState\ext4.vhdx' to WSL2: The system cannot find the file specified. Error code: Wsl/Service/CreateInstance/MountVhd/HCS/ERROR_FILE_NOT_FOUND