# Ray Bogman — Fractional CTO · AI Innovator · Speaker · Author
> Ray Bogman is a Dutch technology leader with 25+ years of experience. He is currently Head of Innovation at Alumio, where he is building a new AI product from scratch. He is also available as a Fractional CTO. Former Head of Commerce Customer Engineering EMEA at Adobe. Founder of five companies. Author of the Magento 2 Cookbook. Winner of Adobe's Global Consultant of the Year 2021.
Full Markdown of every page on https://raybogman.com.
# Magento Imagine 2018 Recap
Source: https://raybogman.com/blog/magento-imagine-2018-recap.md
It's a wrap, **Magento Imagine 2018** was a big success. More than 3000 Magento experts and ecommerce professionals attended this years Magento Imagine at the Wynn in Las Vegas. Here is a small summary of all important **Magento** news.
### Magento Imagine Excellence Awards
After receiving a record-breaking 250 submissions, last night Magento honored 16 recipients for their outstanding achievements in commerce.
### Magento PWA Studio
Magento has announced 'Progressive Web Applications (PWA) Studio,' a suite of tools for building online stores with app-like experiences. PWA Studio will allow solution partners and UX developers to deliver fast and simple front-end experiences on mobile devices.
### Magento Advanced payments and shipping options
New integrations have been announced with Amazon Pay, Klarna, and Vertex to expedite the checkout process, provide flexible payment terms, and deliver instant and accurate tax and shipping rates.
### DHL Premier Partnership
The industry-leading Deutsche Post DHL Group has joined Magento as a Premier Partner. Together, Magento Commerce and DHL will work together to provide merchants with progressive and flexible shipping options.
### Magento 2.2.4
Magento announced the latest minor release of the Magento 2.2 branch at its Annual 'Imagine' conference in Las Vegas. Merchants can leverage the power of new Core Bundled Extensions from partners like **Amazon**, **Klarna**, and **Vertex**:
- Reduce cart abandonment and increase AOV with a faster, more transparent, and flexible checkout
- Save time and simplify operations with integrated shipping and tax solutions
- Provide better shopping experiences with faster image loading and search results
- Lost of bugfixes
### Magento Association/Community Insider program
Finally, the new Magento Association and Community Insider Program are designed to drive more collaboration with the company for over 315,000 developers and 4,000 agencies.
See you all at Magento Imagine 2019 - 13-15 May, Wynn Las Vegas
---
# Magento PWA Studio Production setup
Source: https://raybogman.com/blog/magento-pwa-studio-production-setup.md
It's have been some time since my last blog or any writing at all. My latest work dates back to the [**Magento 2 Cookbook**](/magento-2-cookbook/) published in 2016. I am a big fan of small tutorials or recipes style blogs and could not resist creating a new one on **Magento's PWA Studio**.
All thought there are many routes to Rome I am picking the high road on this one. Easy setup using a clean Ubuntu 16.04 including Nginx as a **reverse proxy** for SSL termination.
So please follow me on a journey to run Magento's PWA Studio on a production-like setup.
### Install the essentials
Please run the following command from the shell on a clean setup.
```
apt-get install -y nodejs yarn nginx build-essential
```
Create dhparam file
```
openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048
```
Create your free SSL certificate or use your own SSL certs and move/replace them within your SSL directory like **/etc/ssl/certs**.
Remove the 'default' symlink in **/etc/nginx/sites-enabled** and create a new config file like **pwa.conf** and add the following config.
```nginx
server {
listen 80;
server_name www.frontend-url.com;
rewrite ^/(.*) https://$host/$1 permanent;
}
server {
listen 443 ssl http2;
port_in_redirect off;
server_name www.frontend-url.com;
access_log /var/log/nginx/pwa-access.log;
error_log /var/log/nginx/pwa-error.log;
location / {
proxy_pass https://www.frontend-url.com:8080;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Port 443;
proxy_set_header Host $host;
proxy_set_header Connection "";
}
ssl_certificate /etc/ssl/certs/www.frontend-url.com.crt;
ssl_certificate_key /etc/ssl/certs/www.frontend-url.com.key;
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:50m;
resolver 8.8.8.8;
resolver_timeout 10s;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_dhparam /etc/ssl/certs/dhparam.pem;
}
```
Save and close the file and run:
```
service nginx configtest
```
If the result is **"Testing Nginx configuration [ OK ]"** you are ready to restart Nginx:
```
service nginx restart
```
### Setup PWA studio
Now Nginx is ready, we can setup your PWA project. Please review the [PWA Studio official guidelines](https://magento.github.io/pwa-studio/venia-pwa-concept/setup/) as well.
```
git clone https://github.com/magento/pwa-studio.git
yarn install
```
Copy the following **.env** data to the packages/venia-concept directory:
```
MAGENTO_BACKEND_URL=https://www.backend-url.com/
CUSTOM_ORIGIN_EXACT_DOMAIN=www.frontend-url.com
STAGING_SERVER_HOST=0.0.0.0
STAGING_SERVER_PORT=8080
```
Now run the following command to create custom SSL certificate:
```
yarn buildpack create-custom-origin packages/venia-concept
```
The last step will build the PWA Studio setup and run venia in staging mode:
```
yarn run build && yarn run stage:venia
```
Happy PWA Studio time!
#### Some useful commands
```
lsof -i :8080 # check which process runs on port 8080
kill -9 'PID' # in case ctrl+c does not work
netstat -tulpn # shows all ports and applications
```
---
# Jekyll+Travis+Lighthouse+Heroku=CI/CD
Source: https://raybogman.com/blog/jekyll-travis-lighthouse-heroku-ci-cd.md
Ever since Github started supporting **Jekyll** within **[Github Pages](https://pages.github.com/)** I was sold. So when it comes to easy, fast, stable, flexible, security free and **high-performance websites** I like to build them in Jekyll.
But choosing **Jekyll** is not the topic of this blog. I like to share a topic on **Continuous development** and **Continuous Integration**. When working with **Magento** I always preferred to be aware of the code quality I or my team wrote.
The following steps will guide you on how to setup a **Continuous development** and **Continuous Integration** developing stream on **Jekyll** using **Lighthouse CI**, **Lighthouse Server**, **Travis CI**, and **Heroku**.
And keep in mind always **Design for Performance**!
### Summary Steps
1. [Install lighthouse-ci locally](#1-install-lighthouse-ci-locally)
2. [Signup and create .travis.yml file](#2-signup-and-create-travisyml-file)
3. [Create lighthouserc.yml with the following config](#3-create-lighthousercyml-with-the-following-config)
4. [Create LHCI_GITHUB_APP_TOKEN and add it to env in Travis](#4-create-lhci_github_app_token-and-add-it-to-environment-variables-in-travis)
5. [Signup at Heroku](#5-signup-at-heroku)
6. [Install Heroku CLI](#6-install-heroku-cli)
7. [Create Heroku config and push the app to production](#7-create-heroku-config-and-push-the-app-to-production)
8. [Run lhci wizard](#8-run-lhci-wizard)
9. [Add LHCI_TOKEN to env in Travis](#9-add-lhci_token-to-environment-variables-in-travis)
10. [Update serverBaseUrl in lighthouserc.yml](#10-update-serverbaseurl-in-lighthousercyml)
11. [Push code to Git and let the magic do its thing!](#11-push-code-to-git-and-let-the-magic-do-its-thing)
### 1. Install lighthouse-ci locally
```
npm install -g @lhci/cli@0.3.x
```
### 2. Signup and create .travis.yml file
If not already, signup for [Travis-ci](https://travis-ci.com/) and connect the Travis CI [Github Apps](https://github.com/apps/travis-ci) to your Github profile repository.

Once Travis CI is connected to your Github account create `.travis.yml` in your root directory:
```yaml
language:
- node_js
node_js:
- '10'
addons:
chrome: stable
before_install:
- npm install -g @lhci/cli@0.3.x
script:
- echo "Notice - no test specified"
after_success:
- lhci autorun
```
### 3. Create lighthouserc.yml with the following config
```yaml
ci:
collect:
numberOfRuns: 3
additive: true
url:
- https://your-url.com/
- https://your-url.com/catalog-page/
- https://your-url.com/product-page/
assert:
lighthouse: all
assertions:
offscreen-images: 'on'
uses-webp-images: 'on'
color-contrast: 'on'
first-contentful-paint:
- error
- maxNumericValue: 2000
aggregationMethod: optimistic
interactive:
- error
- maxNumericValue: 5000
aggregationMethod: optimistic
upload:
target: lhci
serverBaseUrl: https://your-app-url.herokuapp.com/
token: $LHCI_TOKEN
```
### 4. Create LHCI_GITHUB_APP_TOKEN and add it to Environment Variables in Travis
Click this [link](https://github.com/apps/lighthouse-ci) and add it to your Github account. Make sure to copy/paste the **LHCI_GITHUB_APP_TOKEN** since this will be only shared once.

Add 'Name': LHCI_GITHUB_APP_TOKEN and the 'Value': 'token' into the Travis CI settings.

### 5. Signup at Heroku
Create a **[Heroku](https://signup.heroku.com/)** account. Remember every FREE Heroku app has 550 free dyno hours per month.
### 6. Install Heroku CLI
Download and install the **[Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli)** toolset.
```
brew tap heroku/brew && brew install heroku
heroku login
```
### 7. Create Heroku config and push the app to production
```bash
mkdir lhci-heroku && cd lhci-heroku && git init
curl https://raw.githubusercontent.com/GoogleChrome/lighthouse-ci/master/docs/recipes/heroku-server/package.json > package.json
curl https://raw.githubusercontent.com/GoogleChrome/lighthouse-ci/master/docs/recipes/heroku-server/server.js > server.js
git add -A && git commit -m 'Initial commit'
heroku create
heroku addons:create heroku-postgresql:hobby-dev
git push heroku master
heroku ps:scale web=1
heroku open
```
### 8. Run lhci wizard
```
lhci wizard
```
### 9. Add LHCI_TOKEN to Environment Variables in Travis

### 10. Update serverBaseUrl in lighthouserc.yml
Update the Heroku app url in `lighthouserc.yml` in the `serverBaseUrl` section.
### 11. Push code to Git and let the magic do its thing!
```
git add -A && git commit -m 'LHCI first run'
git push origin master
```




### It's a wrap!
I hope you liked building it, well it did when prepping this.
### Manual LHCI autorun
```
lhci autorun
```
### Reference:
- [Getting Started](https://github.com/GoogleChrome/lighthouse-ci/blob/master/docs/getting-started.md)
- [Heroku Server Recipe](https://github.com/GoogleChrome/lighthouse-ci/tree/master/docs/recipes/heroku-server)
---
# Magento PWA Studio Lighthouse server
Source: https://raybogman.com/blog/magento-pwa-studio-lighthouse-server.md
**Magento** + **PWA Studio** = **High Performance**! OOTB (Out Of The Box).
But please keep in mind that every custom theme/layout/template or whatever style you prefer to implement could have some minor or major drawbacks in regards to web performance.
So unless you have not read my previous blog on how to build a **[Lighthouse server](/blog/jekyll-travis-lighthouse-heroku-ci-cd/)**, please do before you continue.
When it comes to using **Google Lighthouse Server** I think it's possible to use two approaches:
1. Basic - Using a CI server and testing your URL(s) remotely.
2. Advanced - Using a CI server and testing your internally build URL(s).
For this blog, I prefer addressing the "Basic" version. The recipe is really simple: PWA Studio codebase, Lighthouse Server, Travis CI, Github account, .travis.yml and lighthouserc.yml.
And keep in mind always **Design for Performance**!
### Summary Steps
1. [Install lighthouse-ci locally](#1-install-lighthouse-ci-locally)
2. [Signup and create .travis.yml file](#2-signup-and-create-travisyml-file)
3. [Create lighthouserc.yml](#3-create-lighthousercyml-with-the-following-config)
4. [Create LHCI_GITHUB_APP_TOKEN](#4-create-lhci_github_app_token-and-add-it-to-environment-variables-in-travis)
5. [Signup at Heroku](#5-signup-at-heroku)
6. [Install Heroku CLI](#6-install-heroku-cli)
7. [Create Heroku config](#7-create-heroku-config-and-push-the-app-to-production)
8. [Run lhci wizard](#8-run-lhci-wizard)
9. [Add LHCI_TOKEN to Travis](#9-add-lhci_token-to-environment-variables-in-travis)
10. [Update serverBaseUrl](#10-update-serverbaseurl-in-lighthousercyml)
11. [Push code to Git!](#11-push-code-to-git-and-let-the-magic-do-its-thing)
### 1. Install lighthouse-ci locally
```
npm install -g @lhci/cli@0.3.x
```
### 2. Signup and create .travis.yml file

```yaml
language:
- node_js
node_js:
- '10'
addons:
chrome: stable
before_install:
- npm install -g @lhci/cli@0.3.x
script:
- echo "Notice - no test specified"
after_success:
- lhci autorun
```
### 3. Create lighthouserc.yml with the following config
```yaml
ci:
collect:
numberOfRuns: 3
additive: true
url:
- https://your-url.com/
- https://your-url.com/catalog-page/
- https://your-url.com/product-page/
assert:
lighthouse: all
assertions:
offscreen-images: 'on'
uses-webp-images: 'on'
color-contrast: 'on'
first-contentful-paint:
- error
- maxNumericValue: 2000
aggregationMethod: optimistic
interactive:
- error
- maxNumericValue: 5000
aggregationMethod: optimistic
upload:
target: lhci
serverBaseUrl: https://your-app-url.herokuapp.com/
token: $LHCI_TOKEN
```
### 4-10. Setup Steps
Follow the same steps as outlined in my [previous blog post](/blog/jekyll-travis-lighthouse-heroku-ci-cd) for setting up LHCI tokens, Heroku, and the wizard.
### 11. Push code to Git and let the magic do its thing!
```
git add -A && git commit -m 'LHCI first run'
git push origin master
```




### It's a wrap!
I hope you liked building it, well it did when prepping this.
### Manual LHCI autorun
```
lhci autorun
```
### Reference:
- [Getting Started](https://github.com/GoogleChrome/lighthouse-ci/blob/master/docs/getting-started.md)
- [Heroku Server Recipe](https://github.com/GoogleChrome/lighthouse-ci/tree/master/docs/recipes/heroku-server)
---
# Amazon AWS Certified Cloud Practitioner exam preparation
Source: https://raybogman.com/blog/amazon-aws-certified-cloud-practitioner-exam-preparation.md
Getting **AWS certified** can be a challenge for some of us. The main question remains, where do I start?
So my method was watching most of all online training videos. The one I most liked was created by **Stephane Maarek** posted on **Udemy.com** [Ultimate AWS Certified Cloud Practitioner - 2021](https://www.udemy.com/course/aws-certified-cloud-practitioner-new/).
This **Ultimate AWS Certified Cloud Practitioner - CLF-C01** online training contains:
* 11 hours of on-demand video
* 5 docs
* 1 practice exams
* livelong Access
### Practice exams
* [5 extra practice exams](https://www.udemy.com/course/practice-exams-aws-certified-cloud-practitioner/)
* [ExamTopics - 520+ questions](https://www.examtopics.com/exams/amazon/aws-certified-cloud-practitioner/view/)
### Exam score
To pass you need a score of 700 or higher. The exam has 65 single and multiple-choice questions. You have 90 minutes which should be fine.

### White Papers
* [Overview of Amazon Web Services](https://d0.awsstatic.com/whitepapers/aws-overview.pdf)
* [Architecting for the Cloud: Best Practices](https://aws.amazon.com/blogs/aws/new-whitepaper-architecting-for-the-cloud-best-practices/)
* [How AWS Pricing Works](http://d1.awsstatic.com/whitepapers/aws_pricing_overview.pdf)
* [Compare AWS Support Plans](https://aws.amazon.com/premiumsupport/plans/)
* [AWS well architected framework](https://d1.awsstatic.com/whitepapers/architecture/AWS_Well-Architected_Framework.pdf)
### AWS Products/Acronyms
The following AWS products/acronyms are important to know by heart:
* **IAM** - Identity and Access Management
* **EC2** - Elastic Computing Cloud
* **EBS** - Elastic Block Store
* **EFS** - Elastic File System (NFS)
* **ELB** - Elastic Load Balancer
* **ASG** - Auto Scaling Group
* **S3** - Simple Cloud Storage
* **RDS** - Relational Database Service
* **DynamoDB** - noSQL/Serverless DB
* **Redshift** - OLAP (data warehouse)
* **ECS** - Elastic Container Service
* **Fargate** - Serverless Container Service
* **Lambda** - Function as a Service/Serverless Computing
* **CloudFormation** - Infrastructure as code
* **Route53** - Domain Name Service (DNS)
* **CloudFront** - Content Delivery Network (CDN)
* **VPC** - Virtual Private Cloud
* **AWS Shield** - DDOS protection
* **AWS WAF** - Web Application Firewall
### AWS Support Plans
- Basic
- Developer
- Business
- Enterprise

### AWS Trusted Advisor
- Cost Optimization
- Performance
- Security
- Fault Tolerance
- Service Limits

### Well Architected Framework
- Operational Excellence
- Security
- Reliability
- Performance Efficiency
- Cost Optimisation

### AWS Shared Responsibility Model

Enjoy your journey to get AWS Certified!
---
# Oxford AI Programme Graduate: Leadership Lessons from AI
Source: https://raybogman.com/blog/oxford-ai-programme-graduate-leadership-lessons.md
**
Most leaders talk about AI. Few actually study it. I decided to do both — and what I learned at Oxford changed how I think about leadership, technology, and the future of business forever.**
In early 2023, I completed the [Oxford Artificial Intelligence Programme](https://info.oxford-onlineprogrammes.getsmarter.com/presentations/lp/oxford-artificial-intelligence-programme) through Oxford’s online learning platform, finishing with an overall grade of **88.9%** — above the class average of 83.2%. But the grade is almost beside the point. What matters far more is what six intensive modules of deep, structured learning revealed about where AI is heading, how leaders should respond, and why most organisations are still asking the wrong questions.
This is not a course review. This is a leadership reflection.
## The Conventional Wisdom
The prevailing view in most boardrooms goes something like this: _“We need to adopt AI. We’ll hire a data science team, plug in some tools, and let the technology do the rest.”_ Leaders are told to be “AI-aware,” to attend a half-day workshop, to read a McKinsey report, and to delegate the hard thinking to someone with a PhD in machine learning.
The conventional wisdom says AI is a technical problem. It belongs in the IT department. Leadership’s job is to set the vision and get out of the way.
I used to half-believe this. Then I spent weeks inside the Oxford Artificial Intelligence Programme — and I no longer believe it at all.
## A Different Perspective
**AI is not a technical problem. It is a leadership problem. And leaders who refuse to truly understand it are not delegating responsibility — they are abdicating it.**
Let me explain what studying this subject at Oxford’s level of rigour actually revealed.
The programme took me through machine learning, deep neural networks, recommendation systems, image recognition, ethical frameworks, and finally, building a full business case for AI implementation. Each module demanded not just comprehension but _application_ — how does this work inside a real organisation, with real constraints, real people, and real consequences?
In Module 4, I submitted a project exploring AI’s potential within my own organisation. I proposed a sandboxed CI/CD pipeline approach for AI-assisted code changes — a concept my assessor described as “pretty complex and novel” with “applications in other industries.” That idea didn’t come from a textbook. It came from understanding the technology deeply enough to connect it to a specific operational challenge. **You cannot make those connections from a distance. You cannot lead transformation you do not understand.**
In Module 5, I developed a set of ethical principles for AI deployment, earning 100% — and more importantly, earning feedback that highlighted my emphasis on _responsibility_ as a standout element. That is not an accident. Responsibility is a leadership word. It should sit at the centre of every AI strategy, not as a compliance checkbox, but as a cultural commitment.
> “The most dangerous leader in the AI era is not the one who knows nothing about the technology. It is the one who knows just enough to be confidently wrong.”
Even my lower-scoring modules taught me something critical. In Module 1, I analysed why VHS beat Betamax — a case study about technology adoption that has direct parallels to AI today. My assessor pushed me to go deeper on accessibility and affordability. That feedback stung slightly, but it was correct. **The best technology does not always win. The most accessible, most trusted, most human-friendly technology wins.** That is an insight every AI leader needs tattooed on their wall.
In Module 3, I was pulled up for answering the question I _wanted_ to answer rather than the one being asked — specifically around image recognition features. Again, a leadership lesson hiding inside a technical critique: _listen precisely, respond precisely, and never assume you already know what the problem is._
## Counterarguments — And Why They Fall Short
Some will argue that leaders don’t need to understand the mathematics of gradient descent or the specifics of q-learning versus modern reinforcement learning approaches. Fair point — and the Oxford programme itself would agree. The goal is not to turn executives into engineers.
But there is a significant gap between understanding _everything_ and understanding _enough_. Right now, most senior leaders sit far too close to the “nothing” end of that spectrum. They cannot evaluate vendor claims. They cannot challenge their own data science teams. They cannot identify where AI will create genuine value versus where it will generate expensive noise. They cannot make ethical judgements about deployment without understanding what is actually being deployed.
**Structured, rigorous education — not a podcast, not a LinkedIn post, not a conference keynote — is what closes that gap.** The Oxford Artificial Intelligence Programme is built precisely to serve that purpose, and it delivers.
## What This Means for Business Leaders
If you are in a leadership position in 2024 and beyond, here is what my Oxford experience tells me you need to face squarely:
- **Your competitors are not waiting.** AI is already reshaping recommendation engines, customer support, code development, and operational efficiency. The organisations pulling ahead are those where leadership _understands_ the tools well enough to deploy them intelligently.
- **Ethics is now a strategic function.** The EU AI Act, growing public scrutiny, and high-profile AI failures mean that responsible AI governance is not optional. Leaders need the conceptual framework to design and enforce ethical principles — not just sign off on a policy document someone else wrote.
- **Your instincts about technology adoption are probably wrong.** The VHS lesson applies directly to generative AI tools, large language models, and automation platforms right now. The technology that wins will be the one your customers and employees trust and find accessible — not necessarily the most technically impressive one.
- **A business case is not a vision statement.** Module 6 taught me that an AI business case must address genuine organisational needs, measurable outcomes, and realistic implementation pathways. Vague AI ambition is not strategy. It is noise.
> “Leadership in the AI age demands the courage to learn publicly, the discipline to go deep, and the humility to let the evidence change your mind.”
## What Should We Do About It
Here are my direct, actionable recommendations for any leader serious about navigating the AI era:
1. **Invest in structured education, not just awareness.** Enrol in a programme like the Oxford Artificial Intelligence Programme. Commit the 7–10 hours per week. Do the assignments. Accept the feedback. This is non-negotiable if you want to lead transformation credibly.
2. **Apply learning to your own organisation in real time.** Every module I completed, I connected directly to my organisation’s context. This is not theoretical — it is operational preparation. Start doing this from week one.
3. **Build ethical frameworks before you need them.** Do not wait for a crisis to develop your AI ethics principles. Draft them now, test them against real scenarios, and embed them into your governance structure.
4. **Challenge your AI vendors and internal teams.** Once you understand the basics of machine learning and deep learning, you will start asking better questions. Better questions lead to better decisions and far fewer expensive mistakes.
5. **Be honest about where your knowledge ends.** One of the most valuable things rigorous study teaches you is the precise shape of your own ignorance. Know it. Name it. And then go close the gaps.
## Frequently Asked Questions
### Is the Oxford Artificial Intelligence Programme worth it for non-technical leaders?
Absolutely — and in many ways, it is _designed_ for non-technical leaders. The programme builds conceptual understanding of machine learning, neural networks, and AI ethics without requiring a background in mathematics or programming. The emphasis is on strategic application: how do you identify AI opportunities, evaluate risks, and build a compelling business case? If you are a senior leader, a manager, or an entrepreneur, this programme gives you the vocabulary and frameworks to lead AI initiatives with genuine credibility.
### How difficult is the Oxford AI Programme, and how much time does it require?
The programme requires approximately 7–10 hours per week across six modules. The difficulty is real — assessors provide substantive, critical feedback, and high scores require genuine engagement with the material, not surface-level responses. I scored between 56% and 100% across different assignments, which reflects the varying complexity of each module’s demands. Expect to be challenged. That challenge is exactly what makes the qualification meaningful.
### What is the most important leadership lesson from studying AI at this level?
That responsibility cannot be delegated. You can delegate execution. You can delegate technical implementation. But the _decision_ to deploy AI in your organisation — and the accountability for what it does to your customers, your employees, and your culture — sits with leadership. Understanding the technology is what makes responsible decision-making possible. Without that understanding, you are not leading. You are hoping.
## The Bottom Line
**Completing the [Oxford Artificial Intelligence Programme](https://info.oxford-onlineprogrammes.getsmarter.com/presentations/lp/oxford-artificial-intelligence-programme) with an 88.9% overall grade is something I am proud of — not because of the number, but because of what earning it required: genuine effort, intellectual honesty, and the willingness to be wrong in order to learn.**
AI is the defining leadership challenge of our generation. It will not wait for you to feel ready. It will not slow down while you finish your current priorities. And it will absolutely not be led well by people who have never taken the time to truly understand it.
If you are a leader who is serious about navigating this era — not just surviving it, but shaping it — I would strongly encourage you to explore the Oxford Artificial Intelligence Programme for yourself. And if you have already taken a similar journey, I want to hear from you.
**Drop a comment below: What has been your most important AI learning as a leader? Let’s build this conversation together.**
---
# AWS Certified AI Practitioner: How I Passed & Why It Matters
Source: https://raybogman.com/blog/aws-certified-ai-practitioner-how-i-passed.md
**
Most cloud certifications tell you what AWS can do. The AWS Certified AI Practitioner certification tells the world what _you_ can do with AI — and right now, that distinction is worth everything.**
I recently passed the [AWS Certified AI Practitioner](https://aws.amazon.com/certification/certified-ai-practitioner/) exam as part of the early adopter program, and I want to be honest with you: this was not just another badge to hang on a LinkedIn wall. This certification forced me to think differently about how artificial intelligence, machine learning, and generative AI intersect with real-world cloud architecture — and that shift in thinking is already paying dividends in my day-to-day work.
A huge shout-out to [Alex Gayan](https://www.linkedin.com/in/alexgayan/), who was an outstanding study peer throughout this journey. Having someone to bounce ideas off, challenge assumptions, and hold each other accountable made a measurable difference. Certifications are often treated as solo missions. They don’t have to be.
In this post, I’ll walk you through the tools I used to prepare, why I believe this certification matters more than people are giving it credit for, and what it means for professionals navigating the AI-driven cloud landscape right now.
## The Conventional Wisdom
The general consensus in the tech community is that foundational-level certifications are primarily useful for beginners — people with little to no cloud experience who need a structured entry point. The prevailing view is that seasoned cloud professionals should skip straight to associate or professional-level certifications, where the “real” technical depth lives.
According to this logic, the **AWS Certified AI Practitioner** is a lightweight credential aimed at non-technical stakeholders, business analysts, or people who just want a credential that sounds impressive without requiring serious effort. Many dismiss it as a surface-level overview of AI concepts wrapped in AWS branding.
I respectfully, but firmly, disagree.
## A Different Perspective
**The AWS Certified AI Practitioner is not a beginner’s shortcut — it is a strategic credential for cloud professionals who want to lead in the AI era, not just participate in it.**
Here is what the conventional wisdom misses: the AI landscape is moving faster than any single technical specialization can capture. Organizations are not just asking “can you deploy a model?” They are asking “can you understand the responsible use of AI, evaluate foundation models, identify appropriate use cases for generative AI, and communicate those decisions across business and technical teams?” That is a cross-functional skill set — and it is exactly what this certification validates.
The exam covers a breadth of genuinely substantive topics:
- Core concepts of AI, ML, and deep learning — not just definitions, but practical distinctions
- Generative AI fundamentals, including prompt engineering, foundation models, and retrieval-augmented generation (RAG)
- AWS AI and ML services such as Amazon Bedrock, Amazon SageMaker, Amazon Rekognition, Amazon Lex, and more
- Responsible AI principles — bias, fairness, transparency, and governance
- Security and compliance considerations specific to AI workloads
- Evaluating AI model performance and understanding trade-offs
That is not a lightweight syllabus. That is the vocabulary and framework every cloud professional needs to be credible in AI conversations — with clients, with leadership, and with engineering teams.
> “In a world where everyone claims to understand AI, the professionals who can demonstrate structured, validated knowledge of AI principles will be the ones trusted to lead AI initiatives. Certification is not the ceiling — it is the foundation.”
Being part of the **early adopter program** added an extra layer of significance. Early adopters shape the feedback loop for new certifications — helping AWS understand whether the credential reflects real-world needs. It signals a commitment to staying ahead of the curve, not catching up to it.
## The Tools I Used to Pass
Preparation was deliberate, structured, and multi-layered. Here is what actually worked:
- **AWS Skill Builder** — The official learning platform offered structured learning paths specifically aligned to the exam objectives. The AI Practitioner learning plan on Skill Builder is genuinely well-constructed, and I highly recommend starting here. It includes digital courses, knowledge checks, and exam-style practice questions.
- **AWS official practice question sets** — Practicing with real AWS exam-style questions was critical for understanding how the exam frames scenarios. The language and structure of AWS questions has its own logic, and repetition builds fluency.
- **AWS Documentation and Whitepapers** — Particularly the AWS Responsible AI whitepaper and documentation for Amazon Bedrock and Amazon SageMaker. Reading primary source material gave me confidence in areas where courses only scratched the surface.
- **Peer study with Alex Gayan** — This cannot be overstated. We used a simple accountability framework: weekly check-ins, shared notes on challenging topics, and mock Q&A sessions where we explained concepts to each other out loud. Teaching a concept is the fastest way to expose the gaps in your own understanding.
- **Hands-on experimentation with AWS services** — Reading about Amazon Bedrock is one thing. Prompting foundation models directly, testing different parameters, and observing real outputs is another. Hands-on time made abstract concepts concrete.
> “Passive consumption of study material is preparation theater. Active recall, peer discussion, and hands-on practice are what actually produce exam-day confidence — and more importantly, real-world competence.”
## Acknowledging the Counterargument
To be fair: there is a legitimate concern that certifications can become performative — professionals collecting credentials without translating them into meaningful skills or outcomes. The cloud industry has seen this happen with other foundational certifications.
That concern is valid. But the rebuttal is simple: the value of a certification is not in the certificate. It is in the preparation process, the structured knowledge it builds, and the conversations and opportunities it unlocks. If someone passes this exam through pure memorization and never applies the knowledge, then yes — the credential has limited value to them. But that is a statement about how they engaged with the material, not about the material itself.
The AWS Certified AI Practitioner, studied with genuine intent, produces professionals who understand AI at a level that most of their peers do not.
## What This Means for Your Profession
**AI is no longer a specialization — it is becoming a baseline expectation.** Whether you are a solutions architect, a DevOps engineer, a cloud consultant, or a technical project manager, your clients and employers are increasingly expecting you to have informed, confident opinions on AI strategy, AI tooling, and AI risk.
This certification positions you to:
- **Lead AI conversations** with clients who are evaluating whether and how to adopt generative AI on AWS
- **Bridge the gap** between business stakeholders and technical teams by speaking both languages fluently
- **Evaluate AI services objectively** — knowing when Amazon Bedrock is the right choice, when SageMaker is more appropriate, and when neither is the answer
- **Demonstrate responsible AI awareness** — which is increasingly a procurement and compliance requirement in enterprise contexts
- **Accelerate your credibility** in a market where AI expertise is scarce and demand is accelerating
## What Should We Do About It
If you are a cloud professional who has been sitting on the fence about this certification, here is my direct advice:
1. **Start with AWS Skill Builder today.** Build the learning plan for the AWS Certified AI Practitioner and commit to consistent, scheduled study time. Do not binge-study — spaced repetition works better.
2. **Find a study peer.** The value of studying alongside someone like Alex Gayan cannot be replicated by solo study alone. Find someone at a similar stage and commit to mutual accountability.
3. **Get hands-on with AWS AI services.** Spend time in the AWS console with Amazon Bedrock, explore the model catalog, and run real experiments. Theory without practice is fragile under exam pressure — and useless in client conversations.
4. **Read the whitepapers.** Especially on Responsible AI. Exam questions in this domain reward depth, not surface-level familiarity.
5. **Take the exam before the early adopter window closes.** Being an early adopter is a signal. It demonstrates that you engage proactively with emerging technology, not reactively.
## Frequently Asked Questions
### Who is the AWS Certified AI Practitioner certification for?
The AWS Certified AI Practitioner is designed for anyone who wants to validate their knowledge of AI, ML, and generative AI concepts on AWS — regardless of a specific technical job role. It is particularly valuable for cloud professionals, consultants, architects, and technical managers who need to engage with AI strategy and AWS AI services in their work. No prior hands-on AI development experience is required, but a genuine understanding of cloud fundamentals will help.
### How difficult is the AWS Certified AI Practitioner exam?
The exam is not trivial, despite being foundational in classification. It requires a solid understanding of AWS AI and ML services, responsible AI principles, generative AI concepts including prompt engineering and foundation models, and the ability to evaluate use cases. Candidates who approach it seriously — using AWS Skill Builder, practice questions, and hands-on experimentation — will be well prepared. Those who rely on memorization alone will likely struggle with scenario-based questions.
### What is the value of this certification compared to other AWS certifications?
The AWS Certified AI Practitioner occupies a unique position: it is the only AWS certification that specifically focuses on AI, ML, and generative AI as its primary domain. While the AWS Machine Learning Specialty goes deeper into technical implementation, the AI Practitioner certification is broader in scope and specifically designed to produce well-rounded AI literacy. For professionals who work across solution design, client advisory, or cloud strategy roles, this breadth is often more immediately applicable than deep specialist knowledge.
## The Bottom Line
**The AI revolution is not coming — it is already here, and the professionals who invested in structured AI knowledge early are the ones who will lead it.** Passing the AWS Certified AI Practitioner exam as an early adopter was one of the most professionally purposeful decisions I have made this year. Not because of the certificate itself, but because of what the preparation built: a structured, validated framework for thinking about AI on AWS that I apply every single week.
If you are a cloud professional who wants to remain relevant, lead client conversations with confidence, and contribute meaningfully to the organizations you serve — this certification deserves a place on your roadmap.
**Have you taken the AWS Certified AI Practitioner exam, or are you considering it? I’d love to hear about your experience, your questions, or your study strategy in the comments below. Let’s keep the conversation going.**
---
# CTO Academy Digital MBA: Grow as a Tech Leader
Source: https://raybogman.com/blog/cto-academy-digital-mba-tech-leaders.md
**Most “leadership programs” for tech professionals are a waste of time and money — recycled theory, zero real-world application, and absolutely nothing that prepares you for the brutal complexity of leading technology at scale. The [CTO Academy](https://cto.academy/) Digital MBA for Technology Leaders is the exception that proves the rule.**
I recently completed the program myself, and what I experienced challenged my assumptions about online learning, professional development, and what it truly means to grow as a technology leader. This isn’t a sponsored review. This is an honest, direct account of why this program deserves your serious attention — and why doing nothing to invest in your leadership is the most dangerous career decision you can make right now.
## The Conventional Wisdom
The prevailing belief in the tech industry is simple: if you’re a great engineer, architect, or technical specialist, leadership will come naturally. Work hard, deliver results, get promoted — and the rest will figure itself out. Many IT professionals assume that reading a few books, attending occasional conferences, or completing a generic MBA is enough to make the leap from technical expert to transformational technology leader.
The result? Talented engineers promoted into CTO, VP, or Head of Technology roles — and left completely unprepared for the strategic, financial, and human dimensions of the job. **Technical brilliance alone does not make a technology leader. And yet, the industry keeps pretending otherwise.**
## A Different Perspective
**The gap between being technically excellent and being an effective technology leader is enormous — and almost nobody is taking it seriously enough.**
Consider this: a CTO or senior technology leader today must simultaneously manage engineering teams, navigate board-level conversations, understand funding models, drive product strategy, interpret data analytics, anticipate digital disruption, and inspire a culture of innovation. These are not skills that emerge from shipping great code. They must be learned, practiced, and continuously refined.
This is precisely where the **CTO Academy Digital MBA for Technology Leaders** steps in and delivers something genuinely different. The 12-month curriculum — also available self-paced for those with demanding schedules — covers nine comprehensive domains:
- **Leadership & Team** — building high-performance teams and leading with emotional intelligence
- **Personal Development** — becoming the leader you need to be, not just the one you are today
- **Finance & Funding** — understanding the financial levers that drive business decisions
- **The Business** — connecting technology strategy to commercial outcomes
- **Product Development** — bridging the gap between engineering and customer value
- **Data, Analytics & Reporting** — turning information into strategic advantage
- **Tech Strategy & Business Goals** — aligning technology roadmaps with organisational ambition
- **Information Management** — governance, security, and the responsible use of data
- **Digital Trends & Innovation** — staying ahead of disruption rather than reacting to it
What struck me immediately was the quality and intentionality of the content. [Andrew Weaver](https://www.linkedin.com/in/andrewweaver66/), [Jason Noble](https://www.linkedin.com/in/noblejason/), and the CTO Academy team have clearly invested deeply in creating material that is relevant, practical, and free from the filler that plagues so many online learning platforms. **Every module feels crafted by people who have actually lived the challenges they’re teaching.**
> “The best investment you will ever make is in yourself. Not in your tools, not in your tech stack — in your ability to think, lead, and inspire. The CTO Academy Digital MBA is designed precisely for that investment.”
The bonus content alone — contributed by leaders from across the global technology community — is extraordinary. These are candid, experience-rich perspectives from people operating at the highest levels of the industry. Perspectives you simply won’t find in textbooks or generic MBA programmes.
## Acknowledging the Counterarguments
Some will say: “I don’t have 12 months.” Fair point — which is exactly why the self-paced option exists. You control the timeline. Others will argue that real-world experience is the only teacher that matters. There is truth in that. But waiting years for experience to teach you what a structured, high-quality curriculum can deliver in months is an expensive and unnecessary sacrifice. **The best leaders combine structured learning with lived experience — they don’t choose one over the other.**
Others may question the value of any online programme versus a traditional MBA. Here’s the reality: a conventional MBA costs tens of thousands of euros or dollars, takes years, and was largely designed for general business professionals — not technology leaders facing the specific, fast-moving challenges of the digital economy. The CTO Academy Digital MBA is purpose-built for the world you actually operate in.
## What This Means for Tech Leaders and IT Professionals
**If you are in — or aspiring toward — a technology leadership role, the time to invest in your development is not “someday.” It is now.**
The technology landscape is evolving at a pace that makes standing still equivalent to falling behind. AI, cloud transformation, cybersecurity threats, digital disruption — these forces are reshaping every industry simultaneously. Leaders who understand both the technical and business dimensions of these shifts will be the ones who thrive. Those who remain purely technical will find their influence and relevance diminishing.
For senior IT professionals, this programme provides the strategic vocabulary and business acumen needed to earn a seat at the executive table. For aspiring CTOs, it provides the framework to step into that role with genuine confidence. For current CTOs, it provides structured reflection and continued sharpening of the skills that define great leadership.
> “Technology leadership is no longer a technical discipline with some management responsibilities attached. It is a strategic, human, and commercially-driven profession — and it demands education that reflects that reality.”
## What Should We Do About It
Here are my direct, actionable recommendations for any technology professional reading this:
1. **Stop waiting for your employer to invest in your leadership development.** Take ownership. Your growth is your responsibility.
2. **Audit the gaps in your current leadership toolkit.** Be honest about where your technical strength ends and your leadership capability needs to grow.
3. **Explore the CTO Academy Digital MBA for Technology Leaders** — review the curriculum, assess the fit, and take the first step toward structured, meaningful development.
4. **Connect with peers on the same journey.** The peer network within CTO Academy is one of its most underrated assets — surrounding yourself with ambitious, growth-oriented technology leaders accelerates your own development exponentially.
5. **Use the 10% discount** available through the link below. There is no rational reason to delay when the barrier to entry is this accessible.
My colleague Alex Gayan and I went through this journey together, and having a peer alongside you makes the experience richer, more accountable, and frankly more enjoyable. If you can, bring someone with you.
👉 **Enrol now and use the discount code for 10% off:** [https://lnkd.in/evjkys22](https://lnkd.in/evjkys22)
## Frequently Asked Questions
### Who is the [CTO Academy](https://cto.academy/) Digital MBA for Technology Leaders designed for?
The programme is designed for technology professionals at various stages of their leadership journey — from senior IT professionals aspiring to CTO-level roles, to current CTOs looking to sharpen their strategic and business capabilities. If you work in tech and want to lead with greater impact, this programme is relevant to you.
### How long does the programme take to complete?
The curriculum is structured as a 12-month programme, but it is also available self-paced, which means you can progress according to your own schedule and professional commitments. This flexibility makes it genuinely accessible for busy technology leaders.
### How does the CTO Academy Digital MBA differ from a traditional MBA?
A traditional MBA is a broad business qualification designed for general management. The CTO Academy Digital MBA is purpose-built for technology leaders — the content, case studies, guest contributors, and strategic frameworks are all designed around the specific challenges and opportunities that CTOs, VPs of Technology, and senior IT leaders face every day. It is more relevant, more focused, and far more cost-effective.
---
**The technology leaders who will define the next decade are not the ones who know the most about code — they are the ones who combine deep technical understanding with strategic vision, financial literacy, and the human skills to inspire great teams. The CTO Academy Digital MBA for Technology Leaders gives you the structure, the content, and the community to become exactly that leader.**
Don’t wait for a crisis, a missed promotion, or a performance review to tell you what you already know: leadership is a skill, and skills must be developed. **Start today.**
Have you completed the CTO Academy programme or are you considering it? I’d love to hear your perspective — drop a comment below and let’s continue the conversation.
---
# AI WordPress Sync for Jekyll & GitHub Pages: Edit in WordPress, Publish to GitHub
Source: https://raybogman.com/blog/ai-wordpress-sync-for-jekyll-github-pages.md
**Most static-site evangelists will tell you the trade-off is fair: lose the WordPress editor to gain Jekyll's speed, security, and near-zero hosting cost. I'm here to tell you that trade-off is no longer necessary.**
After months of running this exact site (the one you're reading right now) on a hybrid setup — WordPress for writing, Jekyll on GitHub Pages for hosting — I built the missing piece and released it as free, open-source software.
It's called **[AI WordPress Sync for Jekyll & GitHub Pages](/products/ai-wordpress-jekyll-sync/)**, and it's [live on WordPress.org](https://wordpress.org/plugins/raybogman-ai-sync-for-jekyll-github-pages/) today — install it like any other plugin from the official directory, or grab the source [on GitHub](https://github.com/raybogman/raybogman-ai-sync-for-jekyll).
## The Conventional Wisdom
The prevailing belief is that you have to pick a side. Either you commit to WordPress and accept the hosting bill, the database backups, the plugin update cycle, and the eternal performance optimization treadmill. Or you commit to a static site generator like Jekyll, give up the WordPress editor, and accept that every post means writing Markdown by hand, uploading images manually, and rewriting your internal links every time.
Most "WP-to-static" exporters reinforce this binary thinking — they run a one-shot dump and leave you with a folder of Markdown files you now have to maintain by hand. The migration is treated as a one-way door. Once you walk through it, the WordPress editor is gone.
## A Different Perspective
**You don't have to pick a side. You can have the WordPress editor _and_ Jekyll's performance, with AI cleaning up the boring bits in between.**
That's the entire premise of AI WordPress Sync for Jekyll & GitHub Pages. You write in WordPress as normal. The plugin watches for publishes, converts your HTML to clean Markdown with YAML front matter that matches your existing Jekyll site's conventions, uploads featured and inline images to your Jekyll repository, rewrites internal links, and commits everything to GitHub — all in one click.
The "AI" part isn't a gimmick. The plugin uses Claude or OpenAI (your choice, your API key) for two genuinely tedious tasks:
- **SEO meta descriptions** — when Yoast or RankMath haven't been filled in, the AI drafts a 1-2 sentence description on demand
- **Image alt text** — vision models look at the actual image content and write real alt text, not filename guesses
Disable AI entirely and the plugin still does the heavy lifting. The AI is the optional cherry on top — bring your own key, switch it on per task, or never switch it on at all.
## What's Actually In It
A short tour of what makes this different from every other WP-to-static plugin I've tried:
- **Style-aware conversion** — reads your existing Jekyll site's `_config.yml` and a sample of posts to match your front matter schema, Markdown conventions, and permalink patterns. No find-replace cleanup after the first sync.
- **GitHub OAuth login** — one click to connect. No personal access tokens to paste, copy, or rotate.
- **Two-way sync** — pull Jekyll posts back into WordPress as drafts. Edit them in the WordPress UI and re-push.
- **Featured + inline image upload** — every image in your post body lands in your Jekyll `assets/images/` folder, deduplicated, with URLs rewritten in the Markdown.
- **Internal link rewriting** — WordPress domain links become Jekyll site URLs automatically.
- **Per-post diff and verify** — colour-coded comparison against the live Jekyll version, plus hash verification against the GitHub copy so you spot drift before re-pushing.
- **Scheduled background sync and auto-push on publish** — set it and forget it.
- **GitHub Actions workflow trigger** — the plugin can fire your build pipeline after each push, so deploys happen automatically.
> "The technology stack you choose for your blog should match the way you actually want to work — not the other way around. WordPress for writing, Jekyll for serving, GitHub for version control, AI for the boring bits. That's the setup I run. That's the setup this plugin is designed for."
## Where This Fits — and Where It Doesn't
Let me be honest about what this plugin is *for*. WordPress is a serious platform with serious capabilities — e-commerce, membership sites, learning management systems, complex forms, dynamic dashboards, custom post types backed by hundreds of plugins. **If you need any of that, keep running WordPress as your live site. Don't sync to Jekyll. The static side can't do server-side things.**
This plugin is for the specific case where WordPress is being used as **an editor** — nothing more. If your site is a blog, a personal brand site, a portfolio, a documentation hub, a developer site, or anything else that's fundamentally static content rendered to readers, then **WordPress is overkill for serving but unbeatable for writing**. Pair it with Jekyll on GitHub Pages and you get the best of both: the editor you already know, zero hosting cost, near-instant page loads, and full version control on every post.
In other words: if WordPress's database, plugins, and admin are the product, run WordPress. If the *writing experience* is the only thing you actually need from WordPress, this plugin lets you keep the writing and drop the rest.
## Acknowledging the Counterarguments
Some will say: "Why not just use a headless CMS and skip WordPress entirely?" Fair point — but headless CMS solutions cost money, lock you into proprietary editors, and lose the entire WordPress plugin ecosystem (Yoast, RankMath, Advanced Custom Fields, the lot). If you already have a WordPress instance you like, the cost of staying is zero.
Others will argue: "Markdown is fine, I can write it directly." Yes — you can. But have you ever tried writing a 3,000-word post with twelve images, six internal links, and a code block in pure Markdown directly into a GitHub repository? It's not impossible. It's just slower than necessary, and far more error-prone than letting the WordPress editor handle the heavy lifting.
And some will say: "Why the AI? Plain conversion is enough." Then disable the AI features. The plugin still works. The AI is optional, byok, and disabled by default.
## What This Means for WordPress Developers and Jekyll Enthusiasts
**If you've ever wished WordPress could publish to GitHub Pages with one click, this is for you.**
Concrete use cases I'm already seeing:
- **Agencies maintaining client Jekyll sites** while letting clients write in WordPress — clients get the editor they know, agencies get the performance and version control of a static site.
- **Developers running personal Jekyll blogs** who miss the WordPress editor — write in WordPress, publish to Jekyll, get the best of both worlds.
- **Teams migrating from WordPress to Jekyll** who don't want to lose the writing UX — run a one-shot bulk sync, keep using the plugin for ongoing edits.
- **Technical writers** who want Markdown output that matches their existing site's conventions — style-aware mode handles this automatically.
## What Should You Do About It
Here are my direct, actionable recommendations:
1. **Install the plugin from WordPress.org today** — it's GPL-2.0-or-later, open source, and free forever. [wordpress.org/plugins/raybogman-ai-sync-for-jekyll-github-pages](https://wordpress.org/plugins/raybogman-ai-sync-for-jekyll-github-pages/) (or [grab the source on GitHub](https://github.com/raybogman/raybogman-ai-sync-for-jekyll))
2. **Create a GitHub OAuth App** on your own GitHub account (free, takes two minutes). The plugin's settings page tells you exactly what callback URL to use.
3. **Point it at your existing Jekyll repository** — style detection runs automatically against your `_config.yml` and existing posts.
4. **Approve a test post and push it** — preview the Markdown output before committing if you want. Diff it against your existing posts to verify the style match.
5. **Bring your own AI key (optional)** — Anthropic Claude or OpenAI. Costs go directly to the provider. Typical: ~$0.001 per SEO description, ~$0.01 per AI alt-text generation.
Prefer the official directory? It's [live on WordPress.org](https://wordpress.org/plugins/raybogman-ai-sync-for-jekyll-github-pages/) — install and auto-update like any other plugin. The GitHub release is the same code.
## Frequently Asked Questions
### Is it really free?
Yes. GPL-2.0-or-later. No paid tier, no premium upgrade, no telemetry. The full source is on GitHub. The only optional cost is AI generation, which uses your own API key and bills you directly.
### Does it work with my existing Jekyll site?
Yes. Style-aware mode reads your `_config.yml` and a sample of existing posts to match your conventions. It detects front matter schema, Markdown style (heading style, list markers, emphasis, fences), permalink patterns, and image paths automatically.
### What about Yoast SEO or RankMath?
Both are auto-detected. Meta description, focus keyphrase, and (where present) Open Graph fields are mapped into the Jekyll front matter. You don't have to choose between SEO plugins on WordPress and clean front matter on Jekyll — you get both.
### Can I migrate my whole WordPress site to Jekyll with this?
Yes — that's a primary use case. Run a one-shot bulk sync to push every post into a fresh Jekyll repo, then keep using the plugin for ongoing edits. The migration becomes a continuous process instead of a one-way door.
### Is it available on WordPress.org?
Yes — it's live on the official directory: [wordpress.org/plugins/raybogman-ai-sync-for-jekyll-github-pages](https://wordpress.org/plugins/raybogman-ai-sync-for-jekyll-github-pages/). Install and auto-update like any other plugin, or grab the same code from GitHub.
### Is this related to AI Content Orchestrator?
They're independent plugins that compose well. Use [AI Content Orchestrator](/products/ai-content-orchestrator/) to *generate* content with AI inside WordPress, then use [AI WordPress Sync](/products/ai-wordpress-jekyll-sync/) to *publish* it to your Jekyll site. Neither requires the other.
---
**The technology stack you choose for your blog should match the way you actually want to work.** If WordPress is where you think best, keep writing there. If Jekyll on GitHub Pages is where you want to serve, keep serving there. Stop letting the gap between the two cost you hours every week.
Try it today: [wordpress.org/plugins/raybogman-ai-sync-for-jekyll-github-pages](https://wordpress.org/plugins/raybogman-ai-sync-for-jekyll-github-pages/) — and let me know what you'd like to see next. Drop a comment below, or [get in touch](/contact/) directly.
---
# The AI Content Pipeline WordPress Has Been Missing
Source: https://raybogman.com/blog/ai-content-pipeline-for-wordpress.md
**Most AI writing plugins solve the easy 10% of the problem and leave you holding the hard 90%. They generate a wall of text — and then hand you back every job that actually makes content rank, convert, and ship. I got tired of that, so I built the missing 90% and released it free on WordPress.org.**
It's called **[AI Content Orchestrator](/products/ai-content-orchestrator/)**, and the free version is [live on WordPress.org today](https://wordpress.org/plugins/raybogman-ai-content-orchestrator/) — no trial, no card, no telemetry. There's also an **Enterprise** tier for teams that need the full pipeline at scale. I'll be straight about where the line sits between the two further down.
## The Conventional Wisdom
The prevailing belief is that "AI content" is a writing problem, and that the answer is a better writing tool. Prompt in, text out. Pick the plugin with the slickest editor button, paste your topic, and let the model spin up 1,500 words.
So that's what the market built. Dozens of plugins, all converging on the same shape: a box you type into and a blob of text that comes out. The demos look magical. The first ten posts feel like a superpower.
Then reality sets in. The text has no idea what your business actually does. There's no SEO title, no meta description, no focus keyphrase, no slug strategy. No featured image. No internal links to the rest of your site. No distribution. You've automated the one part of content production that was already fast — typing — and left untouched every part that was actually slow.
## A Different Perspective
**Content isn't a paragraph. It's a pipeline. And a paragraph generator will never fix a pipeline problem.**
Think about what actually happens between "I have a topic" and "this post is earning traffic." You research context. You decide the SEO angle before you write a word. You draft. You create an image. You wire it into your existing content with internal links. You populate your SEO plugin's fields. You publish. Every one of those steps is real work, and a text generator helps with exactly one of them.
AI Content Orchestrator inverts the model. Instead of treating generation as the whole job, it treats generation as **one stage in an orchestrated pipeline** that runs end to end inside WordPress — no copy-paste, no six-tab workflow, no leaving the admin.
## What the Pipeline Actually Does
The free plugin runs a deliberately **timeout-proof, four-step pipeline** — small enough that each stage completes inside the 30–60 second window even budget shared hosting gives you. No 504s, no half-finished posts.
- **Step 1 — Scan & context.** Point it at a single URL and it extracts the headings, copy, and metadata so the AI writes *about your business*, not generic filler. Or set a Project Vision — baseline brand-voice instructions applied to everything you generate.
- **Step 2 — SEO metadata first.** Before a word of body copy exists, it generates an SEO title, meta description, slug, focus keyphrase, tags, and category suggestions. Strategy precedes prose, the way it should.
- **Step 3 — Content generation.** Full HTML in your chosen format — Standard, How-To, Listicle, or Beginner's Guide — written against the brief and the metadata, with your choice of **Claude or OpenAI** behind it. No lock-in; switch providers whenever you like.
- **Step 4 — Enhance & publish.** In one pass: an AI-generated featured image (with an optional branded title overlay in your own fonts and colours), automatic internal linking to your existing posts, Yoast SEO fields populated, and a draft or publish — your call, human-in-the-loop by default.
That's the whole loop, and it's the free tier. Nothing is crippled to nudge you toward an upgrade. It's a complete, working pipeline that ships real posts.
> "The bottleneck in content was never the typing. It was everything around the typing — the research, the SEO, the images, the links, the publish. Automate the typing alone and you've automated the part that was already fast. Orchestrate the whole pipeline and you've actually changed the economics."
## What's Free, and What's Enterprise
I believe a free plugin should be genuinely useful on its own, not a 14-day tease. So the free version on WordPress.org is the complete four-step pipeline above — dual AI, single-site scanning, four blog styles, AI featured images, internal linking, Yoast integration, brand voice, dashboard. Forever. No license check.
**Enterprise** exists for teams who've outgrown one-post-at-a-time and want the pipeline to run at scale. On the [product page](/products/ai-content-orchestrator/) you'll find the full comparison, but the short version:
| Free | Enterprise |
|---|---|
| 4 blog styles | All 13 — comparisons, case studies, ultimate guides, data-driven, and more |
| Single-URL context | Scan as many sites as you need, plus your own PDFs as source material |
| Up to 3 inline internal links | Up to 15, inline *and* in a "Related articles" block |
| Pick each publish date by hand | Auto-schedule a whole month — daily, weekly, monthly |
| One post at a time | Bulk-generate 10+ posts with an approval queue and visual timeline |
| — | Competitor gap analysis, content refresh for stale posts |
| — | LinkedIn auto-share, Instagram captions, Thrive Architect output, email-on-publish |
Enterprise is **$24.99/month**, **$249.99/year**, or a **$699.99 one-time** licence. In every tier you bring your own AI key and pay the model providers directly — typically **$0.02–$0.10 per post** for text and about **$0.06** for an AI image. No markup, no surprise metering.
## Where This Fits — and Where It Doesn't
Let me be honest about what this is *for*. AI Content Orchestrator is built for **organic, top-of-funnel content at volume** — blog posts and pages where consistent, SEO-aware production is the constraint. If that's your bottleneck, it removes it.
**It is not a replacement for your best thinking.** Original research, a contrarian point of view, the story only you can tell — no pipeline writes those, and you shouldn't want it to. Use the orchestrator for the 80% of content that is competent, useful, and necessary but not precious, and free your hours for the 20% that genuinely needs a human. That's the trade that works. Automating *everything* — including the pieces that are supposed to carry your judgement — is how brands end up sounding like everyone else.
## Acknowledging the Counterarguments
Some will say: *"AI content is a race to the bottom — Google will bury it."* Google's guidance is about *quality and helpfulness*, not the tool that produced it. That's precisely why this plugin leads with SEO strategy, real context scanning, and internal linking instead of raw word count. Thin content loses regardless of who wrote it. Structured, contextual, well-linked content wins regardless of who wrote it.
Others will argue: *"I already have an AI writer I like."* Keep it. The question isn't whether your writer is good at writing — it's whether anything is handling the other six steps. If you're still pasting into your SEO plugin and hunting for internal links by hand, the writer was never the slow part.
And some will say: *"Why trust a free plugin with my pipeline?"* Fair. It's open, it's on WordPress.org, it stores nothing on my servers, and it talks only to the AI provider *you* configure, only when *you* click a button. The code is the product. Read it.
## What This Means for Marketers, Founders, and Agencies
**If content is a channel you depend on but can't staff properly, this changes your math.**
- **Solo founders and marketers** get consistent, SEO-first output without hiring a team or duct-taping a keyword tool to an AI writer to Grammarly to a spreadsheet.
- **Content teams** collapse a six-tool workflow into one WordPress screen — context, strategy, draft, image, links, publish — with a human approving every step.
- **Agencies** run the same disciplined pipeline across every client site, and reach for Enterprise when they need bulk scheduling and multi-source context across a roster of brands.
- **SEO professionals** get AI leverage that respects strategy — metadata and competitor gaps first, content second — instead of volume for volume's sake.
## What Should You Do About It
Here are my direct, actionable recommendations:
1. **Install the free version from WordPress.org today** — [wordpress.org/plugins/raybogman-ai-content-orchestrator](https://wordpress.org/plugins/raybogman-ai-content-orchestrator/). It's the complete pipeline, free forever.
2. **Add your own AI key** — Anthropic Claude or OpenAI. Costs go straight to the provider; budget roughly $0.02–$0.10 per post.
3. **Set a Project Vision** — one paragraph of brand voice that every generation inherits. This is the single highest-leverage five minutes you'll spend.
4. **Run one post end to end** — scan a relevant URL, let it draft SEO-first, review the draft, approve. Watch where it saves you time, and where you still want a human hand.
5. **Scale up when one-at-a-time becomes the limit** — that's the moment [Enterprise](/products/ai-content-orchestrator/) earns its keep, with bulk generation, scheduling, content refresh, and multi-channel distribution.
## Frequently Asked Questions
### Is the free version really free?
Yes. It's on WordPress.org under an open-source licence — no trial, no locked features behind a paywall, no telemetry. The only cost is the AI usage you pay your provider directly.
### Which AI models does it support?
Both Claude (Anthropic) and OpenAI, switchable anytime. Claude: Sonnet 4.6, Opus 4.6, Haiku 4.5. OpenAI: GPT-4o, GPT-4o Mini, GPT-4 Turbo, and the GPT-4.1 family. Featured images use OpenAI's image model.
### Will it work on cheap shared hosting?
Yes — that's a design goal. The four-step pipeline is built so each stage finishes inside typical 30–60 second server timeouts, so you don't get 504 errors or half-written posts.
### Does it just auto-publish AI spam to my site?
No. The default workflow is human-in-the-loop: AI generates, you review the draft, you approve, then it publishes. You stay in control of every post.
### Does it work with Yoast SEO?
Yes. When Yoast is active it auto-populates the SEO title, meta description, and focus keyphrase. It still generates that metadata even without Yoast installed.
### What's the difference between Free and Enterprise?
Free is the full four-step pipeline for one post at a time. Enterprise adds scale and distribution — all 13 blog styles, bulk generation with scheduling and an approval queue, competitor gap analysis, content refresh, multi-site and PDF context, more internal links, and channel sharing (LinkedIn, Instagram, email). Full comparison on the [product page](/products/ai-content-orchestrator/).
### Is this related to AI WordPress Sync for Jekyll?
They're independent plugins that compose well. Use **AI Content Orchestrator** to *generate* SEO-first content inside WordPress, then use [AI WordPress Sync](/products/ai-wordpress-jekyll-sync/) to *publish* it to a Jekyll site on GitHub Pages. Neither requires the other.
---
**The bottleneck in content was never the writing. It was everything around it.** A paragraph generator automates the fast part and leaves the slow parts on your desk. An orchestrated pipeline automates the slow parts too — and that's the difference between a neat demo and a content engine you can actually run.
Start free today: [wordpress.org/plugins/raybogman-ai-content-orchestrator](https://wordpress.org/plugins/raybogman-ai-content-orchestrator/) — and if your team is ready to scale, the [Enterprise tier](/products/ai-content-orchestrator/) is waiting. Questions, or a feature you want in the next release? [Get in touch](/contact/).
---
# About Ray Bogman
Source: https://raybogman.com/about.md
## A 25-year career in tech
Ray is a technology leader based in the Netherlands with **25+ years in tech** — a career that runs from telecom infrastructure, through cybersecurity, through founding five companies as an entrepreneur, into senior enterprise leadership at Magento / Adobe, and now into AI innovation.
### Telecom & security (2000 – 2007)
After graduating from Hospitality Management School and internships at Marriott, Ray changed profession in **2000** to join **KPN Telecom** in Amsterdam, deploying ADSL internet across the Netherlands. In **2004** he joined the **KPN CERT team** as Senior Security Manager until 2007 — shaping the security-first mindset that runs through his work to this day.
### Entrepreneur & founder (2005 – 2017)
While still at KPN, Ray started building web applications as an entrepreneur in **2005**, using open-source stacks (Mambo, Joomla!, and later Magento). Over the next 12 years he founded **five companies** as CEO / CTO:
- **Jira ICT** (2005 – 2017) — CEO & Co-Founder
- **Yireo** (2009 – 2011) — CTO & Co-Founder
- **Wild Hibiscus NL** (2010 – 2014) — CTO & Co-Founder
- **SupportDesk BV** (2011 – 2017) — CTO & Co-Founder
- **Rapido Internet Solutions BV** (2013 – 2017) — Business Developer & Co-Founder
Throughout this period he also trained and coached **1,000+ Magento experts** and **750+ Joomla! experts** worldwide, and became a regular speaker at Magento, Joomla, and web performance events across Europe and the US.
### Magento / Adobe (2018 – 2025)
In **January 2018** Ray joined **Magento, an Adobe Company**, as **Senior Business Solutions Architect** for EMEA / APAC — architecting solutions for enterprise clients and onboarding them to Magento Commerce Cloud.
In **2022** he moved into senior leadership as **Senior Global Software Support Manager** (Adobe Commerce Cloud Engineering L2), and then as **Head of Commerce Customer Engineering EMEA** (Dec 2022 – Feb 2025), managing four teams — L1 Core, L2 Cloud Ops, L2 DevOps, and Premier Support.
In **2021** Ray won Adobe's **Global Consultant of the Year Award** for his work on Alshaya's brands (H&M, Victoria's Secret, Footlocker, Bath & Body Works, and 15+ more). He also serves on the **Adobe Commerce Certification Advisory Board**.
### Innovation & AI (2025 – present)
Since **April 2025**, Ray is **Head of Innovation at [Alumio](https://alumio.com)** — the iPaaS for enterprise commerce. He is leading the creation of a **net-new AI product from scratch**, from concept to execution, and driving an innovation strategy centered on AI, cloud, and scalable integrations.
His focus: bridging business and technology through clear, actionable strategies — aligning innovation with growth, and building the foundation for long-term product direction.
## What he's known for
- **Author** — [Magento 2 Cookbook](/magento-2-cookbook) (Packt Publishing, 2016) and technical reviewer on 4+ Magento books for Packt
- **Speaker** — 40+ international events including Adobe Summit, Meet Magento (worldwide), Magento Imagine, Magento Live, Webperfdays, Emerce, Econsultancy, Internet Retailing
- **"The Magento Doctor"** — Q&A alter-ego at Meet Magento events worldwide since 2012
- **Founder of [Mage.coach](/mage-coach)** — open-source Magento performance monitoring tool
- **Community** — organizer of Magento User Group Amsterdam (2010 – 2018), co-organizer of WebPerfDays Amsterdam since 2013
- **Educator** — guest lecturer at VU University of Amsterdam, author for Web Designer Magazine and Computable
## Certifications
- **AIF-C01** — AWS Certified AI Practitioner (2024)
- **Oxford Artificial Intelligence Programme** (2023)
- **3× Adobe Commerce Subject Matter Expert / Exam Writer** (2023)
- **CLF-C01** — AWS Certified Cloud Practitioner (2020)
- **PSM I** — Professional Scrum Master (2020)
- **CSPO** — Certified Scrum Product Owner (2020)
- **MCPCD** — Magento Certified Professional Cloud Developer (2018)
- **M2CSS** — Magento 2 Certified Solutions Specialist (2017)
- **MCSS** — Magento Certified Solutions Specialist (2014)
- **CEH** — Certified Ethical Hacker (2008)
- **RHCE** — Red Hat Certified Engineer (2006)
- **UNIX I/II & TCP/IP** (2004)
## Frequently asked questions
### Who is Ray Bogman?
Ray Bogman is a Dutch technology leader with 25+ years of experience. He is currently Head of Innovation at Alumio, where he is building a new AI product from scratch. He is also available as a Fractional CTO. Former Head of Commerce Customer Engineering EMEA at Adobe, founder of five companies, and author of the Magento 2 Cookbook.
### What does Ray do today?
Ray is Head of Innovation at Alumio since April 2025, leading the creation of a net-new AI product and driving innovation strategy focused on AI, cloud, and scalable integrations. He is also available as a Fractional CTO for scaling companies that need senior technology leadership.
### Is Ray available as a Fractional CTO?
Yes. Ray offers senior [Fractional CTO](/fractional-cto) services — AI strategy, cloud, integration, architecture, and team leadership — for scaling companies that need board-facing technology leadership without a full-time hire. He is formally [CTO Academy Certified](https://platform.cto.academy/course_certificate/1749021729045x108865566081922430).
### What AI work is Ray doing at Alumio?
At Alumio, Ray leads the creation of a new AI product from scratch — from concept to execution. He drives an innovation strategy focused on AI, cloud, and scalable integrations, identifies emerging technologies, and collaborates with the CEO, Product, and R&D teams to align innovation with growth.
### What companies has Ray founded?
Five, as CEO or CTO: **Jira ICT** (2005 – 2017), **Yireo** (2009 – 2011), **Wild Hibiscus NL** (2010 – 2014), **SupportDesk BV** (2011 – 2017), and **Rapido Internet Solutions BV** (2013 – 2017).
### What is Ray known for in the Magento community?
Ray is a Magento evangelist and the original "Magento Doctor" — a Q&A persona he created in 2012 for Meet Magento events worldwide. He founded the Magento User Group Amsterdam (2010 – 2018), co-authored the [Magento 2 Cookbook](/magento-2-cookbook), created the [Mage.coach](/mage-coach) performance tool, and has trained over 1,000 Magento professionals worldwide since 2008.
### What awards has Ray won?
Ray won **Adobe's Global Consultant of the Year 2021** for his work on Alshaya's brands — H&M, Victoria's Secret, Footlocker, Bath & Body Works, and 15 more. He is also a member of the Adobe Commerce Certification Advisory Board.
### Where is Ray based?
Amstelveen, Netherlands. Remote by default in Europe-friendly time zones, and available for on-site engagements anywhere in the world when travel is funded by the client. Fluent in English and Dutch.
### How can I contact Ray?
The fastest way is to [book a 30-minute intro call](https://calendar.app.google/cmgMRzhbkGUhHGRi7). You can also email [hello@raybogman.com](mailto:hello@raybogman.com), call or text [+31 6 1088 4153](tel:0031610884153), or connect on [LinkedIn](https://linkedin.com/in/raybogman).
## Downloads
- [Download Bio](https://raybogman.com/assets/Bio - Ray Bogman.txt)
- [Download Résumé](https://raybogman.com/assets/Resume - Ray Bogman.pdf)
- [Download Profile Photo](https://raybogman.com/assets/images/ray-bogman-2025-1.png)
## Want to work together?
The fastest way to find out if there's a fit is a 30-minute call.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Every AI writing plugin does the same thing: prompt in, text out. Then you're left with the same problems — no research, no SEO strategy, no images, no internal links, no distribution. Just raw text in a WordPress editor.
**AI Content Orchestrator** is different. It manages the **entire content pipeline** inside WordPress — from scanning your website for context, through SEO-first content generation, to featured images, internal linking, LinkedIn auto-sharing, and multi-platform repurposing. One plugin, zero copy-paste.
---
## How it works — 4 steps, fully automated
A timeout-proof pipeline that completes reliably even on shared hosting.
### Step 1 — Scan & context
Point the plugin at a URL and it extracts headings, content, and metadata to build a rich context block — so AI writes **about your business**, not generic filler. _(Free scans a single URL; Enterprise adds multi-page crawling and PDF uploads.)_
### Step 2 — SEO metadata
AI generates an optimized SEO title (max 60 chars), meta description (155 chars), slug, focus keyphrase, tags, and categories — before a single word of content is written. Strategy first, always.
### Step 3 — Content generation
Full HTML content (1,000–2,000 words for blog posts, 500–1,000 for pages) generated against your brief, brand voice, and SEO metadata. The **free version** includes 4 blog styles — Standard, How-To, Listicle, and Beginner's Guide. **Enterprise** unlocks all **13** — adding Ultimate Guide, Comparison, Case Study, Problem-Solution, Data-Driven, Storytelling, Opinion, Checklist, and Recipe.
### Step 4 — Enhance & publish
In one pass: automatic internal linking, an AI-generated featured image, and Yoast SEO field population, then publish or save as a draft. Done. _(Enterprise adds LinkedIn post generation and scheduling.)_
---
## What's inside
The **free** WordPress.org version includes the complete pipeline below. **Enterprise** layers on the [Enterprise features](#enterprise-features) further down — full side-by-side in [Free vs Enterprise](#free-vs-enterprise). Within free sections, individual lines are marked _(free)_ or _(Enterprise)_ where a capability is split.
### Dual AI — Claude + OpenAI
Switch between providers anytime. No lock-in.
- **Claude** — Sonnet 4.6, Opus 4.6, Haiku 4.5
- **OpenAI** — GPT-4o, GPT-4o Mini, GPT-4 Turbo, GPT-4.1, GPT-4.1 Mini, GPT-4.1 Nano
- One-click API key validation for both providers
- Configurable token budgets per task
### Website scanner
- Scan a single URL — extract headings, paragraphs, and metadata for context _(free)_
- Crawl multiple pages with smart URL prioritization — services, about, blog first _(Enterprise)_
- Save frequently-used URLs for one-click reuse _(Enterprise)_
- Upload PDFs (up to 100MB) — auto-extract text, reuse across future generations _(Enterprise)_
- Configurable context length and timeout
### SEO engine
- **Automatic internal linking** — scans published posts, scores by keyword relevance, and inserts contextual links with smart anchor text (multi-word phrases, never single words). Up to 3 inline links _(free)_; up to 15, inline and in a "Related articles" block _(Enterprise)_
- **Yoast SEO integration** — auto-populates title, meta description, and focus keyphrase when Yoast is active _(free)_
- **Focus keyphrase alignment** — AI aligns generated content with your chosen keywords _(free)_
- **Competitor gap analysis** — AI analyzes top-ranking content, identifies 2–3 gaps, feeds them into your generation _(Enterprise)_
### AI-generated featured images
- **gpt-image-1** (OpenAI) image generation _(free)_; **Ideogram** as a second provider _(Enterprise)_
- 4 AI-generated options per post — pick your favourite from a visual grid _(free)_
- **Title overlay** — composite your blog title onto a base image with custom fonts, colors, and two-line auto-fit layout _(free)_
- Upload custom bold/italic fonts (TTF, OTF, WOFF) _(free)_
- Regenerate overlay text without regenerating the post _(free)_
### Brand voice control
- **Project Vision** — baseline instructions applied to every generation
- Ensures consistent tone, style, vocabulary, and guardrails across all content
- Works with both Claude and OpenAI
### Dashboard
- Total posts generated, monthly count, scheduled items
- Top performing posts (by engagement)
- Stale content needing refresh
- Quick action buttons for common tasks
- Real-time progress logging with downloadable log files
---
## Enterprise features
Everything above is in the free plugin. The capabilities below unlock with the [Enterprise plan](#pricing) — shown here in full so you know exactly what you scale into.
### LinkedIn auto-share
- **OAuth 2.0** — secure authentication, no passwords
- AI generates a native LinkedIn post (1,000–1,300 chars) with hook, insights, and CTA
- Auto-share on publish, or share manually from the dashboard
- Edit and regenerate LinkedIn commentary before posting
- Toggle per-post — share some posts, skip others
### Content repurposing
Generate ready-to-use versions from any blog post, one click each:
- **Email newsletter** — 150–250 word summary with CTA
- **X / Twitter thread** — 5–8 numbered tweets with hook and hashtags
- **Instagram caption** — 150–300 words with emojis and 15–20 hashtags
- **Pinterest pin** — 100–200 words, optimized for Pinterest search
### Bulk content creation
- Queue multiple posts with topics, styles, and dates
- **AI topic suggestions** — enter a seed keyword, get 5 ideas with recommended blog style
- **Auto-fill dates** — based on your publishing schedule (daily, every 2–3 days, weekly, bi-weekly, monthly)
- Generate all sequentially with live progress tracking
- Skip weekends toggle, configurable publish time
### Scheduled publishing + approval queue
- **Draft + schedule** — posts saved for human review before going live
- **Visual timeline** — see all scheduled content with status indicators (green = scheduled, yellow = pending approval)
- Countdown timers, LinkedIn sharing indicators
- Approve, reschedule, or delete from the queue
- WordPress cron-based publishing with rate-limited catch-up (max one per minute)
### Content refresh
- Select any published post — AI analyzes for thin content, missing FAQ, missing internal links, outdated information
- Intelligent rewriting preserves URL and SEO value
- Automatic internal link addition on refresh
- Dashboard shows stale content (older than 6 months) needing attention
### Thrive Architect integration
- Toggle between WordPress (standard) or Thrive Architect output format
- AI HTML auto-converted to Thrive TCB2 markup with proper block wrapping
- Auto-inject your saved Thrive **Table of Contents** and **CTA templates**
- Template CSS injected into post custom styles
- Auto-generated heading IDs for TOC linking
---
## Who it's for
- **Content teams** done duct-taping 6 tools together (keyword tool + AI writer + Grammarly + Google Docs + WordPress + spreadsheet)
- **Solo founders and marketers** who need consistent quality content without a full team
- **Agencies** managing content across multiple client sites
- **SEO professionals** who want AI leverage without sacrificing strategy
- **Thrive Architect users** who want AI content that works natively in their builder
---
## What makes it different
| Most AI writers | AI Content Orchestrator |
|---|---|
| Prompt in, text out | Full pipeline: scan → SEO → write → images → link → share → publish |
| One AI provider, locked in | Dual AI: Claude + OpenAI, switch anytime |
| No context about your business | Website scanner + PDF library for real context |
| Manual internal linking | Automatic smart linking with keyword scoring |
| No images | gpt-image-1 / Ideogram + title overlay with custom fonts |
| No distribution | LinkedIn auto-share + email / X / Instagram / Pinterest repurposing |
| Timeouts on shared hosting | 4-step pipeline, timeout-proof architecture |
| One post at a time | Bulk queue with scheduling, approval, and visual timeline |
| Write-and-forget | Content refresh with stale-detection and smart rewriting |
---
## Technical details
- **WordPress** 5.9+ (tested up to 7.0)
- **PHP** 7.4+
- **No external libraries** — pure PHP + jQuery, lightweight
- **No custom database tables** — uses standard WordPress options and post meta
- **Security** — nonce verification, capability checks, input sanitization, output escaping, prepared SQL, wp_kses_post on all AI output
- **i18n ready** — full translation support
---
## Free vs Enterprise
Start free. Upgrade when you're ready to scale.
| What you get | Free | Enterprise |
|---|:---:|:---:|
| **Types of blog posts you can write** | 4 popular formats | All 13 formats — including comparisons, case studies, ultimate guides |
| **AI artwork for your post** | 1 image style | 2 image styles to pick from |
| **See what competitors are missing** | — | ✓ |
| **Auto-post to LinkedIn** | — | ✓ |
| **Ready-to-paste Instagram captions** | — | ✓ |
| **Works with Thrive Architect page builder** | — | ✓ |
| **Use your own PDFs as source material** | — | ✓ |
| **Number of websites you can pull info from** | 1 site | As many as you need |
| **Automatic links between your blog posts** | Up to 3 links, inside the text | Up to 15 links, inside the text and at the bottom |
| **Plan a whole month of posts in one click** | Pick each date by hand | Auto-schedule (daily, weekly, monthly...) |
| **Email when a post goes live** | — | ✓ |
| **Write 10+ posts at once** | — | ✓ |
| **Refresh old posts that are getting stale** | — | ✓ |
| **Turn a post into emails, tweets, Pinterest pins** | — | ✓ |
| **Choose between Claude or ChatGPT** | ✓ | ✓ |
| **AI writes your SEO title, description, keywords** | ✓ | ✓ |
| **Works with Yoast SEO plugin** | ✓ | ✓ |
| **Set your brand voice once, use everywhere** | ✓ | ✓ |
---
## Pricing
| Plan | Monthly | Annual | Lifetime |
|---|:---:|:---:|:---:|
| **Free** | $0 | $0 | — |
| **Enterprise** | **$24.99** | **$249.99** *(save ~$50/yr)* | **$699.99** *(one-time)* |
Free version now live on WordPress.org — install it free today.
You only pay for the plugin — AI costs (Claude / OpenAI API usage) are paid directly to your chosen provider. Typical cost per post: **$0.02–$0.10** for text + **~$0.06** for a gpt-image-1 featured image. --- ## FAQ ### Is this just another AI writing plugin? No. Most AI plugins stop at "generate text." AI Content Orchestrator manages the full pipeline — website scanning, SEO metadata, content generation, featured images, internal linking, LinkedIn sharing, and multi-platform repurposing. Every piece has strategy behind it before a single word is written. ### Which AI models does it support? Both Claude (Anthropic) and OpenAI — switch anytime. Claude: Sonnet 4.6, Opus 4.6, Haiku 4.5. OpenAI: GPT-4o, GPT-4o Mini, GPT-4 Turbo, GPT-4.1, GPT-4.1 Mini, GPT-4.1 Nano. ### Does it work on shared hosting? Yes. The 4-step pipeline architecture ensures each step completes within 30–60 second server timeouts. No 504 errors, even on budget hosting. ### Does it auto-publish? Only if you choose to. Default workflow: AI generates → you review as draft → approve → publish. Scheduled content goes through a human-in-the-loop approval queue. ### Does it work with Yoast SEO? Yes. When Yoast is installed, AI Content Orchestrator auto-populates the SEO title, meta description, and focus keyphrase fields. Works without Yoast too — metadata is always generated. ### Does it work with Thrive Architect? Yes. Toggle "Thrive Architect" output format and AI-generated HTML is auto-converted to Thrive-compatible TCB2 markup. Optionally injects your saved Thrive Table of Contents and CTA templates. ### Can I use it for client sites? Yes. The plugin works on any WordPress installation. Install it on each client site or manage from a multisite. ### How much does AI usage cost? You pay AI providers directly. Typical per-post cost: $0.02–$0.10 for text generation (varies by model and content length), plus ~$0.06 per gpt-image-1 featured image. No hidden markup. ### What's the difference between this and AI Content Creator? AI Content Orchestrator is the successor to AI Content Creator. It includes a built-in migration path — detects the old plugin, imports settings, and offers one-click deactivation. --- ### Built by Ray Bogman 25+ years in tech, ex-Adobe Head of Commerce Customer Engineering, AWS Certified AI Practitioner, Oxford AI Programme alumnus, and currently Head of Innovation at Alumio. This plugin is built from real experience with content at enterprise scale. [Learn more about Ray →](/about/)Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Free and open source — now live on the official WordPress.org plugin directory. Install and auto-update like any other plugin, or grab the source on GitHub.
100% free, forever. No paid tier, no upsells, no telemetry. Optional AI features use your own Claude or OpenAI key — costs go directly to the provider. Typical: $0.001 per SEO description, $0.01 per AI alt-text generation. --- ## FAQ ### What does this plugin do? Converts WordPress posts and pages to Markdown with YAML front matter, uploads featured + inline images to your Jekyll repository's `assets/images/` folder, rewrites internal links, and commits everything to GitHub — all from inside WordPress admin. ### Is it really free? Yes. GPL-2.0-or-later. No paid tier, no premium upgrade, no telemetry. The full source is open. The only optional cost is AI generation, which uses your own Claude or OpenAI key and bills you directly. ### How does the GitHub login work? Standard OAuth App flow. Click "Connect to GitHub" in the plugin settings, authorize the app on github.com, and you're in. No personal access tokens to generate, copy, or rotate. ### What is "style-aware" conversion? The plugin reads your existing Jekyll site (`_config.yml` plus a sample of existing posts) and detects your front matter schema, Markdown conventions (heading style, list style, emphasis, fences), and permalink patterns. Pushed content then matches your site's conventions automatically — no find-replace cleanup after the first sync. ### How does URL rewriting work? Internal links pointing at your WordPress domain are rewritten to your Jekyll site URL — taken from `_config.yml`'s `url` field or set manually in the plugin's Content tab. External links are left alone. ### Can I auto-publish on WordPress publish? Yes. Toggle "Auto-push on publish" and every approved post is pushed to GitHub the moment you click Publish in WordPress. ### Can I preview the Markdown before pushing? Yes. The Articles list has a Preview button that opens a modal showing the exact Markdown output the plugin would push. ### What is the Diff view? A colour-coded comparison (green for additions, red for deletions) between your current WordPress content and the live version on Jekyll. Useful for spotting drift before a re-push. ### What is Verify? A file-hash comparison against the GitHub copy. If someone edited the Markdown directly in the GitHub repo, Verify flags it so you don't accidentally overwrite their edit. ### Does the AI feature cost extra? The plugin is free. AI usage is optional and uses your own Claude or OpenAI API key — costs go directly to the provider. Disable AI entirely and the plugin works fully without it. ### Will this work with Yoast SEO / RankMath? Yes. Both are auto-detected. SEO title, meta description, focus keyphrase, and (where present) Open Graph fields are mapped into the Jekyll front matter. ### Does it support Pages, not just Posts? Yes. Toggle Posts and Pages independently in the Content tab. Each has its own target path in the repo (`_posts/` and `_pages/` by default — configurable). ### Can I migrate an existing WordPress site to Jekyll with this? Yes — that's a primary use case. Run a one-shot bulk sync to push every post into a fresh Jekyll repo, then keep using the plugin for ongoing edits. ### Is this related to AI Content Orchestrator? They're independent plugins. Use [AI Content Orchestrator](/products/ai-content-orchestrator/) to *generate* content with AI inside WordPress, then use AI WordPress Sync to *publish* it to your Jekyll site. They compose well, but neither requires the other. --- ### Built by Ray Bogman 25+ years in tech, ex-Adobe Head of Commerce Customer Engineering, AWS Certified AI Practitioner, Oxford AI Programme alumnus, currently Head of Innovation at Alumio. This site you're reading right now is published with this plugin. [Learn more about Ray →](/about/)Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.
Ray Bogman is one of the top PHP engineers I have met. He has vast knowledge of web-technologies, security and of the Magento platform. He is a rare and great professional to do business with.
I have worked with Ray over the past years jointly building up our eCommerce capabilities. Ray is a real team player. On top of that he brings his extensive competence into play to the benefit of the team on an ongoing basis. He connects easily with people and creates an atmosphere where problems are discussed and addressed in an open, professional and efficient way. It was a great pleasure working with Ray. Thanks Ray for all the support over the past years.
Working with Ray for the past 3 years at Adobe has been and continues to be an absolute pleasure. A wealth of knowledge in the Commerce sector, a willingness to always find the right solutions and a strategic mindset that customers love to engage with. I would happily bring Ray into any customer discussion, confident that he would always bring his a-game at all times. I find him to be both very personable and supremely professional, gaining trust and being effective in his insights and leadership. For me he is an exceptional team player and one I would not hesitate to work with again and again.
I was so honored to get a chance to work with Ray. Ray is one of the very rare talents I have got a chance to work with. He is very keen to learn new things and loves to share them with team/colleagues as well. We worked on one of the largest Magento projects with massive amount of data hosted on more than 100 EC2. You feel so much empowered working with Ray. You feel more confident and always have a plan that works :-)
Ray is a great person and a good leader. He is always learning new things and trying to implement them with Magento and other systems. He helped us improve the performance of the website, he always follows the process and makes others follow to streamline things in the IT world. Thanks a lot for sharing your knowledge at the infra level with us.
'RARE' is the word that comes to my mind when I think of Ray. Some are great technical consultants while others are superb business analysts. Ray is both. That's why Ray is RARE. I had an opportunity to work closely with Ray for insanely complex eCommerce implementations. His futuristic vision of making reusable components and attention to granular details make him an outstanding professional. He has amazing skills in tracking every tiny detail and managing complex requirements in the simplest form possible. His exemplary leadership nature made a very strong team of people from diverse backgrounds and skillsets work towards a single GOAL and succeed ultimately. And, hey people, the genius is down to earth and always greets with a smile!
I was happy to work with Ray! Great architect, leader and mentor! Exceptional performance in enterprise architecture and focus towards the business goals.
I have always known Ray and looked up to the 'Magento Doctor' (that is what the community calls him). Before joining Adobe or since the time I have been working with Magento, I have come across Ray in a way or another. My first assignment in Adobe was with Ray and I was so glad that it happened. He is one of the most humble and knowledgeable people I have come across. The best part about Ray is that he is always willing to go the extra mile if you reach out to him with a support request. I am sure, with capable leaders like him, Magento is in a safe place. I have huge respect and trust in Ray's capabilities and I wish him all the best in everything he wants to do.
Ray is simply a superstar. I have worked with professionals over the years who excelled in different areas; however, never had I worked with one possessing skills not only in technical and functional implementation and management, but also impressive and mind-blowing skills in coaching, speaking, project management, client management, you name it... Ray can do it. He is beloved and a coveted employee here at Adobe, and I got so lucky to have him on my team more than once. Ray is the best.
Fantastic Magento E-Commerce Business Solutions Architect with excellent foresight and technical consulting skills. Ray was a key asset to my project team and helped to successfully deliver a $1M Managed Services Engagement. I highly recommend Ray, and I look forward to working with him on future client engagements.
Ray and I were introduced to each other a couple of years ago by a mutual friend. I perceive Ray as a gifted man. Somehow he is able to be a hardcore developer and he has an excellent developed skill set to present, do sales and negotiate while finding the best outcome for all parties. In product development he is able to truly think out of the box and be a source of inspiration. The combination of these skills to be found in 1 man is quite rare. If you're lucky enough to work with Ray please send him my heartfelt wishes.
Ray offered what he said he would and went beyond that in helping me with some questions even though he was not a support consultant. Ray was easy to work with and even helped me at times that were probably not the best for him since there was a 7 hour difference. I will use Ray again if I need other Magento help.
Ray learned me the basics of Magento and some expert tricks. Ray knows very well what the goal of the course was and teached it on a good way. A guy you really want as a teacher.
Ray provided us with an in-depth explanation on Magento's backend. Clearly showing us how backend structures can be built within the short timespan of 3 days. They have done a real good job at clearly structuring and visualizing documentation for this, as this information very much lacks from the original source. Worth every penny.
Dear Ray, Thank you for your time and effort. I really appreciate that you shared so much of your knowledge with me. Your training provided me a solid basis for the company I am currently building.
Ray is speaking very enthousiastic about his work. After the workshop you will get also enthousiastic about it.
Ray is a great person to work with, both on a personal and technical level. He's kind, open minded and has a real passion for tech and Magento in particular. I'm sure his dedication and hard work will inspire many more!
Ray is always up to date on the latest tech, and inspiring to work with.
I have been working closely with Ray for more than five years now. It has always been a great pleasure to work with him. Ray is a great CTO, teacher, and a passionate, driven web professional with a sharp instinct for new technologies and technical improvements. His knowledge spans all web areas: from server to search engine (SEO) and everything in between. Besides being technically proficient, Ray has a great feel for e-commerce. Ray has always been an Open Source supporter. Last but not least, Ray is a straightforward person. He always challenges himself and others with an open mind. I am sure his drive and passion will be a valuable asset for Magento Inc. for many years to come!
In the relatively short time I've worked with Ray, I've learned a lot from him. His enthusiasm was infectious and his Magento and/or internet knowledge seemed infinite. I very much enjoyed working with Ray and hope to do so again in the near future!
Ray helped me a lot with my own business by providing me with useful feedback. He is enthusiastic, cooperative and works proactive on ICT security issues.
Ray is a very qualified and experienced requirements engineer. Ray is a creative individual with a well-developed talent for unconventional approaches to problem-solving. Keep track on the problem and if he can tries to solve it. Or address it to the correct person in a correct and proper manner.
Ray is een zeer enthousiaste specialist op internet- en websitegebied. Zijn kracht is om gebruikerswensen snel heel scherp te krijgen en hen daarmee te verrassen. Ik heb Ray ervaren als een zeer prettige en betrokken collega!
Ik heb super veel gehad aan de training/coaching die ik bij SupportDesk heb gehad met betrekking tot Joomla!, MageBridge en Magento. Een paar fijne leerzame dagen. De persoonlijkheid van Ray heeft hier ook zeker aan bijgedragen. Echt een training op maat die ik iedereen die met de genoemde 3 pakketten stoeit kan aanbevelen.
Naar aanleiding van een ingewikkeld Magento project heb ik vanuit Het Nieuwe Web een Magento cursus gevolgd bij Ray, waarvoor ik vijf keer een dag op training ben geweest. Zijn ervaring en all-round Magento kennis kwamen daarbij zeer van pas om de bottlenecks in een vroeg stadium in het vizier te krijgen en daar een adequate oplossing voor te zoeken. Het heeft me erg geholpen om het project op een professionele manier vorm te kunnen geven!
Ray is zeer deskundig op het gebied van implementatie en configuratie van Magento / Joomla / MageBridge. Ik heb in deze cursus veel geleerd over bovenstaande zaken, en heb nu ook al een werkende site in de lucht. Ik beveel deze cursus van SupportDesk dan ook zeker aan voor de mensen die de fijne kneepjes en truckjes van Magento / Joomla / MageBridge willen leren! Kortom een dikke 10 voor Ray Bogman en SupportDesk!
Ray has excellent knowledge of the Joomla (CMS) and Magento (e-commerce) suites. He knows to translate needs to solutions and helped me to keep focus on my project. I would certainly consider Ray as a business partner or knowledge supplier in future projects.
Ray is zeer kundig op het gebied van Magento, SEO en SEA. In de maatwerk training van 4 dagen heeft hij mij met veel enthousiasme de nodige vaardigheden en kennis bijgebracht. Dankzij het begrijpelijk vertalen van de techniek achter Magento door Ray ben ik inmiddels in staat zelfstandig de Magento themes aan te passen en plugins te schrijven. Ray leert je niet gewoon een trucje, Ray zorgt ervoor dat je begrijpt hoe het werkt en waarom! Deze training is elke euro meer dan waard geweest!
March 2012 I followed a 1 on 1 Magento training at the Magento Competence Center. Ray was inspiring and above all practical.
Ray heeft mij in één dag de basis van Magento en de do's en don'ts bijgebracht. Veel antwoorden gekregen en nog meer ideeën opgedaan dan waar ik mee kwam. Thanks, Ray.
Ik heb Ray binnen een dag leren kennen als een zeer vakkundige ICT'er die weet waar het om draait. Wellicht wil ik graag in de toekomst ook gebruik maken van Ray zijn kennis voor SEO optimalisatie en evt. uitbreiding van webwinkels. Bedankt Ray, ik heb heel veel van je geleerd gister.
If we talk about professionals here is THE ONE! A day with Ray... Ask him everything you want, about Magento and e-commerce! But you don't need to ask him because you don't get the chance... he will tell you in a professional way everything you need to know... and more. Thanks Ray. Great to meet you.
Outletplanet heeft mij ingehuurd voor ICT activiteiten. De Magento webshop werd op enig moment erg traag. Dit was de aanleiding een Magento expert in te schakelen. Via onze hoster kwamen we in contact met Ray van JIRA. Hij heeft voor ons de tabellen geoptimaliseerd en het wijze van caching aangepast. Dit heeft geleid tot een enorme performance verbetering. Hij is een echte Magento expert. Een aanrader dus.
Ray is een 'wandelend kennisvat' en vindt volgens mij niets leuker dan die kennis te delen. In een door hem gegeven training kwam de ene na de andere eye opener voorbij. Diepgaande 'hard core' know-how, maar op een begrijpelijke en leuke manier overgebracht. Voor zover ik kan beoordelen een van de grootste Magento-experts in NL.
Ray weet echt alles van webshops in Magento. Niet alleen op technisch gebied heeft hij ons het nodige bijgebracht, maar hij kan ook alles vertellen over de gedachtegang achter een webshop. Een Magento cursus is echt een aanrader!
Ray is a professional and specialist with great communication skills. In a MageBridge private course he taught me a lot to understand the concept of a site with MageBridge and what chances there are for a Joomla/Magento site. He showed me a lot of handles to make a success of a Joomla/Magento project! Thanks!
Ray heeft met zijn mensen van Jira een dedicated server voor onze nieuwe Magento website op www.houtweb.nl perfect ingeregeld. En op zeer korte termijn. De site loopt lekker vlot! Bedankt Ray!
Raad iedereen aan om de maatwerk MageBridge cursus te volgen. Ray denkt met je mee en in oplossingen. Deze cursus is voor mij het startpunt geweest voor het zelf ontwikkelen van meerdere Magento webshops.
Ray is naast een kundige Magento en Joomla expert een consultant die zeer goed de business-zijde van e-commerce snapt. Het resultaat van een (gezellige) dag samenwerken is dat je met meer antwoorden naar huis gaat dan je vooraf aan vragen bij je had.
I worked with Jira concerning web development and security issues. Ray Bogman proved to be both a creative business partner and a person who really understands what online retailing is about. His background in online security is of great value. Our business objective is to implement Magento and MageBridge, a Jira product. With the support of Ray Bogman and his Jira team we have all the ingredients for a successful implementation.
Products offered by Yireo are outstanding (especially MageBridge). An additional consulting job was well done — very professional. High quality work. Instructions provided are detailed, precise and accurate (which is rare nowadays). I would buy more products and services without any hesitation.
De Magento maatwerk cursus was voor mij als beginnend webwinkelier een eye opener en erg waardevol. Ray, bedankt voor het inzicht in Magento en het meedenken in mijn concept.
Hi Ray, Thanks for the great one-day Magento training. I've learned a lot from it and it gave me a good Magento kick-start!
De maatwerk Magento cursus van Jira met Ray Bogman (a day with Ray) is fantastisch. Ray weet echt waar hij het over heeft — de zeldzame combinatie van diepgaande kennis en de communicatieve vaardigheden om het over te brengen. Want Magento? Go Jira.
Ray is an expert on Magento and the e-commerce business. He's very enthusiastic about his work and willing to share his knowledge.
Ray is a true professional with an eye for details that others may not notice. His recommendations have helped us to fine-tune our e-commerce platform multiple times.
Ray is a professional e-commerce consultant. He is very patient and knows a lot of the Magento system. Want professional no-nonsense Magento advice? Ray is your man!
Ray is in the forefront of IT and software/security issues and knows to put issues in perspective for your business. His vibrant and enthusiastic approach works stimulating for his trainees and puts things immediately in motion.
Ray has an amazing knowledge of the Magento e-commerce subject. He has a good overview of the subject and knows it right down to the smallest details (and this for a subject that has been around for only a year). Not only does he have an amazing knowledge of the subject, he is also gifted at explaining in a clear way all that you need to know!
Ray Bogman and Jisse Reitsma are great people who helped me a lot building my first new Joomla! internet site I hosted at Jira ICT. Also in the evening and in the weekends. I appreciated this very much. They also helped me when I had problems with my website. They gave me useful feedback. I learned a lot of these professional and enthusiastic guys!
Ray heeft in korte tijd de nieuwe website voor I&O Netsys (www.ieno.nl) gerealiseerd. Daarbij zijn vooral zijn expertise, zijn snelheid van werken en zijn vermogen om mee te denken met ons opgevallen. Mede daarom is de website erg mooi geworden en was het heel prettig samenwerken. Ik kan Jira / Ray van harte aanbevelen aan iedereen die graag snel & binnen budget een mooie website gerealiseerd wil zien.
Ray is not your average security professional. Besides the normal expectancies, he cares about your project, drills down deeper and therefore delivering higher quality results. We were greatly surprised about the level of his expertise and he has contributed a great deal to our website.
Ray has delivered several websites for me in the past and still maintains these. Service provided is quick, to the point and for a good price. He is willing to make an extra effort using both his technical knowledge as well as his drive to results.
'Security specialist' might be a bit worn out title. But in case of Ray we must say hands-on security expert. If he wants he could wreck your LAMP stack in a blink of an eye. But Ray is such a gentleman and professional that he lets you learn by doing, and he is always there to help you out.