New pages
Jump to navigation
Jump to search
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 05:59, 17 October 2021 Document Management Links (hist | edit) [201 bytes] PeterHarding (talk | contribs) (Created page with " * http://www.doclib.net/ * http://www.doclib.net/news-archive/1-latest/226-pics-doclib-document-management-application-leverages-dynamsoft-sdk.html Category:Document Manag...")
- 05:58, 17 October 2021 Curses Notes (hist | edit) [377 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * https://github.com/jmcb/python-pdcurses * http://www.tldp.org/HOWTO/NCURSES-Programming-HOWTO/index.html * http://sourceforge.net/projects/pyunicurses/ * http://so...")
- 05:56, 17 October 2021 WinForm Notes (hist | edit) [356 bytes] PeterHarding (talk | contribs) (Created page with " =Resizing Controls= * http://stackoverflow.com/questions/15131779/resize-controls-with-form-resize * http://www.codeguru.com/csharp/csharp/cs_misc/designtechniques/article.p...")
- 05:44, 17 October 2021 C Sharp (hist | edit) [86 bytes] PeterHarding (talk | contribs) (Created page with "=Notes= =Links= Category:C Sharp Category:Dot.NET Category:Microsoft")
- 05:43, 17 October 2021 Working with Config Files in C Sharp (hist | edit) [107 bytes] PeterHarding (talk | contribs) (Created page with "=Notes= * http://www.codeproject.com/KB/cs/readwritexmlini.aspx Category:C Sharp Category:Dot.NET")
- 21:57, 16 October 2021 Node.js Notes (hist | edit) [80 bytes] PeterHarding (talk | contribs) (Created page with " * http://news.rednode.cn/item/547d4c952defd64551072619 * Category:Node.js")
- 21:56, 16 October 2021 Swift Extensions (hist | edit) [860 bytes] PeterHarding (talk | contribs) (Created page with "These often provide a succinct way of cleanly extending existing classes. =PHAsset= From - http://stackoverflow.com/questions/27854937/ios8-photos-framework-how-to-get-the-...")
- 21:55, 16 October 2021 Swift FAQ (hist | edit) [410 bytes] PeterHarding (talk | contribs) (Created page with "=How do I do this in Swift 3?= == In draw() Related Methods== ===CGPointMake()=== Use of unresolved identifier 'CGPointMake' Use: <pre> CGPoint(x: 2.0, y:2.0) </pre> ==...")
- 21:54, 16 October 2021 Swift Types (hist | edit) [318 bytes] PeterHarding (talk | contribs) (Created page with " =Converting Arrays= <pre> if latitudeAll.count > 0 { let double = NSNumberFormatter().numberFromString(latitudeAll[0])?.doubleValue } </pre> if you want to convert a Do...")
- 21:54, 16 October 2021 Working with UIImage (hist | edit) [242 bytes] PeterHarding (talk | contribs) (Created page with "In the target view: <pre> var imageView : UIImageView imageView = UIImageView(frame:CGRectMake(0, 0, 100, 200)); imageView.image = UIImage(named:"image.png") self.vie...")
- 21:53, 16 October 2021 Get EXIF Data from Image in Swift (hist | edit) [515 bytes] PeterHarding (talk | contribs) (Created page with " This seems to work: <pre> import ImageIO ... func getExif(_ uRLToTheImageFile: URL) { if let imageSource = CGImageSourceCreateWithURL(fileURL as CFURL, nil) { l...")
- 21:52, 16 October 2021 Extending Swift Classes (hist | edit) [702 bytes] PeterHarding (talk | contribs) (Created page with " Here's one which show you how to extend a fundamental class in a way which adds new bits to the Xcode interface <pre> import UIKit @IBDesignable class CustomImageView: UIIm...")
- 21:50, 16 October 2021 Mouse and Keyboard Event Handling in C Sharp (hist | edit) [377 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * http://www.codeproject.com/Articles/28064/Global-Mouse-and-Keyboard-Library Has a couple of useful examples - a sample WinForms program to track events and a macro...")
- 21:45, 16 October 2021 Editing Parsing WhitePages Search Results HTML (hist | edit) [13,993 bytes] PeterHarding (talk | contribs) (Created page with "= Searching WhitePages = The following Python script uses HTTPLib to search against whitepages.com.au (via a proxy). <pre> #!/usr/bin/env python # # #-------------------...")
- 21:38, 16 October 2021 Accessing Form Data via JavaScript and the DOM (hist | edit) [8,938 bytes] PeterHarding (talk | contribs) (Created page with "== Tony Patton, TechRepublic == Accessing and manipulating the various elements on a Web page is a common endeavor that is easily accomplished with JavaScript and the HTML Do...")
- 21:38, 16 October 2021 Website Examples (hist | edit) [115 bytes] PeterHarding (talk | contribs) (Created page with " * https://www.packtpub.com/web-development/ext-js-4-first-look Category:Internet Category:Web Development")
- 21:37, 16 October 2021 Kodak Resources (hist | edit) [234 bytes] PeterHarding (talk | contribs) (Created page with " * http://www.kodak.com/eknec/PageQuerier.jhtml?pq-path=2714&pq-locale=en_US&_requestid=3863 * http://www.kodak.com/global/plugins/acrobat/en/consumer/dls/kias/KIAS_Technical_...")
- 21:33, 16 October 2021 Resetting a Profile in VisualStudio (hist | edit) [334 bytes] PeterHarding (talk | contribs) (Created page with "=Method= Go to menu: Tools > Import and Export Settings Image:VS2005_ProfileReset_01.gif Select option and then Next: Image:VS2005_ProfileReset_02.gif Select Re...")
- 21:32, 16 October 2021 Tool Sites (hist | edit) [228 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * https://www.sitepoint.com/versioning =Source Code Management= * https://bitbucket.org/ * https://github.com/ =Management= ==Kanban== * http://www.kanbanize.com...")
- 21:31, 16 October 2021 Basic Authentication in iOS (hist | edit) [460 bytes] PeterHarding (talk | contribs) (Created page with "=Objective-C= * http://www.chrisumbel.com/article/basic_authentication_iphone_cocoa_touch (Bit dated - 2010 - Objective-C rather than Swift; well written up and includes code...")
- 21:31, 16 October 2021 IOS 10 Problems (hist | edit) [4,272 bytes] PeterHarding (talk | contribs) (Created page with "=Some Notes on Problems I've Encountered= ==iOS 10: “"[App] if we're in the real pre-commit handler we can't actually add any new fences due to CA restriction== See - http...")
- 21:30, 16 October 2021 Using WKWebView (hist | edit) [182 bytes] PeterHarding (talk | contribs) (Created page with " * http://stackoverflow.com/questions/37086605/disable-wkwebview-for-opening-links-to-redirect-to-apps-installed-on-my-iphone Category:IOS Category:Swift Category:W...")
- 21:28, 16 October 2021 Tweeting with iOS (hist | edit) [599 bytes] PeterHarding (talk | contribs) (Created page with "Some links I found while attempting to get the CS193p Twitter exercise working: * https://forums.developer.apple.com/thread/8615 * https://developer.apple.com/reference/socia...")
- 21:27, 16 October 2021 Adding a MenuStrip to C Sharp Programs (hist | edit) [57 bytes] PeterHarding (talk | contribs) (Created page with "Here is a shortcut: <pre> </pre> Category:C Sharp")
- 21:25, 16 October 2021 Getting Started with Auth0 (hist | edit) [321 bytes] PeterHarding (talk | contribs) (Created page with "=Some Links= * https://auth0.com/blog/angular-2-authentication/ * https://auth0.com/blog/creating-your-first-real-world-angular-2-app-from-authentication-to-calling-an-api-an...")
- 21:24, 16 October 2021 Google Web Page Tester (hist | edit) [171 bytes] PeterHarding (talk | contribs) (Created page with " See - https://search.google.com/search-console/mobile-friendly?utm_source=psi&utm_medium=link&utm_campaign=psi-ux-banner&hl=en-US Category:WebDev Category:Google")
- 21:23, 16 October 2021 FORTRAN (hist | edit) [672 bytes] PeterHarding (talk | contribs) (Created page with " * https://en.wikipedia.org/wiki/Fortran * [http://www.nag.co.uk/sc22wg5/ The official home of Fortran Standards] * http://fortranwiki.org/fortran/show/HomePage * http://www....")
- 21:22, 16 October 2021 TeX Resources (hist | edit) [1,832 bytes] PeterHarding (talk | contribs) (Created page with " =Links= * https://en.wikipedia.org/wiki/TeX * http://www.ctan.org/tex-archive/systems/knuth/dist/tex/ * https://www.tug.org/texlive/doc/texlive-en/texlive-en.html#tlportable...")
- 21:21, 16 October 2021 DynamicDotNetTwain Links (hist | edit) [877 bytes] PeterHarding (talk | contribs) (Created page with " * http://www.dynamsoft.com/Products/.Net-TWAIN-Scanner-FAQ.aspx * http://stackoverflow.com/questions/26054319/capture-an-image-using-c-sharp * http://www.htmlgoodies.com/b...")
- 21:16, 16 October 2021 Using Twitter API (hist | edit) [767 bytes] PeterHarding (talk | contribs) (Created page with " =References= * https://developer.apple.com/reference/social/slrequest * https://forums.developer.apple.com/thread/8615 * http://stackoverflow.com/questions/31280251/how-to-p...")
- 11:18, 12 September 2021 Simplest Flask App (hist | edit) [83 bytes] PeterHarding (talk | contribs) (Created page with "Here is an example of a minimal Flask application <pre> </pre> Category:Flask")
- 15:53, 16 July 2021 AWS Notes (hist | edit) [242 bytes] PeterHarding (talk | contribs) (Created page with " =Links= * https://digitalcloud.training/ecs-vs-ec2-vs-lambda/ * https://digitalcloud.training/amazon-s3-vs-ebs-vs-efs-comparing-aws-storage-services/ * https://digitalcloud....")
- 10:53, 8 July 2021 React Notes (hist | edit) [750 bytes] PeterHarding (talk | contribs) (Created page with " * https://reactjs.org/docs/hooks-effect.html Category:React")
- 10:47, 8 July 2021 Working with react-hook-form module (hist | edit) [110 bytes] PeterHarding (talk | contribs) (Created page with " +Links= * https://www.vcaa.vic.edu.au/Documents/exams/mathematics/2016/mm1_examrep16.pdf Category:React")
- 10:45, 8 July 2021 Imaging AI (hist | edit) [225 bytes] PeterHarding (talk | contribs) (Created page with " =MyHeritage= * https://media-exp1.licdn.com/dms/image/C5622AQEo5xVrsqsSvQ/feedshare-shrink_2048_1536/0/1624933087410?e=1628121600&v=beta&t=MeRDB6nsAuPUwaV_2ug6jI7HYd2wTlV3Gs...")
- 10:43, 8 July 2021 React and Typescript (hist | edit) [563 bytes] PeterHarding (talk | contribs) (Created page with " =Links= * https://www.typescriptlang.org/play Category:React Category:Typescript")
- 10:41, 8 July 2021 React Menus (hist | edit) [341 bytes] PeterHarding (talk | contribs) (Created page with "Implementing Nav menus in React. =Modules= * https://github.com/SUPPLYcom/react-mega-menu =Demos= ==Multi-Level Dropdown Menu with React== * https://fireship.io/lessons/d...")
- 09:54, 14 June 2021 Working with SwiftUI (hist | edit) [676 bytes] PeterHarding (talk | contribs) (Created page with " * [https://developer.apple.com/documentation/swiftui/fruta_building_a_feature-rich_app_with_swiftui Fruta: Building a Feature-Rich App with SwiftUI] =AR= * [https://develop...")
- 16:26, 8 June 2021 Getting Started with Augmented Reality (hist | edit) [1,035 bytes] PeterHarding (talk | contribs) (Created page with " =Links= * https://developer.apple.com/augmented-reality/quick-look/ * https://developer.apple.com/augmented-reality/arkit/ * https://www.udemy.com/topic/ARKit/ Categor...")
- 16:31, 7 June 2021 Using React Hooks with Typescript (hist | edit) [310 bytes] PeterHarding (talk | contribs) (Created page with "OK here are some links: * https://react-redux.js.org/using-react-redux/usage-with-typescript * https://redux.js.org/recipes/usage-with-typescript * https://redux.js.org/recip...")
- 09:12, 28 April 2021 Gatling Code Fragments (hist | edit) [2,055 bytes] PeterHarding (talk | contribs) (Created page with "=Approaches for Dynamic Feeder Assignment= From - https://stackoverflow.com/questions/24533162/gatling-dynamic-feed-selection Define data so: <pre> object Data { var gro...")
- 10:18, 15 April 2021 Scala (hist | edit) [8,361 bytes] PeterHarding (talk | contribs) (Created page with "=Scala Notes= * https://en.wikipedia.org/wiki/Scala_(programming_language) Category:Scala")
- 09:55, 15 April 2021 Gatling Notes (hist | edit) [147 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * https://medium.com/@vl.gutov/gatling-custom-plugin-application-performance-testing-d652b1ef86d9 Category:Gatling Category:Scala")
- 08:32, 25 March 2021 MongoDB (hist | edit) [377 bytes] PeterHarding (talk | contribs) (Created page with "=Overview= = Links= * https://www.mongodb.com/ * https://docs.mongodb.com/manual/tutorial/install-mongodb-on-debian/ * =Use with Python= * https://stackoverflow.com/qu...")
- 08:29, 25 March 2021 React (hist | edit) [267 bytes] PeterHarding (talk | contribs) (Created page with "=Overview= =Links= * https://en.wikipedia.org/wiki/React_(JavaScript_library) * https://github.com/facebook/react * https://github.com/ReactTraining/react-router/tree/dev/...")
- 08:17, 25 March 2021 MQ (hist | edit) [624 bytes] PeterHarding (talk | contribs) (Created page with "=Overview= =Links= * https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_8.0.0/com.ibm.mq.pro.doc/q001020_.htm * https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_8....")
- 08:14, 25 March 2021 Kafka (hist | edit) [402 bytes] PeterHarding (talk | contribs) (Created page with "=Overview= =Links= * https://kafka.apache.org/ * https://kafka-tutorials.confluent.io/ Category:Kafka")
- 08:10, 25 March 2021 Gatling (hist | edit) [278 bytes] PeterHarding (talk | contribs) (Created page with "=Overview= Category:Gatling")
- 08:10, 25 March 2021 Docker (hist | edit) [66 bytes] PeterHarding (talk | contribs) (Created page with "=Docker= Category:Docker")
- 10:48, 14 November 2020 Interesting React Examples (hist | edit) [161 bytes] PeterHarding (talk | contribs) (Created page with " * https://upmostly.com/tutorials/build-an-infinite-scroll-component-in-react-using-react-hooks Category:Examples Category:React Category:Javascript")