brotherstone.de Report : Visit Site


  • Server:nginx/1.10.2...

    The main IP address: 77.73.5.241,Your server United Kingdom,Guildford ISP:Memset Ltd  TLD:de CountryCode:GB

    The description :this is a list of the things that many people forget or don’t do properly when writing a notepad++ plugin. none of them stop things working, …...

    This report updates in 16-Jul-2018

Changed Date:2013-03-07

Technical data of the brotherstone.de


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host brotherstone.de. Currently, hosted in United Kingdom and its service provider is Memset Ltd .

Latitude: 51.235359191895
Longitude: -0.57427000999451
Country: United Kingdom (GB)
City: Guildford
Region: England
ISP: Memset Ltd

the related websites

HTTP Header Analysis


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

Content-Length:34451
Accept-Ranges:bytes
Server:nginx/1.10.2
Last-Modified:Thu, 03 Nov 2016 20:26:30 GMT
Connection:keep-alive
ETag:"581b9d76-8693"
Date:Sun, 15 Jul 2018 18:55:36 GMT
Content-Type:text/html

DNS

soa:ns.123-reg.co.uk. hostmaster.brotherstone.de. 2012021206 86400 3600 1209600 14400
txt:"google-site-verification=8uYyBKqVnUIlTdXl1O18bqYIccL_WnuKq51LN2Kpvvo"
ns:ns2.123-reg.co.uk.
ns.123-reg.co.uk.
ipv4:IP:77.73.5.241
ASN:50957
OWNER:MEMSET, GB
Country:GB
mx:MX preference = 30, mail exchanger = ASPMX2.GOOGLEMAIL.COM.
MX preference = 30, mail exchanger = ASPMX3.GOOGLEMAIL.COM.
MX preference = 10, mail exchanger = ASPMX.L.GOOGLE.COM.
MX preference = 20, mail exchanger = ALT2.ASPMX.L.GOOGLE.COM.
MX preference = 20, mail exchanger = ALT1.ASPMX.L.GOOGLE.COM.

HtmlToText

alien in berlin. rss blog archives top 10 hints for writing a notepad++ plugin, and getting it listed aug 20 th , 2012 this is a list of the things that many people forget or don’t do properly when writing a notepad++ plugin. none of them stop things working, but they all make either the user experience a bit less friendly, or cause stability problems, or make hosting the plugin in the plugin manager just that little bit more tricky. 1. version number. i know, this is a stupid thing, but you’d be amazed how many plugins don’t advertise their version number, or advertise it wrong. at the time of writing, 54 from 115 listed, do or have had a plugin dll that either doesn’t report a version number or reports the wrong number. this means plugin manager needs to keep an md5 sum of the dll to identify the version, and the user can’t see the version from explorer, which makes manual upgrades that bit trickier. plugins can be written in any number of languages, but for c/c++ it’s very easy to add a version number. sadly, this isn’t quite so easy in the express versions of visual studio, however, you can add a resource text file (a .rc file), and copy the code in from below, changing the obvious details. project resource file myproject.rc 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 vs_version_info versioninfo fileversion 1 , 2 , 34 , 5 productversion 1 , 2 , 34 , 5 fileflagsmask 0x37l #ifdef _debug fileflags 0x21l #else fileflags 0x20l #endif fileos 0x4l filetype 0x0l filesubtype 0x0l begin block "stringfileinfo" begin block "080904b0" begin value "comments" , "source code at git://github.com/davegb3/npppluginmanager.git" value "companyname" , "dave brotherstone. [email protected]" value "filedescription" , "my great plugin for notepad++. a free (gpl) plugin for doing great things" value "fileversion" , "1, 2, 34, 5" value "internalname" , "mygreatplugin" value "legalcopyright" , "copyright (c) 2009-11 dave brotherstone" value "originalfilename" , "mygreatplugin.dll" value "productname" , "my great plugin" value "productversion" , "1, 2, 34, 5" #ifdef unicode value "specialbuild" , "unicode" #else value "specialbuild" , "ansi" #endif end end block "varfileinfo" begin value "translation" , 0x809 , 1200 end end the key piece of information is on the second line - the fileversion . this is what plugin manager uses to assign the version number. the other version numbers ( productversion and the "productversion" and "fileversion" numbers in the block ) don’t have to be the same, but it usually makes sense to have them the same number. adding the (same!) version number to the about box is also a nice way for your users to know they’ve got the new version. take a look at the plugin manager source , specifically version.rc and pluginmanagerversion.h (under pluginmanager/src ) to see how to put the version number in basically one place and have it always consistent. 2. use the config directory. depending on the installation, where the plugins should save their configuration can change. use the nppm_getpluginsconfigdir message to get the currently configured plugin directory. attempting to write to the program files\notepad++\plugins\config directory rarely results in a happy afternoon. it’s also worth considering what happens when you upgrade your plugin. adding a config version number into your config can help you port the config later, if you need to, depending on how complex your config is. if you need to install a config file at install time, it can be worth it to deploy a standard /default/ config with your plugin, and have your plugin copy that to the plugin config directory if it doesn’t find a config file. this means that future versions don’t overwrite the users configuration, but you’ve got a standard one for if you do. remember your plugin might start with a new version and an old config file, which could be where the version number in the config file helps. 3. dll_process_attach and nppn_shutdown. sadly, there was an error in an old c/c++ template, that meant that some people built a potentially buggy plugin before they’d even started. so, here’s the thing: dllmain gets called for every process/thread that loads it . for every dll_process_attach call there’s a dll_process_detach . the same with dll_thread_attach and dll_thread_detach . plugin manager will effectively call these when it performs the loadlibrary() to call getpluginname() . setinfo() gets called only when notepad++ successfully loads the dll (with loadlibrary() ). what this means, is that any allocation performed in dll_process_attach must be deallocated in dll_process_detach . and the same with the thread equivalents. and, more importantly, anything that gets allocated in setinfo() or similar calls ( getpluginname() etc), can only be deallocated from a notepad++ call . probably the best one to use for this is benotified() , using notification nppn_shutdown , which gets called (surprisingly) when notepad++ shuts down. as a hint, if your plugin doesn’t work when plugin manager has been opened, then it’s likely you’ve got an issue with where things are allocated and deallocated. allocate in deallocate in dllmain: dll_process_attach dllmain: dll_process_detach dllmain: dll_thread_attach dllmain: dll_thread_detach setinfo() - ideally don’t use this for allocation, instead consider benotified() with message nppn_ready benotified() message nppn_shutdown getname() don’t. getname() gets called by plugin manager and shouldn’t do any allocation benotified() message nppn_ready benotified() message nppn_shutdown 4. /mt everything. for c/c++ projects, this says “statically link the c++ runtime code with the dll”. this has two effects, one is that it removes the requirement for the visual c++ runtime library to be installed, which is just kinda nice for the users. if you use /md and they don’t have it installed, they’ll get a message that loadlibrary() failed, and that the plugin is not compatible. the second effect is that it makes everything work. ok, it’s not actually that dramatic, but notepad++ itself is compiled with this switch mixing /mt with /md is a bit like mixing potassium and water - you might get some interesting effects. also, make sure you do a release build, not just a debug version. 5. zipped download. just a little point, but if your plugin consists of a single dll, still go to the trouble of making a zip file available. if you’ve nowhere to host it, and you don’t want to setup a sourceforge or other oss hosting service project for it, send your stuff to me and i’ll add it somewhere sensible. although plugin manager since 1.0.0 can download any file for copying, it’s happiest with zip files. 7zip makes good, small zip files. 6. release the code. my first notepad++ plugin was my first outing to opensourceville, and i can highly recommend releasing the source to your plugin. even if you believe the code to be awful, and you don’t want anyone to see it, i know i still feel like that about anything i release. opening the code means people can take a glance over it, and maybe suggest improvements or even bug fixes. i learnt a mountain of stuff from very helpful developers in the notepad++ project. also, ianal, but if your plugin is c/c++, and you use the headers and various support c++ files from the notepad++ project, it’s against the terms of the notepad++ license not to. keep your source code in a separate download. less than 1% of people want the source. they’re your most valuable 1%, they’ll help you, support you, provide suggestions and fixes, even new features, so look after them, but don’t ignore the other 99% that just want the plugin. by look after them, i mean respect the feedback they give you, even if you’re more experienced than them, and make sure your source download is a reasonable size. see the plugin manager ignore list for a reasonable list of files not to include in your zip. obviously providing a link to a gith

URL analysis for brotherstone.de


https://bruderste.in/octopress/octopress/
https://bruderste.in/octopress/atom.xml
https://bruderste.in/octopress/octopress/blog/2012/08/20/top-10-hints-for-writing-a-notepad-plus-plus-plugin/
https://bruderste.in/octopress/octopress/blog/2012/08/19/nginx-with-kohana-in-a-subdirectory/
https://bruderste.in/octopress/octopress/blog/archives
brotherstone.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;

% Copyright (c) 2010 by DENIC
% Version: 2.0
%
% Restricted rights.
%
% Terms and Conditions of Use
%
% The data in this record is provided by DENIC for informational purposes only.
% DENIC does not guarantee its accuracy and cannot, under any circumstances,
% be held liable in case the stored information would prove to be wrong,
% incomplete or not accurate in any sense.
%
% All the domain data that is visible in the whois service is protected by law.
% It is not permitted to use it for any purpose other than technical or
% administrative requirements associated with the operation of the Internet.
% It is explicitly forbidden to extract, copy and/or use or re-utilise in any
% form and by any means (electronically or not) the whole or a quantitatively
% or qualitatively substantial part of the contents of the whois database
% without prior and explicit written permission by DENIC.
% It is prohibited, in particular, to use it for transmission of unsolicited
% and/or commercial and/or advertising by phone, fax, e-mail or for any similar
% purposes.
%
% By maintaining the connection you assure that you have a legitimate interest
% in the data and that you will only use it for the stated purposes. You are
% aware that DENIC maintains the right to initiate legal proceedings against
% you in the event of any breach of this assurance and to bar you from using
% its whois service.
%
% The DENIC whois service on port 43 never discloses any information concerning
% the domain holder/administrative contact. Information concerning the domain
% holder/administrative contact can be obtained through use of our web-based
% whois service available at the DENIC website:
% http://www.denic.de/en/domains/whois-service/web-whois.html
%

Domain: brotherstone.de
Nserver: ns.123-reg.co.uk
Nserver: ns2.123-reg.co.uk
Status: connect
Changed: 2013-03-07T09:47:23+01:00

[Tech-C]
Type: PERSON
Name: Webfusion Limited
Address: 5 Roundwood Avenue
PostalCode: UB11 1FF
City: Stockley Park
CountryCode: GB
Phone: +44.8712309525
Fax: +44.8712309525
Email: [email protected]
Changed: 2013-03-07T09:47:12+01:00

[Zone-C]
Type: PERSON
Name: Webfusion Limited
Address: 5 Roundwood Avenue
PostalCode: UB11 1FF
City: Stockley Park
CountryCode: GB
Phone: +44.8712309525
Fax: +44.8712309525
Email: [email protected]
Changed: 2013-03-07T09:47:12+01:00

  REGISTRAR DENIC eG

  REFERRER http://www.denic.de/

SERVERS

  SERVER de.whois-servers.net

  ARGS -T dn,ace brotherstone.de

  PORT 43

  TYPE domain

DOMAIN

  NAME brotherstone.de

NSERVER

  NS.123-REG.CO.UK 212.67.202.2

  NS2.123-REG.CO.UK 62.138.132.21

  STATUS connect

  CHANGED 2013-03-07

TECH

  NAME Webfusion Limited

ADDRESS

STREET
5 Roundwood Avenue

  PCODE UB11 1FF

  CITY Stockley Park

  COUNTRY GB

  PHONE +44.8712309525

  FAX +44.8712309525

  EMAIL [email protected]

ZONE

  NAME Webfusion Limited

ADDRESS

STREET
5 Roundwood Avenue

  PCODE UB11 1FF

  CITY Stockley Park

  COUNTRY GB

  PHONE +44.8712309525

  FAX +44.8712309525

  EMAIL [email protected]

  REGISTERED yes

Go to top

Mistakes


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

  • www.ubrotherstone.com
  • www.7brotherstone.com
  • www.hbrotherstone.com
  • www.kbrotherstone.com
  • www.jbrotherstone.com
  • www.ibrotherstone.com
  • www.8brotherstone.com
  • www.ybrotherstone.com
  • www.brotherstoneebc.com
  • www.brotherstoneebc.com
  • www.brotherstone3bc.com
  • www.brotherstonewbc.com
  • www.brotherstonesbc.com
  • www.brotherstone#bc.com
  • www.brotherstonedbc.com
  • www.brotherstonefbc.com
  • www.brotherstone&bc.com
  • www.brotherstonerbc.com
  • www.urlw4ebc.com
  • www.brotherstone4bc.com
  • www.brotherstonec.com
  • www.brotherstonebc.com
  • www.brotherstonevc.com
  • www.brotherstonevbc.com
  • www.brotherstonevc.com
  • www.brotherstone c.com
  • www.brotherstone bc.com
  • www.brotherstone c.com
  • www.brotherstonegc.com
  • www.brotherstonegbc.com
  • www.brotherstonegc.com
  • www.brotherstonejc.com
  • www.brotherstonejbc.com
  • www.brotherstonejc.com
  • www.brotherstonenc.com
  • www.brotherstonenbc.com
  • www.brotherstonenc.com
  • www.brotherstonehc.com
  • www.brotherstonehbc.com
  • www.brotherstonehc.com
  • www.brotherstone.com
  • www.brotherstonec.com
  • www.brotherstonex.com
  • www.brotherstonexc.com
  • www.brotherstonex.com
  • www.brotherstonef.com
  • www.brotherstonefc.com
  • www.brotherstonef.com
  • www.brotherstonev.com
  • www.brotherstonevc.com
  • www.brotherstonev.com
  • www.brotherstoned.com
  • www.brotherstonedc.com
  • www.brotherstoned.com
  • www.brotherstonecb.com
  • www.brotherstonecom
  • www.brotherstone..com
  • www.brotherstone/com
  • www.brotherstone/.com
  • www.brotherstone./com
  • www.brotherstonencom
  • www.brotherstonen.com
  • www.brotherstone.ncom
  • www.brotherstone;com
  • www.brotherstone;.com
  • www.brotherstone.;com
  • www.brotherstonelcom
  • www.brotherstonel.com
  • www.brotherstone.lcom
  • www.brotherstone com
  • www.brotherstone .com
  • www.brotherstone. com
  • www.brotherstone,com
  • www.brotherstone,.com
  • www.brotherstone.,com
  • www.brotherstonemcom
  • www.brotherstonem.com
  • www.brotherstone.mcom
  • www.brotherstone.ccom
  • www.brotherstone.om
  • www.brotherstone.ccom
  • www.brotherstone.xom
  • www.brotherstone.xcom
  • www.brotherstone.cxom
  • www.brotherstone.fom
  • www.brotherstone.fcom
  • www.brotherstone.cfom
  • www.brotherstone.vom
  • www.brotherstone.vcom
  • www.brotherstone.cvom
  • www.brotherstone.dom
  • www.brotherstone.dcom
  • www.brotherstone.cdom
  • www.brotherstonec.om
  • www.brotherstone.cm
  • www.brotherstone.coom
  • www.brotherstone.cpm
  • www.brotherstone.cpom
  • www.brotherstone.copm
  • www.brotherstone.cim
  • www.brotherstone.ciom
  • www.brotherstone.coim
  • www.brotherstone.ckm
  • www.brotherstone.ckom
  • www.brotherstone.cokm
  • www.brotherstone.clm
  • www.brotherstone.clom
  • www.brotherstone.colm
  • www.brotherstone.c0m
  • www.brotherstone.c0om
  • www.brotherstone.co0m
  • www.brotherstone.c:m
  • www.brotherstone.c:om
  • www.brotherstone.co:m
  • www.brotherstone.c9m
  • www.brotherstone.c9om
  • www.brotherstone.co9m
  • www.brotherstone.ocm
  • www.brotherstone.co
  • brotherstone.dem
  • www.brotherstone.con
  • www.brotherstone.conm
  • brotherstone.den
  • www.brotherstone.col
  • www.brotherstone.colm
  • brotherstone.del
  • www.brotherstone.co
  • www.brotherstone.co m
  • brotherstone.de
  • www.brotherstone.cok
  • www.brotherstone.cokm
  • brotherstone.dek
  • www.brotherstone.co,
  • www.brotherstone.co,m
  • brotherstone.de,
  • www.brotherstone.coj
  • www.brotherstone.cojm
  • brotherstone.dej
  • www.brotherstone.cmo
Show All Mistakes Hide All Mistakes