magicstring.co.uk Report : Visit Site


  • Server:nginx...

    The main IP address: 5.9.71.231,Your server Germany,Nuremberg ISP:Hetzner Online AG  TLD:uk CountryCode:DE

    The description :welcome to magicstring.co.uk. projects dspic33fprog.py a utility for programming dspic33f chips, written in python. sam-ba avr programmer using the sam7-h64 (a cheap usb arm header board) to program a...

    This report updates in 03-Dec-2018

Created Date:2006-12-24
Changed Date:2016-12-17

Technical data of the magicstring.co.uk


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host magicstring.co.uk. Currently, hosted in Germany and its service provider is Hetzner Online AG .

Latitude: 49.447780609131
Longitude: 11.068329811096
Country: Germany (DE)
City: Nuremberg
Region: Bayern
ISP: Hetzner Online AG

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called nginx containing the details of what the browser wants and will accept back from the web server.

Content-Encoding:gzip
Transfer-Encoding:chunked
Server:nginx
Connection:keep-alive
Date:Sun, 02 Dec 2018 20:52:06 GMT
Content-Type:text/html; charset=utf-8

DNS

soa:dns101.ovh.net. tech.ovh.net. 2018071007 86400 3600 3600000 300
txt:"v=spf1 mx ip4:88.198.8.101 -all"
ns:ns101.ovh.net.
dns101.ovh.net.
ipv4:IP:5.9.71.231
ASN:24940
OWNER:HETZNER-AS, DE
Country:DE
mx:MX preference = 10, mail exchanger = s2.sitereview.io.
MX preference = 20, mail exchanger = s1.sitereview.io.

HtmlToText

welcome to magicstring.co.uk. projects dspic33fprog.py a utility for programming dspic33f chips, written in python. sam-ba avr programmer using the sam7-h64 (a cheap usb arm header board) to program avrs. stop motion lighting controller a device to interface lights with the dragonframe stop motion software. building a 18tb ubuntu raid6 fileserver for a mac network i was recently tasked with setting up a new fileserver for a network of macs. we had previously used a mac pro and an external firewire drive array for this, but it wasn't very fast or reliable, and was only raid5 - we wanted to move to having two redundant drives rather than just one. netatalk seems to have matured as an afp (apple filing protocol) server, and linux software raid is very fast and reliable on modern hardware, so this seemed like a cost-effective option. hardware xcase rm420 20-bay 4u rackmount case cit 850w atx psu asrock p67 extreme6 mobo (6 6gbit + 4 3gbit sata ports, dual lan) intel i5-2500k sandy bridge proc cheap nvidia card 8gb ram 8x 3tb seagate barracuda hard drives 2x sff-8087 to sata reverse breakout cables assembly everything was easy to put together, and almost worked fautlessly - it turned out that the 2nd bay from the left on the bottom sata backplane didn't work reliably - linux dropped the sata link speed down to 1.5gbit and then encountered sporadic read errors. i have yet to take the backplane out and try and get a replacement. all ten sata ports were set to ahci mode to allow hot-swapping and other such cleverness. installation the 3tb disks use 4k sectors (as opposed to the traditional 512 byte sectors), which caused confusion at various stages of the installation process. i used cfdisk to partition the drives, but that did not align the start of the partitions with the 4k sectors which upset the ubuntu installer. eventually using fdisk to create the partitions seemed to work. after usb-booting the ubuntu installer, all 8 disks were tested (hdparm -tt) and individually partitioned with a 20g type 0xfd (linux raid autodetect). i then planned to create a raid6 (giving (8-6)*20 = 120gb) for the system, and use the rest of the disks for the share partition(s) later. this would speed up boot and make offline disk checking possible. attempt #1: bios-booting and msdos partition table the raid was created with: mdadm --create /dev/md0 --chunk=16 --level=6 --raid-devices=8 /dev/sd{a,b,c,d,e,f,g,h}1 i opted for 16k chunk size for the system, assuming this would speed access to lots of small files (a larger chunk size would probably make sense for the actual storage partitions which will have lots of huge media files on). i then partitioned the /dev/md0 device, into a 110gb linux partition (leaving room for 10gb swap should i decide to use it). the ubuntu installer was happy to install on /dev/md0p1 (using it as mount point /), but failed to install grub to it, so the system wouldn't boot. the resulting installation was also lacking mdadm, so was unable to bring up the raid even if it had booted (i was using the desktop edition of ubuntu, which might have been why). fixing this was somewhat tricky. booting onto the usb stick, it went something like: mdadm --assemble /dev/md0 /dev/sd{a,b,c,d,e,f,g,h}1 mount /dev/md0 /target mount --bind /dev /target/dev mount --bind /proc /target/proc mount --bind /sys /target/sys sudo chroot /target echo "nameserver 8.8.8.8" > /etc/resolv.conf apt-get install mdadm grub-install /dev/sda grub-install /dev/sdb etc... attempt #2: efi boot and gpt partition table the msdos partition table format is old fashioned and strange - you can only have four primary partitions, and must use the strange second-level logical partitions for further ones. this machine was probably going to have quite a few partitions (primarily to allow raid rebuilds to be done in order of importance), so the newer gpt format made sense. i turn, with gpt comes efi boot instead of the older bios-boot method (you can in theory still bios-boot gpt partitions, but this requires a slightly strange fake-partition at the start of the disk to accomodate the bootloader). i finally discovered parted the partitioning tool, which is much better than fdisk and cfdisk. creating the partition table and partitions went something like (repeated 8 times): $ sudo parted /dev/sda unit mib mklabel gpt mkpart ... fat32, start 0, end 200 flags 1 boot on mkpart ... ext4, start 200, end 8192 flags 2 raid on note the 200mb partition at the start of each disk with the boot flag set - this is the efi partition. these were then mkfs.vfat'd, ready for the directory structure and bootloader image file that efi requires. i then installed ubuntu off a usb key booted in efi mode (chosen using the bios boot menu). for some reason, ubuntu will only install to be efi bootable if it is booted in efi mode. the raid6 was set up in the same way as earlier. the installer detected the first efi partition and copied the x64 .efi file into the /efi/ubuntu folder in the efi disk, and the system installed and rebooted from the raid6 successfully. the installer had only set up the efi boot partition on the first hard disk. i wanted it to be possible to boot this machine with any two drives missing, so i needed to duplicate the folder structure and copy the .efi file to all of the other efi boot partitions, which was easy enough. however, the next step was less obvious - you need to use the efibootmgr program to add each of the other drives to the efi boot menu (stored in flash somewhere). the machine will now boot with any disk missing - success! useful commands: instead of manually creating the partitions on each drive, you can copy from one drive to another (in this case sda->sdb) using 'sgdisk': sgdisk -r=/dev/sdb /dev/sda sgdisk -g /dev/sdb to add an efi boot entry (the newest added will have the highest priority): sudo efibootmgr -c -d /dev/sda -p 1 -l "ubuntu" -l "\efi\ubuntu\grubx64.efi" jan 5th 2013 | permalink instruction manual / recipe book for prima abm6 breadmaker it seems prima are no more, so the all-important recipe book for the abm6 is now harder to find. download here! jun 4th 2012 | permalink writing html emails for maximum compatibility getting html emails to look right in many email clients simultaneously is a nightmare, here are some tips: 1. make the images as large as possible (when cutting them out), to maximise the likelihood of the alt text fitting. 2. style a tags twice (with an inner span), like so: <a href="..." style="color: #123456;"><span style="color: #123456">link</span></a> 3. style alt text containers so that the alt text will be styled in some clients. 4. use #fffffe instead of #ffffff to stop gmail removing it. 5. use lots of nested tables (ugh). 6. don't put margins on table tags (outlook 2007+ applies it to every cell) more at http://www.campaignmonitor.com/design-guidelines/ . jun 20th 2011 | permalink installing mac osx (snow leopard) from an external hard drive the surprisingly-flexible mac osx will boot and install from an external drive (on a macbook pro at least), possibly useful if you've got no dvd drive (or a 6 gig .dmg and no dual-layer dvd-rs!). install dmg2img , and perform the following: dmg2img -i installer_cd_image.dmg -o /dev/sde where /dev/sde is the usb drive. this will overwrite the mbr and partition table. then plug the usb drive into the mac, hold alt whilst booting, select the external drive, et voila. feb 14th 2010 | permalink

URL analysis for magicstring.co.uk


https://www.magicstring.co.uk/d/abm6.pdf
https://www.magicstring.co.uk/projects/stop-motion-lighting-controller
https://www.magicstring.co.uk/blog/3353/building-a-18tb-ubuntu-raid6-fileserver-for-a-mac-network/
https://www.magicstring.co.uk/blog/3347/installing-mac-osx-snow-leopard-from-an-external-hard-drive/
https://www.magicstring.co.uk/blog/3351/writing-html-emails-for-maximum-compatibility/
https://www.magicstring.co.uk/blog/3352/instruction-manual-recipe-book-for-prima-abm6-breadmaker/
https://www.magicstring.co.uk/projects/dspic33fprogpy
https://www.magicstring.co.uk/projects/sam-ba-avr-programmer
xcase.co.uk

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;


Domain name:
magicstring.co.uk

Registrant:
Jonathan Barker

Registrant type:
UK Individual

Registrant's address:
The registrant is a non-trading individual who has opted to have their
address omitted from the WHOIS service.

Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 10-Dec-2012

Registrar:
123-Reg Limited t/a 123-reg [Tag = 123-REG]
URL: http://www.123-reg.co.uk

Relevant dates:
Registered on: 24-Dec-2006
Expiry date: 24-Dec-2018
Last updated: 17-Dec-2016

Registration status:
Registered until expiry date.

Name servers:
ns.123-reg.co.uk 212.67.202.2
ns2.123-reg.co.uk 62.138.132.21

WHOIS lookup made at 20:18:53 23-Sep-2017

--
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:

Copyright Nominet UK 1996 - 2017.

You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REFERRER http://www.nominet.org.uk

  REGISTRAR Nominet UK

SERVERS

  SERVER co.uk.whois-servers.net

  ARGS magicstring.co.uk

  PORT 43

  TYPE domain

OWNER

  ORGANIZATION Jonathan Barker

TYPE
UK Individual

ADDRESS
The registrant is a non-trading individual who has opted to have their
address omitted from the WHOIS service.
Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 10-Dec-2012

DOMAIN

  SPONSOR 123-Reg Limited t/a 123-reg [Tag = 123-REG]

  CREATED 2006-12-24

  CHANGED 2016-12-17

STATUS
Registered until expiry date.

NSERVER

  NS.123-REG.CO.UK 212.67.202.2

  NS2.123-REG.CO.UK 62.138.132.21

  NAME magicstring.co.uk

DISCLAIMER
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:
Copyright Nominet UK 1996 - 2017.
You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.umagicstring.com
  • www.7magicstring.com
  • www.hmagicstring.com
  • www.kmagicstring.com
  • www.jmagicstring.com
  • www.imagicstring.com
  • www.8magicstring.com
  • www.ymagicstring.com
  • www.magicstringebc.com
  • www.magicstringebc.com
  • www.magicstring3bc.com
  • www.magicstringwbc.com
  • www.magicstringsbc.com
  • www.magicstring#bc.com
  • www.magicstringdbc.com
  • www.magicstringfbc.com
  • www.magicstring&bc.com
  • www.magicstringrbc.com
  • www.urlw4ebc.com
  • www.magicstring4bc.com
  • www.magicstringc.com
  • www.magicstringbc.com
  • www.magicstringvc.com
  • www.magicstringvbc.com
  • www.magicstringvc.com
  • www.magicstring c.com
  • www.magicstring bc.com
  • www.magicstring c.com
  • www.magicstringgc.com
  • www.magicstringgbc.com
  • www.magicstringgc.com
  • www.magicstringjc.com
  • www.magicstringjbc.com
  • www.magicstringjc.com
  • www.magicstringnc.com
  • www.magicstringnbc.com
  • www.magicstringnc.com
  • www.magicstringhc.com
  • www.magicstringhbc.com
  • www.magicstringhc.com
  • www.magicstring.com
  • www.magicstringc.com
  • www.magicstringx.com
  • www.magicstringxc.com
  • www.magicstringx.com
  • www.magicstringf.com
  • www.magicstringfc.com
  • www.magicstringf.com
  • www.magicstringv.com
  • www.magicstringvc.com
  • www.magicstringv.com
  • www.magicstringd.com
  • www.magicstringdc.com
  • www.magicstringd.com
  • www.magicstringcb.com
  • www.magicstringcom
  • www.magicstring..com
  • www.magicstring/com
  • www.magicstring/.com
  • www.magicstring./com
  • www.magicstringncom
  • www.magicstringn.com
  • www.magicstring.ncom
  • www.magicstring;com
  • www.magicstring;.com
  • www.magicstring.;com
  • www.magicstringlcom
  • www.magicstringl.com
  • www.magicstring.lcom
  • www.magicstring com
  • www.magicstring .com
  • www.magicstring. com
  • www.magicstring,com
  • www.magicstring,.com
  • www.magicstring.,com
  • www.magicstringmcom
  • www.magicstringm.com
  • www.magicstring.mcom
  • www.magicstring.ccom
  • www.magicstring.om
  • www.magicstring.ccom
  • www.magicstring.xom
  • www.magicstring.xcom
  • www.magicstring.cxom
  • www.magicstring.fom
  • www.magicstring.fcom
  • www.magicstring.cfom
  • www.magicstring.vom
  • www.magicstring.vcom
  • www.magicstring.cvom
  • www.magicstring.dom
  • www.magicstring.dcom
  • www.magicstring.cdom
  • www.magicstringc.om
  • www.magicstring.cm
  • www.magicstring.coom
  • www.magicstring.cpm
  • www.magicstring.cpom
  • www.magicstring.copm
  • www.magicstring.cim
  • www.magicstring.ciom
  • www.magicstring.coim
  • www.magicstring.ckm
  • www.magicstring.ckom
  • www.magicstring.cokm
  • www.magicstring.clm
  • www.magicstring.clom
  • www.magicstring.colm
  • www.magicstring.c0m
  • www.magicstring.c0om
  • www.magicstring.co0m
  • www.magicstring.c:m
  • www.magicstring.c:om
  • www.magicstring.co:m
  • www.magicstring.c9m
  • www.magicstring.c9om
  • www.magicstring.co9m
  • www.magicstring.ocm
  • www.magicstring.co
  • magicstring.co.ukm
  • www.magicstring.con
  • www.magicstring.conm
  • magicstring.co.ukn
  • www.magicstring.col
  • www.magicstring.colm
  • magicstring.co.ukl
  • www.magicstring.co
  • www.magicstring.co m
  • magicstring.co.uk
  • www.magicstring.cok
  • www.magicstring.cokm
  • magicstring.co.ukk
  • www.magicstring.co,
  • www.magicstring.co,m
  • magicstring.co.uk,
  • www.magicstring.coj
  • www.magicstring.cojm
  • magicstring.co.ukj
  • www.magicstring.cmo
Show All Mistakes Hide All Mistakes