- Alan Watts - Nature, Man and Woman
- Alasdair MacIntyre - Rational and dependent animals. Why Human Beings Need Virtues
- Alasdair MacIntyre - History of Ethics
- Alasdair Macintyre - After Virtue
- Alberto Coffa, R. S. Cohen, L. Laudan - Physics, Philosophy and Psychoanalysis Essays in Honour of Adolf Grünbaum
- Alessandra Campo, Simone Gozzano - Einstein vs Bergson
- Alex Malpass, Marianna Antonutti Marfori - The History of Philosophical and Formal Logic From Aristotle to Tarski
- Alex Rosenberg, Lee McIntyre - Philosophy of Science A Contemporary Introduction
- Alexander Miller - Contemporary Metaethics An Introduction
- Alexander R. Pruss - Actuality, Possibility, and Worlds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const str = `Subdivision,Kabul,Ghor,Kandahar,Herat,Balkh,Helmand,Badakhshan,Kunduz,Badghis,Baghlan,Bamyan,Daykundi,Farah,Faryab,Ghazni,Jowzjan,Kapisa,Khost,Kunar,Laghman,Logar,Nangarhar,Nimruz,Nuristan,Paktia,Paktika,Panjshir,Parwan,Samangan,Sar-e Pol,Takhar,Urozgan,Wardak,Zabul,Tiranë,Durrës,Shkodër,Vlorë,Berat,Elbasan,Fier,Gjirokastër,Korçë,Kukës,Lezhë,Dibër,Algiers,Bouïra,Mila,Annaba,Oran,Constantine,Médéa,El Menia,Tamanrasset,Adrar,In Salah,Naâma,Saïda,Tébessa,Tindouf,Tlemcen,Batna,Béchar,Béjaïa,Biskra,Blida,Chlef,Djanet,Djelfa,El Oued,Guelma,Illizi,Mascara,Ouargla,Sétif,Aïn Defla,Aïn Témouchent,Béni Abbès,Bordj Baji Mokhtar,Bordj Bou Arréridj,Boumerdès,El Bayadh,El M'Ghair,El Taref,Ghardaïa,In Guezzam,Jijel,Khenchela,Laghouat,Mostaganem,M'Sila,Ouled Djellal,Oum El Bouaghi,Relizane,Sidi Bel Abbès,Skikda,Souk Ahras,Tiaret,Timimoun,Tipaza,Tissemsilt,Tizi Ouzou,Touggourt,Andorra la Vella,Encamp,Sant Julià de Lòria,Escaldes-Engordany,Ordino,Canillo,La Massana,Luanda,Bié,Cabinda,Benguela,Huíla,Zaire,Cuando Cub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in *.webm; do ffmpeg -i "$f" -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" "${f%.webm}.mp4"; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ITERATIONS_USED = 10_000; | |
const MAX_LIMIT = 10; | |
const DICE_FACES = 6; | |
const MAX_DIGITS = 4; | |
function rollDice() { | |
return Math.floor(1 + Math.random() * DICE_FACES); | |
} | |
function rollDiceUntilBreak(limit) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const rows = document.querySelectorAll('#dataGridRight table tbody tr.listCell'); | |
const result = []; | |
rows.forEach(row => { | |
const cells = row.querySelectorAll('td'); | |
const title = cells[0].textContent.trim(); | |
if(!cells[2]) return; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// claim_daily_login | |
const res = await fetch("https://gateway.venge.io/?request=request_ads_coin", { | |
"headers": { | |
"accept": "*/*", | |
"accept-language": "en-US,en;q=0.9", | |
"content-type": "application/x-www-form-urlencoded", | |
"sec-fetch-mode": "cors", | |
"sec-fetch-site": "same-site" | |
}, | |
"referrer": "https://venge.io/", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getNumber(el) { | |
const value = el.querySelector('[data-e2e="video-views"]').textContent; | |
if (value.endsWith("K")) { | |
return parseInt(value.replace("K", "")) * 1_000; | |
} else if (value.endsWith("M")) { | |
return parseInt(value.replace("M", "")) * 1_000_000; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo -e " | |
127.0.0.1 marriott.com | |
" | sudo tee -a /etc/hosts >/dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const K_FACTOR = 20; | |
const RATING_SCALING = 400; | |
interface Player { | |
isWin: boolean; | |
elo: number; | |
} | |
interface Result { | |
firstPlayer: Player; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const lessonUUID = window.location.pathname.split("/")[2]; | |
const sleep = (m) => new Promise((r) => setTimeout(r, m)); | |
fetch( | |
`https://api.garbanzo.io/api/assignment/${lessonUUID}?localized_date_time=2023-09-14%2011:31:06`, | |
{ | |
headers: { | |
authorization: localStorage.getItem("auth._token.local"), | |
}, | |
method: "GET", |
NewerOlder