-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1821 lines (1071 loc) · 55.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- Index Layout Start -->
<!DOCTYPE html>
<html lang=''>
<!-- HEAD Start -->
<head>
<!-- Force HTTPS Start -->
<script>
// Don't force http when serving the website locally
if (!(window.location.host.startsWith("127.0.0.1")) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
<!-- Force HTTPS End -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Blog and website of z3nth10n, blogging mainly for tech.">
<meta name="author" content="z3nth10n">
<meta name="keywords" content="z3nth10n, dev">
<link rel="canonical" href="/">
<title>{ z3nth10n }</title>
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Custom CSS -->
<link href="/css/responsive-align.css" rel="stylesheet">
<link href="/css/keyframes.css" rel="stylesheet">
<link href="/css/custom.css" rel="stylesheet">
<link href="/css/grayscale.css" rel="stylesheet">
<link href="/css/timeline.css" rel="stylesheet">
<!-- Custom Fonts -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link href="//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/css/rrssb.css" />
<!--- GLIDE -->
<!-- Required Core stylesheet -->
<link rel="stylesheet" href="/css/glide.core.min.css">
<!-- Optional Theme stylesheet -->
<link rel="stylesheet" href="/css/glide.theme.min.css">
<link rel="stylesheet" href="/css/glide.theme-ext.css">
<!--- Google Adsense -->
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-1490601618964659",
enable_page_level_ads: true
});
</script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico">
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#424242"
},
"button": {
"background": "#2a7ae2"
}
},
"content": {
"message": "This website uses cookies to ensure you get the best experience on our website.",
"dismiss": "Got it!",
"link": "Learn more",
"href": "/privacy-policy"
}
})});
</script>
<!-- iOS Web App mode -->
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" sizes="36x36" href="/img/web-app/icon-36p.png">
<link rel="apple-touch-icon" sizes="48x48" href="/img/web-app/icon-48p.png">
<link rel="apple-touch-icon" sizes="72x72" href="/img/web-app/icon-72p.png">
<link rel="apple-touch-icon" sizes="96x96" href="/img/web-app/icon-96p.png">
<link rel="apple-touch-icon" sizes="144x144" href="/img/web-app/icon-144p.png">
<link rel="apple-touch-icon" sizes="192x192" href="/img/web-app/icon-192p.png">
<!-- Android Web App mode -->
<link rel="manifest" href="/manifest.json">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#2f1f1f">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#2f1f1f">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#2f1f1f">
<!-- Syntax highlight in post pages -->
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/styles/monokai_sublime.min.css">
</head>
<!-- HEAD End -->
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation Start -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fas fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<div>
<img src="/img/black-lab-glass.ico" alt="">
{ z3nth10n }
</div>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li class="language-selection">
<button type="button" class="toggle visible">
<span class="sm-invisible">Language</span>
<i class="fas fa-language sm-visible"></i>
</button>
<ul class="lang-select collapse">
<li>
<span data-lang="en">
<img class="emoji" title=":us:" alt=":us:" src="https://github.githubassets.com/images/icons/emoji/unicode/emoji/unicode/1f1fa-1f1f8.png" height="20" width="20"> English
</span>
</li>
<li>
<span data-lang="es">
<img class="emoji" title=":es:" alt=":es:" src="https://github.githubassets.com/images/icons/emoji/unicode/emoji/unicode/1f1ea-1f1f8.png" height="20" width="20"> Español
</span>
</li>
</ul>
</li>
<!-- Scroll to section for each page in index -->
<li>
<a class="page-scroll" href="#asset-store-projects"> <script>document.write("In the Asset Store");</script> </a>
</li>
<li>
<a class="page-scroll" href="#github-cards"> <script>document.write("On Github");</script> </a>
</li>
<li>
<a class="page-scroll" href="#last-social-media"> <script>document.write("Last Social Media");</script> </a>
</li>
<li>
<a class="page-scroll" href="#latest-post"> <script>document.write("Blog");</script> </a>
</li>
<li>
<a class="page-scroll" href="#timeline"> <script>document.write("Timeline");</script> </a>
</li>
<li>
<a class="page-scroll" href="#contact"> <script>document.write("Contact");</script> </a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navigation End -->
<!-- Themes -->
<div class="themes">
<div>
<span class="js-theme-button" data-theme="default"></span>
<span class="js-theme-button" data-theme="light"></span>
<span class="js-theme-button" data-theme="dark"></span>
<span class="js-theme-button" data-theme="dark-blue"></span>
<span class="js-theme-button" data-theme="dark-orange"></span>
<span class="js-theme-button" data-theme="dark-red"></span>
<span class="js-theme-button" data-theme="dark-green"></span>
<span class="js-theme-button" data-theme="dark-yellow"></span>
<span class="js-theme-button" data-theme="dark-olive-green"></span>
<span class="js-theme-button" data-theme="dark-cyan"></span>
<span class="js-theme-button" data-theme="dark-turquoise"></span>
<span class="js-theme-button" data-theme="flower-blue"></span>
<span class="js-theme-button" data-theme="dark-flower-blue"></span>
<span class="js-theme-button" data-theme="sand"></span>
<span class="js-theme-button" data-theme="dark-purple"></span>
<span class="js-theme-button" data-theme="light-purple"></span>
<span class="js-theme-button" data-theme="light-pink"></span>
<span class="js-theme-button" data-theme="_pink"></span>
<span class="js-theme-button" data-theme="lilac"></span>
<span class="js-theme-button" data-theme="_brown"></span>
<span class="js-theme-button" data-theme="light-orange"></span>
<span class="js-theme-button" data-theme="light-red"></span>
<span class="js-theme-button" data-theme="light-green"></span>
<span class="js-theme-button" data-theme="light-yellow"></span>
<span class="js-theme-button" data-theme="light-olive-green"></span>
<span class="js-theme-button" data-theme="light-cyan"></span>
<span class="js-theme-button" data-theme="light-turquoise"></span>
<span class="js-theme-button" data-theme="_salmon"></span>
<span class="js-theme-button" data-theme="_gray"></span>
</div>
</div>
<!-- Intro Start -->
<div class="popup popup-green popup-dserver popup-hide">
WE ARE OFFERING A DEDICATED SERVER FOR A GOOD PRICE, IF YOU ARE INTERESTED PLEASE VISIT <a href="https://short.z3nth10n.net/fPLKP">THIS LINK</a>.
</div>
<header class="intro">
<div class="intro-body">
<div class="container-fluid">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 intro-text-container">
<span class="intro-text"><!--
If you want to have a static message in your intro layout, disable the dynamic-typing in the _config.yml and write here your text
--></span>
</div>
</div>
<div class="row">
<div class="col-md-2">
<a href="#" class="page-scroll avatar-big">
<img class="img-me expand-xl-both" src="/img/author.png" alt="">
</a>
</div>
<div class="col-xs-12 col-md-10 intro-header">
<p>
</p>
<h2>Who am I?</h2>
<p>
I'm a Spanish developer (since 2011). I like (and also, I'm a bit get used) to develop lonely, but I'm open to new oportunities and I invite you to collaborate with me if you are interested on my projects. See them scrolling down.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="popup popup-red">
This page is in a beta stage. If you had an issue or an idea for this website, please <a href="https://github.com/z3nth10n/z3nth10n.github.io/issues">report it here</a>.
</div>
<!-- Intro End -->
<div class="text-center">
<h2>
<script>document.write("In the Asset Store");</script>
</h2>
</div>
<div id="intro" class="slider glide">
<div class="slider__track glide__track" data-glide-el="track">
<ul class="slider__slides glide__slides product-slider">
</ul>
</div>
<div data-glide-el="controls">
<button class="slider__arrow slider__arrow--prev glide__arrow glide__arrow--prev" data-glide-dir="<">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewbox="0 0 24 24">
<path d="M0 12l10.975 11 2.848-2.828-6.176-6.176H24v-3.992H7.646l6.176-6.176L10.975 1 0 12z"></path>
</svg>
</button>
<button class="slider__arrow slider__arrow--next glide__arrow glide__arrow--next" data-glide-dir=">">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewbox="0 0 24 24">
<path d="M13.025 1l-2.847 2.828 6.176 6.176h-16.354v3.992h16.354l-6.176 6.176 2.847 2.828 10.975-11z"></path>
</svg>
</button>
</div>
<div class="slider__bullets glide__bullets product-bullets" data-glide-el="controls[nav]">
</div>
</div>
<br>
<br>
<div class="text-center">
<h2>
<script>document.write("On Github");</script>
</h2>
</div>
<section id="github-cards" data-showif="above-xs" data-jsonrequire="repos" data-htmlinclude="github-cards-content">
</section>
<section id="last-social-media">
<div class="container socialmedia">
<div class="row">
<div class="col-md-12">
<div class="text-center">
<h2>
<script>document.write("Last Social Media");</script>
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<box class="sm-both-offset xs-vertical-offset expand-width-mobile">
<div class="video"><figure><iframe width="640" height="480" src="//www.youtube.com/embed/-Aycbij4j5?list=UU9_182JSvrypccfo-OFllUg" frameborder="0" allowfullscreen></iframe></figure></div>
</box>
</div>
<div class="col-md-12 twitter">
<br>
<hr>
<br>
<div class="text-center expand-width">
<div class="jekyll-twitter-plugin">
<a class="twitter-timeline" data-width="500" data-tweet-limit="3" href="https://twitter.com/z3nth10n?ref_src=twsrc%5Etfw" data-theme="dark" data-link-color="#b84d45" data-chrome="transparent">Tweets by z3nth10n</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
</div>
</div></section></body></html>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Latest Posts Preview Start -->
<section id="latest-post" class="container content-section text-center xs-margin-top">
<div class="row-sm row-xs-flex">
<div class="col-md-9 order-xs-second">
<h2>
<script>document.write("Blog");</script>
</h2>
<div>
<!-- Post List End -->
<section id="latest-post">
<div class="row">
<box class="col-md-12 vertical-offset post-list">
<h4> <strong> 06 Apr 2019 </strong>
<small>.
<a class="category" href="/categories/cs-snippet">
cs-snippet
</a>
.</small>
<strong> <a href="/en/2019/04/06/named-thread-thread-unity3d-impl">Named Thread & Thread Marked class implementation for Unity3D </a> </strong>
<small>. <a href="/en/2019/04/06/named-thread-thread-unity3d-impl.html#disqus_thread"><span data-disqus-url="http://z3nth10n.net/en/2019/04/06/named-thread-thread-unity3d-impl" class="count-comments"></span></a></small>
</h4>
<hr>
<section class="text-left">
<p>These are two scripts that I use to name the Threads, so when I run a <a href="https://docs.microsoft.com/en-us/dotnet/api/system.threading.threadpool.queueuserworkitem?view=netframework-4.7.2"><code class="highlighter-rouge">ThreadPool.QueueUserWorkItem</code></a> (for example) I can know the name of the Queue.</p>
<div class="language-csharp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">using</span> <span class="nn">System</span><span class="p">;</span>
<span class="k">using</span> <span class="nn">System.Collections.Generic</span><span class="p">;</span>
<span class="k">using</span> <span class="nn">System.Threading</span><span class="p">;</span>
<span class="k">namespace</span> <span class="nn">GTAMapper.Extensio...</span></code></pre></div></div>
</section>
<hr>
<center>
<a class="readmore" href="/en/2019/04/06/named-thread-thread-unity3d-impl">Read more...</a>
</center>
</box>
</div>
</section>
<!-- Post List End -->
<section id="latest-post">
<div class="row">
<box class="col-md-12 vertical-offset post-list">
<h4> <strong> 06 Apr 2019 </strong>
<small>.
<a class="category" href="/categories/cs-snippet">
cs-snippet
</a>
.</small>
<strong> <a href="/en/2019/04/06/named-thread-thread-unity3d-impl">Implementación de las clases Named Thread y Thread Marked para Unity3D </a> </strong>
<small>. <a href="/en/2019/04/06/named-thread-thread-unity3d-impl.html#disqus_thread"><span data-disqus-url="http://z3nth10n.net/en/2019/04/06/named-thread-thread-unity3d-impl" class="count-comments"></span></a></small>
</h4>
<hr>
<section class="text-left">
<p>Estos dos scripts los uso para darle un nombre a los Threads, así cuando ejecuto un <a href="https://docs.microsoft.com/es-es/dotnet/api/system.threading.threadpool.queueuserworkitem?view=netframework-4.7.2"><code class="highlighter-rouge">ThreadPool.QueueUserWorkItem</code></a> (por ejemplo) puedo saber el nombre de la Queue.</p>
<div class="language-csharp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">using</span> <span class="nn">System</span><span class="p">;</span>
<span class="k">using</span> <span class="nn">System.Collections.Generic</span><span class="p">;</span>
<span class="k">using</span> <span class="nn">System.Threading</span><span class="p">;</span>
<span class="k">namespace</span> <span class="nn">GTA...</span></code></pre></div></div>
</section>
<hr>
<center>
<a class="readmore" href="/en/2019/04/06/named-thread-thread-unity3d-impl">Read more...</a>
</center>
</box>
</div>
</section>
<!-- Post List End -->
<section id="latest-post">
<div class="row">
<box class="col-md-12 vertical-offset post-list">
<h4> <strong> 05 Apr 2019 </strong>
<small>.
<a class="category" href="/categories/tutorial">
tutorial
</a>
.</small>
<strong> <a href="/en/2019/04/05/how-to-configure-vsftpd">How to configure VSFTPD on Linux </a> </strong>
<small>. <a href="/en/2019/04/05/how-to-configure-vsftpd.html#disqus_thread"><span data-disqus-url="http://z3nth10n.net/en/2019/04/05/how-to-configure-vsftpd" class="count-comments"></span></a></small>
</h4>
<hr>
<section class="text-left">
<p>All the tutorials that I have read at the moment about <strong>how to install vsftpd</strong> start at the same place, <strong>warning that the FTP protocol is insecure because it is not encrypted</strong>. This is true, but it is also true that if you want to set up a local FTP serv...</p>
</section>
<hr>
<center>
<a class="readmore" href="/en/2019/04/05/how-to-configure-vsftpd">Read more...</a>
</center>
</box>
</div>
</section>
<!-- Post List End -->
<section id="latest-post">
<div class="row">
<box class="col-md-12 vertical-offset post-list">
<h4> <strong> 05 Apr 2019 </strong>
<small>.
<a class="category" href="/categories/cs-snippet">
cs-snippet
</a>
.</small>
<strong> <a href="/en/2019/04/05/batched-coroutines-unity3d-impl">BatchedCoroutines class implementation for Unity3D </a> </strong>
<small>. <a href="/en/2019/04/05/batched-coroutines-unity3d-impl.html#disqus_thread"><span data-disqus-url="http://z3nth10n.net/en/2019/04/05/batched-coroutines-unity3d-impl" class="count-comments"></span></a></small>
</h4>
<hr>
<section class="text-left">
<h2 id="batchedcoroutines-iterar-coroutinas-one-by-one">BatchedCoroutines: Iterar coroutinas one by one</h2>
<p>Do you want your ConcurrentQueues to be executed one by one? No problem, with this hard-coded implementation you will get it:</p>
<div class="language-csharp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">using</span> <span class="nn">GTAMapper.Extensions.Threading</span><span class="p">;</span>
<span class="k">using</span> <span class="nn">System</span><span class="p">;</span>
<span class="k">using</span> <span class="nn">System.Collectio...</span></code></pre></div></div>
</section>
<hr>
<center>
<a class="readmore" href="/en/2019/04/05/batched-coroutines-unity3d-impl">Read more...</a>
</center>
</box>
</div>
</section>
<!-- Post List End -->
<section id="latest-post">
<div class="row">
<box class="col-md-12 vertical-offset post-list">
<h4> <strong> 04 Apr 2019 </strong>
<small>.
<a class="category" href="/categories/tutorial">
tutorial
</a>
.</small>
<strong> <a href="/en/2019/04/04/how-to-install-w10-in-promox-with-virtio-drivers">How to install Windows 10 in Proxmox with VirtIO drivers </a> </strong>
<small>. <a href="/en/2019/04/04/how-to-install-w10-in-promox-with-virtio-drivers.html#disqus_thread"><span data-disqus-url="http://z3nth10n.net/en/2019/04/04/how-to-install-w10-in-promox-with-virtio-drivers" class="count-comments"></span></a></small>
</h4>
<hr>
<section class="text-left">
<p>A (hopefully) fool-proof guide on how to install a Windows 10 installation on Proxmox VE. The right way.</p>
<p>Given:</p>
<ul>
<li>A Windows 10 ISO (Need one? I suggest looking at the Media Creation tool <a href="https://www.microsoft.com/en-us/software-download/windows10">here</a>)</li>
<li>A stable VirtIO ISO (Start by looking <a href="https://fedoraproject.org/wiki/Windows_Virtio_Drivers#Direct_download">here</a>)</li>
<li>A Pr...</li>
</ul>
</section>
<hr>
<center>
<a class="readmore" href="/en/2019/04/04/how-to-install-w10-in-promox-with-virtio-drivers">Read more...</a>
</center>
</box>
</div>
</section>
</div>
<!-- Pagination Links Start -->
<!--
Showing buttons to move to the next and to the previous list of posts (pager buttons).
-->
<ul class="pagination">
<li class="next">
<a href="/2/index.html">Older Posts →</a>
</li>
</ul>
<!-- Pagination Links End -->
</div>
<div class="col-md-3 order-xs-first col-xs-expand">
<h2 class="xs-invisible"> </h2>
<box class="both-offset vertical-xs-margin expand-width presentation-sidebar">
<a href="#" class="page-scroll avatar-medium">
<img class="img-me expand-xl-both" src="/img/author.png" alt="">
</a>
<p>Álvaro Rodríguez García</p>
<p class="gray"><b>Hobbyist Developer</b></p>
<p class="buttons">
<!-- Social Buttons Start -->
<ul class="list-inline social-buttons small-social-icons">
<li>
<a href="https://facebook.com/Z3nth10n-344166426434567" target="_blank"><i class=" fab fa-facebook fa-fw"></i></a>
</li>
<li>
<a href="https://twitter.com/z3nth10n" target="_blank"><i class=" fab fa-twitter fa-fw"></i></a>
</li>
<li>
<a href="https://github.com/z3nth10n" target="_blank"><i class=" fab fa-github fa-fw"></i></a>
</li>
<li>
<a href="https://instagram.com/z3nth10n" target="_blank"><i class=" fab fa-instagram fa-fw"></i></a>
</li>
<li>
<a href="https://discord.com/users/208235269764284417" target="_blank"><i class=" fab fa-discord fa-fw"></i></a>
</li>
<li>
<a href="https://t.me/z3nth10n" target="_blank"><i class=" fab fa-telegram fa-fw"></i></a>
</li>
<li>
<a href="/feed.xml" target="_blank"><i class=" fas fa-rss fa-fw"></i></a>
</li>
</ul>
<!-- Social Buttons End -->
</p>
<hr>
<h4>Categories</h4>
<a class="label" href="/categories/cs-snippet">
cs-snippet
</a>
<a class="label" href="/categories/tutorial">
tutorial
</a>
<br>
<hr>
<h4>Tags</h4>
Nothing yet...
<br>
</box>
</div>
<!---
<div class="col-md-3 align-sm-right vertical-margin order-xs-third col-xs-expand">
<box class="both-offset expand-width">
<b>Help me to achieve my goal!</b>
<hr>
<hr>
... Or if you prefer a one-time donation:
<br>
<p class="donate-button"><a href="https://paypal.me/z3nth10n"><img src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Donate to z3nth10n!"></a></p>
<b>Your donations are apreciated!</b>
</box>
</div>
<div id="genstats" class="col-md-3 align-sm-right vertical-margin order-xs-fourth col-xs-expand">
<box class="both-offset expand-width">
<p>
<h3>Statistics</h3>
<p>(last days)</p>
</p>
</box>
</div>
-->
</div>
</section>
<!-- Latest Posts Preview End -->
<!-- Timeline Start -->
<section id="timeline" class="container content-section text-center">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<h2>