the-stack-inspection / data /email_detections_fn.json
loubnabnl's picture
loubnabnl HF staff
Duplicate from bigcode/pii-test
461c45d
raw
history blame
No virus
12.3 kB
["/**\n * @author {PI:FN:benyuwan@gmail.comEND_PI}\n * @file tags\u7684model\n */\n\nimport query from '../utils/query'\nimport escape from '../utils/escape'\n\nclass Tags {\n async updateTag(id, tags) {\n return await query(escape`UPDATE ARTICLE SET tags=${tags} WHERE id=${id}`)\n }\n}\n\nexport default new Tags()\n", "<?php\n# Variables\n$page = 'contact';\n?>\n\n<!DOCTYPE html>\n<html lang=en>\n<head>\n<?php\nob_start();\ninclude( \"includes/head.php\" );\n$buffer = ob_get_contents();\nob_end_clean();\n$buffer = str_replace( \"%TITLE%\", \"Cool City Band - Contact\", $buffer );\necho $buffer;\n?>\n<meta name=\"description\" content=\"\">\n</head>\n\n<body>\n<!-- Navigation -->\n<?php include ('includes/navigation.php') ?>\n<section class=\"section1\">\n <div class=\"container\" style=\"min-height:900px\">\n <div class=\"row\">\n <div class=\"col-lg-12\">\n <h1 class=\"page-header\">Contact Us </h1>\n </div>\n </div>\n <div class=\"row section-content\">\n <div class=\"col-md-8\">\n <p class=\"lead\"> Thank You!\n \n Your message has been sent, we'll be in touch shortly. </p>\n </div>\n <div class=\"col-md-4\">\n <h3>Leader/Conductor/Pianist</h3>\n <p><strong>Roy Geesa</strong></p>\n <p><i class=\"fa fa-phone\"></i> 317-529-3640 (text/voice)</p>\n <p><i class=\"fa fa-envelope-o\"></i> <a href=\"mailto:roygeesa@gmail.com\">PI:FN:roygeesa@gmail.comEND_PI</a> </p>\n <ul class=\"list-unstyled list-inline list-social-icons\">\n <li> <a href=\"https://www.facebook.com/Cool-City-Band-149866258393477/?fref=ts\" target=\"_blank\"><i class=\"fa fa-facebook-square fa-2x\"></i></a> </li>\n </ul>\n </div>\n </div>\n <!-- /.row --> \n \n </div>\n</section>\n<?php include ('includes/stayintouch.php') ?>\n<?php include ('includes/footer.php') ?>\n\n<!-- /.container -->\n<?php include ('includes/scripts.php') ?>\n</body>\n</html>", "---\ntitle: Alter the Appearance\nseo-title: Alter the Appearance\ndescription: Modify the script\nseo-description: Modify the script\nuuid: 6930381b-74c1-4e63-9621-621dbedbc25e\ncontentOwner: User\nproducts: SG_EXPERIENCEMANAGER/6.4/COMMUNITIES\ntopic-tags: developing\ncontent-type: reference\ndiscoiquuid: da3891d3-fa07-4c88-b4ac-077926b3a674\nexl-id: 01a20578-56c3-41b3-8a0e-281104af2481\n---\n# Alter the Appearance {#alter-the-appearance}\n\n## Modify the Script {#modify-the-script}\n\nThe comment.hbs script is responsible for creating the overall HTML for each comment.\n\nTo not display the avatar next to each posted comment:\n\n1. Copy `comment.hbs`from `libs`to `apps`\n 1. Select `/libs/social/commons/components/hbs/comments/comment/comment.hbs`\n 1. Select **[!UICONTROL Copy]**\n 1. Select `/apps/social/commons/components/hbs/comments/comment`\n 1. Select **[!UICONTROL Paste]**\n1. Open the overlaid `comment.hbs`\n * Double-click on node `comment.hbs`in `/apps/social/commons/components/hbs/comments/comment folder`\n1. Find the following lines and either delete or comment them out:\n\n ```xml\n <aside class=\"scf-comment-author\">\n <img class=\"scf-comment-avatar {{#if topLevel}}withTopLevel{{/if}}\" src=\"{{author.avatarUrl}}\"></img>\n ```\n\nEither delete the lines, or surround them with '&lt;!--' and '--&gt;' to comment them out. Also, the characters 'xxx' are being added as a visual indicator of where the avatar would have been.\n\n```xml\n<!-- do not display avatar with comment\n <aside class=\"scf-comment-author\">\n <img class=\"scf-comment-avatar {{#if topLevel}}withTopLevel{{/if}}\" src=\"{{author.avatarUrl}}\"></img>\n```\n\n## Replicate the Overlay {#replicate-the-overlay}\n\nPush the overlaid comments component to the publish instance using the Replication Tool.\n\n>[!NOTE]\n>\n>A more robust form of replication would be to create a package in Package Manager and [activate](../../help/sites-administering/package-manager.md#replicating-packages) it. A package can be exported and archived.\n\nFrom the global navigation, select **[!UICONTROL Tools > Deployment > Replication]** and then **[!UICONTROL Activate Tree]**.\n\nFor the Start Path enter `/apps/social/commons` and select **[!UICONTROL Activate]**.\n\n![chlimage_1-42](assets/chlimage_1-42.png) \n\n## View Results {#view-results}\n\nIf you login to the publish instance as an administrator, e.g., http://localhost:4503/crx/de as admin/admin, you can verify the overlaid components are there.\n\nIf you logout and re-login as `PI:FN:aaron.mcdonald@mailinator.comEND_PI/password` and refresh the page, you will observe that the posted comment no longer displays with an avatar, instead a simple 'xxx' is displayed.\n\n![chlimage_1-43](assets/chlimage_1-43.png)\n", "/*\n * Copyright (c) 2018. paascloud.net All Rights Reserved.\n * \u9879\u76ee\u540d\u79f0\uff1a\u9644\u8fd1\u6709\u597d\u5403\u7684\n * \u7c7b\u540d\u79f0\uff1aPublicUtil.java\n * \u521b\u5efa\u4eba\uff1a\u5170\u9f99\u658c\n * \u8054\u7cfb\u65b9\u5f0f\uff1aPI:FN:llb7891@163.comEND_PI\n * \u5f00\u6e90\u5730\u5740: https://github.com/NewlyLan/nearbyEat.git\n *\n *\n */\n\npackage com.paascloud;\n\nimport lombok.AccessLevel;\nimport lombok.NoArgsConstructor;\n\nimport java.util.Collection;\nimport java.util.Map;\n\n/**\n * The class Public util.\n *\n * @author paascloud.net@gmail.com\n */\n@NoArgsConstructor(access = AccessLevel.PRIVATE)\npublic class PublicUtil {\n\n\t/**\n\t * \u5224\u65ad\u5bf9\u8c61\u662f\u5426Empty(null\u6216\u5143\u7d20\u4e3a0)\n\t * \u5b9e\u7528\u4e8e\u5bf9\u5982\u4e0b\u5bf9\u8c61\u505a\u5224\u65ad:String Collection\u53ca\u5176\u5b50\u7c7b Map\u53ca\u5176\u5b50\u7c7b\n\t *\n\t * @param pObj \u5f85\u68c0\u67e5\u5bf9\u8c61\n\t *\n\t * @return boolean \u8fd4\u56de\u7684\u5e03\u5c14\u503c\n\t */\n\tpublic static boolean isEmpty(Object pObj) {\n\t\tif (pObj == null) {\n\t\t\treturn true;\n\t\t}\n\t\tif (pObj == \"\") {\n\t\t\treturn true;\n\t\t}\n\t\tif (pObj instanceof String) {\n\t\t\treturn ((String) pObj).length() == 0;\n\t\t} else if (pObj instanceof Collection) {\n\t\t\treturn ((Collection) pObj).isEmpty();\n\t\t} else if (pObj instanceof Map) {\n\t\t\treturn ((Map) pObj).size() == 0;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * \u5224\u65ad\u5bf9\u8c61\u662f\u5426\u4e3aNotEmpty(!null\u6216\u5143\u7d20\u5927\u4e8e0)\n\t * \u5b9e\u7528\u4e8e\u5bf9\u5982\u4e0b\u5bf9\u8c61\u505a\u5224\u65ad:String Collection\u53ca\u5176\u5b50\u7c7b Map\u53ca\u5176\u5b50\u7c7b\n\t *\n\t * @param pObj \u5f85\u68c0\u67e5\u5bf9\u8c61\n\t *\n\t * @return boolean \u8fd4\u56de\u7684\u5e03\u5c14\u503c\n\t */\n\tpublic static boolean isNotEmpty(Object pObj) {\n\t\tif (pObj == null) {\n\t\t\treturn false;\n\t\t}\n\t\tif (pObj == \"\") {\n\t\t\treturn false;\n\t\t}\n\t\tif (pObj instanceof String) {\n\t\t\treturn ((String) pObj).length() != 0;\n\t\t} else if (pObj instanceof Collection) {\n\t\t\treturn !((Collection) pObj).isEmpty();\n\t\t} else if (pObj instanceof Map) {\n\t\t\treturn ((Map) pObj).size() != 0;\n\t\t}\n\t\treturn true;\n\t}\n\n}\n", "---\nlayout: post\ntitle: \"Vadym Bartko - Python Backend Engineer\"\nauthor: \"Vadym Bartko\"\npermalink: /my_cv/\n---\n\n\n[My CV in PDF](/assets/other/Vadym Bartko - Python Backend Engineer.pdf)\n\n\n## Contacts\n* email: [PI:FN:hudvin@gmail.comEND_PI](hudvin@gmail.com) or [PI:FN:vadym.bartko@protonmail.comEND_PI](PI:FN:vadym.bartko@protonmail.comEND_PI)\n\n* skype: hudvin\n\n\n## COMPUTER SKILLS AND COMPETENCES\n**AWS:**\nLambda, SQS, SNS, S3, Textract\n\n**Backend:**\nPython Backend Stack - Flask, Django, DRF, gunicorn, RabbitMQ, Celery,\nboto3, Tornado, Flasgger, dynaconf, MongoDB, ElasticSearch etc\n\n**Pdf Processing:**\nghostscript, fitz\n\n**AI:**\nConvolutional Neural Networks, image classification, object detection, image\ncaptioning, image segmentation(UNet), homography, keypoints detection,\nimage processing, FaceNet, classification and clusterization methods, ROS,\ndatasets preparation\n\n**AI Tools:**\nOpenCV, Scikit-learn, Scikit-image, Tensorflow, Pandas, Jupyter Notebook,\nKeras, Dlib, Pillow\n\n**Languages:**\nPython, Java\n\n**OS:**\nLinux (Debian based), Windows\n\n**Cloud and Deployment:**\nKubernetes, Docker, nvidia-docker, Helm, AWS, microservices and distributed systems\n\n**Other:**\nsome experience with LIDARs and stereocameras, R&D, basic language\nprocessing\n\n\n\n## NOTABLE PROJECTS\n### [pdf processing - fintech]\nprocessing and analysis of financial pdf documents, OCR, dealing with pdf\nformat issues, pdf/image compression and optimization, ghoscript based\nprocessing, dealing with font related issues\n\nghostscript, imagemagic, fitz, flask, AWS Lambda, AWS Te xtract\n\n### Khumbu\nimage search engine based on AI and computer vision. Performs face\nrecognition, object detection, image classification, metadata extraction, query\nprocessing.\n\nDocker, RabbitMQ, Flask, Mongo, Keras, Tensorflow, Kubernetes, React\n\ntechnical research, market research and analysis, prepare pitch deck,\ninterviewing potential customers, talk to investors, implement backend and\nfrontend parts\n\n### [bots and image processing]\nautomatically train customer specific NLP bots, deploy ML apps to cloud\nKubernetes, Helm, nvidia-docker, Flask, Celery, Airflow\n\nimplement web api for third-party ML models, build distributed training system, Kubernetes management and deployment, performance optimization\n\n### [media assets management software]\nface detection and recognition, image tagging, inappropriate content detection\n\nOpenCV, Keras, Tensorflow, Docker, dlib, pandas, scikit-image\n\nimplement image classification and nsfw content detection, build dataset for\nface recognition tasks, test various facerecog approaches, integrate with\nanother services\n\n### [autonomous robocar]\ncontrol, navigation, route planning and map building for small 4W robot\nOpenCV, ROS, LIDAR, ZED Camera\n\nhardware design, test various SLAM algorithms, setup ROS env for wheel\nrobot, experiments with LIDAR and stereocamera\n\n### [gene variations classification]\ndetect pathogenic variations in genes\npandas, scikit-learn\n\n### ITraffic\ndetect empty parking lots using webcamera\nOpencv, Caffe, digits, Python, Docker, RabbitMQ; AKAZE/ORB/BRISK,\nhomography\n\ncreate datasets, train models, implement API for models, deployment,\nimplement cv tasks\n\n### [crawling/scraping]\nlarge scale web crawling and data extraction\n\nRabbitMQ, MySQL, Python, PhantomJS, RedShift, S3, EC2, ElasticSearch,\nNLTK\n\n### Firefly\nweb manager for scientific papers\n\nGridFS, TitanDB, ElasticSearch\n\n### Nomad\ndistributed crawler\n\nTitanDB, OrientDB, gremlin\n\n### Denigma\ntools for ageing research project, server administration, knowledge extraction\n\nCloudStack, Scala, NLTK, OpenNLP, semantic tools\n\nresearch, backend implementation, some DevOps\n\n### BigPlanet\noffline map with different sources of geo data\n\nAndroid 2.x\n\n\n\n\n\n## WORK EXPERIENCE\n* 2020 \u2013 current time Zoral, Python Backend Engineer\n\n* 2018 \u2013 2019 Khumbu, founder\n\n* 2015 \u2013 2019 Lohika, Machine Learning Engineer\n\n* 2014 \u2013 2015 freelance(Python Engineer)\n\n* 2013 \u2013 2014 Codeminders, Java Engineer\n\n* 2012 \u2013 2013 Researcher, freelance\n\n* 2011 \u2013 2012 Ciklum, Java/Android Software Engineer, Team Lead\n\n* 2009 \u2013 2011 P-Product, Java/Android Software Engineer\n\n* 2008 \u2013 2009 N.S, co-founder\n\n* 2007-2008 Exadel, Java Engineer\n\n\n## EDUCATION AND TRAINING\n* University Kharkiv National University of Radio Electronics, 2008 \u2013 2014\n\n* Degree BS in Information Technology\n\n* Online course Machine Learning, Coursera\n\n* Online course Introduction to Artificial Intelligence, EdX\n\n* Certification MapR Certified Hadoop Developer, [https://accredible.com/10056013](https://accredible.com/10056013)\n\n## OTHER\n* Mother tongue(s): Russian\n\n* Other language(s): English, Ukrainian, Deutsch(beginner)\n\n* Hobbies: climbing, hiking, photography, history, art\n\n* Personal blog: [https://vadym.bartko.me/](https://vadym.bartko.me/)\n"]