identifier
stringlengths
7
768
collection
stringclasses
3 values
open_type
stringclasses
1 value
license
stringclasses
2 values
date
float64
2.01k
2.02k
title
stringlengths
1
250
creator
stringlengths
0
19.5k
language
stringclasses
357 values
language_type
stringclasses
3 values
word_count
int64
0
69k
token_count
int64
2
438k
text
stringlengths
1
388k
__index_level_0__
int64
0
57.4k
https://ceb.wikipedia.org/wiki/M%C3%BChlberge
Wikipedia
Open Web
CC-By-SA
2,023
Mühlberge
https://ceb.wikipedia.org/w/index.php?title=Mühlberge&action=history
Cebuano
Spoken
35
94
Ang Mühlberge ngalan niining mga mosunod: Alemanya Mühlberge (mga bungtod sa Alemanya, Brandenburg), Mühlberge (mga bungtod sa Alemanya, Saxony-Anhalt), Mühlberge (mga bungtod sa Alemanya, Saxony), Pagklaro paghimo ni bot 2016-01 Pagklaro paghimo ni bot Alemanya
29,906
https://cy.wikipedia.org/wiki/Blodau%20yn%20y%20Cysgodion
Wikipedia
Open Web
CC-By-SA
2,023
Blodau yn y Cysgodion
https://cy.wikipedia.org/w/index.php?title=Blodau yn y Cysgodion&action=history
Welsh
Spoken
171
413
Ffilm ddrama gan y cyfarwyddwr Yūichirō Hirakawa yw Blodau yn y Cysgodion a gyhoeddwyd yn 2008. Teitl gwreiddiol y ffilm oedd 陰日向に咲く ac fe'i cynhyrchwyd yn Japan. Sgwennwyd y sgript yn wreiddiol yn Japaneg a hynny gan Arisa Kaneko. Y prif actorion yn y ffilm hon yw Aoi Miyazaki, Aya Hirayama, Junichi Okada ac Atsushi Itō. Cafodd ei ffilmio mewn lliw. Fel y nodwyd, cyhoeddwyd y ffilm yn 2008. Ffilm fwyaf poblogaidd y flwyddyn honno oedd The Dark Knight sef ffilm drosedd llawn cyffro, Americanaidd am uwcharwr. Hyd at 2022 roedd o leiaf 5,600 o ffilmiau Japaneg wedi gweld golau dydd. Golygwyd y ffilm gan Tsuyoshi Imai sydd ymhlith y golygyddion lleiaf toreithiog. Cyfarwyddwr Ganwyd y cyfarwyddwr ffilm Yūichirō Hirakawa ar 23 Ionawr 1972 yn Ōita. Derbyniad Gweler hefyd Cyhoeddodd Yūichirō Hirakawa nifer o ffilmiau gan gynnwys y canlynol: Cyfeiriadau Ffilmiau gan gyfarwyddwyr ffilm gwrywaidd Japaneg Ffilmiau lliw Ffilmiau lliw o Japan Dramâu o Japan Ffilmiau Japaneg Ffilmiau o Japan Dramâu Ffilmiau 2008 Ffilmiau gyda llai na 10 o actorion lleisiol
10,243
https://en.wikipedia.org/wiki/Rhiwlas%20Formation
Wikipedia
Open Web
CC-By-SA
2,023
Rhiwlas Formation
https://en.wikipedia.org/w/index.php?title=Rhiwlas Formation&action=history
English
Spoken
47
92
The Rhiwlas Formation is a geologic formation in Wales. It preserves fossils dating back to the Ordovician period. See also List of fossiliferous stratigraphic units in Wales References Geologic formations of Wales Ordovician System of Europe Ordovician Wales Ordovician southern paleotemperate deposits Fossiliferous stratigraphic units in Wales
19,854
https://stackoverflow.com/questions/15970094
StackExchange
Open Web
CC-By-SA
2,013
Stack Exchange
JNI_OnLoad, Swayam, https://stackoverflow.com/users/1386939, https://stackoverflow.com/users/1393623, https://stackoverflow.com/users/736196, kinghomer
English
Spoken
373
961
.net web service returning NULL objects in the beginning of data I have web service, which is returning XML data. but in the data I am receiving Null fields in the beginning of it. The actual data is also available but followed by Null fields. I am accessing the webservice in Android using ksoap2. SoapObject variable has full data but also have those null field, which is kinda creating problem to work with this service. here you can see, in the starting it has nothing but later it has data starting with Tag "Title" 04-12 10:55:09.405: D/ENVELOPE(1394): GetGuestEventsListingForServiceResponse{GetGuestEventsListingForServiceResult=anyType{schema=anyType{element=anyType{complexType=anyType{choice=anyType{element=anyType{complexType=anyType{sequence=anyType{element=anyType{}; element=anyType{}; element=anyType{}; element=anyType{}; element=anyType{}; element=anyType{}; element=anyType{}; element=anyType{}; element=anyType{}; element=anyType{}; }; }; }; }; }; }; }; diffgram=anyType{NewDataSet=anyType{Table=anyType{Title=THE CLUSTER DAY-1, JUNKOVATION; Description=anyType{}; EventDate=Apr 12, 2013; EventTime=5:00 PM; Venue=BLOCK 13-306; CreatedBy=16689; CreatedOn=2013-04-11T09:52:07.163+05:30; EventFor=All; Type=Internal; IsActive=true; }; Could you please share your WSDL formats for the request and the response ? Also, check your server side for <schema> and you can simply remove it as all the empty data is inside the <schema> tag. I don't understand where is the problem. If you format result String as xml, you obtain this: <GetGuestEventsListingForServiceResponse> <GetGuestEventsListingForServiceResult> <schema> <element> <complexType> <choice> <element> <complexType> <sequence> <element/> <element/> <element/> <element/> <element/> <element/> <element/> <element/> <element/> <element/> </sequence> </complexType> </element> </choice> </complexType> </element> </schema> <diffgram> <NewDataSet> <Table> <Title>THE CLUSTER DAY-1, JUNKOVATION</Title> <Description/> <EventDate>Apr 12, 2013</EventDate> <EventTime>5:00 PM</EventTime> <Venue>BLOCK 13-306</Venue> <CreatedBy>16689</CreatedBy> <CreatedOn>2013-04-11T09:52:07.163+05:30</CreatedOn> <EventFor>All</EventFor> <Type>Internal</Type> <IsActive>true</IsActive> </Table> </NewDataSet> </diffgram> </GetGuestEventsListingForServiceResult> </GetGuestEventsListingForServiceResponse> If you mean why there are those empties element, you have to check web service on server side. If you are interfacing with ".NET" web service on server side, try to set binding as BasicBinding I dont have access to web services directly and looking for optimized solution to handle it at client side, I have implemented it somehow by using some Java Api's like split, replace and all. But does not seem like good solution. If you can't modify code on server side, the only thing you can do is to ignore useless response nodes and consider just what you have to handle. In this specific case, ignore if node is called "schema" and handle if node is "NewDataSet". By the way, if i remember well, this response happens when binding isn't set as BasicBinding
16,966
https://uk.wikipedia.org/wiki/%D0%A0%D0%B5%D0%B7%D0%BE%D0%BB%D1%8E%D1%86%D1%96%D1%8F%20%D0%84%D0%B2%D1%80%D0%BE%D0%BF%D0%B5%D0%B9%D1%81%D1%8C%D0%BA%D0%BE%D0%B3%D0%BE%20%D0%BF%D0%B0%D1%80%D0%BB%D0%B0%D0%BC%D0%B5%D0%BD%D1%82%D1%83%20%D0%B2%D1%96%D0%B4%2019%20%D0%B2%D0%B5%D1%80%D0%B5%D1%81%D0%BD%D1%8F%202019%20%D1%80%D0%BE%D0%BA%D1%83%20%D0%BF%D1%80%D0%BE%20%D0%B2%D0%B0%D0%B6%D0%BB%D0%B8%D0%B2%D1%96%D1%81%D1%82%D1%8C%20%D1%94%D0%B2%D1%80%D0%BE%D0%BF%D0%B5%D0%B9%D1%81%D1%8C%D0%BA%D0%BE%D1%97%20%D0%BF%D0%B0%D0%BC%E2%80%99%D1%8F%D1%82%D1%96%20%D0%B4%D0%BB%D1%8F%20%D0%BC%D0%B0%D0%B9%D0%B1%D1%83%D1%82%D0%BD%D1%8C%D0%BE%D0%B3%D0%BE%20%D0%84%D0%B2%D1%80%D0%BE%D0%BF%D0%B8
Wikipedia
Open Web
CC-By-SA
2,023
Резолюція Європейського парламенту від 19 вересня 2019 року про важливість європейської пам’яті для майбутнього Європи
https://uk.wikipedia.org/w/index.php?title=Резолюція Європейського парламенту від 19 вересня 2019 року про важливість європейської пам’яті для майбутнього Європи&action=history
Ukrainian
Spoken
337
1,207
Резолюція Європейського парламенту від 19 вересня 2019 року про важливість європейської пам’яті для майбутнього Європи була резолюцією Європейського парламенту, прийнятою 19 вересня 2019 року з 535 голосами «за», 66 «проти» та 52 утрималися, яка закликала пам’ятати про тоталітарні режими, їх злочини і засуджувала пропаганду, яка заперечує або прославляє тоталітарні злочини, і пов’язував таку пропаганду з російською інформаційною війною проти «демократичної Європи». Зміст і передумови У резолюції зазначалося, що «нацистський і комуністичний режими здійснювали масові вбивства, геноцид та депортації та спричинили втрати життя і свободи в 20 столітті в небачених в історії людства масштабах». Вона засуджує російську державну «пропаганду, [яка продовжує] відбілювати комуністичні злочини та прославляти радянський тоталітарний режим» і засудив «нинішнє російське керівництво [за спотворення] історичних фактів і [відбілювання] злочинів, скоєних радянським тоталітарним режимом», про що йдеться в резолюції. описується як «інформаційна війна проти демократичної Європи». У резолюції наголошується, що існує «нагальна потреба підвищити обізнаність, провести моральні оцінки та провести юридичне розслідування злочинів сталінізму та інших диктатур», закликає «російське суспільство змиритися зі своїм трагічним минулим», засуджує Пакт Молотова — Ріббентропа та підкреслив важливість Європейського дня пам’яті жертв сталінізму та нацизму. У резолюції також висловлюється занепокоєння з приводу «використання символіки тоталітарних режимів у публічній сфері» та закликається до видалення пам’ятників і меморіалів, «що прославляють тоталітарні режими». Авторами резолюції виступили група Європейської народної партії, група Прогресивного альянсу соціалістів і демократів, ліберальна група «Оновимо Європу» та група європейських консерваторів і реформістів. Резолюція вважається частиною виникнення антикомуністичної політичної культури в Європейському Союзі. Росія різко відреагувала на резолюцію, а президент Володимир Путін назвав її «абсолютно неприйнятною». The Guardian зазначає, що резолюція «прийшла після спільних зусиль російського міністерства закордонних справ раніше [у 2019 році] щодо реабілітації нацистсько-радянського пакту про ненапад 1939 року». У 2020 році міністри закордонних справ Болгарії, Чехії, Естонії, Угорщини, Латвії, Литви, Польщі, Румунії, Словаччини та США звинуватили Путіна у фальсифікації історії. Див. також Комісія президента РФ по протидії спробам фальсифікації історії на шкоду інтересам Російської Федерації Пропаганда в Російській Федерації Російські веб-бригади Примітки 2019 у Європі Тоталітаризм Декомунізація Російська пропаганда Росія та Європейський Союз Сторінки з неперевіреними перекладами Вересень 2019
1,033
https://stackoverflow.com/questions/14127283
StackExchange
Open Web
CC-By-SA
2,013
Stack Exchange
Nishant, PinnyM, Yves Senn, https://stackoverflow.com/users/1141839, https://stackoverflow.com/users/1371381, https://stackoverflow.com/users/156775, https://stackoverflow.com/users/1938429, silasjmatson
English
Spoken
271
542
Rails root_url has two forward slashes when default_url_options trailing_slash is true When this line is set in the application.rb file: config.action_controller.default_url_options = { trailing_slash: true} The root_url contains two forward slashes: www.example.com// Without that line we get: www.example.com The reason we have this is SEO purposes, the site was converted from php and we wanted to maintain consistency. Question: Is there any way to remove the double forward slash? It only started doing this recently... maybe a recent change in Rails? (We always update to the latest.) Update: Was able to reproduce with a default app. (Rails 3.2.8) https://github.com/silasj/rails_test_forward_slash Gihub Issue: https://github.com/rails/rails/issues/8700 Will spin up a new rails app and see if I can reproduce then. please open an issue on https://github.com/rails/rails/issues I'll take a look. does it happen in 3.2.9? Issue on github: https://github.com/rails/rails/issues/8700d My test is 3.2.8, our app is 3.2.9 (looks like it was updated recently w/out my knowledge), and it occurs on both. @Silasj For me, without the trailing_slash declaration. I get www.example.com/ . and with the trailing_slash I get www.example.com// (rails 3.2.9) @Nishant I get the same as you with 3.2.8, but with our app, I am getting the results I stated in the question. This is a rails bug. I tracked it down and submitted a PR to solve the problem https://github.com/rails/rails/pull/8701 I think we can merge it in in the near future. I'll try to backport the patch to 3-2-stable so that it will be available in the next 3.2.x release. EDIT: PR is merged into rails/master and rails/3-2-stable. Sadly a little to lait for 3.2.10, need to wait for the next release ;).
37,256
https://vi.wikipedia.org/wiki/Melecta%20leucorhyncha
Wikipedia
Open Web
CC-By-SA
2,023
Melecta leucorhyncha
https://vi.wikipedia.org/w/index.php?title=Melecta leucorhyncha&action=history
Vietnamese
Spoken
31
64
Melecta leucorhyncha là một loài Hymenoptera trong họ Apidae. Loài này được Gribodo mô tả khoa học năm 1893. Chú thích Tham khảo Melecta Động vật được mô tả năm 1893
26,968
https://stackoverflow.com/questions/74773819
StackExchange
Open Web
CC-By-SA
2,022
Stack Exchange
Jammer, https://stackoverflow.com/users/155926
English
Spoken
294
386
Avalonia : Multiscreen - opening a window with negative x-value (on left monitor) fails to work Situation : Avalonia 0.10.18, Windows 11, 3 (same) monitors, NET6.0. I have a 'main' window on the middle screen and I use a second (floating) window for some common values (with 'main' as parent). I save the position of the second 'floating' window on closing and on 'OnOpened' I read the values and position the window accordingly. That works fine as long as the floating window was not on the left monitor (negative X-value)(so all X-positions on middle and right work fine). Since this second window has the main window as parent, the X-value is thus negative and I presume that is to prevent windows from being out of the screen area. A last fact, but I doubt that that has to do with it, is that I'm using windowless windows, but the custom made positioning works correct in all cases (even on the left monitor). Since in absolute values my 'floating' window is not out of the screen area and I do not know if I'm perhaps using a wrong event or is this rather a bug ? This is a more involved process than it might at first appear. The issue with the direction you have gone in is the happy path. What happens when your application starts up and that monitor is disconnected or turned off? Calls into the OS are the only way around this situation for reliability. OK, Sorry, my bad. I had in an upper class window a rule set that if the left < 0, not to use that value at the startup of the window. So, it was a bug in my code and not in the Avalonia code !
45,716
https://stackoverflow.com/questions/52699184
StackExchange
Open Web
CC-By-SA
2,018
Stack Exchange
Aaron, Azhy, https://stackoverflow.com/users/1678362, https://stackoverflow.com/users/8166144
English
Spoken
236
524
Regex Pattern matching json Given the following json string, how could I use regex to match just the values? input '{"a": {"key1": "value1", "key2": "value2"},"b": {"key3": "value3","key4": "value4"}}' output I need a regex to extract the values: '{"key1": "value1", "key2": "value2"}' and '{"key3": "value3", "key4": "value4"}' You don't need to use regex in this case, but by the way which language do you use to get the values Js or Python? Not only is it easy to do with a JSON parser, it's also impossible to do right with regex (maybe with perl's regex, but not with JS' nor python re's). For a python JSON parser check the json module, for JS check parse and stringify finally, I use (\{[^{}]+\}) It works. A regular expression is the wrong tool for this problem. With JavaScript, this is very easy: const original = '{"a": {"key1": "value1", "key2": "value2"},"b": {"key3": "value3","key4": "value4"}}'; const updated = JSON.stringify(Object.values(JSON.parse(original))); console.log(updated); Since your input is a JSON string, you can parse it into a dict with json.loads and then dump it again with json.dumps after obtaining the dict values (assuming your input is stored in variable j): import json print(json.dumps(list(json.loads(j).values()))) This outputs: [{"key1": "value1", "key2": "value2"}, {"key3": "value3", "key4": "value4"}] If you're using Python 3.6 or earlier versions, where dict order is not guaranteed, you can use the object_pairs_hook parameter with collections.OrderedDict as the object pair resolver: from collections import OrderedDict print(json.dumps(list(json.loads(j).values()), object_pairs_hook=OrderedDict))
5,385
https://stackoverflow.com/questions/32982539
StackExchange
Open Web
CC-By-SA
2,015
Stack Exchange
Paul LeBeau, Sam Begdouri, https://stackoverflow.com/users/1055843, https://stackoverflow.com/users/1292848, https://stackoverflow.com/users/2369730, wharfdale
English
Spoken
1,366
3,360
How to scroll draw each SVG path one at a time (chronologically)? This is related to a previous post here. However, I think it was a bit of a momentous task. So I am breaking it down to smaller chunks. I have made a simple SVG image that includes one "path" and one "rect" element. The user can draw the lines on and off the window by scrolling up and down the page (scroll down the page for on and up the page for off/"undraw). However, both elements "draw"/animate at the same time. What I want to do is as the user scrolls down the page, the line path draws on, then the "rect" element draws (after), so it's more fluid and chronological. <!doctype html> <html> <head> <meta charset="UTF-8"> <title>the single line</title> <link rel="stylesheet" type="text/css" href="line.css"> <style> svg { position: fixed; margin: auto; top: 0; left: 0; right: 0; bottom: 0; width: 50%; } /*.line{ stroke-dashoffset:850; stroke-dasharray: 850; } .box { stroke-dashoffset:1852; stroke-dasharray: 1852; }*/ .all{ stroke-dashoffset:2702; stroke-dasharray: 2702; } .straightLine { height: 3000px; position: relative; width: 360px; margin: 40vh auto 0 auto; } </style> </head> <body> <main role="article" title="line"> <div class="straightLine"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1280 800" style="enable-background:new 0 0 1280 800;" xml:space="preserve"> <style type="text/css"> .st0{fill:none;stroke:#000000;stroke-width:8;stroke-miterlimit:10;} </style> <g class="all"> <path class="st0" d="M54,178h509.6c49.9,0,90.4,40.5,90.4,90.4V428"/> <rect x="498" y="428" class="st0" width="308" height="162"/> </g> </svg> </div> </main> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="line.js"></script> <script> $(document).ready(function() { //variable for the 'stroke-dashoffset' unit var $dashOffset = $(".all").css("stroke-dashoffset"); //on a scroll event - execute function $(window).scroll(function() { //calculate how far down the page the user is var $percentageComplete = (($(window).scrollTop() / ($("html").height() - $(window).height())) * 100); //convert dashoffset pixel value to interger var $newUnit = parseInt($dashOffset, 10); //get the value to be subtracted from the 'stroke-dashoffset' var $offsetUnit = $percentageComplete * ($newUnit / 100); //set the new value of the dashoffset to create the drawing effect $(".all").css("stroke-dashoffset", $newUnit - $offsetUnit); }); }); </script> </body> </html> How is this? You can control when each path starts and finishes drawing by setting the startPct and endPct percentage values in the scrollBehaviour array. Note: this code assumes you are only using paths and rects. If you start using other elements, the calcPathLength() function will have to be updated. var scrollBehaviour = [ {id: 'line1', startPct: 0, endPct: 30}, {id: 'rect1', startPct: 30, endPct: 60}, {id: 'line2', startPct: 60, endPct: 80}, {id: 'circ1', startPct: 80, endPct: 100} ]; $(document).ready(function() { // On a scroll event - execute function $(window).scroll(scrollEventHandler); // Call the scroll event handler once at the start to initialise the dash offsets scrollEventHandler(); }); function scrollEventHandler() { // Calculate how far down the page the user is var percentOfScroll = (($(window).scrollTop() / ($("html").height() - $(window).height())) * 100); // For each lement that is getting drawn... for (var i=0; i<scrollBehaviour.length; i++) { var data = scrollBehaviour[i]; var elem = document.getElementById(data.id); // Get the length of this elements path var dashLen = calcPathLength(elem); // Calculate where the current scroll position falls relative to our path var fractionThroughThisElem = (percentOfScroll - data.startPct) / (data.endPct - data.startPct); // Clamp the fraction value to within this path (0 .. 1) fractionThroughThisElem = Math.max(fractionThroughThisElem, 0); fractionThroughThisElem = Math.min(fractionThroughThisElem, 1); var dashOffset = dashLen * (1 - fractionThroughThisElem); elem.setAttribute("stroke-dasharray", dashLen); elem.setAttribute("stroke-dashoffset", dashOffset); } } function calcPathLength(elem) { if (elem.getTotalLength) { // It's a path return elem.getTotalLength(); } else if (elem.tagName === "rect") { // Handle rect elements: perimeter length = w + w + h + h return (elem.width.baseVal.value + elem.height.baseVal.value) * 2; } else if (elem.tagName === "circle") { // Handle circle elements: perimeter length = 2 * r * PI return elem.r.baseVal.value * 2 * Math.PI; } else if (elem.tagName === "line") { // Handle line elements: use pythagoras' theorem var dx = elem.x2.baseVal.value - elem.x1.baseVal.value; var dy = elem.y2.baseVal.value - elem.y1.baseVal.value; return Math.sqrt(dx * dx + dy * dy); } // If you use other elem types, you will have to add support for them here. } svg { position: fixed; margin: auto; top: 0; left: 0; right: 0; bottom: 0; width: 50%; } /*.line{ stroke-dashoffset:850; stroke-dasharray: 850; } .box { stroke-dashoffset:1852; stroke-dasharray: 1852; } .all{ stroke-dashoffset:2702; stroke-dasharray: 2702; }*/ .straightLine { height: 3000px; position: relative; width: 360px; margin: 40vh auto 0 auto; } <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <main role="article" title="line"> <div class="straightLine"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1280 1000" style="enable-background:new 0 0 1280 800;" xml:space="preserve"> <style type="text/css"> .st0{fill:none;stroke:#000000;stroke-width:8;stroke-miterlimit:10;} </style> <g class="all"> <path id="line1" class="st0" d="M54,178h509.6c49.9,0,90.4,40.5,90.4,90.4V428"/> <rect id="rect1" x="498" y="428" class="st0" width="308" height="162"/> <line id="line2" x1="652" y1="590" x2="652" y2="790" class="st0"/> <circle id="circ1" cx="652" cy="890" r="100" class="st0"/> </g> </svg> </div> </main> Hey Paul. Some great mark-up. Sorry I haven't thanked you for it yet. I've been playing with it & to understand it more. One part I can't get my head around is updating the code to include other shape elements like "circle" and "ellipse"and "text". I can update this.... var scrollBehaviour = [ {id: 'line1', startPct: 0, endPct: 40}, {id: 'rect1', startPct: 40, endPct: 100}, ]; but not this.... // Assume it's a rect. // If you use other elem types, you will have to add support for them here. return (elem.width.baseVal.value + elem.height.baseVal.value) * 2; } } You will need to use different calculations (based on different attributes) for the other element types. For example, for a circle you would need to look at the r attribute. I've updated the example to show how you can determine the element type. Honestly, I ought to pay you. Sorry to bother you again Paul. You seem the only person on the WWW who is kind enough to help me, regardless of how irritating I am becoming. Just to see if I am understanding this correctly (be gentle I am new to JS) Do I need to add else if (elem.tagName === "rect") for every attribute. This example would be for the rectangle svg element. tagName==="xy" would be for length of the line svg attribute? You would check the tagName for each SVG element ("line", "circle" etc), then calculate the correct length of the shape using the attributes particular to that shape. So for circle it would be the r attribute etc. I'll add some additional examples for you. Don't be confused about the .baseVal.value stuff. It's just how you access the value of an attribute in the SVG DOM. The DOM is just the internal JS representation of the document. So if elem is pointing at the internal JS version of a <rect> element, you can get the width attribute using elem.width. However the width value is not stored directly in elem.widthbecause the width is (potentially) animatable. So thewidth` object is more complicated. (cont...) elem.width.baseVal is the object that describes the initial value of the attribute before it starts animating. And elem.width.baseVal.value is the numerical part of the attribute. As opposed to the units part when the attribute is, for example, "25px". This is brilliant. I am starting to really get the hang of this. I am indebted to you. Now, I have one final question. I've checked on the MDN for the text attribute and its elements are x and y <text x="10" y="20" (similar to the line attribute. However, my text is not determined as such. It uses transform="matrix(1 0 0 1 635.5942 413.2075). MDN states if y is not provided, it is assumed to be zero. What does this mean and how do I know the coordinates of X and Y? The text positioning is being performed by the transform. <text x="0" y="0" transform="matrix(1 0 0 1 635 413)"/> is equivalent to <text x="0" y="0" transform="translate(635 413)"/> which is equivalent to <text x="635" y="413"/>. Paul. Thank you so much for your time. I am very grateful indeed. I will surely credit you in my dissertation. Your help has been nothing less of AWESOME. But I definitely think I have taken enough of your time. Cheers Paul! NP. Your's welcome. The best way to thank me is to upvote my answer and accept it (click the green check/tick) :-). Good luck on your dissertation!. Is there a method to alert/do something when the path begins the dasharray and/or completes? I need to trigger animations elsewhere each time each path is completed.
46,098
https://en.wikipedia.org/wiki/Khalil%20Gibran%20International%20Academy
Wikipedia
Open Web
CC-By-SA
2,023
Khalil Gibran International Academy
https://en.wikipedia.org/w/index.php?title=Khalil Gibran International Academy&action=history
English
Spoken
1,066
1,507
Khalil Gibran International Academy is a public school in Boerum Hill, Brooklyn, New York City, New York that opened in September 2007 with about 60 sixth grade students. As the first English-Arabic public school in the country to offer a curriculum emphasizing the study of Arabic language and culture, it was placed at the center of controversy by opponents. Khalil Gibran, the school's namesake, was a Lebanese-American poet. The committee that designed the school included the original principal Debbie Almontaser (a former teacher and community activist) and several nonprofit groups, including Lutheran Medical Center, the American-Arab Anti-Discrimination Committee, the Salaam Club of New York, and the lead partner, the Arab American Family Support Center, a Brooklyn-based nonprofit. Khalil Gibran International Academy transitioned to a public high school in 2012 and became an IB World School in 2015, making it one of the first public schools in NYC to offer the rigorous IB Diploma Programme. Premise The school's stated mission includes providing a "multicultural curriculum and intensive Arabic language instruction". Further, the federal government has stated that the country is in critical need of Arabic and Chinese speakers, and grants have been given out for schools teaching those subjects. Modern Arabic language is a dialect continuum with two dozen varieties that might be considered languages in their own right. They are the majority language in 20 countries of the Arab world, which has a population of some 325 million people. The BBC reports that some attendees have joined to reconnect with their families' culture and homeland; others, with no Arab or Muslim background, because they believe learning the language will give them a valuable skill. A Brooklyn College professor, Moustafa Bayoumi, says that "It's not uncommon for Arab students to feel isolated — I think [the school is] seen as a foothold" and that he believes that the school is making them feel more at home in the city. One of the founders of the school was Lena Alhusseini. History Founding controversy Although the Khalil Gibran International Academy is one of 67 dual language schools in the city of New York, its unique position as the first public school focused on Arabic language and culture in the USA has made it the target of much criticism. Indeed, before the school opened, an organization called "Stop the Madrassa" held a protest outside New York's city hall calling for the school to be shut down. The New York Times reported that KGIA had become the center of controversy as a result of an "organized movement to stop Muslim citizens who are seeking an expanded role in American public life." While opponents argue that such a school is unnecessary and that creating it only promotes non-assimilation, supporters of the school say that contrary to preventing social cohesion, the school could act to improve integration by providing the school community with health services, counseling, youth leadership development, and English as a second language classes for parents. Daniel Pipes, an adviser to "Stop the Madrassa" and the founder of Campus Watch, has said that as the school is teaching the Arabic Language, it needs to be held under a "special scrutiny," adding that "In principle it is a great idea – the United States needs more Arabic-speakers. In practice, however, Arabic instruction is heavy with Islamist and Arabist overtones and demands." However, Pipes has been roundly criticized for being a "propagandist" of "anti-Arab racism" and for his attacks on academic freedom. Also, Garth Harries, a school official, has denied any religious activities would be taking place inside: "Religion plays absolutely no part in the school. This is a public school, it wouldn't play a part in any of our schools." The BBC reported that in searching the Internet they found many hateful messages about the school that conflate the Arabic language, Islam, and terrorism. Changing leadership, structure, and location Founding principal Debbie Almontaser was forced to resign after controversy erupted in August 2007 when the New York Post attacked her and the school for failing to condemn the word "intifada" in an interview. After Almontaser resigned, she was replaced by an interim principal Danielle Salzberg, who is Jewish and cannot speak Arabic, while a national search for a permanent principal was underway. In January 2008, Holly Anne Reichert was appointed principal. Parents had complained of a chaotic school environment. On March 16, 2010, Reichert resigned following an EEOC office's determination that Almontaser's rights had been violated in her dismissal. The Department of Education replaced Reichert with Beshir Abdellatif, a secular Muslim from Tunisia, who in filling the Gibran post resigned from Law, Government and Community Service High School in Cambria Heights, Queens, where he had served since 2008. The New York Times reported: "A lawyer for the founding principal, Debbie Almontaser, a Muslim of Yemeni descent, said he found the timing of the move “curious” and suggested that it was a “cynical ploy” intended to divide supporters of the school and of Ms. Almontaser." In the second week of April 2011 the Department of Education announced that it would close the middle school, converting it into just a high school and relocating. In 2017, it was announced that Khalil Gibran International Academy would relocate to 80 Flatbush, a new development nearby. Construction would start in 2019 and be completed by 2022-2025. 80 Flatbush was approved by the New York City Council in September 2018. Academics and School Quality According to the NYC Department of Education Quality Review, the school scored "Excellent" or "Good" on "Collaborative Teachers" ,"Trust", "Rigorous Instruction", "Supportive Environment", "Effective School Leadership", and "Strong Family-Community Ties". Research shows that schools strong in the six areas are far more likely to improve student learning. Extracurricular Activities at KGIA include: Boys Club, IGNITE, ROSE Girls Group, Creative Writing, Hip-Hop and African Dance, Drama and Theater, Track, Gardening Club, Homework Help, After-School Subject Tutoring, Movie Club, Student Council and Student Advisory, Regents Preparation, Yearbook, Baruch College STEP, Saturday Academy. See also Arabic Immersion Magnet School (Arabic magnet school in Houston, Texas) Ethnic-culture based charter school Tarek ibn Ziyad Academy International Baccaleureate Diploma Programme References External links Khalil Gibran International Academy Official site The Arab American Family Support Center Arab-American culture in New York City Bilingual schools in the United States 2007 establishments in New York City Educational institutions established in 2007 Public high schools in Brooklyn Public middle schools in Brooklyn Boerum Hill
20,549
https://en.wikipedia.org/wiki/Raul%20%28footballer%2C%20born%201981%29
Wikipedia
Open Web
CC-By-SA
2,023
Raul (footballer, born 1981)
https://en.wikipedia.org/w/index.php?title=Raul (footballer, born 1981)&action=history
English
Spoken
74
157
Raul Victor da Silva Cajazeiras, or simply Raul (born 26 July 1981), is a Brazilian footballer who plays as an attacking midfielder for Santa Cruz FC. Honours Alagoas State League: 2011 Ceará Liga: 1998, 1999, 2008 Goiás State League: 2009 Rio Grande do Sul State League: 2004 External links ogol.com.br sambafoot ig.com.br 1981 births Living people Brazilian men's footballers Brazilian expatriate men's footballers Horizonte Futebol Clube players Men's association football forwards Footballers from Fortaleza
3,067
https://stackoverflow.com/questions/66067516
StackExchange
Open Web
CC-By-SA
2,021
Stack Exchange
English
Spoken
274
451
trying to deploy teamcity into googlecloud I am trying to follow this page from jetbrains: - https://blog.jetbrains.com/teamcity/2019/03/teamcity-google-cloud-deployment/ I have enabled the APIs, I have created an external IP address, I have setup my A record, and it resolves correctly. So then I follow the next step and in my google cloud console I am issuing the following:- gcloud deployment-manager deployments create --template https://raw.githubusercontent.com/JetBrains/teamcity-google-template/master/teamcity.jinja --properties zone:,ipAddress:,domainName:,domainOwnerEmail: I have filled in the fields with the relevant values, and I press return. It looks like its chuntering away for a bit and then I get the error message "Creation of legacy mode networks is deprecated. Please create a subnet mode network instead by removing the IPv4Range field and adding the autoCreateSubnetworks field to your network insert request.","reason":"badRequest"}],"message":"Creation of legacy mode networks is deprecated. Please create a subnet mode network instead by removing the IPv4Range field and adding the autoCreateSubnetworks field to your network insert request.... " I have no clue what this means or what I do to make it work I was surpised as this was only from march 2019 on the jetbrains site, and the instructions don't seem to work, I am quite familiar with teamcity, using it every day for the last 8 years, but i'm not at all familiar with google cloud, so I need some pointers or instruction on how to do this... Regards Julian I think that this error is related to this line which still trying to use legacy-network CDIR. However, seems that using legacy-networks is deprecated in favor of subnet mode networks. Also referenced here. So, you can create an issue on JetBrains side for them to fix this.
37,282
https://nl.wikipedia.org/wiki/Aleurolobus%20marlatti
Wikipedia
Open Web
CC-By-SA
2,023
Aleurolobus marlatti
https://nl.wikipedia.org/w/index.php?title=Aleurolobus marlatti&action=history
Dutch
Spoken
32
65
Aleurolobus marlatti is een halfvleugelig insect uit de familie witte vliegen (Aleyrodidae), onderfamilie Aleyrodinae. De wetenschappelijke naam van deze soort is voor het eerst geldig gepubliceerd door Quaintance in 1903. Witte vliegen
34,423
https://vi.wikipedia.org/wiki/Nephrodium%20lucens
Wikipedia
Open Web
CC-By-SA
2,023
Nephrodium lucens
https://vi.wikipedia.org/w/index.php?title=Nephrodium lucens&action=history
Vietnamese
Spoken
52
108
Nephrodium lucens là một loài dương xỉ trong họ Dryopteridaceae. Loài này được Boj., Fee mô tả khoa học đầu tiên năm 1850. Danh pháp khoa học của loài này chưa được làm sáng tỏ. Chú thích Liên kết ngoài Nephrodium Thực vật được mô tả năm 1850 Unresolved names es:Nephrodium lucens
24,972
https://ceb.wikipedia.org/wiki/Ancylus%20pileolus
Wikipedia
Open Web
CC-By-SA
2,023
Ancylus pileolus
https://ceb.wikipedia.org/w/index.php?title=Ancylus pileolus&action=history
Cebuano
Spoken
53
111
Kaliwatan sa dawhilahila ang Ancylus pileolus. Una ning gihulagway ni A.E.J. Férussac ni adtong 1822. Ang Ancylus pileolus sakop sa kahenera nga Ancylus, ug kabanay nga Planorbidae. Kini nga matang hayop na sabwag sa: Gresya Walay nalista nga matang nga sama niini. Ang mga gi basihan niini Dawhilahila Dawhilahila sa Gresya Ancylus (Planorbidae)
13,989
https://ru.wikipedia.org/wiki/%D0%94%D0%B5%D0%BB%D0%B0%D0%BA%D1%80%D1%83%D0%B0%2C%20%D0%A8%D0%B0%D1%80%D0%BB%D1%8C
Wikipedia
Open Web
CC-By-SA
2,023
Делакруа, Шарль
https://ru.wikipedia.org/w/index.php?title=Делакруа, Шарль&action=history
Russian
Spoken
153
455
Шарль-Франсуа Делакруа (фр. Charles-François Delacroix ; 15 апреля 1741 — 26 октября 1805, Бордо) — французский государственный деятель, министр иностранных дел при Директории. Отец художника Эжена Делакруа. Карьера Был секретарем Анн-Робер-Жака Тюрго, министра финансов во время правления Людовика XVI. Во время Великой французской буржуазной революции стал депутатом Национального конвента и проголосовал за смерть короля. В 1793 году Делакруа предложил Конвенту конфисковать металлические скульптуры в Версале и переплавить их для изготовления пушек. После некоторого обсуждения предложение было отклонено. Присоединился к термидорианской реакции. Был назначен министром иностранных дел Франции с 3 ноября 1795 года по 15 июля 1797 года, когда его сменил Талейран. 2 декабря 1797 года стал специальным посланником (послом) в Батавской республике. В январе 1798 года консультировал Германа Виллема Дендельса в его государственном перевороте против группы федералистов в Национальном собрании Нидерландов. В 1799 году он стал первым префектом Буш-дю-Рон, а в 1803 году — Жиронды. Примечания Члены Национального конвента Министры иностранных дел Франции
17,508
https://fr.wikipedia.org/wiki/Lukas%20Zpira
Wikipedia
Open Web
CC-By-SA
2,023
Lukas Zpira
https://fr.wikipedia.org/w/index.php?title=Lukas Zpira&action=history
French
Spoken
2,891
4,993
Lukas Zpira (ly.ka ; zpiʁa), de son vrai nom Lucas Ruiz, né le 29 avril 1966, est un artiste nomade, réalisateur, conférencier et plasticien transmédia français. Utilisant un ensemble de différents médiums tel que la poésie, l'écriture, la performance, les arts numériques ainsi que toutes les pratiques liées à l'Art Corporel, comme le Biohacking, Lukas Zpira met le corps au centre de sa pratique. Il est une figure importante de la scène body art ou bod-mod; Notamment connu pour être le créateur du "Bødy Hacktivism" depuis 2002 Lukas se définit lui-même comme un activiste corporel. Il est depuis 2011 le créateur de la web série "les chroniques du Chaos" qu'il réalise en co-création avec sa fille Mayliss. Poète et photographe depuis ses débuts, il a publié plusieurs livres chez Hors édition en 2005 (Onanisme Manu Militari II) et en 2006 (Hidden Shadows) et sera un contributeur actif dans plusieurs collaborations filmiques et éditoriales depuis 2007. Biographie Issu du milieu punk et alternatif depuis sa jeunesse, Lukas arrive à Avignon en 1991. C'est à l'âge de 26 ans, en 1992, qu'il entre aux ateliers A.D.A.D.A, un collectif d'une trentaine d'artistes aux pratiques mixtes. Avec l'aide et le soutien de Daniel Romanie, directeur et fondateur du collectif que Lukas y fait ses premières expériences artistiques. Il y expérimentes les arts plastiques à travers différents médium comme le dessin, la peinture, la sculpture, l'installation, la photographie ou encore l'écriture et la poésie. Et c'est un an après, en 1993, que Lucas Ruiz prend officiellement son nom d'artiste de Lukas Zpira : une anagramme de son nom de baptême inspiré des expériences littéraires des surréalistes. La même année, et simultanément avec ses premières expositions collectives et personnelles, il publie son premier livre, un recueil de textes, poèmes et images de son travail : "Onanisme Militari I". En 1995, Lukas quitte définitivement les ateliers d'artistes A.D.A.D.A pour se tourner principalement vers la pratique des modifications corporelles. Peu de temps après il ouvre sa première boutique et atelier "Bødy-Art", le premier studio en France consacré à la modification corporelle. En 1998, Lukas entreprend un voyage de plusieurs mois aux États-Unis et au Canada pour réaliser sa première implantation. Il y découvre différents univers existants en lien avec l'Art Corporel. Lukas prend alors conscience qu'il n'est plus vraiment seul et qu'une multitude de mondes et de personnes font exister cet univers avec lui. Il fait notamment la rencontre de , éditeur de BMEzinequi est au début d'internet le premier site entièrement consacré aux modifications corporelles et à la culture de l'art corporel. C'est au travers de ce site, que Lukas grâce aux nombreuses publications de Shannon, acquiert une renommée internationale sur la scène du bod-mod . L'année suivante, en 1999, Lukas participe au premier évènement MOD.COM, à Toronto en compagnie d'autres artistes internationaux du milieu. En 2000, Lukas ouvre un nouvel atelier, la Weird Faktøry, toujours actif et à l’occasion de l’élection d’Avignon comme ville européen de la culture, il lance un contre-événement alternatif d'une durée de six mois appelé Art-Kør.00. Le collectif Art-Kør est créé. Ce nom est donné pour non seulement inaugurer la naissance d'un nouvel univers dans le paysage de l’art contemporain mais aussi pour accompagner le processus métamorphique de Lukas. De nombreux chercheurs et artistes se succèdent pour intervenir sur les questions du corps tant sur le plan juridique que sur celui de l'esthétique, de l'éthique mais aussi autour du champ épistémologique de ces nouvelles pratiques corporelles. À cette expérience auront collaboré Philippe Liottard sociologue, David le Breton anthropologue, Yann Minh spécialiste des mondes virtuels et des avatar, Stelarc artiste contemporain et conférencier sur les thématiques du corps et de la cyber-culture ainsi qu'un ensemble d'autre artistes et performeurs. En 2001, Lukas entreprend un tour du monde collaboratif et participatif axé sur les pratiques des modifications corporelles. Cet événement qu'il appelle "le Crazy Bod Mod Tour" lui permettra une nouvelle fois de partir à la rencontre des différents univers et acteurs-clés du milieux Bod-mod, mais aussi de vulgariser, partager et diffuser son savoir-faire. Ses déplacements dans ces différentes parties du monde lui permettent d'enrichir sa propre pratique comme, avec la rencontre de avec lequel il expérimentera les suspension. Et d'explorer plus en profondeur le milieu du body art des années 2000. Ainsi que tous les milieux underground périphériques qui admettent et accueillent souvent avec beaucoup d'enthousiasme ces nouvelles pratiques. Ainsi, notamment grâce à l'engouement du milieu Bdsm pour les scarifications rituelles ou le needleplay, Lukas est invité à participer à diverses performances et ateliers au sein de cette communauté. Convié à de nombreuses soirées comme performeur puis comme intervenant il mettra en place différents Workshop autour des problématiques corporelles, dans un premier temps puis des dynamiques de couples plus tardivement. Au fil des années, Lukas se verra invité à participer comme intervenant dans différents événements comme Department H (Tokyo), Hellfire (Melbourne), Alien-Nation (Paris), Wasteland (Amsterdam), Torture-Garden (Londres), etc. Ses apparitions au sein du milieu sont remarquées par la scène fetish et ses intervenants et en 2004 après avoir mis en place un workshop autour des relations "Daddy/ Baby-Gril" comme il l'appelle, Lukas est pointé du doigt et mis en cause pour pratique déviante portant atteinte aux bonnes mœurs par une journaliste du Guardian Australie révélant une nouvelle fois l'ambiguïté évidente de son travail sur la scène artistique et social de notre époque. En 2002, Lukas est à New York et grâce à l'aide d'un gang de Vampyrs, les Hidden Shadows, il lance les soirées Flesh and Blood, Freaks connexion dans un dojo de Harlem. Ces soirées donneront suite à un ensemble de performances réalisées pour l'occasion. Il réalise notamment plusieurs "rituels" autour de la suspension. Cette même année Lukas développe et écrit le manifeste Bødy Hacktivism, un mouvement artistique et politique qui atteste de la biodiversité corporelle face aux normes de beauté imposées par Hollywood. Plus inspiré des extraterrestres bestiaux de Star Trek que des références tribales du mouvement , cet activisme d'un nouveau genre affirme l'héritage de la science-fiction dans la bataille pour l'autonomie corporelle. En 2003, la Weird Faktøry est détruite dans un incendie. Lukas s'initie alors à un nouveau style de vie, en perpétuel déplacement, qu'il définira comme nomade. S'ensuivent ensuite plusieurs projets et collaborations dans l'audiovisuel et l'édition comme sur les films "No body is Perfect ” en 2004 avec Raphaël Sibilla,puis “ Like a Butterfly ” de Ryoichi Maeda, la même année. La publication de "Onanism Manu Militari II" en 2005, puis "Hidden Shadows", en 2006 ouvrira sur deux projets filmiques : un court reportage pour Tracks, nommé Hidden Shadows et la réalisation du film "Hidden Shadows" de Laurent Courau. En 2007 Lukas rencontre et s’associe avec le lieu alternatif TOTEM à Nancy. Avec l’aide de Otomo D.Manuel, Von Magnet et the Gnawas of Fez il monte la performance Hactiøn Mutatnte. 2010 Lukas monte une performance à l'occasion d'un séjour en Pologne qu'il nommera Abnormal. L'année suivante, sous l'impulsion de Thierry Ehrmann, Lukas devient curateur d'un évènement artistique dans l'actuelle Demeure du Chaos appelé Borderline-Biennal. À cette occasion Lukas donnera la première représentation de sa performance Danse NeurAl. Cette année là, pour lui est sa fille, c'est aussi le début d'un projet transmédia nomade appelé les Chroniques du chaos. Il crée par la suite et pour soutenir son projet des Chroniques du chaos la maison de production BløwYøurMind Compagny en 2014. À la suite de cela, Lukas éditera cinq courts projets vidéo appelé Fragments pour la chaine de télévision ARTE. En 2016 Lukas donne plusieurs conférences sur l’art corporel au sein d’institutions comme le Royal College of Art à Londres ainsi qu’à Strasbourg, plus axées sur des questions d’ordre sociologique avec la conférence « Corps meurtris, beaux et subversif » Il met aussi en place la performance Spoken Word avec l’artiste Tarik Noui qu’il donnera en représentation au Transbordeur à Lyon ainsi qu’au Japon en 2019. En parallèle, Lukas développe plusieurs expositions immersives sur les Chroniques du chaos qu’il présentera à plusieurs reprises à Berlin en 2014 à la Mathew Rosen Gallery, mais aussi à Paris et à Arles à la galerie Joseph Antonin en 2016 puis à Lyon à la SOFFA en 2017. À l'occasion de l'exposition Medusa autour de l’art corporel et de la bijouterie qui a lieu au musée des Art modernes de la ville de Paris, son implantation MATSI est présentée. Il donnera aussi une représentation de sa performance Danse NeurAle. En 2018 Lukas lance sont projet photo The 4th Life – ANIMA MUNDI, un journal photographique en noir et blanc développé pour le CHARNEL mouvement au cours de ses voyages en Thaïlande et au Japon. Le projet sera présenté en 2019 à Bangkok à la Goja Gallery puis à Osaka au Ludo Theatre. Cette même année Lukas développera une performance appelé R.ME « The Naked Truth » qu’il présentera lors de l’événement fetish Département H ainsi qu’a la Zikkai galery, tous deux localisés à Tokyo. Toujours en 2019 le livre Le MOI-CYBORG, psychanalyse et neuroscience de l’homme connecté de Frédéric Tordo est publié, livre au sujet duquel Lukas Zpira tenu de nombreuses fois comme référence. En 2020 Lukas réalise une exposition intitulé Here and There à la Weird Factor à Avignon. Travail métamorphique Processus métamorphique Art-Kør.00 Bødy Hacktivism Créé à l’aube du siècle par Lukas Zpira, sous l’impulsion de Riyochi Maeda, le terme Body Hacktivisme est né de la nécessité de définir une mouvance d’artistes, de chercheurs, et de penseurs travaillant autour des mutations et utilisant les modifications corporelles comme médium. Par opposition aux qui travaillent sur des bases d’anthropologie tribale, les body hacktivistes pratiquent, théorisent et/ou inventent des modifications corporelles avant-gardistes et prospectives, influencées par la culture manga, la bande dessinée, les films et la littérature de science-fiction. Rendues possibles par une curiosité sans cesse en éveil et l’évolution des découvertes techno-médicales, ces pratiques, par essence expérimentale, sont définies comme Body Hacking, terme exprimant la volonté de ces artistes, chercheurs et penseurs de dépasser les frontières biologiques. Dance NeurAle Sex positive mouvement Lifestyle/ nomadisme The Chaøs Chrønicles Avec The Chaøs Chrønicles, nous découvrons le monde à travers les yeux d’un couple de globe-trotter iconoclaste, un père, Lukas Zpira, et sa fille Maÿliss. Sans véritable budget ni aucun plan, avides de découvertes, ils parcourent la planète via des chemins détournés, en se laissant guider par d’improbables rencontres. Entre utopie et dystopie, leur quête remet en question nos certitudes et nous laisse imprégnés d’un étrange mélange d’espoir et de mélancolie. Ce monde, Maÿliss l’observe à partir des souterrains de la contre culture, en voyageant depuis l’âge de 5 ans aux côtés de son père. Par ce nomadisme, Lukas propose à Maÿliss une éducation loin des bancs de l’école, basée avant tout sur l’expérience. Elle fêtera ses 16 ans au milieu des États-Unis, lors des premières Chrøniques. Depuis, elle ne cesse d’observer le monde avec sa caméra «comme à travers un microscope» dit-elle. Ce sont ces expériences de voyages ainsi que leurs plus intéressantes rencontres que nous vivons à travers les points de vue de ce binôme atypique, faisant de ces Chrøniques du Chaøs un étonnant témoignage. Storytelling protéiforme, ces Chrøniques, démarrées en 2010, s’écrivent au fil des voyages. Le projet se présente au public d'abord sous la forme d’un manifeste sur un simple blog. Les premières photos posent plus tard l’atmosphère. Les décors de nos vies s’effritent peu à peu, comme un vieux mur dont la peinture s’écaille. On passe doucement au travers de ces décors, découvrant les lieux oubliés, les gens laissés de côté, l’isolation, les zones d’exclusion et celles d’autonomie temporaire. On découvre les points de transition de notre monde, sa capacité à muter et celle de l’homme à s’adapter. Les images se multiplient, les kilomètres parcourus aussi. Début 2014 une équipe commence à se constituer et à s’investir dans le projet, lui permettant de le développer sous toutes ses formes. Le projet prend alors sa dimension transmedia, alliant courts métrages, photographies, textes, visibles à travers un site multiplateforme ou des installations immersives, et cherche à se développer sous la forme de longs métrages et de livres. À ce jour, Maÿliss et Lukas ont commencé 3 Chrøniques, US Cøast to Cøast, Central America et Rise and Fall of Europe. Ils prévoient de développer une nouvelle Chrønique par an. Borderline-biennal En 2011, sous l'impulsion de Thierry hermann, Lukas devient curateur de la borderline-biennal, une manifestation artistique et culturelle se tenant à Saint-Romain-au-Mont-d'Or dans l'actuel demeure du chaos. L'événement, s'intitulant “Survive The Apocalypse” est mis en place : il invite sur cinq week-end, soixante-dix artistes pluridisciplinaires répartis sur cinq thématiques : avec la participation de Materia Prima Art Factory, Phil Von, Lisa May, Otomo, Tess Wassila, Christophe Gaunnet, Tess Wassila, Tsurisaki Kiyotaka, Johanna Constantine, Pansonic, William Basinski, Coco Katsura, Satomi Zpira, Michel Fernex, Laurent Courau, Lukas Zpira... : avec la participation de Materia Prima Art Factory, Phil Von, Lisa May, Otomo, Tess Wassila, Camille Mutele, Gaël L., Frédéric Delias, Cart-1, Juan Le Parc, Johan G. Baron, Bianca Mourier, Blias Yang, Yann Minh, Soizic Hess, Sylvie Mexico, Pierre Clisson, Philippe d’Albret, Thierry “Géant”, Kurt Ehrmann, Lukas Zpira... : avec la participation de Stelarc, Materia Prima Art Factory, Otomo, Tess Wassila, Diane Bouchecousue, Olivier Corps Tech, Virgo Cyboy, Morgan Dubois, Jon John, Enrico Viola, Stefano Moscardini, Exiff Exilentia, Collectif Concilium, Front 242, Jano Stigmates, Ron Athey, Russel Mc Ewan, Laconik, Lukas Zpira... : avec la participation de Materia Prima Art Factory, Christophe Ragonnet aka mbz, Milie Katona aka Mili, Chloé Moura, Mathieu Hibon aka Spider Gibbon, Loran Valdek, Front 242, Emmanuel Lacoste & Rodolphe Cintorino, Xenomorph III & C-Line, Mathieu Hibon aka Spider Gibbon, Compagnie Circo Motion, Matthieu Pierrard, Delphine Courant, Thierry Ehrmann, Lukas Zpira, Aesthetic Meat Front, Louis Fleischauer, M. Battement Noir, Matthew Setzer, Tyler Morgen, Delphine Noiztoy, Sarge of Metal Fatigue UK, Lady Victoria, Satomi Zpira, DJ HERR LIEBE, : avec la participation de Johanna Constantine, Coralie Trinh Thi, Lynn SK, So. Noël, Marc del Piano, Audrey Savoye, CoCo, Ikaria Luna, A.J. Splosh Girl, Thibault Majorel, Didier Saint, Mahdi Sehel, Sylvain Sploshboy & Simon Dirtystein, Jon John & Kiril Bikov, Empress Stah, Tanz Weiter, Fabrice Jahk, Rémy Jouffroy, David Merlo, Damien Ravnich, Luciæn Zellum, Soraya Lynsada, Kevin Ramseier, François Moncarey, Visavajara, Empress Stah, Eden Berlin..... Photographie CHARNEL Møvement Anima-Mundi Anima Mundi est le dernier projet photo développé par Lukas Zpira pour CHARNEL Møvement. Le projet se présente comme le fruit d'une expérience chamanique expérimentée pendant une période d'errance nomade. À raison d'une sélection de 4 images par jour, Lukas partage avec nous les 285 derniers jours de son exil. Parfois floues, cadrées ou contextuelles, les photographies sont dans ce travail des souvenirs imprécis. Chacune des images de ce corpus est une pièce de puzzle que nous découvrons au fur et à mesure. Démarré le 4 août 2018, le projet s'est clôturé par une exposition et un rituel réalisé devant un public sélectionné, le 23 août 2019, à la Weird Faktory à Avignon. Processus créatif dynamique, le projet Anima Mundi est censé matérialiser un retour au contrôle de soi et de sa vie dans l'errance des voyages de Lukas. L'artiste a développé une technique de «peinture sur image», lors d' expositions au Japon et en Thaïlande, qui étendra cette œuvre d'art au-delà de son objectif initial. L'artiste entend également présenter une collection de ses photographies dans un prochain livre et un site internet dédié. Performances “Danse NeurAle 2.0 – Second Emulation” – Performance – Théâtre Gilgamesh – Avignon – France, 2020 “Danse NeurAle 2.0 – Second Emulation” – Residency – Weird Faktøry – Avignon – France, 2020 R.ME “ The Naked Truth ” – Performance – Zikkai Gallery – Tokyo – Japan, 2019 R.ME “ The Naked Truth ” – Performance – department H – Tokyo – Japan, 2019 “ Fear Fall Størytelling ” – Performance – Ludo Theater – Osaka – Japan, 2019 Création of R.ME “The Naked Truth” – Spoken word music & video with Tarik Noui, 2018 Danse NeurAle performance screening – Museum of Modern Art – Paris, 2017 Co-founder with Tarik Noui of “Fear Fall Støryteling” (Spoken Word Performance), 2016 Danse NeurAle performance screening – Museum of Modern Art – Paris 2017 Creation of R.ME “The Naked Truth” – Spoken word music & video with Tarik Noui 2018 “ Fear Fall Størytelling ” – Performance – Ludo Theater – Osaka – Japan 2019 R.ME “ The Naked Truth ” – Performance – Zikkai Gallery – Tokyo – Japan 2019 R.ME “ The Naked Truth ” – Performance – department H – Tokyo – Japan 2019 “Danse NeurAle 2.0 – Second Emulation” – Performance – Théâtre Gilgamesh – Avignon – France 2020 “Danse NeurAle 2.0 – Second Emulation” – Residency – Weird Faktøry – Avignon – France 2020 Spoken word Filmographie 2011 : The Chaøs Chrønicles, début du projet 2014 : The Chaøs Chrønicles: Fragments 2015 : The Chaøs Chrønicles: Fragments VI En collaboration 2003 : Taboo 2003 : Body Transform 2004 : Like a Butterfly 2004 : No body is Perfect 2006 : Hidden Shadows 2006 : Hidden Shadows 2009 : Vampyrs. Bibliographie . . . En collaboration . . . Conférences Conference on Bødy Hacktivism – Sociology symposium: “ Corps meurtris, beaux et subversifs ”- Strasbourg, France. 2016 Conference on Bødy Hacktivism – Royal College of Art – London, England. 2016 Conference avec philipe liotard -- l'heritage du bod-mod cantal ink salon du tattouage 2016 Notes et références Artiste contemporain français
33,446
https://id.wikipedia.org/wiki/De%20Beers
Wikipedia
Open Web
CC-By-SA
2,023
De Beers
https://id.wikipedia.org/w/index.php?title=De Beers&action=history
Indonesian
Spoken
136
312
The De Beers Group of Companies adalah sebuah perusahaan internasional yang berspesialisasi dalam pencarian, penambangan, perdagangan dan produksi berlian. Perusahaan ini pada saat ini melakukan kegiatan penambangan terbuka, penambangan aluvial berskala besar, penambangan pesisir dan penambangan dasar laut. Perusahaan De Beers beroperasi di 35 negara dan penambangan dilakukan di Botswana, Namibia, Afrika Selatan, dan Kanada. Sebelum permulaan abad ke-21, De Beers memonopoli pasar berlian dunia. Semenjak itu, kompetisi telah menghentikan monopoli ini, walaupun perusahaan De Beers masih menguasai sekitar 35% produksi berlian mentah dunia. Perusahaan ini didirikan pada tahun 1888 oleh pebisnis Cecil Rhodes yang didanai oleh Alfred Beit dan bank N M Rothschild & Sons yang berbasis di London. Pada tahun 1926, Ernest Oppenheimer terpilih sebagai anggota dewan De Beers dan ia mengembangkan perusahaannya menjadi perusahaan yang memonopoli industri berlian dunia. Catatan kaki Perusahaan berlian
262
https://math.stackexchange.com/questions/3565314
StackExchange
Open Web
CC-By-SA
2,020
Stack Exchange
J. W. Tanner, Kashif, https://math.stackexchange.com/users/615567, https://math.stackexchange.com/users/653406
English
Spoken
130
248
Using Chinese Remainder Theorem when the moduli are not mutually coprime. I am unable to use the Chinese Remainder Theorem when the modulus is not coprime. I want to solve the following: $$ x \equiv 5 \text{ (mod 6)}\\ x \equiv 7\text{ (mod 15)} $$ I tried breaking the system as: $$ x\equiv5\text{ (mod 2)}\\ x\equiv5\text{ (mod 3)}\\ x\equiv7\text{ (mod 3)}\\x\equiv7\text{ (mod 5)} $$ and using the values of $x \text{ (mod 3)}$, I got a contradiction, but clearly $x =22$ is a solution. Can you please help me find where I have gone wrong? Thanks. Your approach is good; see my answer below So, I guess this system does not have any solution in integers. Am I correct? Yes, you are correct $x=22$ is not a solution, since $22\not\equiv5\pmod6$.
34,197
https://fi.wikipedia.org/wiki/Radik%20Ahmethanov
Wikipedia
Open Web
CC-By-SA
2,023
Radik Ahmethanov
https://fi.wikipedia.org/w/index.php?title=Radik Ahmethanov&action=history
Finnish
Spoken
57
199
Radik Ahmethanov (, s. 26. heinäkuuta 1986 Surgut, Neuvostoliitto) on venäläinen futsalpelaaja ja jalkapalloilija, joka edustaa futsalissa Futsal-liigassa pelaavaa Sievi FS:ia ja jalkapallossa Kakkosessa pelaavaa FC YPA:a. Ahmethanov on voittanut Sievi Futsalin riveissä maali- ja pistepörssin kerran. Hän on 179 senttimetriä pitkä ja painaa 72 kiloa. Lähteet http://www.soccerway.com/players/radik-akhmetkhanov/188598/ Venäläiset futsalpelaajat Venäläiset jalkapalloilijat Vuonna 1986 syntyneet Elävät henkilöt
28,072
https://zh-classical.wikipedia.org/wiki/%E7%8E%8B%E9%9B%99%20%28%E6%9B%B9%E4%BB%81%E5%B0%87%29
Wikipedia
Open Web
CC-By-SA
2,023
王雙 (曹仁將)
https://zh-classical.wikipedia.org/w/index.php?title=王雙 (曹仁將)&action=history
Classical Chinese
Spoken
6
133
魏大司馬曹仁有將王雙,黃初四年,雙與將軍常雕督諸葛虔等同仁子泰攻濡須城,乘油船別襲中洲。為朱桓敗,遂梟雕、虔,生虜王雙,送武昌。 據 《三國志·朱桓傳》 曹魏列傳 zh:王雙 (曹仁部將)
40,209
https://fr.wikipedia.org/wiki/Camille%20De%20Bast
Wikipedia
Open Web
CC-By-SA
2,023
Camille De Bast
https://fr.wikipedia.org/w/index.php?title=Camille De Bast&action=history
French
Spoken
126
258
Camille Isidore Joseph De Bast, né le à Gand et y est mort le fut un homme politique libéral belge. Biographie De Bast fut industriel dans le textile et administrateur de la Gentsche Bank; il fut élu conseiller communal de Gand et sénateur de l'arrondissement de Gand-Eeklo, à l'origine en suppléant de Hippolyte Lippens. Généalogie Il fut le fils de Camille sr. (°1807-1872) et Hortense Dehert (1819-1899). Il épousa une belgo-italienne Amalia Armellini (Rome, 1848), fille de Virginio Armellini, avocat romain, et de Louise Jaequemyns, née à Dadizeele**. Sources Liberaal Archief archives familiales Jaequemyns Huwelijksaankondiging Amalia Armellini en Camille De Bast Sénateur belge Personnalité libérale belge Naissance en mars 1845 Naissance à Gand Décès en juillet 1927 Décès à Gand Industriel belge Décès à 82 ans
24,829
https://stackoverflow.com/questions/37154493
StackExchange
Open Web
CC-By-SA
2,016
Stack Exchange
https://stackoverflow.com/users/3344695, zayquan
English
Spoken
571
1,412
the available package versions inside an ubuntu docker container change depending on the host OS I am having trouble pinning the version of python and nodejs in a ubuntu based docker container. The reason I am having difficulty is because the package versions available in the container change depending on the host. I want to specify in the Dockerfile which versions of the python and nodejs debian packages by adding the following command: RUN apt-get -y install "python=2.7.5-5ubuntu3" build-essential "nodejs=6.1.0-1nodesource1~trusty1" vim jq I determined those version string by running some apt-cache madison commands from within the ubuntu container running locally on my OSX el-capitan laptop. Everything works. When I try to build that same container in a CI environment running on an Amazon Linux instance it fails, because the named versions are not available. Here is some output that shows exactly what is going on. OSX El Capitan (via the docker-machine VBOX wrapper) $ uname -a Darwin Kyles-MacBook-Pro.local 15.3.0 Darwin Kernel Version 15.3.0: Thu Dec 10 18:40:58 PST 2015; root:xnu-3248.30.4~1/RELEASE_X86_64 x86_64 $ # now get into the container $ docker exec -it named_container bash root@79a839297d7e:/src# apt-cache madison nodejs nodejs | 6.1.0-1nodesource1~trusty1 | https://deb.nodesource.com/node_6.x/ trusty/main amd64 Packages nodejs | 0.10.25~dfsg2-2ubuntu1 | http://archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages nodejs | 0.10.25~dfsg2-2ubuntu1 | http://archive.ubuntu.com/ubuntu/ trusty/universe Sources nodejs | 6.1.0-1nodesource1~trusty1 | https://deb.nodesource.com/node_6.x/ trusty/main Sources root@79a839297d7e:/src# apt-cache madison python python | 2.7.5-5ubuntu3 | http://archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages python-defaults | 2.7.5-5ubuntu3 | http://archive.ubuntu.com/ubuntu/ trusty/main Sources Same sequence in the CI environment - On AMI Linux : $ uname -a Linux ip-10-250-160-248 4.4.8-20.46.amzn1.x86_64 #1 SMP Wed Apr 27 19:28:52 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux $ # now get into the container $ docker exec -it named_container bash root@8344a5f311fe:/src# apt-cache madison nodejs nodejs | 6.1.0-1nodesource1~xenial1 | https://deb.nodesource.com/node_6.x xenial/main amd64 Packages nodejs | 4.2.6~dfsg-1ubuntu4 | http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages nodejs | 4.2.6~dfsg-1ubuntu4 | http://archive.ubuntu.com/ubuntu xenial/universe Sources nodejs | 6.1.0-1nodesource1~xenial1 | https://deb.nodesource.com/node_6.x xenial/main Sources $ root@8344a5f311fe:/src# apt-cache madison python python | 2.7.11-1 | http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages python-defaults | 2.7.11-1 | http://archive.ubuntu.com/ubuntu xenial/main Sources Here is the start of the Dockerfile, I changed the ENTRYPOINT and CMD as they are not relevant to this question FROM ubuntu MAINTAINER Kyle Zeeuwen RUN apt-get update RUN apt-get -y install curl RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - RUN apt-get -y install "python=2.7.5-5ubuntu3" build-essential "nodejs=6.1.0-1nodesource1~trusty1" vim jq CMD ["sleep", "3600"] So my questions: What do I need to change to reliably set the python and nodejs version such that the docker container build will work in a range of host environments including both OSX and Linux AMI What is going on that would make Ubuntu report different distros ? There are two possible reasons why the versions don't match: base image version: The base image is not up-to-date on one of the machines. Make sure to run docker pull ubuntu before building, or build with the additional --pull flag. Docker cache: The apt-get update step is cached and the cache is older on one machine than on the other. You should never run apt-get update without any other command, because the cache will never be invalidated. Instead, do RUN apt-get update && apt-get -y install curl. You can also run docker build --no-cache to make sure you don't use any cache. In short: docker build --pull --no-cache should fix your issue, but you should also adapt your Dockerfile as explained above. thanks for the response both points are valid. I should have read https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/ !
2,765
https://nl.wikipedia.org/wiki/Kreis%20Rostock-Land
Wikipedia
Open Web
CC-By-SA
2,023
Kreis Rostock-Land
https://nl.wikipedia.org/w/index.php?title=Kreis Rostock-Land&action=history
Dutch
Spoken
135
270
De Kreis Rostock-Land was een Kreis in de Bezirk Rostock in de Duitse Democratische Republiek. Geschiedenis De Kreis Rostock-Land ontstond na de herindeling op 25 juli 1952, waarbij de voormalige Landkreis Rostock in Mecklenburg werd opgedeeld in Rostock-Land, Bad Doberan, Ribnitz-Damgarten en Teterow. In 1960 werden de gemeenten Hinrichsdorf en Nienhagen overgeheveld naar de Stadtkreis Rostock; Jürgeshof volgde in 1978. Na de hereniging van Duitsland werd het gebied opgenomen in de nieuwe gevormde deelstaat Mecklenburg-Voor-Pommeren. Op 12 juni 1994 werd de Kreis, sinds 17 mei 1990 met Landkreis aangeduid, opgeheven en vormde tot aan de herindeling van 2011 samen met Altkreis Bad Doberan en het noordelijke deel van de opgeheven Landkreis Bützow de Landkreis Bad Doberan. Steden en gemeenten De Landkreis Rostock had op 3 oktober 1990 41 gemeenten, waaronder één stad: Ros Bezirk Rostock
34,915
https://uk.wikipedia.org/wiki/%D0%93%D0%BE%D1%80%D0%B8%D0%BD%D1%96%20%28%D0%9B%D0%B5%D0%BD%D1%96%D0%BD%D0%B3%D1%80%D0%B0%D0%B4%D1%81%D1%8C%D0%BA%D0%B0%20%D0%BE%D0%B1%D0%BB%D0%B0%D1%81%D1%82%D1%8C%29
Wikipedia
Open Web
CC-By-SA
2,023
Горині (Ленінградська область)
https://uk.wikipedia.org/w/index.php?title=Горині (Ленінградська область)&action=history
Ukrainian
Spoken
51
174
Горині () — присілок у Лузькому районі Ленінградської області Російської Федерації. Населення становить 28 осіб. Належить до муніципального утворення Ям-Тьосовське сільське поселення. Історія Згідно із законом від 28 вересня 2004 року № 65-оз належить до муніципального утворення Ям-Тьосовське сільське поселення. Населення Примітки Присілки Ленінградської області Населені пункти Лузького району (Ленінградська область)‎
37,858
https://kk.wikipedia.org/wiki/%D0%A0%D0%B5%D0%BB%D0%B8%D0%BA%D1%82%D1%96%D0%BA%20%D1%81%D3%99%D1%83%D0%BB%D0%B5%D0%BB%D0%B5%D0%BD%D1%83
Wikipedia
Open Web
CC-By-SA
2,023
Реликтік сәулелену
https://kk.wikipedia.org/w/index.php?title=Реликтік сәулелену&action=history
Kazakh
Spoken
33
178
Реликтік сәулелену  —( — қалдық)"Реликтік сәулелену" терминін қолданысқа алғарш рет кеңес астрофизигі И.С.Шкловский енгізген. "Космостық микротолқындық жағдайдағы сәулелеу" - Абсолютті қара денеге тән, спектрдің және изотроптылықтың жоғары деңгейі бар ғарыштық электромагниттік сәулелену. Дереккөздер
50,687
https://stackoverflow.com/questions/77140768
StackExchange
Open Web
CC-By-SA
2,023
Stack Exchange
Ada, Edwin von Lemberg, https://stackoverflow.com/users/19077881, https://stackoverflow.com/users/22597874, https://stackoverflow.com/users/9938317, https://stackoverflow.com/users/9973516, rioV8, user19077881
English
Spoken
264
581
How can I update the cellls value +1, using panda DataFrames, but only if an if statement is true? I have a csv file with multiple headers and numbers inside of them. If the algorithm finds two equal column values within the same row, another DataFrame should update a cell +1 and count the amount of times the algorithm can find such equal cells. How do I do that? import pandas final_activities = pandas.read_csv("VPN2/VPN2_Final_Activities.csv", delimiter=';', names=['Timerels', 'ActivityClass_Ankle', 'ActivityClass_Hip', 'ActivityClass_Thigh', 'ActivityClass_Wrist', 'ActivityClass_Annotation'], skip_blank_lines=True, skipinitialspace=True, engine='python', header=0) matricsFile = pandas.read_csv("VPN2/VPN2_Final_Matrics.csv", delimiter=';', names=['lying', 'cycling', 'ascending stairs', 'jogging', 'descending stairs', 'walking', 'standing', 'sitting', 'unknown'], skip_blank_lines=True, skipinitialspace=True, engine='python', header=0) lying = 1 cycling = 3 ascending_stairs = 4 jogging = 5 descending_stairs = 6 walking = 7 standing = 9 sitting = 11 unknown = 0 i = 0 while i < len(final_activities): ankle_activity = final_activities.loc[i]['ActivityClass_Ankle'] annotation_activity = final_activities.loc[i]['ActivityClass_Annotation'] if(int(annotation_activity) == lying and int(ankle_activity) == lying): matricsFile.at[1, 'lying'] += 1 i += 1 create a boolean mask vector of the if statement, create a vector of the column for all rows updated, update the dataframe with the mask using the new values A simplified (reproducible) example with input data and expected result would make the demonstration of a solution much easier. It is inefficient and (almost) never necessary to loop over DF rows as you are doing. I found a solution to my problem: matricsFile.at[0, 'lying'] = (matricsFile.at[0, 'lying'] + 1) If you found a solution, you can post an answer to your own question. This is helpful for people who might have a similar problem in the future.
43,690
https://stackoverflow.com/questions/37159057
StackExchange
Open Web
CC-By-SA
2,016
Stack Exchange
Cece Dong - MSFT, dmarkd, https://stackoverflow.com/users/1259340, https://stackoverflow.com/users/5425825
English
Spoken
452
790
After upgrade to TFS 2015, user names are incorrectly shown in some drop down fields in work items We have just upgraded from TFS 2013 to 2015 Update 2 and have come across a problem in the work item definitions. Using the field Microsoft.VSTS.Common.Discipline we have some odd behaviour. In the work item, clicking on the drop-down for this field we have the allowed values shown, as defined in the ALLOWEDVALUES rule for this field. This is as expected. However, we're also seeing a number of user names shown in the drop down list. It's as if the rule VALIDUSER has been used in the Field Definition. But it has not. We're using the Discipline field in several work items and we have the same behaviour in all of them. Anyone else had this kind of odd behaviour? New information below - this is the defintion of the field in the work item. <FIELD name="Discipline" refname="Microsoft.VSTS.Common.Discipline" type="String" reportable="dimension"> <HELPTEXT>The discipline to which the bug belongs</HELPTEXT> <ALLOWEDVALUES expanditems="true"> <LISTITEM value="Analysis" /> <LISTITEM value="Development" /> <LISTITEM value="Test" /> <LISTITEM value="User Education" /> <LISTITEM value="User Experience" /> </ALLOWEDVALUES> </FIELD> And this is the field definition shown by witadmin. Field: Microsoft.VSTS.Common.Discipline Name: Discipline Type: String Use: it (Bug, Task, Incident, Admin) Indexed: False Reportable As: dimension Synchronizes Identity Name Changes: False Please share the one of the work item definitions that use Discipline field? And run command witadmin listfields /collection:http://server:8080/tfs/DefaultCollection /n:Microsoft.VSTS.Common.Discipline and post the output? I added the extra information above. According to the field definition, you have two custom work items type "Incident" and "Admin", what have you modified to them? Does this issue happen on both VS and Web Access? Yes, we have also Incident and Admin work items, which are pretty much a copy of the Task, with one or two minor changes. These were all working correctly before we switched to TFS 2015. The issue happens only in the web interface, using VS there is no problem. Since your issue only happens on Web Portal, please try to clean the cache files on TFS AT machine: C:\Program Files\Microsoft Team Foundation Server 12.0\Application Tier\Web Services\_tfs_data and C:\TfsData\ApplicationTier\_fileCache After cleaned, click Start and select Run… to open the dialog box, then input iisreset.exe and click OK, wait it run completely. Ok, I didn't find the folder _tfs_data under that path. Only place I found it, under Microsoft Team Foundation Server 14.0, was in the TFSJobAgent folder & there it was empty. The other folder _fileCache I cleaned out, then did the IISReset. Made no difference unfortunately. It's tempting to drop the field and recreate it.... All your team members are experiencing this issue? Kindly share us whether recreating this field would fix this issue.
12,184
https://stackoverflow.com/questions/18563903
StackExchange
Open Web
CC-By-SA
2,013
Stack Exchange
Egor Skriptunoff, daurnimator, https://stackoverflow.com/users/1847592, https://stackoverflow.com/users/282536
Swedish
Spoken
197
1,214
Trouble Converting a Hex String (in Lua) I've been trying different ways to read this hex string, and I cannot figure out how. Each method only converts part of it. The online converters don't do it, and this is the method I tried: function string.fromhex(str) return (str:gsub('..', function (cc) return string.char(tonumber(cc, 16)) end)) end packedStr = "1b4c756151000104040408001900000040746d702f66756e632e416767616d656e696f6e2e6c756100160000002b0000000000000203000000240000001e0000011e008000000000000100000000000000170000002900000000000008410000000500000006404000068040001a400000160000801e0080000a00800041c0000022408000450001004640c1005a40000016800c80458001008500000086404001868040018600420149808083458001008580020086c04201c5000000c640c001c680c001c600c301014103009c80800149808084450001004980c38245c003004600c4005c408000458002004640c40085800400860040018640400186c0440186004201c14003005c00810116000280450105004641c50280010000c00100025c8180015a01000016400080420180005e010001614000001600fd7f4580050081c005005c400001430080004700060043008000478001004300800047c003001e008000190000000405000000676d63700004050000004368617200040700000053746174757300040b000000416767616d656e696f6e000404000000746d7000040f000000636865636b65645f7374617475730004030000007477000409000000636861724e616d6500040900000066756c6c6e616d6500040a0000006775696c644e616d65000407000000737472696e670004060000006d617463680004060000006775696c6400040400000025772b0001010403000000756900040d00000064726177456c656d656e7473000407000000676d617463680004030000005f470004050000004e616d650004060000007461626c6500040900000069734d656d6265720004060000006572726f7200044e0000005468697320786d6c206973206e6f742070726f7065726c7920636f6e6669677572656420666f722074686973206368617261637465722e20506c6561736520636f6e74616374204b616575732100040900000071756575654163740000000000410000001800000018000000180000001800000018000000180000001900000019000000190000001a0000001a0000001a0000001a0000001b0000001b0000001b0000001b0000001b0000001b0000001c0000001c0000001c0000001c0000001c0000001c0000001c0000001c0000001c0000001c0000001d0000001d0000001e0000001e0000001e0000001f0000001f0000001f0000001f0000001f0000001f0000001f0000001f0000001f0000001f0000002000000020000000200000002000000020000000200000002000000021000000210000001f000000220000002400000024000000240000002500000025000000260000002600000027000000270000002900000005000000020000006e0009000000400000001000000028666f722067656e657261746f7229002b000000370000000c00000028666f7220737461746529002b000000370000000e00000028666f7220636f6e74726f6c29002b000000370000000200000074002c000000350000000000000003000000290000002a0000002b000000010000000800000072657466756e6300010000000200000000000000" local f = assert(io.open("unsquished.lua", "w+")); f:write(packedStr:fromhex()); f:close() This simply gives me a bunch of gibberish surrounded by a few readable strings. Could someone please tell me how to convert the entirety of this string into readable format? Thank you! This is hex-encoded Lua bytecode file. Break your packedStr in parts of 2 1b = 27 4c = 76 75 = 117 61 = 97 and so forth. When you use string.char() with the resulting decimal output, it converts them to equivalent ASCII values. Of the total possible 256 ASCII values in extended ASCII table, only 95 are printable characters. Thus, you'll always receive the gibberish text. Here's what you'd receive when trying to print each of the character separately: http://codepad.org/orM7pmAb and that is the only possible "readable" output. Furthermore, that output looks like compiled lua byte code... Try running it?
44,393
https://ce.wikipedia.org/wiki/%2814377%29%201989%20TX2
Wikipedia
Open Web
CC-By-SA
2,023
(14377) 1989 TX2
https://ce.wikipedia.org/w/index.php?title=(14377) 1989 TX2&action=history
Chechen
Spoken
136
353
(14377) 1989 TX2 — Мелхан системан коьрта асанан астероид. Истори ДӀайиллина 1989 шеран 7 октябрехь Эрик Эльст цӀе йолу Ӏилманчо Ла-Силья обсерваторехь. Йуьхьанца дуьйна йолу цӀе - «1989 TX2» саналган. Хьосташ Lutz D. Schmadel. Dictionary of Minor Planet Names. — Fifth Revised and Enlarged Edition. — B., Heidelberg, N. Y.: Springer, 2003. — 992 p. — ISBN 3-540-00238-3. Lutz D. Schmadel. Dictionary of Minor Planet Names. — Springer Science & Business Media, 2012-06-10. — 1458 с. — ISBN 9783642297182 Chapman, C. R., Morrison, D., & Zellner, B. Surface properties of asteroids: A synthesis of polarimetry, radiometry, and spectrophotometry// Icarus : journal. — Elsevier, 1975. — Vol. 25. — P. 104—130. Kerrod, Robin. Asteroids, Comets, and Meteors (неопр.). — Lerner Publications Co., 2000. — ISBN 0585317631. Билгалдахарш Хьажа иштта (14378) 1989 TA16 Коьрта асанан астероидаш Астероидаш абатца
6,066
https://mr.wikipedia.org/wiki/%E0%A4%AC%E0%A4%BE%E0%A4%AD%E0%A4%B3%E0%A5%80%20%28%E0%A4%A7%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%BE%E0%A4%AC%E0%A4%BE%E0%A4%A6%29
Wikipedia
Open Web
CC-By-SA
2,023
बाभळी (धर्माबाद)
https://mr.wikipedia.org/w/index.php?title=बाभळी (धर्माबाद)&action=history
Marathi
Spoken
116
851
बाभळी हे भारताच्या महाराष्ट्र राज्यातील नांदेड जिल्ह्यातील धर्माबाद तालुक्यातील एक गाव आहे. भौगोलिक स्थान हवामान नैऋत्य मान्सूनमुळे पडणाऱ्या पावसाळ्याचा ऋतू वगळता येथील हवामान सर्वसाधारणपणे कोरडेच असते. येथे वर्षात चार ऋतू असतात. हिवाळा हा नोव्हेंबर ते फेब्रुवारी अखेरपर्यंत असतो. त्यानंतर येणारा उन्हाळा मात्र जूनच्या पहिल्या आठवड्यापर्यंत खेचला जातो. नैऋत्य मान्सूनचा पाऊस त्याच्या पाठोपाठ येतो आणि ऑक्टोबरच्या पहिल्या आठवड्यापर्यंत टिकतो. शेष ऑक्टोबर आणि नोव्हेंबरचा पूर्वार्ध हा मान्सूनोत्तर गरमीचा काळ असतो. सरासरी वार्षिक पर्जन्यमान ९७५ मि.मी.आहे. नैऋत्य मोसमी वाऱ्यापासून पडणाऱ्या पावसाचे प्रमाण एकूण वार्षिक पर्जन्याच्या ७० टक्के आहे. जुलै आणि ऑगस्ट हे वर्षातील सर्वाधिक पर्जन्याचे महिने आहेत. लोकजीवन प्रेक्षणीय स्थळे नागरी सुविधा जवळपासची गावे संदर्भ https://villageinfo.in/ https://www.census2011.co.in/ http://tourism.gov.in/ https://www.incredibleindia.org/ https://www.india.gov.in/topics/travel-tourism https://www.mapsofindia.com/ https://www.weather.gov/dvn/climategraphics?n=climategraphics https://www.weather-atlas.com/en/india-climate धर्माबाद तालुक्यातील गावे नांदेड जिल्ह्यातील गावे
15,332
https://nl.wikipedia.org/wiki/Voetbalkampioenschap%20van%20het%20Opper-Ertsgebergte%201928/29
Wikipedia
Open Web
CC-By-SA
2,023
Voetbalkampioenschap van het Opper-Ertsgebergte 1928/29
https://nl.wikipedia.org/w/index.php?title=Voetbalkampioenschap van het Opper-Ertsgebergte 1928/29&action=history
Dutch
Spoken
50
142
In 1928/29 werd het zesde voetbalkampioenschap van het Opper-Ertsgebergte gespeeld, dat georganiseerd werd door de Midden-Duitse voetbalbond. BC 1913 Jahnsbach werd kampioen en plaatste zich zo voor de Midden-Duitse eindronde. De club verloor met 4:1 van SuBC Plauen. Gauliga Externe links fussball-historie Euroleagues voetbalkampioenschap van het Opper-Ertsgebergte Duits competitievoetbal 1928/29
27,909
https://sk.wikipedia.org/wiki/Oka%20%28Angara%29
Wikipedia
Open Web
CC-By-SA
2,023
Oka (Angara)
https://sk.wikipedia.org/w/index.php?title=Oka (Angara)&action=history
Slovak
Spoken
104
245
Oka (), niekedy Acha () je rieka v Buriatskej republike a Irkutskej oblasti v Rusku. Je to ľavý prítok Angary v povodí Jeniseja. Tok Vyteká z Ockého jazera, na hornom toku má horský charakter, miestami tečie tiesňavami, dolina sa rozšíri až keď rieka opustí hory. Dolný tok bol zatopený pri výstavbe Bratskej nádrže, a tak niekdajšia dolina dnes tvorí akýsi „záliv“ tejto nádrže. Rieka je zásobovaná najmä dažďovými a snehovými vodami. Využitie Splavný je len dolný tok rieky, aj to len od mája do októbra, kedy nie je zamrznutý. Na rieke leží mesto Zima. Referencie, zdroj Rieky v Rusku Rieky v ázijskej časti Ruska
17,468
https://zh.wikipedia.org/wiki/%E8%A9%B9%E5%A7%86%E6%96%AF%C2%B7%E4%BC%8D%E5%BE%B7%C2%B7%E5%B8%83%E4%BB%80
Wikipedia
Open Web
CC-By-SA
2,023
詹姆斯·伍德·布什
https://zh.wikipedia.org/w/index.php?title=詹姆斯·伍德·布什&action=history
Chinese
Spoken
37
2,997
詹姆斯·伍德·布什(,约)是美国联邦海军水兵,拥有英国和夏威夷原住民血统。夏威夷王国在19世纪尚属独立国家,据确切记载,有上百名夏威夷原住民或在该国出生的公民投身南北战争,这些人统称“南北战争夏威夷之子”,布什便是其一。 1864年加入联邦海军后,布什先后在万达利亚号和博勒加德号战船服役,负责封锁邦联港口。1865年因伤病退役后,他受贫穷所限在美国本土各地辗转十余年,1877年才返回故土。布什在考艾岛定居,成为当地税吏和公路督查。步入晚年后,他转信摩门教,是教会积极分子。夏威夷成为美国属地后,布什的服役经历获得政府承认,从1905年开始领取补助金,1906年4月24日在考艾岛的家中去世。 内战结束后,包括布什在内众多夏威夷军人的贡献很大程度上已被遗忘,无论是夏威夷历史还是南北战争的集体回忆都没有他们的身影。但在他曾侄孙女埃德娜·布什·埃利斯等军人后代组成的民间团体和少数历史学家共同努力下,夏威夷王国和美国这段特殊历史时期的人物和故事引起学界兴趣。2010年,檀香山太平洋国家纪念公墓的纪念通道旁为南北战争夏威夷之子立起青铜牌匾。 早年经历 詹姆斯·伍德·布什生于欧胡岛檀香山,具体出生日期尚无定论,有来源认为是1844年10月、1845年,1847或1848年。他的父亲乔治·亨利·布什(,1807至1853年)生于英格兰萨福克郡,1825年定居夏威夷;母亲是夏威夷王国原住民,所以詹姆斯是夏威夷原住民和高加索人混血,夏威夷语称为“哈帕”,意为混血,美国称为“”,意为“半种姓”,即混血。他的哥哥叫约翰·爱德华·布什(),之后成为报纸出版商和政治家,曾任考艾岛皇家总督和卡拉卡瓦国王的内阁大臣。詹姆斯1864年前的经历大多已不可考,他和哥哥的职业经历都是从太平洋捕鲸船或商船上的水手开始。18至19世纪,夏威夷王国出身的水手颇受推崇。 南北战争 南北战争爆发后,夏威夷国王卡美哈梅哈四世于1861年8月26日宣布中立。但是,许多夏威夷原住民和夏威夷出生的美国公民(以美国传教士后裔为主)自行前往美国本土或就在夏威夷群岛加入分属不同州的联邦或邦联军队。从1812年战争开始,历史上多次美国战事都有夏威夷原住民的身影,内战也不例外且人数更多。夏威夷王国的传教士大部分来自新英格兰,该国不少人靠新英格兰捕鲸业安身立命,还有很多人反对奴隶制,所以大部分国民支持联邦。 布什在战争刚爆发时抵达新英格兰,于1864年9月27日在新罕布什尔州朴茨茅斯登记入伍,成为联邦海军“普通海员”,役期三年。他曾在万达利亚号()小型风帆战船和联邦海军从邦联俘获的博勒加德号()双桅纵帆船服役,隶属大西洋封锁中队,负责在西佛罗里达近海封锁邦联港口。布什服役期间患上慢性喉炎和脊柱损伤,进入布鲁克林海军医院治疗期间于1865年9月退伍。内战结束后,一贫如洗的布什根本没钱返回夏威夷,此后十年先后在新贝德福德、旧金山和大溪地过活,最后于1877年回国。1905年,夏威夷成为美国属地,布什因参战经历获得退伍军人补贴,并追溯到1897年5月8日开始计算。 晚年 布什返回夏威夷后定居考艾岛,于1880年成为当地税吏。1882年,哈纳利区公路督查员克里斯蒂安·贝特曼()辞职,正担任夏威夷内政部长的约翰·爱德华·布什任命弟弟继任。1887年,詹姆斯加入摩门教,并在两年后成为教派长老,在夏威夷群岛传教,是基阿利亚耶稣基督后期圣徒教会主教,1895年摩门教历史学家安德鲁·詹森()访问考艾岛期间就是由布什接待。1894年左右,布什与拉海纳某青年女子成婚,婚后两人迁居科纳()。 1906年4月24日,布什因心脏衰竭在基阿利亚与世长辞,此前还在当地监狱看门,身后留下爱妻和独子。不久,《德瑟雷特新闻》()刊登洛伦佐·泰勒()的文章,称布什“积极传教,努力行善,尊重长者,热心助人。所有认识的人都深爱并尊重他,他的一生就是忠心不懈奉献福音的崇高典范。”据信布什葬在考艾岛,但具体地点已不可考。主教博物馆助理文化研究员安妮塔·曼宁()表示:“连家人都不知他葬于何处。” 影响 南北战争结束后,包括布什在内众多夏威夷军人的贡献很大程度上已被遗忘,无论是夏威夷历史还是南北战争集体回忆都没有他们的身影。夏威夷居民、历史学家,以及夏威夷战斗人员的后代一直呼吁世人重视这段历史,牢记先辈的牺牲和贡献。近年来,夏威夷王国和美国这段特殊历史时期的人物和故事引起学界兴趣,南北战争中的夏威夷军人也因此获得重视。 布什的曾侄孙女德娜·布什·埃利斯()积极发挥影响,提倡铭记“我们的夏威夷儿郎”,要求为此设立纪念馆。2010年8月26日,值夏威夷王国宣布中立150周年纪念之际,檀香山太平洋国家纪念公墓()的纪念通道旁立起青铜牌匾,纪念文献有载的上百名投身南北战争各方阵营的“南北战争夏威夷之子”()。截至2014年,研究人员已根据历史文献确定119名夏威夷原住民或在该国出生的内战军人身份,但由于许多人入伍时采用英语化名登记,又没有详细记载存世,确切人数及其他大部分信息都已无从考证。 2015年是南北战争结束150周年,美国国家公园管理局出版《南北战争中的亚裔和太平洋岛原住民》()。书中涉及大量曾参与内战的亚裔和太平洋岛原住民战斗人员,其中包括布什在内夏威夷王国参战人员的部分由历史学家林露德()、安妮塔·曼宁和贾斯汀·万斯()共同完成。 参见 罗默森王子 J·R·基洛哈 亨利·胡鲁鲁·皮特曼 参考资料 脚注 书目和期刊 报纸和线上来源 扩展阅读 外部链接 南北战争中的夏威夷之子: 1840年代出生 1906年逝世 夏威夷原住民美国军人 夏威夷王國人物 夏威夷王国南北战争人士 新罕布什尔州南北战争人士 联邦海军水兵 夏威夷州摩门教传教士 考艾岛人士 夏威夷王国后期圣徒 改信摩门教人士
30,832
https://stackoverflow.com/questions/66049162
StackExchange
Open Web
CC-By-SA
2,021
Stack Exchange
CertainPerformance, Heretic Monkey, Jon, https://stackoverflow.com/users/14838495, https://stackoverflow.com/users/215552, https://stackoverflow.com/users/9515207
English
Spoken
691
1,185
Replace character in array of objects I have an array of objects, which may have certain characters that I wish to remove. In the example it is £. My array is structured as below: const testArray = [ { ASIN: 'ABC123', Rank: '£50', Sales: '£80' }, { ASIN: 'ZYX123&', Rank: '£70', Sales: '£20' }, ]; I wondered if I could use something like the replace function by taking the array, splitting it into a string, using replace and then joining it up again. e.g. textArray.split(',').replace(/^\£/, '').join(',') Someone showed me this code, but I couldn't get it to work: myArray.map(item => { return Object.entries(item).reduce((agg, [key, value]) => { agg[key] = value.replace(/^\£/, ''); return agg; }, {}); }); Would my splitting into a string and rejoin method work? Is there a best practice way of doing this? Does this answer your question? Replace all instances of a string within an object (and/or array) - JavaScript One option is to stringify the object, replace, then parse it: const testArray = [ { ASIN: 'ABC123', Rank: '£50', Sales: '£80' }, { ASIN: 'ZYX123&', Rank: '£70', Sales: '£20' }, ]; const newTestArray = JSON.parse( JSON.stringify(testArray).replaceAll('£', '') ); console.log(newTestArray); Could also transform the object by mapping with Object.fromEntries: const testArray = [ { ASIN: 'ABC123', Rank: '£50', Sales: '£80' }, { ASIN: 'ZYX123&', Rank: '£70', Sales: '£20' }, ]; const newTestArray = testArray.map( obj => Object.fromEntries( Object.entries(obj) .map(([key, val]) => [key, val.replaceAll('£', '')]) ) ); console.log(newTestArray); I am finding your code works great if I put in the test array you have above. But when I use my own array, I get this error: "TypeError: val.replaceAll is not a function" I cannot work out why it is doing that. I am importing the file, then running a bit of code on the imported data. For example, this is the last bit of code I run before using your map routine: myArray.forEach((o, i) => (o.id = i + 1)); Any ideas what the issue might be? If your environment doesn't support replaceAll, then either install a polyfill for it (recommended) or use the old-fashioned regex method instead. .replace(/£/g, '') I now get this error: Uncaught TypeError: val.replace is not a function I'm doing this inside a class, if that makes any difference. Sounds like one of your values is not a string. Make sure all values are strings, or convert them to strings before using .replace, or skip the transformation of non-strings, or something - figure out the logic you want. Some of the values are not strings, since it is a CSV import and papaparse has a config to specify if some fields should be numbers or not. So maybe I should look at your stringify approach. The stringify seems to work, thanks. I didn't try that at first because for some reason I am thinking that if you use JSON, it adds more bloat to the webpage load times. Am I write or completely wrong? It depends on the situation. If you have data that isn't serializable, stringifying won't work. If you have a huge amount of data (like 10,000 objects), stringifying might have a negative impact on performance - or it might not, compared to the Object.fromEntries version (it'll depend on the environment). I'd prefer the Object.fromEntries version, but feel free to use whatever works for you. I used the stringify because I don't know how to convert my imported string named object from a string to a number. For example, if I remove dynamicTyping: true from the papaparse config file, it will import the whole csv as a string. But then I am left with the question of how to convert an individual field from string to number. In this example, that would be Rank and Sales. Let us continue this discussion in chat. If you want to replace characters only in the values of the objects in array, you can try following code. It will iterate each object of the array one by one, get all keys of that object and iterate over those keys to replace the character in their values. let keys; testArray.map((obj)=>{ keys = Object.keys(obj); keys.map((val)=>{ obj[val].replace(/a/g, "b"); }) })
21,974
https://en.wikipedia.org/wiki/Nadkole
Wikipedia
Open Web
CC-By-SA
2,023
Nadkole
https://en.wikipedia.org/w/index.php?title=Nadkole&action=history
English
Spoken
34
83
Nadkole is a village in the administrative district of Gmina Łochów, within Węgrów County, Masovian Voivodeship, in east-central Poland. It lies approximately north-west of Łochów, north-west of Węgrów, and north-east of Warsaw. References Nadkole
34,048
https://ceb.wikipedia.org/wiki/Kunjw%C4%81ro%20Daro
Wikipedia
Open Web
CC-By-SA
2,023
Kunjwāro Daro
https://ceb.wikipedia.org/w/index.php?title=Kunjwāro Daro&action=history
Cebuano
Spoken
157
271
Pinadpad nga balas ang Kunjwāro Daro sa Pakistan. Nahimutang ni sa lalawigan sa Sindh, sa sentro nga bahin sa nasod, km sa habagatan sa Islamabad ang ulohan sa nasod. metros ibabaw sa dagat kahaboga ang nahimutangan sa Kunjwāro Daro. Ang yuta palibot sa Kunjwāro Daro daghan kaayong patag. Ang kinahabogang dapit sa palibot dunay gihabogon nga ka metro ug km sa habagatan sa Kunjwāro Daro. Dunay mga ka tawo kada kilometro kwadrado Hapit nalukop sa desiyerto ug kamingawan ang palibot sa Kunjwāro Daro medyo hilabihan populasyon. Sa palibot sa Kunjwāro Daro. Sa rehiyon palibot sa Kunjwāro Daro, mga kamadan, ug mga walog talagsaon komon. Ang klima init nga kamadan. Ang kasarangang giiniton °C. Ang kinainitan nga bulan Mayo, sa  °C, ug ang kinabugnawan Enero, sa  °C. Ang kasarangang pag-ulan milimetro matag tuig. Ang kinabasaan nga bulan Septiyembre, sa milimetro nga ulan, ug ang kinaugahan Oktubre, sa milimetro. Saysay Ang mga gi basihan niini Mga kamadan sa Sindh
40,384
https://fa.wikipedia.org/wiki/%D9%88%D8%B1%D8%AE%D9%86%D8%B2%DB%8C%D8%B3%DA%A9
Wikipedia
Open Web
CC-By-SA
2,023
ورخنزیسک
https://fa.wikipedia.org/w/index.php?title=ورخنزیسک&action=history
Persian
Spoken
34
118
ورخنزیسک (به لاتین: Verkhnezeysk) یک منطقهٔ مسکونی در روسیه است که در استان آمور واقع شده‌است. جستارهای وابسته فهرست شهرهای روسیه منابع پیوند به بیرون بازبینی گمر شهرهای روسیه محلات روستایی در شهرستان زیسکی
10,505
https://id.wikipedia.org/wiki/Asosiasi%20Sepak%20Bola%20Seluruh%20Nepal
Wikipedia
Open Web
CC-By-SA
2,023
Asosiasi Sepak Bola Seluruh Nepal
https://id.wikipedia.org/w/index.php?title=Asosiasi Sepak Bola Seluruh Nepal&action=history
Indonesian
Spoken
80
169
Asosiasi Sepak Bola Seluruh Nepal adalah badan pengendali sepak bola di Nepal. Kompetisi Badan ini menyelenggarakan beberapa kompetisi di Nepal, yakni: Liga Nasional Nepal Liga Divisi A Memorial Martir Liga Divisi B Memorial Martir Liga Divisi C Memorial Martir Piala Emas Aaha Piala Emas Budha Subba Tim nasional Badan ini juga merupakan badan pengendali dari tim nasional senior pria dan tim nasional senior wanita Nepal, serta tim nasional , , dan . Pranala luar Nepal pada situs web resmi AFC.
25,962
https://pt.wikipedia.org/wiki/Pournoy-la-Ch%C3%A9tive
Wikipedia
Open Web
CC-By-SA
2,023
Pournoy-la-Chétive
https://pt.wikipedia.org/w/index.php?title=Pournoy-la-Chétive&action=history
Portuguese
Spoken
25
54
Pournoy-la-Chétive é uma comuna francesa na região administrativa de Grande Leste, no departamento de Mosela. Estende-se por uma área de 2,56 km². Comunas de Mosela
26,280
https://stackoverflow.com/questions/47769170
StackExchange
Open Web
CC-By-SA
2,017
Stack Exchange
Serge Ballesta, https://stackoverflow.com/users/3545273, https://stackoverflow.com/users/5016741, usr_11
English
Spoken
164
289
Identify duplicate - csv dict reader I am iterating over rows of one csv file, I want to skip the row from processing if it is duplicate from any of earlier processed row. Below is my code: import csv csv_contents = request.vars['file'].value.decode('utf-8') file = csv_contents.splitlines() file_data = [row for row in csv.DictReader(file)] for data in file_data: #if duplicate, continue. skip the row How to identify if a row is duplicate in a file. If you read a csv file with a DictReader, it is structured. Is there a key in the record, or do you need to compare the full line? @SergeBallesta need to compare the full line. To remove the duplicate entries from a list you can convert the list to a set and convert it again to list. import csv csv_contents = request.vars['file'].value.decode('utf-8') file = csv_contents.splitlines() # Duplicate entries are removing file_data = list(set([row for row in csv.DictReader(file)])) As Serge Ballesta said the list order is not saved by using this method.
5,708
https://math.stackexchange.com/questions/3562172
StackExchange
Open Web
CC-By-SA
2,020
Stack Exchange
Jonathan Schilhan, Seth Schmidt-O'Hainle, hardmath, https://math.stackexchange.com/users/265128, https://math.stackexchange.com/users/3111, https://math.stackexchange.com/users/688734
English
Spoken
560
881
Is there a computable infinite set of natural numbers all of whose computable subsets are either finite or cofinite? I was reading about amorphous sets recently and I thought the idea was quite intriguing, but couldn't come up with any natural example of one (perhaps because the existence of one implies the falsehood of Choice). Setting my sights lower to include only computable sets, I came to suspect that a "computably amorphous" set of natural numbers may exist. So far I haven't been able to come up with an example, but I feel like there might be one. A starting point is that if the set is written in ascending order as a sequence of natural numbers, every number in the sequence after the nth (or n^2th, or whatever) may be required to be a multiple of n, thereby guaranteeing that any partition of the set into residue classes modulo n contains only one infinite class, namely zero. But I have no idea how to go further to having all computable partitions of the set contain only one infinite member. Does anyone else know whether this is possible and if so how to achieve it? If $\langle n_i : i \in \omega \rangle$ is the increasing enumeration of a computable set, isn't $\langle n_{2i} : i \in \omega \rangle$ trivially also computable? I'm not sure I understand the Question as you mean it. Certainly the subsets of any finite computable set are finite, so as the final paragraph seems to allude, you are really interested in the case where this involves an infinite computable set. So perhaps your cofinite qualification is meant with respect to the specified infinite set (rather than with respect to the natural numbers at large). That said, we could split such an infinite set into two infinite subsets by alternating between the order in which they occur (first entry in one bucket, next one into the other bucket, etc.). I meant an infinite set, and indeed by cofinite I meant with reference to the set itself. As always I forgot obvious and important details... but yeah, I considered the "every other entry" idea but I wasn't sure it was applicable because there's nothing in the numbers themselves which immediately tells you which entry of the sequence they are. If that's the case though then I guess the answer is just a flat "no"? This was answered in the comments; I'm answering here to move this off the "unanswered" queue. I've made this CW so I don't get reputation for others' work. No such set exists. The key point here is that if $X$ (WLOG, infinite) is computable then $X$ can be computably listed in order as $X=\{x_0<x_1<x_2<x_3<...\}$. More precisely: if the characteristic function of $X$ ($n\mapsto 1$ iff $n\in X$, $n\mapsto 0$ otherwise) is computable, then the principle function of $X$ ($n\mapsto$ $n$th smallest element of $X$) is computable. This is a good exercise, and the converse holds too. With this in hand, we can argue as follows. If $X$ is computable, let $\pi_X$ be its principle function. Then we can consider the set $$E_X:=\{\pi_X(2k):k\in\mathbb{N}\}.$$ We have that both $E_X$ and $X\setminus E_X$ are infinite, and $E_X$ is computable: to check if $n\in E_X$, just compute $\pi_X(0),\pi_X(2),\pi_X(4),...,\pi_X(2\cdot \lfloor {n\over 2}\rfloor)$ and check if $n$ is one of these values (note that if $n=\pi_X(2k)$ then $2k\le n$).
1,963
https://ceb.wikipedia.org/wiki/Pointe%20Guinard
Wikipedia
Open Web
CC-By-SA
2,023
Pointe Guinard
https://ceb.wikipedia.org/w/index.php?title=Pointe Guinard&action=history
Cebuano
Spoken
108
190
Punta ang Pointe Guinard sa Kanada. Nahimutang ni sa lalawigan sa Québec, sa sidlakang bahin sa nasod, km sa amihanan sa Ottawa ang ulohan sa nasod. Ang yuta sa Pointe Guinard daghan kaayong patag. Sa amihang-sidlakan, dagat ang pinakaduol sa Pointe Guinard. Ang kinahabogang dapit sa palibot dunay gihabogon nga ka metro ug km sa amihanan-kasadpan sa Pointe Guinard. Walay lungsod sa palibot. Sa rehiyon palibot sa Pointe Guinard, kapuloan, ug mga luuk talagsaon komon. Ang klima klima sa kontinente. Ang kasarangang giiniton °C. Ang kinainitan nga bulan Agosto, sa  °C, ug ang kinabugnawan Enero, sa  °C. Saysay Ang mga gi basihan niini Mga lawis sa Québec (lalawigan)
12,583
https://da.wikipedia.org/wiki/Almira%2C%20K%C3%B6nigin%20von%20Castilien
Wikipedia
Open Web
CC-By-SA
2,023
Almira, Königin von Castilien
https://da.wikipedia.org/w/index.php?title=Almira, Königin von Castilien&action=history
Danish
Spoken
342
743
Almira, Königin von Castilien (HWV 1) eller Der in Krohnen erlangte Glückswechsel er Georg Friedrich Händels første opera. Baggrund Händel kom til Hamborg i sommeren 1703 og spillede som violinist ved teatret på Gänsemarkt, gåsemarkedspladsen. Senere spillede han også cembalo i orkestret. Hans første opera – annonceret som et Singspiel selv om den ikke har talt dialog – fik premiere den 8. januar 1705 under ledelse af Reinhard Keiser, så den blev nok komponeret i månederne umiddelbart før. Den italienske libretto blev skrevet af Giulio Pancieri i Venedig i 1691, som Giuseppe Boninventi havde brugt til en opera. Oversættelsen, som Händel benytter, er af Friedrich Christian Feustking. De fleste recitativer og arier synges på tysk; nogle er stadig ikke oversat. Opførelseshistorie Almira blev en stor succes. Operaen blev opført 20 gange i alt, indtil den måtte vige for Händels næste opera, Nero, som ikke er bevaret. Den første moderne opførelse af Almira fandt sted under "Halleschen Händelfestspiele" (en Händel-festival) den 4. juni 1994 i Bad Lauchstädt. Roller Arrangementer af operaen I 1732 stykket blev operaen opført redigeret af Georg Philipp Telemann. I 1879 udfærdigede Franz Liszt en transskription af sarabanden og chaconnen fra indledningen til operaen for sin engelske klaverstuderende, Walter Bache. Kritikere har noteret denne parafrase som en Listz' mest markante og hans eneste komposition fra hans hånd over barok musik fra hans sene periode. Værket foregriber Ferruccio Busonis sene romantiske bearbejdelser af Bach. Den australske Liszt-kender og -pianist Leslie Howard har indspillet det som en del af Hyperion Records' komplette Liszt-serie. Diskografi 1994: Andrew Lawrence-King (dirigent), Fiori musicali, Ann Monoyios (Almira), Kinda Gerrard (Bellante), David Thomas (Consalvo), Patricia Rosario (Edilia), James MacDougall (Fernando), Douglas Nasrawi (Osman), Olaf Haye (Raymondo), Christian Elsner (Tabarco). Studie-indspilning med tyske recitativer og italienske arier (CPO 999.275) Referencer Bibliografi Baker, James M., ed. Kenneth Hamilton, A survey of the late piano works, The Cambridge Companion to Liszt (Cambridge og New York: Cambridge University Press, 2005). (paperback). Lang, Paul Henry, George Frideric Handel Scheibler, Albert, Sämtliche 53 Bühnenwerke des Georg Friedrich Händel Operaer af Georg Friedrich Händel
18,187
https://stackoverflow.com/questions/51084473
StackExchange
Open Web
CC-By-SA
2,018
Stack Exchange
Guille, https://stackoverflow.com/users/5781479
English
Spoken
165
250
Is it possible to reference Identity.Model library in a project .Net framework 3.5? I have a project in VB.NET on .NET framework 3.5. I can't reference the Identity.Model library, as I got this error message: Could not install package 'IdentityModel 3.7.1'. You are trying to install this package into a project that targets '.NETFramework,Version=v3.5', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author. Any suggestion, please ? Upgrade the project to .Net 4.5 or higher. Please note that the IdentityModel version number has nothing to do with the .Net framework version number. The simple answer is - NO you cannot. Even the first version (1.0.0) of IdentityModel requires .NET Framework 4.5. Here is the info about the nuget package. You will have to figure another way if you want to authenticate against Identity Server. So, do you mean Identity.Model library is the only way to authenticate against IdentityServer ??
24,685
https://yo.wikipedia.org/wiki/Leonardo%20DiCaprio
Wikipedia
Open Web
CC-By-SA
2,023
Leonardo DiCaprio
https://yo.wikipedia.org/w/index.php?title=Leonardo DiCaprio&action=history
Yoruba
Spoken
14
35
Leonardo Wilhelm DiCaprio je osere to gba Ebun Akademi fún Osere Okunrin Didarajulo. Itokasi
17,342
https://hu.wikipedia.org/wiki/T%C3%A1ncoslegyek
Wikipedia
Open Web
CC-By-SA
2,023
Táncoslegyek
https://hu.wikipedia.org/w/index.php?title=Táncoslegyek&action=history
Hungarian
Spoken
186
666
A táncoslegyek (Empididae) a rovarok (Insecta) osztályában Légyalkatúak (Brachycera) alrendjének egyik családja. Eleddig több, mint 3000 fajukat írták le. A táncoslegyek és a szúnyoglábú legyek (Dolichopodidae) legnagyobb magyarországi kutatója Wéber Mihály volt. Megjelenésük, felépítésük Középnagy vagy kisebb, többnyire szürke–fekete testű legyek. Fejük aránylag kicsiny, a hím összetett szemei a fejtetőn összeérhetnek. Szívókájuk lefelé irányul. Toruk magasra púposodik. Potrohuk hosszú, a hímeké erős fogószerkezetben végződik. Hosszú, erős lábaik alakja változatos. A combok és esetleg a hátulsó láb első ízei is duzzadtak. Életmódjuk Többségük egyértelműen ragadozó: a kisebb rovarokat erős lábukkal ragadják meg. Néhányuk a növények nedvét sem veti meg. A táncoslegyek egyes fajainak a hímje szőni is tud: szájukból vékony, fehéres fonalat eresztenek, amivel apró rovarokat sző körül, hogy azokat nászajándékként a nőstényeknek adhassák. Lárváik föld alatt, korhadó lombhulladékban és vén fatörzsek törmelékében élnek. Rendszertani felosztásuk A családot öt alcsaládra tagolják; ezek közül kettőnek a nemzetségeit, illetve nemeit is felsoroljuk. Brachystomatinae Clinocerinae Empidinae Empis Hilara Hilarempis Porphyrochroa Hemerodromiinae Chelipodini Afrodromia Chelipoda Chelipodozus Drymodromia Monodromia Phyllodromia Ptilophyllodromia Hemerodromiini Chelifera Cladodromia Colabris Doliodromia Hemerodromia Metachela Neoplasta Oreogetoninae Irodalom Brehm: Az állatok világa Wéber Mihály Lajos Kornél Jegyzetek Légyalkatúak Rovarcsaládok
48,396
https://stackoverflow.com/questions/15037131
StackExchange
Open Web
CC-By-SA
2,013
Stack Exchange
Manatax, Nick Pickering, https://stackoverflow.com/users/1270996, https://stackoverflow.com/users/1489912
English
Spoken
229
467
Trying to output a loop of rows inside a table via Jquery and a target div tag I have an HTML table, I have wrapped a div tag around 1 of the rows, so that jQuery can replace that w/ row/rows from my PHP output.. Here's what that table looks like in code (easier to view here): My jQ loads $("#points_details_data").load("points_view.php?eid=<?php echo $eid;?>"); and PHP outputs this actual code: <tr><td bgcolor='#FFFFFF'>&nbsp;</td> <td bgcolor='#FFFFFF'>test</td> <td align='right' bgcolor='#FFFFFF'>- 100</td> </tr> but the resulting display/render is that the PHP output is outside of the target div..see here for screenshot of the actual output: I have a feeling I can't div target inside tables.. can I? No, you can't do that. Why not put the div IN the tr? You can't have a div around a tr tag. You can instead put that id on the tr and use something like this. $.get("points_view.php?eid=<?php echo $eid;?>", function(data){ $("#points_details_data").after(data); }); A better solution would be to have thead, tbody and tfoot tags to wrap table head, body and footer and putting the id on the table. Then the ajax call will change to $.get("points_view.php?eid=<?php echo $eid;?>", function(data){ $("#points_details_data tbody").append(data); }); the div around the rows is going to brake your html. @3coins is right. Put your <div> tags inside your <td> tags.. then you can use: var id = <?php echo $eid;?>; document.getElementById("points_details_data").innerHTML = id;
47,137
https://fr.wikipedia.org/wiki/%2829649%29%201998%20WP6
Wikipedia
Open Web
CC-By-SA
2,023
(29649) 1998 WP6
https://fr.wikipedia.org/w/index.php?title=(29649) 1998 WP6&action=history
French
Spoken
149
298
est un astéroïde de la ceinture principale d'astéroïdes découvert en 1998. Description a été découvert le à l'observatoire astronomique d'Ōizumi, situé à Ōizumi, dans la préfecture de Gunma, au Japon, par Takao Kobayashi. Caractéristiques orbitales L'orbite de cet astéroïde est caractérisée par un demi-grand axe de , un périhélie de , une excentricité de 0,14 et une inclinaison de 4,87° par rapport à l'écliptique. Du fait de ces caractéristiques, à savoir un demi-grand axe compris entre 2 et et un périhélie supérieur à , il est classé, selon la , comme objet de la ceinture principale d'astéroïdes. Caractéristiques physiques a une magnitude absolue (H) de 14,4 et un albédo estimé à 0,218. Voir aussi Articles connexes Liste des planètes mineures (29001-30000) Ceinture d'astéroïdes Liens externes Références Objet céleste découvert en 1998 Astéroïde de la ceinture principale Objet céleste découvert par Takao Kobayashi Objet céleste découvert à l'observatoire astronomique d'Ōizumi
5,345
https://arz.wikipedia.org/wiki/%D8%B3%D9%8A%D8%B1%D8%AC%D9%89%20%D8%AC%D9%88%D9%84%D9%8A%D9%8A%D9%81
Wikipedia
Open Web
CC-By-SA
2,023
سيرجى جولييف
https://arz.wikipedia.org/w/index.php?title=سيرجى جولييف&action=history
Egyptian Arabic
Spoken
64
189
سيرجى جولييف () فنان قتال مختلط و ملاكم كيك بوكسينج و لاعب كاراتيه و ملاكم موياى تاى من روسيا. حياته سيرجى جولييف من مواليد يوم 3 نوفمبر سنة 1981 فى سانت بطرسبورج. لينكات برانيه مصادر ناس فنان قتال مختلط من روسيا روس فنان قتال مختلط من سانت بطرسبورج ناس من سانت بطرسبورج مواليد 1981 مواليد 3 نوفمبر ناس لسا عايشين مواليد فى سانت بطرسبورج
49,726
https://zh.wikipedia.org/wiki/%E9%98%BF%E7%BA%B3%E6%96%AF%E5%A1%94%E8%A5%BF%E5%A8%85%C2%B7%E5%93%88%E5%B0%94%E5%85%B0%E6%B3%A2%E7%BB%B4%E5%A5%87
Wikipedia
Open Web
CC-By-SA
2,023
阿纳斯塔西娅·哈尔兰波维奇
https://zh.wikipedia.org/w/index.php?title=阿纳斯塔西娅·哈尔兰波维奇&action=history
Chinese
Spoken
8
161
阿纳斯塔西娅·哈尔兰波维奇(,),俄羅斯女子羽毛球運動員。 簡歷 2012年9月,阿纳斯塔西娅·哈尔兰波维奇出戰哈爾科夫國際賽,跟Mariya Pozdeeva合作打進女子雙打四強。 主要比賽成績 只列出曾進入準決賽的國際賽事成績: 參考資料 俄羅斯羽毛球運動員
32,480
https://zh.wikipedia.org/wiki/%E8%B0%A2%E5%B0%94%E7%9B%96%C2%B7%E8%88%92%E7%B1%B3%E5%B0%94%E9%87%91
Wikipedia
Open Web
CC-By-SA
2,023
谢尔盖·舒米尔金
https://zh.wikipedia.org/w/index.php?title=谢尔盖·舒米尔金&action=history
Chinese
Spoken
7
175
谢尔盖·舒米尔金(,),俄羅斯男子羽毛球運動員。 簡歷 2013年7月,谢尔盖·舒米尔金出戰白夜羽毛球賽,分別跟安德烈·阿什马林和维多利亚·沃罗比娃合作,拿得男子雙打和混合雙打亞軍。 主要比賽成績 只列出曾進入準決賽的國際賽事成績: 參考資料 俄羅斯羽毛球運動員
12,799
https://pl.wikipedia.org/wiki/Jeziorko%20%28wojew%C3%B3dztwo%20mazowieckie%29
Wikipedia
Open Web
CC-By-SA
2,023
Jeziorko (województwo mazowieckie)
https://pl.wikipedia.org/w/index.php?title=Jeziorko (województwo mazowieckie)&action=history
Polish
Spoken
24
67
Jeziorko - osada leśna w Polsce, w województwie mazowieckim, w powiecie ostrowskim, w gminie Ostrów Mazowiecka. Zobacz też Jeziorko Przypisy Ostrów Mazowiecka (gmina wiejska)
5,447
https://ro.wikipedia.org/wiki/La%20Folleti%C3%A8re-Abenon
Wikipedia
Open Web
CC-By-SA
2,023
La Folletière-Abenon
https://ro.wikipedia.org/w/index.php?title=La Folletière-Abenon&action=history
Romanian
Spoken
28
61
La Folletière-Abenon este o comună în departamentul Calvados, Franța. În 2009 avea o populație de 154 de locuitori. Note Vezi și Lista comunelor din Calvados Comune din Calvados
28,215
https://ceb.wikipedia.org/wiki/Metathelypteris%20wuyishanensis
Wikipedia
Open Web
CC-By-SA
2,023
Metathelypteris wuyishanensis
https://ceb.wikipedia.org/w/index.php?title=Metathelypteris wuyishanensis&action=history
Cebuano
Spoken
74
157
Kaliwatan sa tanom ang Metathelypteris wuyishanensis. sakop sa ka-ulo nga Tracheophyta, ug Una ning gihulagway ni Ren Chang Ching. Ang Metathelypteris wuyishanensis sakop sa kahenera nga Metathelypteris, ug kabanay nga Thelypteridaceae. Kini nga matang hayop na sabwag sa: Pangmasang Republika sa Tsina Fujian Sheng Zhejiang Sheng Walay nalista nga matang nga sama niini. Ang mga gi basihan niini Tanom Tanom sa Pangmasang Republika sa Tsina Tanom sa Fujian Sheng Tanom sa Zhejiang Sheng Metathelypteris
37,547
f8Z8JdZMhnA_1
Youtube-Commons
Open Web
CC-By
null
Chris Dempsey: Crowdsourcing in New Zealand - Lessons from Wanganui
None
English
Spoken
3,107
3,739
Good evening, everyone. My name is Chris Dempsey. I'm the lead developer for Recollect at NZMS. I don't have a PhD. I'm not studying for a PhD. I don't have a BSc. I don't have a BA. I have, however, been working with the internet and with crowds, essentially, for over a decade now. So I feel I'm fairly clued up on what the crowd is about, what the internet is about. A little bit of background to me. I developed up the calculators, the mortality calculators for the sorted website, which, as a young father, was a bit of a depressing thing to do. I then moved on and did things like trade doors and things, trade access for tradesmen who only have thumbs. When you only have thumbs, the internet is a difficult place to be. So we gave them a loyalty site as well to reward them for actually using their thumbs correctly. But I also have a wild crowd under my belt. I run the Dynout website, and it employs an awful lot of people for free. We review restaurants up and down the country, and if you ever want a wild crowd and you want wild content, that's the kind of project they have. But what all this means is I'm not a designer. I'm a developer. And I spend all of my time in CodeView. This is how I see my life. This is how I spend my time, because data is cool. I love data. I love interconnected data. I love the way it fits together. I love the way that it's awful on one side and fantastic on the other. So the data for me is king. However, let's talk about Wanganui and their crowd sourcing project. The Alexander Turnbull Library has a huge historical index of people and subjects spanning about 150 years, and it's been managed to maintain by volunteers and covers births, deaths, marriages and other interesting bits and pieces from the local newspapers. These index cards are constantly in use by members of the public who come through the more that they have more than just thumbs. And then they utilise the information that's on those cards to which we request pages or whole and entire newspapers to be pulled out and scanned and copied and digitised out of the archives. Now Wanganui Library stopped adding new cards, which is probably a good thing because they've got over 150,000 of them. So the big challenge for them is how to get that information off those cards and into a database in some way to make it accessible but also so they can carry on extending it. All those cards Thankfully that isn't their cards but it's not far off. 150,000 cards means a lot of work and any small task multiplied by 150,000 becomes monumental. If we assume that a single card can be read and transcribed in about a minute, my minute by 150,000 is 2,500 hours or 312 8-hour days or about a year and a half for some poor soul to slog their way through. However not all cards are made equal. Some have a lot of text and some provide other challenges because of the scale of the job simply increasing the time per card to 2 minutes adds another year and a half to the project. And did I mention that some of the cards are double-sided? So this sounds like the perfect candidate for a crowdsourcing project. I might work and so on. So a plan was required. The first question that has to be asked for even starting down a crowdsourcing project is, why? You'll need a good reason for actually starting a crowdsource project because you'll need to explain it to a far wider audience. You need to explain to them why they should bother. What's in it for them? And if you can't explain it to them how are they going to become enthused? If you can't explain why to every single person about why they should be filling in and becoming part of your crowd, don't start. Wanganui's why is that the cards are not being added to. The data that they want to add to it is stacking up and the cards are still being used. They want to carry on using these cards. They want to access the information that is on there now and they want to add more information to them in the future. The next question, still before you can start talking about crowds, is how to digitise your materials. If this is an in-house project possibly you could just work off the original materials but it's more likely that you're going to want to digitise them and put them onto the internet or somewhere. That gives you a much, much wider audience and it means that we've got a number of very successful methods of quickly and efficiently scanning and digitising all these materials but it depends on what your project is. If you're trying to map a graveyard all you need is an iPhone and a GPS and therefore you have all the information you need. We started with a sample of about 1,000 cards from Wanganui. We tested a variety of scanning and indexing and sorting methods. Fronts and backs and sets and groups and all sorts of things. We managed to convert those cards into 1,252 transcribable items. Group to sets, front and back, all noted. Quick OCR run and we're ready to roll. Probably the next most important question to ask or even the most important question to ask is, what do I want to achieve at the end of all this? Do you just want transcription? Do you want the cards titled and indexed? Does the content need to be contextualised? Do you need to know where the words are on the page? How accurate does the transcription need to be? Do you want typos and obvious eras on the originals corrected? All through this you have to keep asking yourself how accurate does the transcription need to be? Do you want typos and obvious errors all through this you have to keep asking yourself why? Keep asking yourself that over and over again. And remember the one vital fact the more context you require from your material, the more intelligent your audience, your crowd needs to be. If you're not going to get everything from that job the first time you run it don't start it. Wait until you actually have answered all those why's. Wonginui like the idea of a fully contextualised card. They have a lot of indexed information on every single card. It would be great to be able to say the Wonginui Chronicle on this particular date, this particular event, a birth and death marriage happened to this particular person and then this particular event and that was wonderful. I loved that idea and it was nearly fricking impossible to use. However the concept was very very sound but the crowd would never put up with it. So that brings us to the most variable element of the entire project. Who? Who is your crowd? If you're publishing this out to all in sundry then your crowd is wide and diverse. That includes doctors and dentists and murderers. It contains accountants and school children that are truly humorous in those that are just funny. The world is full of wonderful and interesting people but it's also full of crackpots and weirdos. A quick read of comments on a vaguely controversial stuff article or a YouTube video will give you the insights into the minds of others. We don't all have the same moral compass. Beliefs, skills or intelligence and these are the people who will be your crowd. Even a small tight-knit group will have a wide differences of opinion and levels of helpfulness. We'll talk a bit more about your helpful crowd later. Wonginui's crowd is a mix of their current volunteers, their in-house staff, interests of people in the region and local communities and other organisations. So the Crowdsourcing Proof of Concept project was launched. We loaded the cards into Recollect and presented them for crowdsourcing. Our initial launch was to a very select few. We have slowly lekt it out to other wider groups for testing, collating their feedback and tweaking the inputs and usability as we went. When you launched your audience, you'll need to know what you're doing and why. Your home page for the project should show its current status, leaderboards, stats, other activity, but also a reason to participate. Don't make it too complicated. Make it sound like a fun thing to do, even though it's the most boring job on Earth. Our first volunteer group which just happened to be our NZMS staff were set the task of just getting stuck in. They had no introduction, no training, no idea on what the end results we were looking for, just a tool to get started with. As a result of the inputs and feedback we built a short training module that used the actual cards to guide the users through the process. This helped us to explain what to look for, where to find the data, where to put it, if typos were allowed or if they should be fixed, how to use the various tools on the page and to make the transcription easier. I lost myself there. They also were able to give feedback on things that were able to give them feedback that they may have made a mistake and guidance on how to correct it and make each step a little harder than the one before it. Just three cards are now training program in a certain amount of leniency and this made the trained users more savvy in their submissions, more consistent and reliable. Only one person didn't make it through training and we'll discuss her later. A golden rule to any crowdsource project is don't let your users get stuck. If they have to complete a large or complicated card or page before they can continue, they will get discouraged and they will give up. Everybody has different skills and if a user is competent, don't force them to complete the tasks if they don't want to. Of course at some stage, you're going to end up huge wads of data. How do you deal with the task of administering it is up to you, but here's a few things to consider. Do you want or need double entry? It works well for Wonginui's index cards as they're short, concise and often laid out pretty well. However, a large page of text or translation may require piecemeal entry, multiple users editing the same actual page until it's considered good. One small concession of double entry is that you could also employ auto acceptance if two cards match or match close enough then you can consider them good as and just automatically accept them right away. The downside to this is that if you do get a whole bunch of malicious users and they just type bum, bum, bum on every single card, you're going to get a lot of bums in your data. You can however convert your crowd into submitters into acceptors as well. Once a user has a certain number of cards accepted, a certain level of approval they've shown their worth as it were you can actually set them to be one of your approvers as well. So crowd source the submissions crowd source the approvals. We have to look at your cards ever again. If however you do want to review every single card that's edited remember you'll have to read every single word that your crowd submits. All of it. Every single word. Crowd source the approval sounds pretty cool now, doesn't it? In the end, the method of entry and acceptance is up to you and based on the material that's been transcribed and the method used to collect it but don't think it is just a quick and easy task. And the crowd. The crowd. The great thing about a crowd is that it seems to follow all of the theories of chaos and randomness at the same time. Take a moment and think of the crowd was made up of just your immediate family. How diverse would their skills and experiences be? Would you for a moment consider that they would tow the line that you have set for them? The crowd is one of those things that you have very little control over. Even if you know them all by name. When we released a test version of the one going to be crowdsourcing to a small group of well-known people one of them failed the training. They could not get past card number two. I had to look through their training transcript to see why she failed in its pure user era. She refused to read the warnings that were displayed and got frustrated and abandoned it. Turns out she was leaving the title and the body of the card. A lesson that should have been learned in card number one. But, obviously, she wasn't. I know this person and they make monkeys at a keyboard look like Shakespeare. She's keen to help but the quality of her contributions would always be in doubt. We love her dearly but we don't want her in our crowd. Training weeded her out. Many other people have breezed through the training process and then got stuck into correction. Some are fastidious and precise ensuring that every comma and apostrophe is in the right location. Others are quite accurate but eventually they get lazy and start to let some errors slip through. Some, of course, were lazy from the first card they ever did. Thankfully, so far, none of the crowd has been malicious. Except that one. Evil. We've received somewhat entries but none that contained anything more than what was on the card to begin with. That's not to say that we won't get one but we have the tools on hand to make sure that if they get identified they can be banned. Accuracy. It is what you want it to be. If you are converting into a contextualised format for a database then you might need high levels of accuracy. Every i dotted and every t firmly crossed. Long ago we wanted the titles and card numbers to be extracted after we discovered that we weren't going to be able to do the whole contextualised because the crowd were going to revolt. But the rest of the card became keyword searchable. Therefore punctuation and spacing was less important than having the numbers and letters entered correctly. Correct capitalisation was of no great concern and spacing layout was up to the individual. But the question still remains over what to do about the typos and abbreviations from the original images. If a word is spelled incorrectly on the card should it be transcribed as such or as it was intended. Spacing concerns on the originals are of no longer of any concern. So should we correct intentional mistakes made on the originals as we go like typing over the edge of the card? If so, how does this impact on the double entry comparisons? Long ago his answer is we don't know yet. We asked a lot of questions at the start but you can never ask all of the possible questions and during the project your rationale and reasons may change. So be prepared for the occasional goalpost move. So lessons. Constantly ask why are you doing this? If you find it hard to explain to your boss, your colleague, your wife, husband, daughter, child or some random person walking down the street if you can't make them grasp what it is that you're trying to do then maybe you shouldn't start. Make sure that your material is crowd friendly. Digitise it and make it accessible. If you put it on the web then make sure it's web friendly. If you're doing it in-house make sure you have the technology to access and display it. Make sure your tools are crowd friendly. Offer training to the newbies offer them to skip the hard or boring bits show a project status and leader boards if it's on the web make sure that it's accessible to a wide variety of browsers. Libraries aren't renowned for their high-tech equipment in-house. Make sure that your crowd is friendly. Be prepared for malicious users. Be prepared for idiots. Be prepared for novice users and monkeys at a keyboard. Test everything. Test it yourself, then with colleagues and with a close group of friends in a friendly external group before you make it public. Test it again. Seriously, you need to be intimately familiar with your tools, with your data and the materials. Test it at work, test it at home, test it on the bus, test it on your phone. Test it a lot. And promote it. Just because you built it doesn't mean they'll come. A wonderful emotion may generate a bubble of activity and then taper off to a few dedicated individuals. But constant marketing and promotion of your crowdsourcing product will keep it alive and moving fast. And enthuse and reward your crowd. Or at least recognise their input. You should have prizes or just fame. But you have a volunteer workforce doing a fantastic job for you and they should be recognised in some way. And use the data. I know it seems obvious, but remember why it is that you wanted to start this project in the first place. If you manage to source a crowd and they produce your results, use the data. Make it yours. Make the power of the crowd into something useful. Wanganui's crowdsourcing is populating the recollect system directly. So they're able to use the data as soon as it's approved. Their crowdsourcing project, however, is a trial. A proof of concept or an experiment. If it all goes well, they'll have the perfect system in place to launch into their full set of cards. And if you want to see their system at work, visit them at wanganuilibrary. recollect.co.nz or I think it's straight off the wanganuilibrary.com You can register, undergo the training yourself, and start correcting cards and be part of the in-groud. So this has been a brief introduction into wanganuilibrary and how they have started their crowdsourcing.
23,661
https://hu.wikipedia.org/wiki/Jimmie%20%C3%85kesson
Wikipedia
Open Web
CC-By-SA
2,023
Jimmie Åkesson
https://hu.wikipedia.org/w/index.php?title=Jimmie Åkesson&action=history
Hungarian
Spoken
120
361
Per Jimmie Åkesson svéd politikus és író, 2005 óta a Svédországi Demokraták vezetője. 2000 és 2005 között a Svéd Demokratikus Ifjúság vezetője volt. Élete Jimmie Åkesson a Skåne megyei Ivetoftában született, de a Blekinge megyei Sölvesborgban nőtt fel. Apja Stefan üzletember, aki padlóburkoló vállalkozást vezetett, édesanyja, Britt Marie pedig ápolónő volt egy idősek otthonában. Åkesson szülei fiatalon elváltak, és elsősorban édesanyja nevelte. Åkesson politológiát, jogot, közgazdaságtant, humánföldrajzot és filozófiát tanult a Lundi Egyetemen, és kijelentette, hogy ekkoriban kezdett érdeklődni a politika iránt. Åkesson főállású politikai munkája előtt webdesignerként dolgozott a BMJ Aktiv cégnél, amelyet Björn Söderrel, a Svéd Demokraták egykori párttitkárával közösen alapított. Írásai Satis polito, 2013 (önéletrajz) Det moderna folkhemmet, 2018 Jegyzetek 1979-ben született személyek Élő személyek Svédországi politikusok
8,205
https://stackoverflow.com/questions/76421002
StackExchange
Open Web
CC-By-SA
2,023
Stack Exchange
Bogdan Dincescu, Damien_The_Unbeliever, Daniel, Serg, astentx, https://stackoverflow.com/users/15498, https://stackoverflow.com/users/21139120, https://stackoverflow.com/users/22034288, https://stackoverflow.com/users/2778710, https://stackoverflow.com/users/6219979
English
Spoken
647
1,040
Why does over() not return null If over() means it ranges over the entire result set, why it won't return null in "max(column) over()". Is the reason about something like "null considered as int" concept? OVER clause in Oracle I have tried find official oracle document. Failed. Tried google other discussion to get some clue. Failed. Tried test myself with result from adding different arguments to over() like max(c) over(partition by c), max(c) over(order by c) to figure out the mechanism. Failed All aggregate functions except COUNT(*), GROUPING, and GROUPING_ID ignore nulls It doesn'make sense max(c) over(partition by c). Normally if you want max(c), that has to be partitioned over some other column(s) than c. Do you have some sample data and a runnable query with what you expected and what actual results you're getting? Because I'm really not sure what behaviour you're trying to ask about here is. It will, if all values in the range are NULL My bad. I used my phone to ask here. That's why I didn't put any data sample. MT0 got my point. Thanks This is in the Oracle documentation for Aggregate Functions: All aggregate functions except COUNT(*), GROUPING, and GROUPING_ID ignore nulls. You can use the NVL function in the argument to an aggregate function to substitute a value for a null. COUNT and REGR_COUNT never return null, but return either a number or zero. For all the remaining aggregate functions, if the data set contains no rows, or contains only rows with nulls as arguments to the aggregate function, then the function returns null. When you look at the documentation for Analytic Functions it states: Analytic functions compute an aggregate value based on a group of rows. They differ from aggregate functions in that they return multiple rows for each group. So an analytic function will follow exactly the same rules for null values as its equivalent aggregate version (and will ignore null values except in those documented cases); and will applying the aggregation over a window and return multiple rows. For example, if you have the sample data: CREATE TABLE table_name ( id NUMBER GENERATED ALWAYS AS IDENTITY, column_name NUMBER ); INSERT INTO table_name (column_name) VALUES (NULL); INSERT INTO table_name (column_name) VALUES (NULL); Then: SELECT id, MAX(column_name) OVER () FROM table_name; Outputs: ID MAX(COLUMN_NAME)OVER() 1 null 2 null Then it outputs null as the data-set contains only rows with nulls as arguments (exactly as per the documentation). If you add a non-null row: INSERT INTO table_name (column_name) VALUES (42); Then: SELECT id, MAX(column_name) OVER () FROM table_name; Outputs: ID MAX(COLUMN_NAME)OVER() 1 42 2 42 3 42 Again, exactly as documented, the null values are ignored and the maximum of the non-null rows is returned. fiddle I need to take time to read this, but I think you got what I want according your data sample. I should feed back on weekend. Thanks first Sorry for unexpected delay. I thought there is a Subject or page "over()", and I didn't know about aggregate/analytic function. I learn tons of proper nouns. Thank you I do not really understand what your expectation is as to the usage of null in over(partition by ...). Below you may see an example of how partition by works when the column on which you partition has null values: with t_data (code, val) as ( select 'A', 13 from dual union all select 'A', 8 from dual union all select 'A', 0 from dual union all select 'B', 121 from dual union all select 'B', 441 from dual union all select '', 7 from dual union all select '', 21 from dual ) select code, val, max(val) over (partition by code) from t_data; The results should be clear enough. If this is not satisfactory, please explain what you wish to achieve giving a sample of data and the expected results. MT0 answer my wonder. Thanks
9,278
https://ro.wikipedia.org/wiki/Serge%20Dassault
Wikipedia
Open Web
CC-By-SA
2,023
Serge Dassault
https://ro.wikipedia.org/w/index.php?title=Serge Dassault&action=history
Romanian
Spoken
78
168
Serge Dassault (; ) a fost un miliardar francez, , om de afaceri și om politic. A fost președintele și directorul executiv al Dassault Group și un politician conservator. Potrivit Forbes, valoarea netă a lui Dassault a fost estimată în 2016 la 15 miliarde USD. Referințe Legături externe Forbes.com: Forbes World's Richest People Nașteri în 1925 Decese în 2018 Familia Dassault Politicieni din Paris Ingineri aeronautici francezi Corps de l'armement Dassault Group Miliardari francezi Scriitori francezi Politicieni francezi
45,356
https://ta.wikipedia.org/wiki/%E0%AE%9A%E0%AF%81%E0%AE%B5%E0%AF%8D%E0%AE%B0%E0%AE%BE%20%E0%AE%AE%E0%AF%81%E0%AE%95%E0%AE%B0%E0%AF%8D%E0%AE%9C%E0%AE%BF
Wikipedia
Open Web
CC-By-SA
2,023
சுவ்ரா முகர்ஜி
https://ta.wikipedia.org/w/index.php?title=சுவ்ரா முகர்ஜி&action=history
Tamil
Spoken
149
1,134
சுவ்ரா முகர்ஜி (Suvra Mukherjee, 17 அக்டோபர் 1940 - 18 ஆகத்து 2015) இந்திய எழுத்தாளரும், ஓவியரும், இந்தியக் குடியரசுத் தலைவர் பிரணாப் முகர்ஜியின் துணைவியும் ஆவார். இதனால் இவர் இந்தியாவின் முதல் சீமாட்டி ஆவார். பிறப்பும், வாழ்க்கையும் சுவரா முகர்ஜி தற்போதய வங்கதேசத்தின், ஜெஸ்சார் என்ற பகுதியில் 1940 இல் பிறந்தார். அவருக்கு பத்து வயதாக இருந்தபோது அவரது குடும்பம் கொல்கத்தாவுக்கு குடிபெயர்ந்தது. 1957 சூலை, 13இல் பிரணப் முகர்ஜிக்கும் இவருக்கும் திருமணம் நடைபெற்றது. இவர்களுக்கு அபிஜித், இந்திரஜித், இரு மகன்களும், சர்மிஷ்டா என்ற மகளும் உள்ளனர். அபிஜித் மேற்கு வங்காளம், ஜங்கிப்பூர் மக்களவைத் தொகுதியின் இந்திய தேசிய காங்கிரசு கட்சி நாடாளுமன்ற உறுப்பினராக உள்ளார். பணிகள் இரவீந்திரநாத் தாகூரின் இரசிகையான சுவ்ரா ஒரு பாடகியாக செயற்பட்டார். கீதாஞ்சலி ட்ரூப் என்ற பெயரில் தாகூரின் பாடல்களையும், கவிதைகளையும் பல்வேறு நிகழ்ச்சிகளாக இந்தியாவிலும், வெளிநாடுகளிலும் அரங்கேற்றினார். ஒரு ஓவியராக சிலருடன் சேர்ந்தும், தனியாகவும் ஒவியக் கண்காட்சிகளும் நடத்தினார். நூல்கள் முன்னாள் பிரதமர் இந்திராவுடன் மேற்கொண்ட நேர்காணல்களை சோக்கர் அலேய் என்ற பெயரில் நூலாக எழுதியுள்ளார். சீன சுற்றுப் பயணத்தை சேனா அசெனாய் சின் என்ற பெயரில் புத்தகமாக எழுதியுள்ளார். இறப்பு சுவாசக் கோளாறு காரணமாக அகத்து 18, 2015 ஆம் ஆண்டு காலை 10.51 மணிக்கு டெல்லியில் மரணமடைந்தார். மேற்கோள்கள் 1940 பிறப்புகள் 2015 இறப்புகள் மேற்கு வங்காள எழுத்தாளர்கள்
41,785
https://ceb.wikipedia.org/wiki/Banni%20%28rehiyon%20sa%20tribu%29
Wikipedia
Open Web
CC-By-SA
2,023
Banni (rehiyon sa tribu)
https://ceb.wikipedia.org/w/index.php?title=Banni (rehiyon sa tribu)&action=history
Cebuano
Spoken
90
150
Alang sa ubang mga dapit sa mao gihapon nga ngalan, tan-awa ang Banni. Rehiyon sa tribu ang Banni sa Pakistan. Nahimutang ni sa lalawigan sa Punjab, sa amihanan-sidlakang bahin sa nasod, km sa habagatan-kasadpan sa Islamabad ang ulohan sa nasod. Ang kasarangang giiniton °C. Ang kinainitan nga bulan Hunyo, sa  °C, ug ang kinabugnawan Enero, sa  °C. Ang kasarangang pag-ulan milimetro matag tuig. Ang kinabasaan nga bulan Agosto, sa milimetro nga ulan, ug ang kinaugahan Nobiyembre, sa milimetro. Ang mga gi basihan niini Mga dapit sa Punjab (lalawigan sa Pakistan)
50,722
https://stackoverflow.com/questions/10600443
StackExchange
Open Web
CC-By-SA
2,012
Stack Exchange
Mark Coleman, https://stackoverflow.com/users/181776
English
Spoken
126
152
IIS without Admin privileges I have a login which doesn't have admin privileges, I need to be able to connect to the default web sites available on the same server, if I login to the server with the admin privileges then I am able to see all the websites that are hosted. But if i login with the user which is not running on the admin privileges then none of the websites are visible. Can anyone please suggest what are the privileges that I need to give to the non admin user in order for him to access the websites. I'm using IIS 6.1. Thanks for any suggestion. Since you are talking about user and system related permissions you will have better luck looking at http://serverfault.com/
7,906
cuu_3Dn-q4k_1
Youtube-Commons
Open Web
CC-By
null
Prime Minister Trudeau holds a media availability in Addis Ababa
None
English
Spoken
778
941
Hello, everyone. Hello, everyone. Thank you for being with us today. First of all, I would like to thank Prime Minister Abhi Ahmed and President Salih Work-Swedish for welcoming me so warmly, and for the Ministers Ing, Champagne and Hussain. We also have a special guest joining us on this trip, Masai Ujiri, President of the Toronto Raptors. Masai is doing an incredible work in Africa to empower youth through sport. His foundation, Giants of Africa, is helping countless young people, including many young women, reach their full potential. I'm grateful that he was able to join us on this trip and help build even more bridges between Canada and African nations. Thank you, my friend. Now before I go any further, I want to take a moment in memory of the 157 people, including 18 Canadians, who died in the tragic plane crash here last spring. I know that Ethiopians and Canadians will continue to stand shoulder to shoulder in good times and in bad. Because whether it's the vibrant Ethiopian Canadian community back home or the entrepreneurs who work together across an ocean, we can rely on each other. Here in Addis Ababa, a thriving and innovative capital, you don't have to look too far to see that the future is bright. From a young, educated population to new avenues for trade and investment, you've got the ingredients for success. It's no wonder that Ethiopia has one of the fastest growing economies in Africa and that this region is booming. Then that's what brings us here today. Our government is working with Ethiopia and our partners in the African Union to unlock even greater opportunities for people. I had a chance to meet with a number of our partners on the margins of the summit, including the leaders of Nigeria, Rwanda, Egypt, Madagascar, Mauritius, and Cabo Verde. I'm looking forward to having more conversations with our African partners throughout the rest of my time here. This visit gives us the chance to multiply the bridges between Canada and Ethiopia. We have an opportunity, on the other hand, to work more closely to create jobs and growth in our respective countries. I know that Minister Ng and the entire Canadian trade delegation have been very busy over the last few days. We now have a new memorandum of understanding between the Canada Africa Chamber of Business and the Ethiopian Chamber of Commerce and sectoral associations. We also plan on co-hosting a clean tech conference in Addis next year. And we announced major new investments to support sustainable economic growth across the region, whether to help farmers, women, or young people succeed. Because we know that we cannot reach our full potential unless everyone has a real and fair chance at success. So let me take a moment to talk about our focus on gender equality. When women and girls have access to education and jobs, they lift their communities up. But all too often, they're still missing out on those opportunities. Moving forward together towards greater prosperity means ensuring that no one gets left behind. Our government will always put empowering women at the heart of everything we do at home and abroad. And we're not alone in that. Ethiopia is leading, with Prime Minister Abhi appointing a gender-balanced cabinet and President Sally Work advancing women's rights. Here in Ethiopia, where almost 70% of the population is less than 30, we cannot forget the young. In all the countries of the world, the young are the future of our common success. I'm very happy to continue to work with Prime Minister Abhi and the African Union leaders to ensure that African youth can thrive. Together, we can create opportunities for young people here, while opening new markets that will benefit Canadians of all ages. Over the past few days, we've also made progress on one of the most important factors in building economies that work for everyone, clean, sustainable growth. Our oceans and seas have enormous potential to create good jobs for today and tomorrow, but for that to happen, we need to protect them. Our government will continue to lead on combating plastic pollution, just like we will continue to lead on addressing climate change. In fact, Canada will provide funding to the World Bank for climate resilience and new support for women, which attests to the strength of our commitment. While we are here in Addis Ababa to strengthen our relationship with Ethiopia, our government is also looking to take full advantage of our partnership with the African Union. Today, I can announce the beginning of the consultations between Canada and the African Light Commission.
19,136
https://en.wikipedia.org/wiki/Patomha
Wikipedia
Open Web
CC-By-SA
2,023
Patomha
https://en.wikipedia.org/w/index.php?title=Patomha&action=history
English
Spoken
45
92
Patomha (, also Romanized as Pātomhā; also known as Bātamhā, Bātanbā, and Pātomhā Mījān) is a village in Rezvan Rural District, Jebalbarez District, Jiroft County, Kerman Province, Iran. At the 2006 census, its population was 112, in 26 families. References Populated places in Jiroft County
31,198
https://stackoverflow.com/questions/64279691
StackExchange
Open Web
CC-By-SA
2,020
Stack Exchange
amsh, https://stackoverflow.com/users/9907481
Croatian
Spoken
449
1,622
Checking for criteria within a deep nested list I am using MongoDB and PyMongo and have the below data structure. [ { "position": 367, "entropy": 0.1327801096975522, "variants_flattened": [ "GFRHQNSEG", "GFRHQNSEG", "GFRHQNSEG", "GFRHQNAEG" ], "supports": 51, "sequences": [ { "position": 367, "sequence": "GFRHQNSEG", "count": 50, "conservation": 98.03921568627452, "motif_short": "I", "motif_long": "Index", "id": [ "APQ31289.1", "ASU55526.1", "ASU55528.1", "APQ31291.1" ], "strain": [ "Influenza A virus A/Xiamen/s200/2016", "Influenza A virus A/Shandong-Zhifu/164/2016", "Influenza A virus A/Shandong-Zhifu/1185/2016", "Influenza A virus A/Xiamen/s228/2016" ], "country": [ "HA Hemagglutinin", "HA Hemagglutinin", "HA Hemagglutinin", "HA Hemagglutinin" ], "host": [ "Influenza A virus A/Xiamen/s200/2016", "Influenza A virus A/Shandong-Zhifu/164/2016", "Influenza A virus A/Shandong-Zhifu/1185/2016", "Influenza A virus A/Xiamen/s228/2016" ] }, { "position": 367, "sequence": "GFRHQNAEG", "count": 1, "conservation": 1.9607843137254902, "motif_short": "Ma", "motif_long": "Major", "id": [ "QBM69728.1" ], "strain": [ "Influenza A virus A/China/70793/2016" ], "country": [ "HA Hemagglutinin" ], "host": [ "Influenza A virus A/China/70793/2016" ] } ], "variants": 2 } ] The root level list contains multiple objects of similar structure. What I need is to get the instances (the specific object from the "sequences" list only) where "motif_short" is equal to "I". The expected output is (in this particular example, there is only one output object, but there can be multiple objects that match this criteria within a single instance): { "position": 367, "sequence": "GFRHQNSEG", "count": 50, "conservation": 98.03921568627452, "motif_short": "I", "motif_long": "Index", "id": [ "APQ31289.1", "ASU55526.1", "ASU55528.1", "APQ31291.1" ], "strain": [ "Influenza A virus A/Xiamen/s200/2016", "Influenza A virus A/Shandong-Zhifu/164/2016", "Influenza A virus A/Shandong-Zhifu/1185/2016", "Influenza A virus A/Xiamen/s228/2016" ], "country": [ "HA Hemagglutinin", "HA Hemagglutinin", "HA Hemagglutinin", "HA Hemagglutinin" ], "host": [ "Influenza A virus A/Xiamen/s200/2016", "Influenza A virus A/Shandong-Zhifu/164/2016", "Influenza A virus A/Shandong-Zhifu/1185/2016", "Influenza A virus A/Xiamen/s228/2016" ] } I am quite new to MongoDB and have tried a few options such as Aggregate, but I am right where I started. Please help me out. Thanks in advance! Can you please add the exact output required as well? You can solve this problem with aggregate $project and $filter. Please try the following script for this specific problem: #if col is our collection object in pymongo result = col.aggregate([{'$project': {'sequences': { '$filter': { 'input': '$sequences', 'as': 's', 'cond': { '$eq': ['$$s.motif_short', 'I'] } } } }}]) This query projects on sequences and filters on motif_short equals "I". You will get something like this as result: { "_id":"xyz", "sequences":[ { "position":367, "sequence":"GFRHQNSEG", "count":50, "conservation":98.03921568627452, "motif_short":"I", "motif_long":"Index", "id":[ "APQ31289.1", "ASU55526.1", "ASU55528.1", "APQ31291.1" ], "strain":[ "Influenza A virus A/Xiamen/s200/2016", "Influenza A virus A/Shandong-Zhifu/164/2016", "Influenza A virus A/Shandong-Zhifu/1185/2016", "Influenza A virus A/Xiamen/s228/2016" ], "country":[ "HA Hemagglutinin", "HA Hemagglutinin", "HA Hemagglutinin", "HA Hemagglutinin" ], "host":[ "Influenza A virus A/Xiamen/s200/2016", "Influenza A virus A/Shandong-Zhifu/164/2016", "Influenza A virus A/Shandong-Zhifu/1185/2016", "Influenza A virus A/Xiamen/s228/2016" ] } ] }
31,841
https://stackoverflow.com/questions/60914011
StackExchange
Open Web
CC-By-SA
2,020
Stack Exchange
English
Spoken
61
81
Auto Restart App on Reboot not working on Rooted Android 6 Device I am working on auto launch app after restart device (Rooted android 6). I followed approaches from this link How do I start my app on startup? Its working fine on normal devices and emulator but not working on rooted device. Can you pls help on this. Thank you.
5,510
https://en.wikipedia.org/wiki/CW11
Wikipedia
Open Web
CC-By-SA
2,023
CW11
https://en.wikipedia.org/w/index.php?title=CW11&action=history
English
Spoken
52
116
CW11 may refer to: U.S. television stations affiliated with The CW Current KPLR-TV St. Louis, Missouri KTVL-DT2 Medford, Oregon WBNG-TV-DT2 Binghamton, New York WPIX New York City, now known on air as "PIX 11" Former KSTW Seattle/Tacoma, Washington (2006 to 2023) Other Use CW11, a postcode district in the CW postcode area
36,077
https://diq.wikipedia.org/wiki/Kaz%C4%B1m%20Arat
Wikipedia
Open Web
CC-By-SA
2,023
Kazım Arat
https://diq.wikipedia.org/w/index.php?title=Kazım Arat&action=history
Zazaki
Spoken
12
47
Kazım Arat, yew serdar, wali u siyasetkaro Tırk bi. Çımey Siyasetkarê Tırki
32,413
https://zh.wikipedia.org/wiki/%E7%8D%BB%E9%A6%AC%E5%9C%96
Wikipedia
Open Web
CC-By-SA
2,023
獻馬圖
https://zh.wikipedia.org/w/index.php?title=獻馬圖&action=history
Chinese
Spoken
22
1,455
《獻馬圖》又稱《畫馬屏風》,是臺灣畫家林玉山在1943年及1947年期間所完成的膠彩畫作品,該作品內容主要描繪第二次世界大戰末期,日本政府於臺灣徵集物資的實況,畫面以馬為主體,搭配一軍伕與木麻黃結構而成;原件現由高雄市立美術館典藏,並登錄為中華民國一般文物。 歷史 林玉山(1907-2004)是臺灣美術史上的重要畫家之一。在19歲時前往日本留學,在東京川端畫學校接受全面的專業美術教育。並自留學期間不斷精進技巧和創作能力,返臺後參與第一屆臺灣美術展覽會並獲得了入選。與郭雪湖、陳進一起被譽為「台展三少年」,成為了當時台灣藝壇的新秀畫家。 1940年代,林玉山在一次路上休息時,遇見十餘名軍伕牽引從民間徵調來的馬匹,馬背上則綁著日本國旗及太陽旗,並因而隨手速寫下這個情景,回家後創作成膠彩畫《獻馬圖》,裝裱為四連屏的屏風。 1947年,二二八事件發生後,林玉山為躲避搜查,將畫中的日本國旗改為中華民國國旗,然而當林玉山仍居住於嘉義時,由於畫中的右側兩屏在存放多年後,已因為蟲蛀和潮濕損壞。因此林玉山將畫作拆下,僅保存左邊兩屏。直到解嚴後,他的兒子林柏亭才首次看到此畫。 1999年,林玉山想將《獻馬圖》捐給高雄市立美術館,由於畫作需要修復重裱。林玉山則依憑記憶自行將右邊兩屏的缺損處補繪復原,至於前兩屏則不再更動。由於當時林玉山的畫室裡並無大畫桌可工作,面臨將屏風立起作畫之窘境,他仍堅持完成全幅作品後,才完整的畫作捐給美術館。 2019年10月26日,高雄市立美術館曾舉辦常設展覽《南方作為相遇之所》10月26日開幕,為表述「南方」文化於當代性的建構,《獻馬圖》則作為主要展示品對外展出。 畫作 儘管畜獸畫是認為是林玉山一生創作中最擅長的畫材之一,然而對於馬的描繪僅出現在《獻馬圖》,《獻馬圖》的屏風表現形式被視為林玉山早期作品重要特色之一。在作品中,擔任構圖主體的馬匹和軍伕被置於畫面中央,並以簡單直接的方式描繪了物象主體,使主題清晰明確。右上角的木麻黃樹呈現斜向姿態,與向左稍偏的馬匹和人物形成平衡,營造出整體畫面的和諧感。整體風格則是以日本畫技法所描繪。 這幅畫中,韁繩的圓弧形連結了軍伕和馬匹,強調了人與物之間的緊密關係。軍伕和馬匹的重疊造成空間實體的增加,特別是褐色馬匹和軍伕的十字構圖,其交叉點正好成為畫面的重心和主體所在。此外,畫面的橫向伸展和馬匹的橫向移動,營造出開闊和寧靜的視覺效果。 由於1999年林玉山的補繪,補繪處的國旗則還原為日本國旗,並以嶺南畫派風格的渴筆繪製,當前畫作中左右兩半畫面則呈現一中一日的旗幟,直接反映了林玉山創作風格之變遷、1940-1950年期間臺灣歷史之氣氛,以及畫作曲折的創作過程。 參考資料 外部連結 林玉山〈獻馬圖〉 - 高雄市立美術館 1943年臺灣作品 1943年畫作 臺灣日治時期繪畫作品 高雄市立美術館 藝術作品中的馬 林玉山藝術作品
11,441
https://stackoverflow.com/questions/40389342
StackExchange
Open Web
CC-By-SA
2,016
Stack Exchange
Felipe Lema, Soni, https://stackoverflow.com/users/3637404, https://stackoverflow.com/users/7106660
English
Spoken
433
594
Julia parallel speedup performance for large scale computations General context: I have developed a fairly large Navier-Stokes (finite difference) solver written in FORTRAN90. It has adaptive grids (hence load-balance issue), and I have tried various techniques (MPI, OpenMP & OpenMP-MPI hyrbid) to parallelize it. However, it does not scale good enough i.e. according to Amdahl's law it runs 96-97% of the computations in parallel. Also, the general size of the mesh is a couple of hundred million points, which would require to increase later in the future. Query: Now, I am thinking of switching to Julia, since it has become very tedious to maintain and add further functionalities to the existing code. The problem is that I am unable to find a good answer about the parallel performance of Julia. I have searched on the internet as well as have watched a lot of youtube videos. What I have noticed is that most people say that Julia is very much suitable for the parallel computing, some even provide a bar chart showing the reduction in the elapsed time compared to the serial code. However, some of the answers/videos are quite old, which make them a little unreliable due to the growing nature of this new language. Therefore, I would like to know if the language has the ability to scale even for a few thousand cores? Extra information: I am still trying hard to improve the speedup of my existing code to achieve almost linear performance for a couple of thousand cores. The solver needs to exchange overlapping points 3-4 times per timestep. Hence, it involves a huge communication overhead. However, the non-adaptive grid version of the code easily scales up to 20k cores. I have also read somewhere that Julia does not use InfiniBand standard for data communication in parallel. not an anwer, but might help: a use case for parallel julia. Found it using google scholar. Unfortunately, it's paywalled @FelipeLema Thanks! That's an interesting article. However, as you rightly said it doesn't answer the question. The following paper has scaling results for pde constrained parameter estimation problems but not up to anywhere near the number of cores you seem to be interested in: https://arxiv.org/abs/1606.07399. I haven't seen any examples going up to thousands of cores. Re infiniband: By default Julia uses shared memory for communication within a node and TCP/IP across nodes, so by default infiniband is not supported. However, the language allows for the implementation of custom transports and I imagine someone will add infiniband support at some point but I couldn't find any implementations with a quick google search.
43,139
https://ru.wikipedia.org/wiki/%D0%9F%D0%B8%D1%81%D0%B0%D1%80%D0%B5%D0%B2%2C%20%D0%94%D0%BC%D0%B8%D1%82%D1%80%D0%B8%D0%B9%20%D0%98%D0%B2%D0%B0%D0%BD%D0%BE%D0%B2%D0%B8%D1%87
Wikipedia
Open Web
CC-By-SA
2,023
Писарев, Дмитрий Иванович
https://ru.wikipedia.org/w/index.php?title=Писарев, Дмитрий Иванович&action=history
Russian
Spoken
652
2,083
Дми́трий Ива́нович Пи́сарев (, село Знаменское, Орловская губерния — , Дуббельн, Лифляндская губерния) — русский публицист и литературный критик, переводчик, революционер-демократ. Считается третьим, после Чернышевского и Добролюбова, великим русским критиком-шестидесятником. Философ Г. В. Плеханов называл его «одним из самых выдающихся представителей шестидесятых годов». Биография Окончил 3-ю Санкт-Петербургскую гимназию (1856) и историко-филологический факультет Санкт-Петербургского университета (1861). За выпускное сочинение о позднеантичном мистике Аполлонии Тианском был удостоен серебряной медали. В 1859 году вёл библиографический отдел в журнале «Рассвет» под редакцией В. А. Кремпина. В 1861—1866 был ведущим критиком и идейным руководителем журнала «Русское слово». За нелегальную статью-прокламацию «О брошюре Шедо-Ферроти», содержавшую призыв к свержению самодержавия («Низвержение благополучно царствующей династии Романовых и изменение политического и общественного строя составляет единственную цель и надежду всех честных граждан России»), с июля 1862 по ноябрь 1866 отбывал заключение в Петропавловской крепости. С августа 1863 года ему было разрешено продолжить литературные занятия. В 1867—1868 годах сотрудничал с журналом «Дело» и «Отечественными записками». В статьях о художественной литературе в развитие «реальной критики» Н. А. Добролюбова трактовал художественные образы как объективное изображение социальных типов (статья «Базаров» о романе И. С. Тургенева «Отцы и дети», 1862; «Борьба за жизнь» о романе Ф. М. Достоевского «Преступление и наказание», 1867, и другие). Вёл борьбу с эстетством и эстетикой (статьи «Реалисты», 1864; «Пушкин и Белинский», «Разрушение эстетики», «Посмотрим!», 1865) как врагами «разумного прогресса», но впоследствии преодолевал нигилистическое отношение к эстетике». Отрицал значение творчества Пушкина. Пушкин, Лермонтов и Гоголь были для Писарева пройденной ступенью. Перевёл на русский язык 11-ю песнь «Мессиады» Ф. Г. Клопштока, поэму Генриха Гейне «Атта Тролль», участвовал в переводе «Истории цивилизации Германии» () Иоганна Шерра. О влиянии статей Писарева, самого их задорного тона, щедро рассыпанных в них афоризмов, убийственных сравнений свидетельствовали в своих письмах и мемуарах многие писатели, журналисты, учёные; известно, по свидетельству Н. К. Крупской, что В. И. Ленин очень любил Писарева и взял с собой в ссылку в Шушенское его портрет. Летом 1868 года Писарев с троюродной сестрой Марией Вилинской, новым объектом своей страсти, и её сыном отправился к Рижскому заливу на морские купания и а утонул в Дуббельне (Дубулты). Похоронен на Волковского кладбища в Санкт-Петербурге. Адреса в Санкт-Петербурге 1867 — доходный дом — Невский проспект, 98; 1867 — лето 1868 года — дом И. Ф. Лопатина — Невский проспект, 68. в Москве 1867 — Доходный дом Торлецкого — Захарьина (улица Кузнецкий Мост, 20/6/9). Собрания сочинений Д. И. Писарева (основные издания) Писарев Д. И. Собрание сочинений в 6 т. — Изд. Ф. Павленкова, 1897. Писарев Д. И. Избранные сочинения в 2 т. — М.: Гос. изд-во худож. литературы, 1934. Писарев Д. И. Сочинения в 4 т. — Гос. изд-во худож. литературы, 1955. Писарев Д. И. Литературная критика. В 3 т. — М.: Художественная литература, 1981. Писарев Д. И. Полное собрание сочинений и писем в 12 т. — М.: Наука, 2000—2013. Писарев Дмитрий Иванович: Собрание сочинений Примечания Литература Д. И. Писарев в воспоминаниях и свидетельствах современников. — М.: ИМЛИ РАН, 2015. — 448 с. Демидова Н. В. Писарев. — М., 1969. — 223 с. Кирпотин В. Я. Радикальный разночинец Д. И. Писарев. — М.: Прибой, 1929. — 252 с. Коротков Ю. Писарев. — М.: Молодая гвардия, 1976. — 368 с. — (Жизнь замечательных людей) Кузнецов Ф. Ф. Нигилисты : Д. И. Писарев и журнал «Русское слово». 2-е изд., перераб. и доп. — М.: Художественная литература, 1983. — 598 с. Соловьев Е. А. Д. И. Писарев [Очерк жизни и деятельности]. — Берлин — Петербург — Москва: Издательство З. И. Гржебина, 1922. — 274 с. Цыбенко В. А. Мировоззрение Д. И. Писарева. — М.: Изд-во Московского университета. 1969. — 352 с. Ссылки Володин А. «И это называется нигилизмом?» // Писарев Д. И. Исторические эскизы. — М.: Правда, 1989. — С. 3—10. Сухов А. Д. Философский материализм Д. И. Писарева // Философия и общество. — 2005. — Вып. 1(38). Выпускники историко-филологического факультета Императорского Санкт-Петербургского университета Деятели культуры Орловской области Выпускники Санкт-Петербургской 3-й гимназии Революционеры Российской империи Заключённые Петропавловской крепости Нигилисты Материалисты Революционные демократы Эстетики Утонувшие Персоналии:Атеизм
20,054
https://fa.wikipedia.org/wiki/%D9%87%D8%A7%DA%AF%D9%88%D8%B3%20%DA%AF%D8%A8%D8%B1%DB%8C%D9%88%D8%AA
Wikipedia
Open Web
CC-By-SA
2,023
هاگوس گبریوت
https://fa.wikipedia.org/w/index.php?title=هاگوس گبریوت&action=history
Persian
Spoken
220
622
هاگوس گبریوت (؛ زادهٔ ۱۱ مه ۱۹۹۴) یک دونده دو استقامت اهل اتیوپی است. از افتخارات وی میتوان به کسب مدال نقره دو ۵۰۰۰ در ۲۰۱۳ مسکو و مدال برنز ۵۰۰۰ در ۲۰۱۵ پکن اشاره کرد. اوایل زندگی او که در منطقه تیگری به دنیا آمد، در سال 2010 به طور جدی دویدن را آغاز کرد.او در مسابقات قهرمانی ملی اتیوپی در سال 2011 در ماده 5000 متر به مقام ششم رسید و برای دویدن 3000 متر در مسابقات جهانی جوانان آن سال انتخاب شد،که در آن با زمان 7:45.11 دقیقه پنجم شد.هاگوس خاطرنشان کرد که اولین انتخاب ملی او به او کمک کرد تا دوندگی خود را توسعه دهد و او در مسابقات کراس کانتری باشگاه اتیوپی، در رقابت برای مهندسی مسفین، عنوان نوجوانان را به دست آورد. منابع هاگوس گبریوت در وبگاه sports-reference.com افراد زنده اهالی منطقه تیگرای برندگان مدال برنز المپیک اهل اتیوپی برندگان مدال در مسابقات جهانی دو و میدانی برندگان مدال نقره المپیک اهل اتیوپی برندگان مدال نقره المپیک در دو و میدانی برندگان مدال‌های بازی‌های المپیک تابستانی ۲۰۱۶ دوندگان دو استقامت مرد اهل اتیوپی زادگان ۱۹۹۴ (میلادی) ورزشکاران دو و میدانی بازی‌های المپیک اتیوپی ورزشکاران دو و میدانی در المپیک تابستانی ۲۰۱۲ ورزشکاران دو و میدانی در المپیک تابستانی ۲۰۱۶ ورزشکاران مسابقات جهانی دو و میدانی اهل اتیوپی اهالی اتیوپی در سده ۲۰ (میلادی)
21,897
https://arz.wikipedia.org/wiki/%D8%B1%D9%88%D9%86%20%D8%B1%D8%A7%D9%85%D9%81%D9%8A%D9%84%D8%AA
Wikipedia
Open Web
CC-By-SA
2,023
رون رامفيلت
https://arz.wikipedia.org/w/index.php?title=رون رامفيلت&action=history
Egyptian Arabic
Spoken
29
93
رون رامفيلت مهندس من النرويج. حياته رون رامفيلت من مواليد يوم 1 يناير 1944 فى اوسلو. الدراسه درس فى جامعة هيريوت وات. لينكات برانيه مصادر مهندسين مهندسين من النرويج
1,092
https://stackoverflow.com/questions/42872083
StackExchange
Open Web
CC-By-SA
2,017
Stack Exchange
Alex, JB Nizet, https://stackoverflow.com/users/3628679, https://stackoverflow.com/users/571407
English
Spoken
311
389
spring boot LazyInitializationException fat client application I am fairly new to spring boot but try to apply it to my - maybe old fashioned - client server project with a JavaFX front end. The data I am working on is basically a tree, were each node holds several lists with time series information. In order to not load the entire database at start up, eager loading of the time series lists is not an option. The trouble is, that depending on the user selection I need to fetch different time list data in the JavaFX View-Controller, and at this time the session is already closed resulting in the LazyInitializationException. So I was reading many posts here, but my understanding of the spring framework is too limited. If I get it right the often stated OpenEntityManagerInViewFilter and OpenSessionInViewFilter are not applicable for me, as these Filters relate to web apps and not to fat client applications?! If I am wrong here, could someone please explain to me how to apply them in a JavaFX controller class? If I am right, what would be the best solution to solve this issue? So I guess it all boils down to: What annotations are required and where? Thank you in advance. When the user selects something, call a transactional service method. Spring will thus get a freshly opened EntityManager, you'll get the data, return from the method, and Spring will commit the transaction and close the EntityManager. Post your code. But that would mean, that I have to have for each List a method in the service, right? That feels a little like the old days when I had to write for each attribute the JDBC calls myself. I thought that spring boot aims to take that away from me. Any way to keep the session open and just close it, once the application exits?
12,850
https://mathoverflow.net/questions/406238
StackExchange
Open Web
CC-By-SA
2,021
Stack Exchange
Aaron Bergman, Asaf Karagila, Dirk Werner, Wojowu, https://mathoverflow.net/users/127871, https://mathoverflow.net/users/30186, https://mathoverflow.net/users/7206, https://mathoverflow.net/users/947
English
Spoken
224
364
Continuous linear functionals and the Axiom of Choice Can one prove without the Axiom of Choice that for every normed vector space $X$ there exist a nonzero continuous linear functional on $X$? No, this is equivalent to the Hahn–Banach theorem already in the case of Banach spaces. See in my write up: https://arxiv.org/abs/2010.15632 Isn’t the answer, then, that you need BPIT but not necessarily AC? It is an answer, yes. But Hahn–Banach is weaker still, and it is exactly what you need, so that is a better answer. But when people ask "can you prove this and that without the axiom of choice", normally the question is read as "can you prove this and that in ZF", rather than "is this and that equivalent to AC". The answer is no. Let $\ell^\infty$ be the space of bounded sequences equipped with the $\sup$ norm, and $c_0$ its closed subspace of sequences convergent to zero. The quotient $\ell^\infty/c_0$ is then a Banach space when equipped with the quotient norm, and it is consistent that it does not have any nonzero continuous functionals - see a discussion in this answer. I see that this specific example is also mentioned in Asaf's write up, in Theorem 49. See also Martin Väth's paper "The dual space of $L_\infty$ is $L_1$", Indagationes Math. 9, No. 4, 619--625 (1998); Zbl 0922.46066.
40,452
https://stackoverflow.com/questions/58456141
StackExchange
Open Web
CC-By-SA
2,019
Stack Exchange
AMolina, Wicket, https://stackoverflow.com/users/11581830, https://stackoverflow.com/users/1595451
English
Spoken
168
294
Google Sheets macro setValue changes the date value On my Google Sheets macro, I want it to get the first date of the previous month, and insert it into a cell. var currentDate = new Date(); var year = currentDate.getFullYear(); var month = currentDate.getMonth() - 1; var lastMonthStart = new Date(year, month, 1); Logger.log(lastMonthStart) dataDashboard.getRange(1, 1).setValue(lastMonthStart) When I run this, the correct date is recorded in the logger: [19-10-18 10:51:38:454 PDT] Sun Sep 01 00:00:00 GMT+01:00 2019 but in the sheet, it puts 31/08/2019 16:00:00 I'm guessing this is something to do with timezones, and maybe wherever the macro is running has a different timezone to the sheet and is trying to be helpful and correct it. How can I stop this? The spreadsheet and the script project have their own timezone setting. The easier solution is to make both files to use the same timezone. Ruben's suggestion is correct. You can take a look at this answser for an example on how to format the timezone information.
24,809
https://sv.wikipedia.org/wiki/I%20Jesu%20namn%20vi%20b%C3%B6rjar
Wikipedia
Open Web
CC-By-SA
2,023
I Jesu namn vi börjar
https://sv.wikipedia.org/w/index.php?title=I Jesu namn vi börjar&action=history
Swedish
Spoken
44
93
I Jesu namn vi börjar är en psalm med text från 1890 av Lars Erik Högberg och musik från 1850 av George James Webb. Texten bearbetades 1987 av Barbro Törnberg-Karlsson. Publicerad i Segertoner 1988 som nr 467 under rubriken "Årsskifte". Referenser Noter Svenska psalmer
44,816
https://hu.wikipedia.org/wiki/Michael%20Lloyd%20Coats
Wikipedia
Open Web
CC-By-SA
2,023
Michael Lloyd Coats
https://hu.wikipedia.org/w/index.php?title=Michael Lloyd Coats&action=history
Hungarian
Spoken
358
1,131
Michael Lloyd Coats (Sacramento, Kalifornia, 1946. január 16.–) amerikai űrhajós. Életpálya 1968-ban a Haditengerészeti Akadémián repüléstechnikai üzemmérnöki oklevelet szerzett. 1969-ben repülőgép-vezetői jogosítványt kapott. Szolgálati repülőgépe az A–7E volt. 1974-ben berepülő pilóta vizsgát tett, a képzésen megismerte a repülőbalesetek kivizsgálásának módszertanát. Tesztpilótaként az A–4, A–7 repülőgépek változatait tesztelte. 1976-tól 1977-ig tesztpilóta oktató. 1977-ben a George Washington Egyetemen közigazgatási tudomány és technológiából kapott oklevelet. 1979-ben a Haditengerészeti Akadémiáján repüléstechnikai mérnöki oklevelet szerzett. A vietnámi háborúban 315 harci bevetésen vett részt. Több mint órát repült (repülő/űrrepülő), 28 különböző típusú repülőgépen szolgált, 400 alkalommal landolt repülőgép-anyahajó fedélzetére. 1978. január 16-tól a Lyndon B. Johnson Űrközpontban részesült űrhajóskiképzésben. Kiképzett űrhajósként tagja volt a STS–4 és az STS–5 támogató (tanácsadó, problémamegoldó) csoportjának. Három űrszolgálata alatt összesen 19 napot, 7 órát és 56 percet (464 óra) töltött a világűrben. Űrhajós pályafutását 1991. augusztus 1-jén fejezte be. 1991-1996 között a Loral Space & Communications vállalat (repülőelektronika) alelnöke. 1996-tól a Lockheed-Martin vállalt alelnöke. 2005. novembertől 2012. december 31-ig a NASA Johnson Space Center (Houston) igazgatója. Űrrepülések STS–41–D, a Discovery űrrepülőgép első repülésének pilótája. Három kommunikációs műholdat állítottak pályára, Folytatták a McDonnell Douglas vállalat kísérleti, kutatási, gyártási feladatait (CFES). A McDonnell Douglas partnere megbízásából készítettek az űreszközön nagy mennyiségű tisztított eritropoetint. Sikeres napelemtábla kísérletet végeztek. A teljes szolgálatról filmfelvételt készítettek, amiből dokumentumfilm készült. Első űrszolgálata alatt összesen 6 napot, 00 órát és 12 percet (145 óra) töltött a világűrben. kilométert ( mérföldet) repült, 97 kerülte meg a Földet. STS–61–H, 1985 februárjában a küldetés parancsnoka lett volna. A programot a Challenger-katasztrófa miatt törölték. STS–29, a Discovery űrrepülőgép 8. repülésének parancsnoka. Útnak indítottak egy kommunikációs műholdat. Elvégezték az előírt kutatási, kísérleti feladatokat. Mintegy Föld fényképet készítettek. Első űrszolgálata alatt összesen 4 napot, 23 órát és 38 percet (120 óra) töltött a világűrben. kilométert ( mérföldet) repült, 80 kerülte meg a Földet. STS–39, a Discovery űrrepülőgép 12. repülésének parancsnoka. Az Amerikai Védelmi Minisztérium megbízásából teljesített szolgálatot. Üzemeltették a SPAS–02 laboratóriumot. Két műszakban elvégezték az előírt kutatási, kísérleti feladatokat. Első űrszolgálata alatt összesen 8 napot, 07 órát és 22 percet (145 óra) töltött a világűrben. kilométert ( mérföldet) repült, 134 kerülte meg a Földet. Források 1946-ban született személyek Amerikai űrhajósok Élő személyek
22,706
https://stackoverflow.com/questions/60102667
StackExchange
Open Web
CC-By-SA
2,020
Stack Exchange
Aizzaac, Axe319, https://stackoverflow.com/users/12479639, https://stackoverflow.com/users/6106842
English
Spoken
207
338
How to convert this type of "Dictionary" into a Dataframe? I want to send these results to a pandas dataframe. But first I want to know what it is. I mean, do I have 5 dictionaries? Is it a list of tuples inside each one? Here is my attempt: df=pd.DataFrame(reader, columns=reader.keys()) This is the error that I am getting: Does print(reader[0]) give you any output? If it does, reader[0].keys() will give you your columns. This is an OrderedDict from the collections module. They were used a lot when Dictionaries didn't preserve their insertion order. Nowadays, they still have their uses but they aren't as prevalent. Additionally, it looks like ResultsReader is an iterable of them. You shouldn't need to specify the columns in your dataframe if they all have the same structure, which it looks like they do. @Axe319 It gives me the following error: ```ResultsReader object is not subscriptable In that case, can you just do df = pd.DataFrame(reader)? If not you should be able to iterate over it and feed it into a list then convert the list to a dataframe. Nothing appears. I guess I have to do the iteration. items = [] for item in reader: items.append(item) import pandas as pd df=pd.DataFrame(items) df
4,477
https://nl.wikipedia.org/wiki/Polyommatus%20rjabovianus
Wikipedia
Open Web
CC-By-SA
2,023
Polyommatus rjabovianus
https://nl.wikipedia.org/w/index.php?title=Polyommatus rjabovianus&action=history
Dutch
Spoken
58
139
Polyommatus rjabovianus is een vlinder uit de familie van de Lycaenidae. De wetenschappelijke naam van de soort is voor het eerst gepubliceerd in 1980 door Ahmet Ömer Koçak. Ondersoorten Polyommatus rjabovianus rjabovianus Koçak, 1980 Polyommatus rjabovianus masul Lukhtanov, Dantchenko, Vishnevskaya & Saifitdinova, 2015 Verspreiding De soort komt voor in Azerbeidzjan en Noord-Iran. rjabovianus Dier uit het Palearctisch gebied
50,411
https://stackoverflow.com/questions/40398766
StackExchange
Open Web
CC-By-SA
2,016
Stack Exchange
Axel Richter, Gagravarr, Nikos Paraskevopoulos, fyelci, https://stackoverflow.com/users/1312768, https://stackoverflow.com/users/2764255, https://stackoverflow.com/users/3915431, https://stackoverflow.com/users/685641
Polish
Spoken
787
1,762
Avoid formula injection, keeping cell value (quote prefix in HSSF/*.xls) The application I am working on creates Excel exports using Apache POI. It was brought to our attention, through a security audit, that cells containing malicious values can spawn arbitrary processes if the user is not careful enough. To reproduce, run the following: import java.io.FileOutputStream; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; public class BadWorkbookCreator { public static void main(String[] args) throws Exception { try( Workbook wb = new HSSFWorkbook(); FileOutputStream fos = new FileOutputStream("C:/workbook-bad.xls") ) { Sheet sheet = wb.createSheet("Sheet"); Row row = sheet.createRow(0); row.createCell(0).setCellValue("Aaaaaaaaaa"); row.createCell(1).setCellValue("-2+3 +cmd|'/C calc'!G20"); wb.write(fos); } } } Then open the resulting file: And follow these steps: Click on (A) to select the cell with malicious content Click on (B) so that the cursor is in the formula editor Press ENTER You will be asked if you allow Excel to run an external application; if you answer yes, Calc is launched (or any malicious code) One may say that the user is responsible for letting Excel run arbitrary things and the user was warned. But still, the Excel is downloaded from a trusted source and someone may fall into the trap. Using Excel, you can place a single quote in front of the text in the formula editor to escape it. Placing the single quote in the cell content programmatically (e.g. code as below) makes the single quote visible! String cellValue = cell.getStringCellValue(); if( cellValue != null && "=-+@".indexOf(cellValue.charAt(0)) >= 0 ) { cell.setCellValue("'" + cellValue); } The question: Is there a way to keep the value escaped in the formula editor, but show the correct value, without the leading single quote, in the cell? See http://stackoverflow.com/questions/39806098/adding-cell-with-quoteprefix-in-poi/39808020#39808020 for XSSF (*.xlsx). No clue how for HSSF (*.xls). Thank you @AxelRichter for pointing the way to go, i.e. the style. Digging into debug, it seems that what I want can be accomplished by using ExtendedFormatRecord.set123Prefix(true). The problems of course is (1) this is undocumented and (2) the ExtendedFormatRecord _format field of HSSFCellStyle is private without any accessor! The remaining options seem to be to either switch to xlsx format, file a change request in the POI project, or hack :) Unless of course there is another solution I am not aware of. Would you expect to find a suitable method on CellStyle called set123Prefix(true) (as with low level HSSF) or setQuotePrefix(true) (as with low level XSSF) - before we go add it based on Axel's hard investigation work! Hi @Gagravarr, thanks for the attention. I am not familiar with the semantics of "123prefix". Actually I found it while debugging and stepping into POI code and observing the various bit operations. So, if I am representative of the average user, I would say "123prefix" is not a good name. On the other hand setQuotePrefix() is descriptive and in line with XSSF, so I definitely vote for it. Thanks to the hard work investigating of Axel Richter here and Nikos Paraskevopoulos here.... From Apache POI 3.16 beta 1 onwards (or for those who live dangerously, any nightly build after 20161105), there are handy methods on CellStyle for getQuotePrefixed and setQuotePrefixed(boolean) Your code could then become: // Do this once for the workbook CellStyle safeFormulaStyle = workbook.createCellStyle(); safeFormulaStyle.setQuotePrefixed(true); // Per cell String cellValue = cell.getStringCellValue(); if( cellValue != null && "=-+@".indexOf(cellValue.charAt(0)) >= 0 ) { cell.setCellStyle(safeFormulaStyle); } It would be better to Trim field before checking first char. Thanks to the instant (kudos) response from the POI team (see accepted answer), this solution should be obsolete. Keeping it as a reference, could be useful in cases an upgrade to POI >= 3.16 is not possible. Thanks to the comment of Axel Richter (for which I am very-very thankful) I managed to work out a solution. It is definitely NOT as straightforward as in the case of XLSX files (XSSFWorkbook), because it involves creating the org.apache.poi.hssf.model.InternalWorkbook by hand; this class is marked as @Internal by the POI project, but is public as far as Java is concerned. Additionally, the field that is set to correct the problem, i.e. ExtendedFormatRecord.set123Prefix(true) is not documented! Here is the solution, for what it's worth - compare it with the code in the question: import java.io.FileOutputStream; import org.apache.poi.hssf.model.InternalWorkbook; import org.apache.poi.hssf.record.ExtendedFormatRecord; import org.apache.poi.hssf.usermodel.HSSFCellStyle; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; public class GoodWorkbookCreator { public static void main(String[] args) throws Exception { InternalWorkbook internalWorkbook = InternalWorkbook.createWorkbook(); try( HSSFWorkbook wb = HSSFWorkbook.create(internalWorkbook); FileOutputStream fos = new FileOutputStream("C:/workbook-good.xls") ) { HSSFCellStyle style = (HSSFCellStyle) wb.createCellStyle(); ExtendedFormatRecord xfr = internalWorkbook.getExFormatAt(internalWorkbook.getNumExFormats() - 1); xfr.set123Prefix(true); // THIS IS WHAT IT IS ALL ABOUT Sheet sheet = wb.createSheet("Sheet"); Row row = sheet.createRow(0); row.createCell(0).setCellValue("Aaaaaaaaaa"); row.createCell(1).setCellValue("-2+3 +cmd|'/C calc'!G20"); Cell cell = row.createCell(2); cell.setCellValue("-2+3 +cmd|'/C calc'!G20"); cell.setCellStyle(style); wb.write(fos); } } }
4,686
https://stackoverflow.com/questions/57624350
StackExchange
Open Web
CC-By-SA
2,019
Stack Exchange
Chelmy88, Rui Barradas, https://stackoverflow.com/users/10695259, https://stackoverflow.com/users/11890657, https://stackoverflow.com/users/8245406, yaennu.s
English
Spoken
690
2,590
Error when trying to install installr in R Studio My goal is to install shiny but it fails because the package rlang can not be installed, so I tried to update my R version because I read this can solve already a few problems. But I failed to update because I have the same issue with installing installr. How ironic... Here are my session infos: sessionInfo() R version 3.2.1 (2015-06-18) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows x64 (build 18362) locale: [1] LC_COLLATE=German_Switzerland.1252 LC_CTYPE=German_Switzerland.1252 LC_MONETARY=German_Switzerland.1252 [4] LC_NUMERIC=C LC_TIME=German_Switzerland.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] tools_3.2.1 Here is the error message when i am trying to install installr: > install.packages("installr") Installing package into ‘C:/Users/yannick.schwarz/Documents/R/win-library/3.2’ (as ‘lib’ is unspecified) also installing the dependencies ‘stringi’, ‘stringr’ Es gibt Binärversionen, jedoch sind die Quelltexte neuer: binary source needs_compilation stringi 1.1.5 1.4.3 TRUE stringr 1.2.0 1.4.0 FALSE installr 0.18.0 0.22.0 FALSE Möchten Sie versuchen, das Paket aus den Quelltexten zu installieren, was eine Kompilierung erfordert? y/n: y installing the source packages ‘stringi’, ‘stringr’, ‘installr’ trying URL 'https://cran.rstudio.com/src/contrib/stringi_1.4.3.tar.gz' Content type 'application/x-gzip' length 7290890 bytes (7.0 MB) downloaded 7.0 MB trying URL 'https://cran.rstudio.com/src/contrib/stringr_1.4.0.tar.gz' Content type 'application/x-gzip' length 135777 bytes (132 KB) downloaded 132 KB trying URL 'https://cran.rstudio.com/src/contrib/installr_0.22.0.tar.gz' Content type 'application/x-gzip' length 146544 bytes (143 KB) downloaded 143 KB * installing *source* package 'stringi' ... ** Paket 'stringi' erfolgreich entpackt und MD5 Summen überprüft ** libs *** arch - i386 g++ -m32 -std=c++0x -I"C:/PROGRA~1/R/R-32~1.1/include" -DNDEBUG -I. -Iicu61/ -Iicu61/unicode -Iicu61/common -Iicu61/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONFIG_USE_LOCAL -DU_TOOLUTIL_IMPLEMENTATION -DNDEBUG -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DU_USE_STRTOD_L=0 -I"d:/RCompile/r-compiling/local/local320/include" -O2 -Wall -mtune=core2 -c stri_ICU_settings.cpp -o stri_ICU_settings.o In file included from icu61/unicode/brkiter.h:47:0, from stri_external.h:60, from stri_stringi.h:36, from stri_ICU_settings.cpp:33: icu61/unicode/unistr.h: In constructor 'icu_61_stringi::UnicodeString::UnicodeString(const uint16_t*)': icu61/unicode/unistr.h:3010:7: error: type 'icu_61_stringi::UnicodeString' is not a direct base of 'icu_61_stringi::UnicodeString' icu61/unicode/unistr.h: In constructor 'icu_61_stringi::UnicodeString::UnicodeString(const wchar_t*)': icu61/unicode/unistr.h:3026:7: error: type 'icu_61_stringi::UnicodeString' is not a direct base of 'icu_61_stringi::UnicodeString' icu61/unicode/unistr.h: In constructor 'icu_61_stringi::UnicodeString::UnicodeString(const uint16_t*, int32_t)': icu61/unicode/unistr.h:3060:7: error: type 'icu_61_stringi::UnicodeString' is not a direct base of 'icu_61_stringi::UnicodeString' icu61/unicode/unistr.h: In constructor 'icu_61_stringi::UnicodeString::UnicodeString(const wchar_t*, int32_t)': icu61/unicode/unistr.h:3073:7: error: type 'icu_61_stringi::UnicodeString' is not a direct base of 'icu_61_stringi::UnicodeString' icu61/unicode/unistr.h: In constructor 'icu_61_stringi::UnicodeString::UnicodeString(uint16_t*, int32_t, int32_t)': icu61/unicode/unistr.h:3141:7: error: type 'icu_61_stringi::UnicodeString' is not a direct base of 'icu_61_stringi::UnicodeString' icu61/unicode/unistr.h: In constructor 'icu_61_stringi::UnicodeString::UnicodeString(wchar_t*, int32_t, int32_t)': icu61/unicode/unistr.h:3155:7: error: type 'icu_61_stringi::UnicodeString' is not a direct base of 'icu_61_stringi::UnicodeString' make: *** [stri_ICU_settings.o] Error 1 Warnung: Ausführung von Kommando 'make -f "Makevars.win" -f "C:/PROGRA~1/R/R-32~1.1/etc/i386/Makeconf" -f "C:/PROGRA~1/R/R-32~1.1/share/make/winshlib.mk" CXX='$(CXX1X) $(CXX1XSTD)' CXXFLAGS='$(CXX1XFLAGS)' CXXPICFLAGS='$(CXX1XPICFLAGS)' SHLIB_LDFLAGS='$(SHLIB_CXX1XLDFLAGS)' SHLIB_LD='$(SHLIB_CXX1XLD)' SHLIB="stringi.dll" ' ergab Status 2 ERROR: compilation failed for package 'stringi' * removing 'C:/Users/yannick.schwarz/Documents/R/win-library/3.2/stringi' * restoring previous 'C:/Users/yannick.schwarz/Documents/R/win-library/3.2/stringi' Warning in install.packages : running command '"C:/PROGRA~1/R/R-32~1.1/bin/x64/R" CMD INSTALL -l "C:\Users\yannick.schwarz\Documents\R\win-library\3.2" C:\Users\YANNIC~1.SCH\AppData\Local\Temp\RtmpKSUt2L/downloaded_packages/stringi_1.4.3.tar.gz' had status 1 Warning in install.packages : installation of package ‘stringi’ had non-zero exit status * installing *source* package 'stringr' ... ** Paket 'stringr' erfolgreich entpackt und MD5 Summen überprüft ** R ** data *** moving datasets to lazyload DB ** inst ** preparing package for lazy loading Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : namespace 'stringi' 1.1.5 is being loaded, but >= 1.1.7 is required ERROR: lazy loading failed for package 'stringr' * removing 'C:/Users/yannick.schwarz/Documents/R/win-library/3.2/stringr' Warning in install.packages : running command '"C:/PROGRA~1/R/R-32~1.1/bin/x64/R" CMD INSTALL -l "C:\Users\yannick.schwarz\Documents\R\win-library\3.2" C:\Users\YANNIC~1.SCH\AppData\Local\Temp\RtmpKSUt2L/downloaded_packages/stringr_1.4.0.tar.gz' had status 1 Warning in install.packages : installation of package ‘stringr’ had non-zero exit status ERROR: dependency 'stringr' is not available for package 'installr' * removing 'C:/Users/yannick.schwarz/Documents/R/win-library/3.2/installr' Warning in install.packages : running command '"C:/PROGRA~1/R/R-32~1.1/bin/x64/R" CMD INSTALL -l "C:\Users\yannick.schwarz\Documents\R\win-library\3.2" C:\Users\YANNIC~1.SCH\AppData\Local\Temp\RtmpKSUt2L/downloaded_packages/installr_0.22.0.tar.gz' had status 1 Warning in install.packages : installation of package ‘installr’ had non-zero exit status The downloaded source packages are in ‘C:\Users\yannick.schwarz\AppData\Local\Temp\RtmpKSUt2L\downloaded_packages’ Please help me. I know there is a ton of similar questions out in the web, but I did not find anything that helped me so far. Thanks in advance! What if you re-install R (not RStudio), then remove RStudio and re-install a more recent version? R version 3.2.1 (2015-06-18). That's over 4 years ago, an eternity in computer years. If you cannot update your version of R, like @Chelmy88 suggested, try installing archived versions of the packages you want. Thanks! So I have to bother my the IT support, because I do not have admin rights to install it, but thanks for the tipp!
32,743
https://ceb.wikipedia.org/wiki/Inocybe%20salicis-herbaceae
Wikipedia
Open Web
CC-By-SA
2,023
Inocybe salicis-herbaceae
https://ceb.wikipedia.org/w/index.php?title=Inocybe salicis-herbaceae&action=history
Cebuano
Spoken
47
96
Kaliwatan sa uhong ang Inocybe salicis-herbaceae. sakop sa ka-ulo nga Basidiomycota, ug Una ning gihulagway ni Robert Kühner ni adtong 1988. Ang Inocybe salicis-herbaceae sakop sa kahenera nga Inocybe, ug kabanay nga Inocybaceae. Walay nalista nga matang nga sama niini. Ang mga gi basihan niini Abungawg-uhong Inocybe
34,376
https://ceb.wikipedia.org/wiki/Arroyo%20Contreras%20%28suba%20nga%20anhianhi%20sa%20Mehiko%2C%20Estado%20de%20Zacatecas%29
Wikipedia
Open Web
CC-By-SA
2,023
Arroyo Contreras (suba nga anhianhi sa Mehiko, Estado de Zacatecas)
https://ceb.wikipedia.org/w/index.php?title=Arroyo Contreras (suba nga anhianhi sa Mehiko, Estado de Zacatecas)&action=history
Cebuano
Spoken
95
158
Alang sa ubang mga dapit sa mao gihapon nga ngalan, tan-awa ang Arroyo Contreras. Suba nga anhianhi ang Arroyo Contreras sa Mehiko. Nahimutang ni sa estado sa Estado de Zacatecas, sa sentro nga bahin sa nasod, km sa amihanan-kasadpan sa Mexico City ang ulohan sa nasod. Ang kasarangang giiniton °C. Ang kinainitan nga bulan Mayo, sa  °C, ug ang kinabugnawan Enero, sa  °C. Ang kasarangang pag-ulan milimetro matag tuig. Ang kinabasaan nga bulan Septiyembre, sa milimetro nga ulan, ug ang kinaugahan Abril, sa milimetro. Ang mga gi basihan niini Mga suba sa Estado de Zacatecas
44,582
https://de.wikipedia.org/wiki/Red%20Hook%20%28Town%29
Wikipedia
Open Web
CC-By-SA
2,023
Red Hook (Town)
https://de.wikipedia.org/w/index.php?title=Red Hook (Town)&action=history
German
Spoken
711
1,305
Red Hook ist eine Town im Dutchess County. Das U.S. Census Bureau hat bei der Volkszählung 2020 eine Einwohnerzahl von 9.953 ermittelt. Innerhalb des Towngebietes liegen zwei inkorporierte Villages, das eine heißt ebenfalls Red Hook und das andere Tivoli. Der U.S. Highway 9 führt durch das Gebiet der Town, die im nordwestlichen Teil des Countys liegt. Zum Stadtgebiet gehören das Bard College im Weiler Annandale-on-Hudson und das Unification Theological Seminary im Weiler Barrytown. Geographie Nach den Angaben des United States Census Bureau hat die Town eine Fläche von 103,9 km², wovon 95,1 km² auf Land und 8,8 km² (= 8,48 %) auf Gewässer entfallen. Die nördliche Stadtgrenze bildet zugleich die Grenze zwischen Dutchess County und Columbia County, die westliche Grenze bildet der Hudson River, der hier das Dutchess County vom Ulster County trennt. Der U.S. Highway 9 und mehrere State Routes führen durch Red Hook, etwa die New York State Route 9G und die New York State Route 199. Geschichte Die Region wurde Ende des 17. Jahrhunderts unter dem Schuyler Patent besiedelt. Die ortsansässigen Indianer wurden um ihr Land betrogen, weil sie das in Niederländisch abgefasste Dokument nicht lesen konnten. Bis 1812 war Red Hook Teil der Town of Rhinebeck. Weil Rhinebeck, wie einige andere Towns in New York, mehr als 5000 Einwohner hatte, genehmigte die Regierung in Albany am 12. Juni 1812 die Aufteilung. Die erste dokumentierte Bürgerversammlung der Town of Red Hook fand am 6. April 1813 statt und wurde seitdem, wie vom Gesetz gefordert, jährlich wiederholt. Die Red Hook Society for the Apprehension and Detention of Horse Thieves gilt als eine der ältesten Organisationen im Bundesstaat New York und trifft einmal jährlich zusammen. Demographie Zum Zeitpunkt des United States Census 2000 bewohnten Red Hook 10.408 Personen. Die Bevölkerungsdichte betrug 109,5 Personen pro km². Es gab 3840 Wohneinheiten, durchschnittlich 40,4 pro km². Die Bevölkerung Red Hooks bestand zu 94,20 % aus Weißen, 1,44 % Schwarzen oder African American, 0,08 % Native American, 2,08 % Asian, 0,11 % Pacific Islander, 0,65 % gaben an, anderen Rassen anzugehören und 1,45 % nannten zwei oder mehr Rassen. 2,65 % der Bevölkerung erklärten, Hispanos oder Latinos jeglicher Rasse zu sein. Die Bewohner Red Hooks verteilten sich auf 3574 Haushalte, von denen in 35,5 % Kinder unter 18 Jahren lebten. 56,5 % der Haushalte stellten Verheiratete, 9,3 % hatten einen weiblichen Haushaltsvorstand ohne Ehemann und 30,8 % bildeten keine Familien. 23,4 % der Haushalte bestanden aus Einzelpersonen und in 9,1 % aller Haushalte lebte jemand im Alter von 65 Jahren oder mehr alleine. Die durchschnittliche Haushaltsgröße betrug 2,63 und die durchschnittliche Familiengröße 3,14 Personen. Die Bevölkerung verteilte sich auf 24,9 % Minderjährige, 15,0 % 18–24-Jährige, 25,8 % 25–44-Jährige, 22,6 % 45–64-Jährige und 11,7 % im Alter von 65 Jahren oder mehr. Das Durchschnittsalter betrug 36 Jahre. Auf jeweils 100 Frauen entfielen 94,5 Männer. Bei den über 18-Jährigen entfielen auf 100 Frauen 89,0 Männer. Das mittlere Haushaltseinkommen in Red Hook betrug 46.701 US-Dollar und das mittlere Familieneinkommen erreichte die Höhe von 57.473 US-Dollar. Das Durchschnittseinkommen der Männer betrug 42.099 US-Dollar, gegenüber 26.694 US-Dollar bei den Frauen. Das Pro-Kopf-Einkommen belief sich auf 20.410 US-Dollar. 8,7 % der Bevölkerung und 5,0 % der Familien hatten ein Einkommen unterhalb der Armutsgrenze, davon waren 7,8 % der Minderjährigen und 5,2 % der Altersgruppe 65 Jahre und mehr betroffen. Siedlungen und andere geographische Orte Annandale-on-Hudson, ein Weiler am Hudson River im Nordwesten des Stadtgebiets Barrytown, ein Weiler südlich von Annandale-on-Hudson; der Herrensitz Montgomery Place liegt hier Cokertown, ein Weiler im Nordosten an der County Route 56 College Park, ein Wohngebiet östlich des Bard Colleges Fraleighs, ein Weiler im Osten Kerleys Corners, ein Weiler an der Kreuzung von US 9 und County Route 78 Linden Acres, eine Wohnsiedlung nordwestlich des Villages of Red Hook Village of Red Hook Red Hook Mills, ein Weiler nördlich des Villages of Red Hook Spring Lakes, ein Weiler an der County Route 55 Tivoli, ein Village im Nordwesten der Town am Hudson River, auf der Westseite der NY 9G Upper Red Hook, ein Hamlet im Norden des Village of Red Hook Nennenswerte Bewohner Robert Sheckley, Science-Fiction-Schriftsteller Joseph G. Masten, Bürgermeister von Buffalo (1843–1844 und 1845–1846) wurde hier geboren. Weblinks Town of Red Hook Red Hook Public Library Red Hook Fire Company Einzelnachweise Ort am Hudson River
49,621
https://es.wikipedia.org/wiki/Challenger%20de%20Prost%C4%9Bjov%202013
Wikipedia
Open Web
CC-By-SA
2,023
Challenger de Prostějov 2013
https://es.wikipedia.org/w/index.php?title=Challenger de Prostějov 2013&action=history
Spanish
Spoken
254
527
El UniCredit Czech Open 2013 fue un torneo de tenis profesional que se jugó en canchas de arcilla. Se trató de la vigésima edición del torneo que forma parte del ATP Challenger Tour 2013 . Está tuvo lugar en Prostejov , República Checa entre el 3 y el 9 de junio de 2013. Jugadores participantes del cuadro de individuales Cabezas de serie 1 Se ha tomado en cuenta el ranking del 27 de mayo de 2013. Otros participantes Los siguientes jugadores recibieron una invitación (wild card), por lo tanto ingresan directamente al cuadro principal (WC): Florian Mayer Lukas Rosol Jarkko Nieminen Radek Stepanek Los siguientes jugadores ingresan al cuadro principal tras disputar el cuadro clasificatorio (Q): Miloslav Mečíř Mateusz Kowalczyk Ivo Minář Jaroslav Pospíšil Los siguientes jugadores ingresaron al cuadro principal como lucky losers: Damir Džumhur Dušan Lojda Jordi Samper Marek Semjan Jugadores participantes en el cuadro de dobles Cabezas de serie 1 Se ha tomado en cuenta el ranking del 27 de mayo de 2013. Otros participantes Los siguientes jugadores recibieron una invitación (wild card), por lo tanto ingresan directamente al cuadro principal: Marek Jaloviec / Vaclav Safranek Michal Konečný / Adam Pavlasek Jaroslav Levinský / Dušan Lojda Campeones Individual Masculino Radek Štěpánek derrotó en la final a Jiří Veselý por 6-4, 6-2. Dobles Masculino Nicholas Monroe / Simon Stadler derrotaron en la final a Mateusz Kowalczyk / Lukáš Rosol, 6–4, 6–4 Enlaces externos Sitio oficial ATP Challenger Tour 2013 Tenis en 2013 Torneos de tenis en tierra batida Challenger de Prostejov 2013
43,617
https://stackoverflow.com/questions/22120566
StackExchange
Open Web
CC-By-SA
2,014
Stack Exchange
https://stackoverflow.com/users/1410465, svarog
English
Spoken
223
493
Problems using bootstrap modals : bad line I am creating in my website a login button which opens a modal. B/c i have to load its content via AJAX, I initialize one using bootbox. Then I put the content loaded in my modal. But the line which should be on the top of the footer is in the middle. If I try to copy the final html using Firefox's development tools, it works. If I unlink all stylesheets but bootstwatch's theme, same problem. Here is the js : $('#login').click(function(event) { event.preventDefault(); bootbox.dialog({ message: '<img class="col-md-4 col-md-offset-4" src="/images/load/spinner-256.gif" />', title: "Please login", buttons: { 'cancel':{ label: 'cancel', className: 'btn-link' } } }); $('.bootbox-body').addClass('loading-bb'); $.ajax({ url: '/api/ajax/login', success: function(data) { $('.bootbox-body').html(data) $('.bootbox-body').removeClass('loading-bb'); } }) }) You might also want to see the working example: http://polar-wave-4072.herokuapp.com/ That horizontal line belongs to the .modal-footer element. It is a top border applied to the footer element. However, the issue is that you've used a column col-md-12 directly within the .bootbox-body element. Columns are floated to left by default (for width > 992px). Hence you have to clear the float at the end of the modal body, simply by adding a row class to the .bootbox-body or .modal-body element, as follows: <div class="bootbox-body row"> <form class="form-horizontal col-md-12" method="post"> .... </div> If only I had found your answer sooner !!
31,295
https://en.wikipedia.org/wiki/Phobetus%20comatus
Wikipedia
Open Web
CC-By-SA
2,023
Phobetus comatus
https://en.wikipedia.org/w/index.php?title=Phobetus comatus&action=history
English
Spoken
36
69
Phobetus comatus, commonly known as Robinson's rain scarab, is a species of scarab beetle in the family Scarabaeidae. It is found in North America. References Further reading Melolonthinae Articles created by Qbugbot Beetles described in 1856
975
https://gaming.stackexchange.com/questions/347977
StackExchange
Open Web
CC-By-SA
2,019
Stack Exchange
Jonathan, Smock, https://gaming.stackexchange.com/users/228394, https://gaming.stackexchange.com/users/83800
English
Spoken
695
1,427
In Apex Legends, Players are very jerky/laggy, stuttering players TLDR; network sucks, framerate great The game RENDERS at about 40fps, which is fine, but the players move at about 3 FPS. I'm certain it's not a framerate issue as I can still look around and it runs at a buttery 45 FPS at all times regardless, but all the other players jolt, it's like they freeze, then skip forward, then freeze, then skip forward. It makes it really hard to enjoy combat. It happens with enemies, and teammates. it's almost as if there's really high packet loss or something. It happens constantly about every half a second. Voice chat is also distorted and choppy in the game, but not in discord. And as far as I can tell, no other games are affected. They are all buttery smooth networking, but not Apex Legends. It's a nightmare to play. The enemy stops & starts so much I can't fight. I'm on a wired network connection. My Data Centers ping looks good (I'm in Los Angeles) My Internet connection is solid nVidia Dump: NVIDIA System Information report created on: 03/19/2019 17:47:34 System name: JONNYSDESKTOP [Display] Operating System: Windows 10 Pro, 64-bit DirectX version: 12.0 GPU processor: GeForce GTX 1050 Ti Driver version: 416.94 Driver Type: Standard Direct3D API version: 12 Direct3D feature level: 12_1 CUDA Cores: 768 Core clock: 1354 MHz Memory data rate: 7008 MHz Memory interface: 128-bit Memory bandwidth: 112.13 GB/s Total available graphics memory: 12261 MB Dedicated video memory: 4096 MB GDDR5 System video memory: 0 MB Shared system memory: 8165 MB Video BIOS version: 86.07.22.00.50 IRQ: Not used Bus: PCI Express x8 Gen2 Device Id: 10DE 1C82 62533842 Part Number: G210 0000 [Components] nvui.dll 8.17.14.1694 NVIDIA User Experience Driver Component nvxdplcy.dll 8.17.14.1694 NVIDIA User Experience Driver Component nvxdbat.dll 8.17.14.1694 NVIDIA User Experience Driver Component nvxdapix.dll 8.17.14.1694 NVIDIA User Experience Driver Component NVCPL.DLL 8.17.14.1694 NVIDIA User Experience Driver Component nvCplUIR.dll 8.1.940.0 NVIDIA Control Panel nvCplUI.exe 8.1.940.0 NVIDIA Control Panel nvWSSR.dll 25.21.14.1694 NVIDIA Workstation Server nvWSS.dll 25.21.14.1694 NVIDIA Workstation Server nvViTvSR.dll 25.21.14.1694 NVIDIA Video Server nvViTvS.dll 25.21.14.1694 NVIDIA Video Server NVSTVIEW.EXE 7.17.14.1694 NVIDIA 3D Vision Photo Viewer NVSTTEST.EXE 7.17.14.1694 NVIDIA 3D Vision Test Application NVSTRES.DLL 7.17.14.1694 NVIDIA 3D Vision Module nvDispSR.dll 25.21.14.1694 NVIDIA Display Server NVMCTRAY.DLL 25.21.14.1694 NVIDIA Media Center Library nvDispS.dll 25.21.14.1694 NVIDIA Display Server PhysX 09.11.1111 NVIDIA PhysX NVCUDA.DLL 25.21.14.1694 NVIDIA CUDA 10.0.132 driver nvGameSR.dll 25.21.14.1694 NVIDIA 3D Settings Server nvGameS.dll 25.21.14.1694 NVIDIA 3D Settings Server [Licenses] 3DTV Play Plenty of RAM: Looking at that datacenter list though, there's some on there with rather high packet loss! @smock good point! How do i debug that? Ping seems to return perfectly 100% out of game on cmd console I'm sure I've seen some people use pingtrace or pingplotter - but unsure if there are free versions ?? They help you identify which server along the route is the problem. Perhaps a node along the way is traffic shaping, or overloaded for bulk traffic You know what, it may also be related to dropping larger packets. I have only tested pinging with small packets. I'll try fiddling with some large packet testing tools & report back Ping should have an option to specify packet size. Ping -l (X) what is your router MTU set to? IDK, but MTU should just change throttling not actually drop packets, right? Anyway this diagnosed it https://superuser.com/a/1445371/234051 That packet loss percentage should have gave it away. It wasn't an issue with Apex Legends. When I finally saw it in another game I knew. Pings may not show packet loss unless you send large pings! I had packet loss on my network that was invisible until I upped my ping packet size. For windows open a command prompt and run: ping -n 30 -l <largevalue> <target> For largevalue I used 40960 (40k packet) For target I used the first few IP addresses from tracert google.com (which was my routers & cable modem). One of the devices further down the chain had terrible packet loss (>60%) for large packets but 0% for small. I fixed it by restarting it but it could also be a cable or something internal that needs replacing.
5,377
https://tr.wikipedia.org/wiki/Zimbabve%20armas%C4%B1
Wikipedia
Open Web
CC-By-SA
2,023
Zimbabve arması
https://tr.wikipedia.org/w/index.php?title=Zimbabve arması&action=history
Turkish
Spoken
265
814
Zimbabve arması, Afrika ülkesi Zimbabve tarafından kullanılan resmî devlet armasıdır. Ülkenin bağımsızlığı kazanmasından sonra 21 Eylül 1981 tarihinde kabul edilerek resmî arma olarak kullanılmaya başlanmış ve bir yıl önce bağımsızlığına kavuşan yeni ülkenin resmî devlet arması olmuştur. Armanın orta bölümünde yer alan kalkan ikiye bölünmüş bir konumda olup, kalkanın üçte birlik bölümüne kaplayan üst kısmında Victoria Şelalesi'ni simgeleyen dikey dalgalı mavi ve beyaz dalgalar yer almaktadır. Kalkanın üçte ikisini kapsayan ve yeşil bir zemine sahip olan diğer bölümünde ise Zimbabve'de bulunan ve Büyük Zimbabve olarak adlandırılan, güney Afrika bölgesinin en büyük tarihi eser kalıntılarına rastlanan sömürge dönemi öncesi taş yapıtların bulunduğu ve ülke için büyük öneme sahip olan bölgeyi ifade etmek üzere gri tonlarda kaya konumlandırılmıştır. Kalkanın üst kısmına yerleştirilmiş olan sarı ve yeşil renklere sahip miğfer kabartmasının arkasında çapraz bir şekilde konumlandırılan silah ve çapa gözükmekte olup, bunların alt kısımları da kalkanın alt bölümünde görülebilmektedir. Miğfer kabartmasının üzerine sarı renge sahip olan ve ülke için büyük öneme sahip olan Zimbabve Kuşu yer almaktadır. Taş yapıtların bulunduğu tarihi eser kalıntıların yer aldığı bölgedeki mağaralarda rastlanan çizimlerde tavuksular ailesine ait olduğu tahmin edilen kuş figürü bulunmuş ve bu ülkenin sembolü olarak kullanılmaya başlanmıştır. Zimbabve kuşunun arka kısmında ise beş köşeli kırmızı yıldız konumlandırılmıştır. Kalkanı her iki tarafından da tutan iki adet kudu yer almaktadır. Kalkanın ve kuduların üzerinde durduğu kaide de savan simgelenmekte olup, kalkanın bittiği noktada çalı, pamuk ve mısır koçanı gözlemlenmektedir. Armanın alt kısmında yer alan ve gümüş zemine sahip slogan bandında ise Unity, Freedom, Work (Türkçe:Birlik, Özgürlük, Çalışma) yazmaktadır. Ayrıca bakınız Zimbabve bayrağı Dış bağlantılar Zimbabve arması hakkında bilgiler (Almanca/İngilizce) arma Ulusal armalar
19,784
https://nl.wikipedia.org/wiki/NGC%204226
Wikipedia
Open Web
CC-By-SA
2,023
NGC 4226
https://nl.wikipedia.org/w/index.php?title=NGC 4226&action=history
Dutch
Spoken
53
148
NGC 4226 is een spiraalvormig sterrenstelsel in het sterrenbeeld Jachthonden. Het hemelobject werd op 19 maart 1828 ontdekt door de Britse astronoom John Herschel. Synoniemen UGC 7297 MCG 8-22-90 ZWG 243.57 PGC 39312 Zie ook Lijst van NGC-objecten Externe links NASA/IPAC Extragalactic Database SIMBAD Astronomical Database SEDS NGC-object in Jachthonden Sterrenstelsel in Jachthonden
24,474
https://zh.wikipedia.org/wiki/%E6%9D%9C%E5%9C%8B%E6%B8%85
Wikipedia
Open Web
CC-By-SA
2,023
杜國清
https://zh.wikipedia.org/w/index.php?title=杜國清&action=history
Chinese
Spoken
77
1,699
杜國清(),台灣台中豐原人。詩人,學者,翻譯家。畢業於台灣大學外文系,美國圣塔芭芭拉加州大學東亞系教授,2003年起任圣塔芭芭拉加州大學「賴和吳濁流講座教授」。主持「台灣研究中心」,出版有《台灣文學英譯叢刊》(Taiwan Literature: English Translation Series)等系列刊物。詩人陳千武是其表姊夫。 生平 1959年,杜國清進入台灣大學哲學系,一年後轉入外文系,1963年畢業於台灣大學外文系。在大學期間,杜國清即開始創作詩歌,并從事詩歌翻譯。1966年,杜國清赴日本關西學院大學攻讀碩士學位,后完成碩士論文《西脇順三郎的詩與詩學》。1970年,杜國清赴美國斯坦福大學,師從劉若愚攻讀博士學位。1974年獲得博士學位,執教于圣塔芭芭拉加州大學。 著作 詩集與評論 《蛙鳴集》,台灣現代文學雜誌社,1963年。 《島與湖》,台灣笠詩社,1965年。 《雪崩》,台灣笠詩社,1972年。 《伊影集》,台灣笠詩社,1974年。 《望月》,台灣爾雅出版社,1978年。 《Li Ho》,世界作家叢書(Twayne‘s World Authors Series),1979年。 《西脇順三郎的詩與詩學》,春暉出版社,1980年。 《心雲集》,時報出版公司,1983年。 《殉美的憂魂》,台灣笠詩社,1986年。 《情劫集》,台灣笠詩社,1990年。 《情劫》,中國文聯出版公司,1991年。 《杜國清作品選集》,台中縣立文化中心,1991年。 《勿忘草》,人民文學出版社,1992年。 《對我,你是危險的存在》,中國文聯出版公司,1996年。 《愛染五夢》,台北桂冠圖書公司,1999年。 《玉煙集》,台大出版中心,2009年。 《山河掠影》,台大出版中心,2009年。 《台灣詩人選集 杜國清集》,台灣文學館,2010年。 《詩論·詩評·詩論詩》,台大出版中心,2010年。 《希臘神弦曲》,日本思潮社,2011年。 《望鄉》,首爾Baum Communications,2014年。 《台灣文學與世華文學》,台大出版中心,2015年。 《光射塵方‧圓照萬象──杜國清的詩情世界》,臺大出版中心,2017年。 散文集 《推窗望月──杜國清散文集》,臺大出版中心,2019年。 譯著 《艾略特文學評論選集》,田園出版社,1969年。 《詩學》(西脇順三郎著),田園出版社,1969年。 《日本現代詩鑑賞》,笠詩刊四十一至五十八期,197102-197312。 《詩的效用與批評的效用》(艾略特著),純文學出版社,1972年。 《惡之華》(波特萊爾著),純文學出版社,1977年。 《中國詩學》(劉若愚著),幼獅出版公司,1977年。 《惡之華》(波特萊爾著),臺大出版中心,2011年。 《中國文學理論》(劉若愚著),聯經出版公司,1981年。 《米洛舒詩選》,遠景出版公司,1982年。 《中國文學理論》(劉若愚著),江蘇教育出版社,2006年。 杜國清作品研究 《尋美的旅人—杜國清論》(汪景壽、白舒榮、楊正犁著),北京大學出版社,1994年。 《愛的秘圖--杜國清情詩論》(王宗法、計璧瑞、汪景壽著),北方文藝出版社,1994年。 《昨夜星辰昨夜風—(玉煙集)綜論》(王宗法著),安徽大學出版社,1998年。 《尋美的旅人—杜國清論》(汪景壽、白舒榮、楊正犁著),台北桂冠圖書公司,1999年。 《愛的秘圖—杜國清情詩論》(王宗法、計璧瑞、汪景壽著),台北桂冠圖書公司,1999年。 參考資料 外部連結 杜國清教授簡介 圣塔芭芭拉加州大學台灣研究中心 尋美的旅人——杜國清論 臺灣男性詩人 臺灣散文作家 臺灣文學評論家 台灣翻譯家 21世紀臺灣作家 21世紀臺灣詩人 20世紀臺灣作家 20世紀臺灣詩人 加利福尼亞大學聖塔芭芭拉分校教師 史丹佛大學校友 關西學院大學校友 國立臺灣大學文學院校友 豐原區人 杜姓 國家文藝獎得主
41,836
https://ja.wikipedia.org/wiki/%E6%9C%88%E5%B7%9D%E7%BF%94
Wikipedia
Open Web
CC-By-SA
2,023
月川翔
https://ja.wikipedia.org/w/index.php?title=月川翔&action=history
Japanese
Spoken
191
1,846
月川 翔(つきかわ しょう、1982年8月5日 - )は、日本の映像ディレクター。東京都出身。STARDUST DIRECTORS所属。 経歴 東京芸術大学大学院映像研究科修了。 成城大学法学部在学中にJCF学生映画祭グランプリなどを受賞。その後、東京芸術大学大学院映像研究科で、黒沢清・北野武教授のもと『心』などを監督。 ウォン・カーウァイ、ソフィア・コッポラらが審査員を務めた「LOUIS VUITTON Journeys Awards 2009」にて審査員グランプリ、また映画『グッドカミング〜トオルとネコ、たまに猫〜』では「Short Shorts Film Festival & Asia 2012」ミュージックShort部門シネマティックアワード・優秀賞を受賞。 映画・テレビドラマの監督、脚本のほか、ミュージックビデオやCMなども手掛けている。 監督作品 長編映画 きっかけはYOU!(2011年) Cheerfu11y(2011年) 携帯彼氏+(2012年) 携帯彼女+(2012年) グッドカミング 〜トオルとネコ、たまに猫〜(2012年) ゴーストバンド(2013年) ビタースウィート〜オトナの交差点(2014年) この世で俺/僕だけ(2015年) 黒崎くんの言いなりになんてならない(2016年) 君と100回目の恋(2017年) 君の膵臓をたべたい(2017年) となりの怪物くん(2018年) センセイ君主(2018年) 響 -HIBIKI-(2018年) 君は月夜に光り輝く(2019年) そして、生きる(2019年) テレビドラマ ボクらが恋愛できない理由(2012年、テレビ東京) みんな!エスパーだよ! 第8話・第9話(2013年、テレビ東京) この世で俺/僕だけ(2013年、BSジャパン) 佐藤家の朝食、鈴木家の夕食(2013年、BSジャパン) 太鼓持ちの達人〜正しい××のほめ方〜 第4話 - 第7話(2015年、テレビ東京) となりの関くんとるみちゃんの事象(2015年、MBS・TBS) ダメな私に恋してください 第5話・第7話(2016年、TBS) そして、生きる(2019年、WOWOW) スイッチ (2020年6月21日、テレビ朝日) Webドラマ 幽☆遊☆白書(2023年、Netflix) ショートムービー LOUIS VUITTON「The time walker」(2009年) LOUIS VUITTON×SPUR「The time walker with IDYLLE」(2010年) モバドラ『4×4(フォー・バイ・フォー)』(2010年) NTT×フジテレビ「電報日和」第1~5話(2011年) docomo「恋するアプリ」(2012年) Heather「Heather LOVE Short Movies」(2012年) ワコール「 Salute Special Movie」(2012年) NOTTV ラヴコンシェル「明日の彼女、あさっての彼」(2012年) UULA 「3年ぶりに会った元カレの件」(2013年) BEAMS「The perfect gift shop BEAMS」(2014年) CM NHK Eテレ「0655 おはようソング 電車で化粧はやめなはれ」 浜松全天周シアター「AGGRESSOR」 ニューギン「戦国武将列伝 伊達政宗」 四国電力 企業広告 丸美屋「こだわり食感 ヒーローショー篇」 ネスレ「キットカット オトナの甘さ」 Samantha Vega ×『ひるなかの流星』 カンロ 「ピュレグミ×君月」 ミュージック・ビデオ 欅坂46「角を曲がる (平手友梨奈)」 TWICE「I Want You Back」 ももいろクローバーZ「泣いてもいいんだよ〜父の日ver」 RADWIMPS「携帯電話」 Every Little Thing「START」 HKT48「泥のメトロノーム」 SKE48「愛のルール」 SPEED「指環」 TEE「電話で抱きしめて」 シクラメン「どんなに どんなに」「101」 シナリオアート「フユウ」 奥華子「冬花火」 FLOW「旅立ちグラフィティ」 K「Brand New Day」 KIDS「38.5℃」 真野恵里菜「NEXT MY SELF」 moumoon「緑の道」 メロライド「ココニアル」「コイノシュラバ」 Rihwa「シュークリーム」 石井杏奈「路面電車に乗れば」「You're my Hero」 吉川友「きっかけはYOU!」 Good Coming「君想う唄」 トミタ栞「17歳の歌」 hinaco「101年後」 Jam9「チャイム」 JEMSTONE「eternal〜永遠人〜」 King & Prince「I promise」(Story ver.) 受賞歴 JCF学生映画祭 2003/グランプリ 東京学生映画祭 2004/準グランプリ LOUIS VUITTON Journeys Awards 2009/審査員グランプリ(「The time walker」) Short Shorts Film Festival & Asia 2012/ミュージックShort部門シネマティックアワード・優秀賞(『グッドカミング~トオルとネコ、たまに猫~』) 第41回 日本アカデミー賞/優秀作品賞(『君の膵臓をたべたい』) 脚注 外部リンク 月川翔 - STARDUST DIRECTORS 日本の映画監督 日本の映像ディレクター 日本のミュージック・ビデオ・ディレクター スターダストプロモーション 成城大学出身の人物 東京芸術大学出身の人物 東京都出身の人物 1982年生 存命人物
8,526
https://stackoverflow.com/questions/42834058
StackExchange
Open Web
CC-By-SA
2,017
Stack Exchange
Atif Tariq, Sean Lange, https://stackoverflow.com/users/3813116, https://stackoverflow.com/users/5633712
Norwegian Nynorsk
Spoken
205
353
Dynamic Queries pass to sql function How can I pass dynamic queries to following function as I want each time data in my main program by providing dynamic case queries. Public Class DBConnection Function MyDBConnection(ByRef sqlquery As String) Dim sCommand As SqlCommand Dim sAdapter As SqlDataAdapter Dim sBuilder As SqlCommandBuilder Dim sDs As DataSet Dim connectionString As String = "Data Source=ATIFTARIQ;Initial Catalog=ABC_University;Integrated Security=True" Dim connection As New SqlConnection(connectionString) connection.Open() sCommand = New SqlCommand(sqlquery, connection) sAdapter = New SqlDataAdapter(sCommand) sBuilder = New SqlCommandBuilder(sAdapter) sDs = New DataSet() sAdapter.Fill(sDs, "Files") connection.Close() Return sDs End Function What is your question? This has the look of a very bad solution to me. It is generally a bad idea to pass your queries to a generic function like this. It is an indication that you are probably not using parameterized queries and instead building up strings and executing them which is vulnerable to sql injection. it will be useful for me to change table and query type as per user need. Well again, this design is a very bad approach as it exposes your system to sql injection. But regardless you still haven't actually asked a question. What are you trying to do and what do you need help with.
24,697
https://uk.wikipedia.org/wiki/%D0%93%D1%80%D0%B8%D0%B2%D0%B0%20%28%D0%93%D0%BE%D0%BC%D0%B5%D0%BB%D1%8C%D1%81%D1%8C%D0%BA%D0%B8%D0%B9%20%D1%80%D0%B0%D0%B9%D0%BE%D0%BD%29
Wikipedia
Open Web
CC-By-SA
2,023
Грива (Гомельський район)
https://uk.wikipedia.org/w/index.php?title=Грива (Гомельський район)&action=history
Ukrainian
Spoken
154
533
Грива () — селище в Поколюбицькій сільській раді Гомельського району Гомельської області Республіки Білорусь. Географія Розташування За 8 км на північ від Гомеля. Транспортна мережа Транспортні зв'язки степовою дорогою. Автомобільна дорога Хальч — Гомель. Планування складається із близької до прямолінійної вулиці майже широтної орієнтації. Забудова двостороння, дерев'яна, садибного типу. Історія Засноване в другій половині XIX століття переселенцями із сусідніх сіл. Найбільш активна забудова припадає на 1920-ті роки. У 1926 році у Лопатинській сільраді Гомельського району Гомельського округу. 1931 року жителі вступили до колгоспу. Під час німецько-радянської війни у жовтні 1943 року німецькі окупанти спалили 63 двори. 1959 року у складі господарства «Лопатинське» (центр — село Лопатине). Населення Чисельність 2004 рік — 72 господарства, 223 мешканці. Динаміка Література Гарады і вёскі Беларусі: Энцыклапедыя. Т.1, кн.1. Гомельская вобласць/С. В. Марцэлеў; Рэдкалегія: Г. П. Пашкоў (галоўны рэдактар) і інш. — Мн.: БелЭн, 2004. 632с.: іл. Тыраж 4000 экз. ISBN 985-11-0303-9 ISBN 985-11-0302-0 Примітки Населені пункти Гомельського району
16,146
https://math.stackexchange.com/questions/1651926
StackExchange
Open Web
CC-By-SA
2,016
Stack Exchange
https://math.stackexchange.com/users/17445, mercio
English
Spoken
245
445
Intersections of connected components of real curves Let $C_1,C_2\subset \mathbb{P}^2(\mathbb{R})$ be real algebraic curves each of degree $d$. By Bezout's Theorem these curves have at most $d^2$ points of intercestion. Since we are in the real case, each of the two curves may be a union of connected components. (By Harnack's theorem each of the curve may be decomposed into $\frac{(d-1)(d-2)}{2}+1$ may connected components.) Now I wonder, what can be said about the number of intersections of the various connected components. For example, suppose that $C_1$ has only one connected component but $C_2$ has two of them. Is it then possible that $C_1$ has $d^2$ many intersections wit onlyh one of the connected components of $C_2$? In can happen in the $d=2$ case : pick $3$ points on the same branch of a hyperbola, and draw their circumscribed circle. (though the branches are connected through $\Bbb P^2(\Bbb R)$ so idk if that counts) This makes me think of Harnack's construction (cf. Bochnak, Coste, Roy: Real algebraic geometry, Proposition 11.6.3): $C_2$ is an $M$-curve of any degree $d$, i.e., having the maximal number of connected components in degree $d$, such that there is a real projective line $L$ intersecting one connected component of $C_2$ in $d$ real points. Now take generic real projective lines $L_1,\ldots,L_d$ sufficiently close to $L$ and let $C_1$ be a suitable perturbation of their union. Then $C_1$ intersects $C_2$ in $d^2$ real points, all of them on one connected component of $C_2$.
29,114
https://ceb.wikipedia.org/wiki/Rhynchalastor%20accinctus
Wikipedia
Open Web
CC-By-SA
2,023
Rhynchalastor accinctus
https://ceb.wikipedia.org/w/index.php?title=Rhynchalastor accinctus&action=history
Cebuano
Spoken
42
79
Kaliwatan sa insekto ang Rhynchalastor accinctus. Una ning gihulagway ni Richard Mitchell Bohart ni adtong 1980. Ang Rhynchalastor accinctus sakop sa kahenera nga Rhynchalastor, ug kabanay nga Eumenidae. Walay nalista nga matang nga sama niini. Ang mga gi basihan niini Insekto Rhynchalastor
39,891
https://nl.wikipedia.org/wiki/Monochamus%20binigricollis
Wikipedia
Open Web
CC-By-SA
2,023
Monochamus binigricollis
https://nl.wikipedia.org/w/index.php?title=Monochamus binigricollis&action=history
Dutch
Spoken
29
58
Monochamus binigricollis is een keversoort uit de familie van de boktorren (Cerambycidae). De wetenschappelijke naam van de soort werd voor het eerst geldig gepubliceerd in 1965 door Breuning. binigricollis
9,208
https://sv.wikipedia.org/wiki/Bure%C3%A5%20kommunala%20realskola
Wikipedia
Open Web
CC-By-SA
2,023
Bureå kommunala realskola
https://sv.wikipedia.org/w/index.php?title=Bureå kommunala realskola&action=history
Swedish
Spoken
69
154
Bureå kommunala realskola var en kommunal realskola i Bureå verksam från 1951 till 1963. Historia Skolan bildades som en högre folkskola. År 1951 ombildades denna till en kommunal mellanskola vilken senare ombildades till kommunal realskola 1 juli 1952. Realexamen gavs från 1951 till 1963. Skolbyggnaden, ritad av Birger Dahlberg invigdes 1936 för höga folkskolan. Den används numera av Bureskolan. Referenser Läroverk och realskolor i Sverige Utbildning i Skellefteå kommun
6,631