url
stringlengths
13
4.35k
tag
stringclasses
1 value
text
stringlengths
109
628k
file_path
stringlengths
109
155
dump
stringclasses
96 values
file_size_in_byte
int64
112
630k
line_count
int64
1
3.76k
https://discourse.webflow.com/t/creating-a-pinterest-type-gallery-with-dynamic-data/20397
code
I would like to make a pinterest type gallery in a dynamic template page. There are some post out there but not help that much. I need the picture data change on different artist. Therefore I need use dynamic design Webflow used to have a front page that showing like that style for promoting CMS. And what bother me is some item stacks, but some doesn’t. I have tried to use adding column then add dynamic data, then limit the number of the items in each column. Since each dynamic page will have different number of the picture. That wont work neither.
s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656104668059.88/warc/CC-MAIN-20220706060502-20220706090502-00510.warc.gz
CC-MAIN-2022-27
556
4
https://blancer.com/freelance-projects/php/8140/visual-representation/
code
I have website with marketplace on PHP and MySQL. I want to change visual representation of items. I have items one under the other. I don’t like this. I want goods next to each other. Please, see pictures. I will give you ftp access to marketplace folder of my website.
s3://commoncrawl/crawl-data/CC-MAIN-2021-49/segments/1637964359082.76/warc/CC-MAIN-20211130232232-20211201022232-00596.warc.gz
CC-MAIN-2021-49
272
5
https://forums.freertos.org/t/delete-and-restart-a-task-blocked-on-freertos-accept/11411
code
What if you just close the server socket (from an other task) ? I’m afraid that doing so may lead to a crash. After the socket is closed, the heap will be reused for something else, while the task is still in an API, using a pointer to the socket. There are checks in all API’s, as many as possible, but the API can not see that the memory space has been given back to the heap. Or simply set a global restart flag before close to give the server task an additional hint what to do on accept returning an error. Yes like that, or use task-notify, or a semaphore. FreeRTOS_select() can be interrupted from outside, by calling : #if ( ipconfigSUPPORT_SIGNALS != 0 ) BaseType_t FreeRTOS_SignalSocket( Socket_t xSocket ); This feature was added for users of wolfSSL (Embedded SSL/TLS Library). That library has blocking calls to FreeRTOS_recv(), and it was not able to respond immediately to any event, only after receiving TCP data. Thanks to this signal, it could interrupt a call to FreeRTOS_recv(), and respond to a button press or whatever event. We could extend the usage of this signal to accept() and other API’s, but I lack time. And also, it is not really compatible with BSD/Posix. In my personal projects, I never have blocking calls for sockets, only polling. I let the task sleep ( block ) on a call to FreeRTOS_select() ( which can be signalled too ), or I have the task wait for a semaphore. Here is a feature that is less known: you can have a socket signal a semaphore on any important event ( connected, disconnected, read, write, error ): #if ( ipconfigSOCKET_HAS_USER_SEMAPHORE == 1 ) #define FREERTOS_SO_SET_SEMAPHORE ( 3 ) /* Used to set a user's semaphore */ xServerSemaphore = xSemaphoreCreateBinary(); /* Connect a socket to a semaphore. */ FreeRTOS_setsockopt( xSocket, 0, FREERTOS_SO_SET_SEMAPHORE, ( void * ) &xServerSemaphore, sizeof( xServerSemaphore ) ); Now you can write a loop for the task: /* Let the task wake-up every 2 seconds at least to do some regural tasks. */ TickType_t xReceiveTimeOut = pdMS_TO_TICKS( 2000 ); for( ;; ) xSemaphoreTake( xServerSemaphore, xReceiveTimeOut ); /* Now check the socket with non-blocking calls. */ With this method, any other task can get the attention of my task immediately, by signalling the semaphore. I wrote several big TCP servers with this technique. There is a minor overhead when calling recvv() in a non-polling way. Summary: you can either use FreeRTOS_select(), which can be signalled, or use a semaphore, which can be signalled from any other task as well. Another feature you may want to check is ipconfigUSE_CALLBACKS, which allows specific call-backs.
s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656103337962.22/warc/CC-MAIN-20220627164834-20220627194834-00151.warc.gz
CC-MAIN-2022-27
2,643
34
https://discuss.huggingface.co/t/how-to-determine-the-best-threshold-for-predictions-when-making-inference-with-a-finetune-model/13001
code
Hello, I finetune a model but the F-score is not quite good for certains classes. To avoid a lot of false positives I decide to set a threshhold for the probabilities and I would like to know how to determine, the best threshhold ? Should I use the mean, median , or just look at accuracy of the model on the test_data ? The best way to determine the threshold is to compute the true positive rate (TPR) and false positive rate (FPR) at different thresholds, and then plot the so-called ROC-curve. The ROC curve plots, for every threshold, the corresponding true positive rate and false positive rate. Then, selecting the point (i.e. threshold) that is most to the top left of the curve will yield the best balance among the two. Sklearn provides an implementation of this, however it’s for binary classification only. Note that there are extensions for multiclass classification. Thank you actually, I am doing multiclassification, I forget to mention.
s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656103033925.2/warc/CC-MAIN-20220625004242-20220625034242-00685.warc.gz
CC-MAIN-2022-27
955
6
https://www.lifewatchitaly.eu/en/2018/11/16/first-working-meeting-metadata-controlled-vocabularies-and-ontologies/
code
First Working meeting Metadata, Controlled vocabularies and Ontologies On November 12th & 13th, the LifeWatch-ERIC Service Centre organised the first working meeting on “Metadata, Controlled Vocabularies and Ontologies” in Lecce, Italy. The aim of the meeting was to set a roadmap for a common strategy to be adopted on metadata, controlled vocabularies and ontologies within the LW-ERIC community and in accordance with the FAIR principles. The meeting witnessed the participation of 13 experts, with both scientific and technical backgrounds, from six national nodes of LW-ERIC (Belgium, Greece, Italy, Slovenia, Spain, The Netherlands). Three sessions were held on 1) Metadata, 2) Controlled Vocabularies, and 3) Ontologies, each one including a tour de table on existing approaches in the national nodes and a discussion to define common best practices for the implementation and curation of metadata, standardized controlled vocabularies and ontologies. Presentations, foreseen for each session, outlined previous work and set the current landscape of models, tools and technologies that are available to support metadata, controlled vocabularies and ontologies within national nodes of LW-ERIC. They also provided material for following discussions, where the main technical and scientific approaches about the semantic issues in the Research Infrastructures have been also considered in order to identify a common strategy to be adopted by LW-ERIC. A report of the meeting will be available soon on our website.
s3://commoncrawl/crawl-data/CC-MAIN-2022-49/segments/1669446710719.4/warc/CC-MAIN-20221130024541-20221130054541-00646.warc.gz
CC-MAIN-2022-49
1,522
6
https://feedback.bistudio.com/T73417
code
Opening the server browser (with default filter) will only show the servers in my region (Australia). Rest of the servers have a red cross and cannot be joined because of a bad version. Refreshing the list does not show servers from the rest of the world. Noted that I was able to see them before but not anymore. I have DMZ my IP so theoretically all ports are open.
s3://commoncrawl/crawl-data/CC-MAIN-2023-23/segments/1685224644913.39/warc/CC-MAIN-20230529205037-20230529235037-00144.warc.gz
CC-MAIN-2023-23
367
3
http://myaperture.blogspot.com/2010/10/white-line-fever.html
code
This contraption is a street/highway stripper. You've probably seen one. There's lots of different working parts. This one was privately owned which means the company must sub-out to a government agency. I was in the stripping business a while back and I looked at this thing and just imagined the difficulty associated with keeping it running.
s3://commoncrawl/crawl-data/CC-MAIN-2018-17/segments/1524125945448.38/warc/CC-MAIN-20180421203546-20180421223546-00245.warc.gz
CC-MAIN-2018-17
344
1
https://www.thecoast.ca/halifax/we-made-a-couple-suez-ship-memes/Content?oid=26100768
code
abacapress.com, meming by THE COAST 🚢 🌊 🌀 🍆 🤦 🚧 🏞️ 🚧 🚢 🚜 👷♀️ 💪 🔧 🚜 🚢 ❗ 💻 👩💻 👨💻 🃏 🍆 😹 🤭 🥂 ova Scotia's temporary protections for renters are only in place until either the state of emergency ends or April 1, 2022, whichever comes first. The protections cap rent increases for tenants who stay in the unit they are already renting, but has no restrictions on units that new tenants are moving into , and plenty of Nova Scotians continue to be renovicted while demand remains so high for apartments some landlords are hosting bidding wars for apartments. Who will find freedom first, the Ever Given , or Halifax's renters? PHOTO ILLUSTRATION BY THE COAST Theodore Tugboat is leaving Halifax. Ambassatours announced today that the grinning icon has been sold and will be heading to Hamilton, Ontario to be a "marine career ambassador" as soon as he gets back from helping out in Egypt.
s3://commoncrawl/crawl-data/CC-MAIN-2021-49/segments/1637964358786.67/warc/CC-MAIN-20211129164711-20211129194711-00349.warc.gz
CC-MAIN-2021-49
964
11
https://getbybus.com/en/bus-regalbuto-to-enna
code
Between Regalbuto and Enna we found 0 direct bus departures, if connection travel options are available you can find them listed below. Alternatively we recommend that you search for buses from larger cities near Regalbuto or from Regalbuto to larger cities near Enna. Table Of Contents Traveling by bus from Regalbuto to Enna The shortest travel distance between Regalbuto (IT) and Enna (IT) is 60 km, which equals a travel time by car of about 00:50 h.
s3://commoncrawl/crawl-data/CC-MAIN-2021-49/segments/1637964361064.69/warc/CC-MAIN-20211202024322-20211202054322-00020.warc.gz
CC-MAIN-2021-49
454
5
https://rektangularstudios.github.io/decentralized_exchange.html
code
NFTs can be traded peer-to-peer or through a decentralized exchange provided inside the dashboard. The DEX sorts NFTs by games relevant to you, and allows you to see the complete set of NFTs across all multiverses. NFTs can be bought or sold for set prices by issuing a smart contract that awaits payment before swapping goods. Smart contracts to facilitate bidding past a minimum price are also supported. These will close after a predefined period of time. The DEX can also be extended through plugins. The developers intend to provide such a plugin so that Occulta Novellia assets can be tried before they are purchased, in a limited game environment.
s3://commoncrawl/crawl-data/CC-MAIN-2021-43/segments/1634323585916.29/warc/CC-MAIN-20211024081003-20211024111003-00102.warc.gz
CC-MAIN-2021-43
654
3
http://nrupentheking.blogspot.com/2011_03_27_archive.html
code
Join facebook group THE HACKER DEVIL For this type of DNS poisoning method an attacker sets up a proxy server on his/her system. Then he/she sets up a rouge DNS and keeps its IP address as primary DNS entry in proxy server system. Now he/she has to convince victim to use proxy server set by him/her. Since proxy server has set up a rouge DNS as its primary DNS all requests will pass through it. Since all traffic passes from your system as proxy server you can sniff all traffic between Few days ago I had announced Win An Anti-Virus contest. I am glad to declare that the winner of contest is Andrew. Sorry but Andrew's email address doesn't specify anything about his surname. An email has been sent to Andrew last day but haven't yet got any reply. By the way Andrew have 15 days from today to claim his prize. A BitDefender Anti-Virus would be delivered to his doorsteps when he will reply to email sent to him yesterday. I wish you all best luck for your future. Thanks for reading DEVIL'S BLOG ON SECURITY have a nice time. DNS Poisoning Tutorial - 2 | Internet DNS Poisoning Following is our second tutorial on DNS Poisoning which is Internet DNS Poisoning, also known as Remote DNS Poisoning. This type of DNS poisoning can be done over a single or multiple victims and no matter where your victim is in world, the primary DNS entries of his/her system can be poisoned using this method. For this type of DNS poisoning attack you'll have to setup a rouge DNS server somewhere with static IP address and please note that it should be in working condition. Methods of poisoning are different for Windows and Linux systems but happens with help of same entity that is Trojan file. DNS Poisoning Tutorial - 1 | Intranet DNS Poisoning In this post we will discus our very first method of poisoning DNS i.e Intranet DNS poisoning. Intranet DNS poisoning attack is done over a LAN which has been ARP poisoned. Since I 'll not repeat how to poison ARP, please read my previous tutorial on ARP poisoning. For performing this DNS poisoning attack you'll need at least three computers connected in LAN for which a same router, switch or computer should act as gateway and any man-in-the-middle attack tool, for this tutorial I am using Cain And Abel Before we proceed to DNS Poisoning lets have some look on basics. So lets take look on what is DNS first. You already know internet runs on TCP/IP model or you can say internet protocol stack. TCP/IP stack specifies and uses IP addresses (example : 188.8.131.52) to route data between source and destination computer. Every computer in the world that is connected in network have an IP address. Since remembering IP addresses are difficult each IP address is associated with a name like www.google.com which is also known as domain name. Domain names are easy to remember but original TCP/IP stack needs IP address for communication not the domain name Packet Sniffing Countermeasures As told earlier a hub network is more prone to sniffing so its better to use switch instead of hub. Switch will not only reduce chances of sniffing but will also increase performance of network. But switch merely can't act as countermeasure against packet sniffing. As you know if hacker uses ARP spoofing he/she can easily sniff packets from switched network. So a switch can never be a complete solution to packet sniffing. Countermeasure against sniffing also depends upon size of network I.e is your network small as 20-50 computers or its large as 1000-2000 computers or more Your Safety Over LAN Is Compromised You might be surprised by title of post safety over LAN is compromised. The fact I am revealing here is more surprising than title itself. You work for a company with high reputation in its quality of service and security over network and you feel the LAN you use for communication is safe then sorry you are mistaken. No LAN connection in world is safe enough to protect your privacy. The reason is not hackers using sniffing tools to collect information from network but the network itself is problem since it can be monitored. Network monitoring tools, IDS and firewalls all can sniff packets from network and the worst part they all work from desk of system administrator I.e from main station that provides LAN connectivity to all computers. Labels: LAN Safety Book Review | Object Oriented Programming In C++ Subject: Programming Language C++ Name: Object Oriented Programming In C++ Writer: Robert Lafore Level: Beginner to Experienced Want to learn programming skipping C then this book will be really a good choice for you. I don't usually praise any book but this book is worth praise. It can act as both reference as well as tutorial. The book has been designed to make a beginner a crafted programmer. You 'll not just learn C++ but will also learn how to program like a true programmer. Hack A Hacker Using Sniffer Hackers usually use software like RATs and keystroke loggers to hack victim's password. To get logs of victim while being offline, attacker uses a ftp server and if you have read my previous tutorials on sniffing then you might be already knowing that ftp protocol is susceptible to sniffing using this weakness of protocol you can hack a hacker using sniffer. Book Review | An Intoduction To Keyloggers RATs And Malware Name: An Introduction To Keyloggers RATS And Malware Writer: Rafy Baloch I think this is third product from Rafay. If you have been online for searching about hacking you might already be knowing about Rafay's blog which is one of the well known blog's on security online and have page rank 4. As a hacker when I read any book I love to read deeper descriptions and brief detailing but that was not this book was all about. The book aims complete beginners, so if you are a pro thinking you'll find algorithms and details about how to code malware then you'll surely meet disappointment because book is not for experienced or seasoned coders. Book On C Programming Language As a hacker there is real hot need for you to know programming. And there's no better programming language to start than C programming language which is still considered as mother of all other programming languages. But I am still confused to suggest from which book you should start your journey since the books I have read so far on C programming languages aren't that complete to give a novice a good start.
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917120206.98/warc/CC-MAIN-20170423031200-00323-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
6,384
27
https://practicaldev-herokuapp-com.global.ssl.fastly.net/berk_hakbilen/dealing-with-categorical-data-encoding-features-for-ml-agorithms-43pp
code
In real life, the raw data recieved is rarely in the format which we can take and use direclty for our machine learning models. Therefore, some preprocessing is necessary to bring the data to the right format, select informative data or reduce its dimension to be able to extract the most out of the data. In this post, we will talk about encoding to be able to use categorical data as features for our ML models, types of encoding and when they are suitable. Other preprocessing techniques for Features scaling, features selection and dimension reduction are topics for another post… Let’s get started with encoding! Numerical data, as the name suggests, has features with only numbers (integers or floating-point). On the other hand, categorical data has variables that contain label values (text) and not numerical values. Machine learning models can only accept numerical input variables. What happens if we have a dataset with categorical data instead of numerical data? Then we have to convert the data which contains categorical variables to numbers before we can train a ML model. This is called encoding. Two most popular encoding techniques are Ordinal Encoding and One-Hot Encoding. - Ordinal Ecoding: This technique is used to encode categorical variables which habe a natural rank ordering. Ex. good, very good, excellent could be encoded as 1,2,3. - One-Hot Encoding: This technique is used to encode categorical variables which do not have a natural rank ordering. Ex. Male or female do not have any ordering between them. In this technique, each category is assigned an integer value. Ex. Miami is 1, Sydney is 2 and New York is 3. However, it is important to realise that this introduced an ordinality to the data which the ML models will try to use to look for relationships in the data. Therefore, using this data where no ordinal relatinship exists (ranking between the categorical variables) is not a good practice. Maybe as you may have realised already, the example we just used for the cities is actually not a good idea. Because Miami, Sydney and New York do not have any ranking relationship between them. In this case, One-Hot encoder would be a better option which we will see in the next section. Let’s create a better example for ordinal encoding. Ordinal encoding tranformation is available in the scikit-learn library. So let’s use the OrdinalEncoder class to build a small example: # example of a ordinal encoding import numpy as np import pandas as pd from sklearn.preprocessing import OrdinalEncoder # define data data = np.asarray([['good'], ['very good'], ['excellent']]) df = pd.DataFrame(data, columns=["Rating"], index=["Rater 1", "Rater 2", "Rater 3"]) print("Data before encoding:") print(df) # define ordinal encoding encoder = OrdinalEncoder() # transform data df["Encoded Rating"] = encoder.fit_transform(df) print("\nData after encoding:") print(df) Data before encoding: Rating Rater 1 good Rater 2 very good Rater 3 excellent Data after encoding: Rating Encoded Rating Rater 1 good 1.0 Rater 2 very good 2.0 Rater 3 excellent 0.0 In this case, the encoder assigned the integer values according to the alphabetical order which is the case for text variables. Although we usually do not need to explicitly define the order of the categories, as ML algorihms will be able to extract the relationship anyway, for the sake of this example we can define an explicit order of the categories using the categories variable of the OrdinalEncoder. import numpy as np import pandas as pd from sklearn.preprocessing import OrdinalEncoder # define data data = np.asarray([['good'], ['very good'], ['excellent']]) df = pd.DataFrame(data, columns=["Rating"], index=["Rater 1", "Rater 2", "Rater 3"]) print("Data before encoding:") print(df) # define ordinal encoding categories = [['good', 'very good', 'excellent']] encoder = OrdinalEncoder(categories=categories) # transform data df["Encoded Rating"] = encoder.fit_transform(df) print("\nData after encoding:") print(df) Data before encoding: Rating Rater 1 good Rater 2 very good Rater 3 excellent Data after encoding: Rating Encoded Rating Rater 1 good 0.0 Rater 2 very good 1.0 Rater 3 excellent 2.0 LabelEncoder class from scikit-learn is used to encode the Target labels in the dataset. It actually does exactly the same thing as OrdinalEncoder however expects only a one-dimensional input which comes in very handy when encoding the target labels in the dataset. Like we mentioned previously, for categorical data where there is no ordinal relationship, ordinal encoding is not the suitable technique because it results in making the model look for natural order relationships within the categorical data which does not actually exist which could worsen the model performance. This is where the One-Hot encoding comes into play. This technique works by creating a new column for each unique categorical variable in the data and representing the presence of this category using a binary representation (0 or 1). Looking at the previous example: The simple table transforms to the following table where we have a new column repesenting each unique categorical variable (male and female) and a binary value to mark if it exists for that. Just like OrdinalEncoder class, scikit-learn library also provides us with the OneHotEncoder class which we can use to encode categorical data. Let’s use it to encode a simple example: from sklearn.preprocessing import OneHotEncoder # define data data = np.asarray([['Miami'], ['Sydney'], ['New York']]) df = pd.DataFrame(data, columns=["City"], index=["Alex", "Joe", "Alice"]) print("Data before encoding:") print(df) # define onehot encoding categories = [['Miami', 'Sydney', 'New York']] encoder = OneHotEncoder(categories='auto', sparse=False) # transform data encoded_data = encoder.fit_transform(df) #fit_transform method return an array, we should convert it to dataframe df_encoded = pd.DataFrame(encoded_data, columns=encoder.categories_, index= df.index) print("\nData after encoding:") print(df_encoded) Data before encoding: City Alex Miami Joe Sydney Alice New York Data after encoding: Miami New York Sydney Alex 1.0 0.0 0.0 Joe 0.0 0.0 1.0 Alice 0.0 1.0 0.0 As we can see the encoder generated a new column for each unique categorical variable and assigned 1 if it exists for that specific sample and 0 if it does not. This is a powerful method to encode non-ordinal categorical data. However, it also has its drawbacks… As you can imagine for dataset with many unique categorical variables, one-hot encoding would result in a huge dataset because each variable has to be represented by a new column. For example, if we had a column/feature with 10.000 unique categorical variables (high cardinality), one-hot encoding would result in 10.000 additional columns resulting in a very sparse matrix and huge increase in memory consumption and computational cost (which is also called the curse of dimensionality). For dealing with categorical features with high cardinality, we can use target encoding… Target encoding or also called mean encoding is a technique where number of occurence of a categorical variable is taken into account along with the target variable to encode the categorical variables into numerical values. Basically, it is a process where we replace the categorical variable with the mean of the target variable. We can explain it better using a simple example dataset… Group the table for each categorical variable to calculated its probability for target = 1: Then we take these probabilites that we calculated for target=1, and use it to encode the given categorical variable in the dataset: Similar to ordinal encoding and one-hot encoding, we can use the TargetEncoder class but this time we import it from category_encoders library: from category_encoders import TargetEncoder # define data fruit = ["Apple", "Banana", "Banana", "Tomato", "Apple", "Tomato", "Apple", "Banana", "Tomato", "Tomato"] target = [1, 0, 0, 0, 1, 1, 0, 1, 0, 0] df = pd.DataFrame(list(zip(fruit, target)), columns=["Fruit", "Target"]) print("Data before encoding:") print(df) # define target encoding encoder = TargetEncoder(smoothing=0.1) #smoothing effect to balance categorical average vs prior.Higher value means stronger regularization. # transform data df["Fruit Encoded"] = encoder.fit_transform(df["Fruit"], df["Target"]) print("\nData after encoding:") print(df) Data before encoding: Fruit Target 0 Apple 1 1 Banana 0 2 Banana 0 3 Tomato 0 4 Apple 1 5 Tomato 1 6 Apple 0 7 Banana 1 8 Tomato 0 9 Tomato 0 Data after encoding: Fruit Target Fruit Encoded 0 Apple 1 0.666667 1 Banana 0 0.333333 2 Banana 0 0.333333 3 Tomato 0 0.250000 4 Apple 1 0.666667 5 Tomato 1 0.250000 6 Apple 0 0.666667 7 Banana 1 0.333333 8 Tomato 0 0.250000 9 Tomato 0 0.250000 We have achieved the same table as what we have calculated manually ourselves… Target encoding is a simple and fast technique and it does not add additional dimensionality to the dataset. Therefore, it is a good encoding method for dataset involving feature with high cardinality (unique categorical variables pof more than 10.000). Target encoding makes use of the distribution of the target variable which can result in overfitting and data leakage. Data leakage in the sense that we are using the target classes to encode the feature may result in rendering the feature in a biased way. This is why there is the smoothing parameter while initializing the class. This parameter helps us reduce this problem (in our example above, we deliberately set it to a very small value to achieve the same results as our hand calculation). In this post, we covered encoding methods to convert categorical data to numerical data to be able to use it as features in our machine learning models! If you liked this content, feel free to follow me for more free machine learning tutorials and courses!
s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764500719.31/warc/CC-MAIN-20230208060523-20230208090523-00220.warc.gz
CC-MAIN-2023-06
9,902
31
http://www.manpagez.com/man/1/open/osx-10.6.php
code
open(1) BSD General Commands Manual open(1) open -- open files and directories open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b bundle_identifier] [-a application] file ... [--args arg1 ...] The open command opens a file (or a directory or URL), just as if you had double-clicked the file's icon. If no application name is specified, the default application as determined via LaunchServices is used to open the specified files. If the file is in the form of a URL, the file will be opened as a URL. You can specify one or more file names (or pathnames), which are inter- preted relative to the shell or Terminal window's current working direc- tory. For example, the following command would open all Word files in the current working directory: open *.doc Opened applications inherit environment variables just as if you had launched the application directly through its full path. This behavior was also present in Tiger. The options are as follows: -a application Specifies the application to use for opening the file -b bundle_indentifier Specifies the bundle identifier for the application to use when open- ing the file -e Causes the file to be opened with /Applications/TextEdit -t Causes the file to be opened with the default text editor, as deter- mined via LaunchServices -f Reads input from standard input and opens the results in the default text editor. End input by sending EOF character (type Control-D). Also useful for piping output to open and having it open in the default text editor. -W Causes open to wait until the applications it opens (or that were already open) have exited. Use with the -n flag to allow open to function as an appropriate app for the $EDITOR environment variable. -R Reveals the file(s) in the Finder instead of opening them. -n Open a new instance of the application(s) even if one is already run- ning. -g Do not bring the application to the foreground. -h Searches header locations for a header whose name matches the given string and then opens it. Pass a full header name (such as NSView.h) for increased performance. --args All remaining arguments are passed to the opened application in the argv parameter to main(). These arguments are not opened or inter- preted by the open tool. "open '/Volumes/Macintosh HD/foo.txt'" opens the document in the default application for its type (as determined by LaunchServices). "open '/Volumes/Macintosh HD/Applications/'" opens that directory in the Finder. "open -a /Applications/TextEdit.app '/Volumes/Macintosh HD/foo.txt'" opens the document in the application specified (in this case, TextEdit). "open -b com.apple.TextEdit '/Volumes/Macintosh HD/foo.txt'" opens the document in the application specified (in this case, TextEdit). "open -e '/Volumes/Macintosh HD/foo.txt'" opens the document in TextEdit. "ls | open -f" writes the output of the 'ls' command to a file in /tmp and opens the file in the default text editor (as determined by Launch- Services). "open http://www.apple.com/" opens the URL in the default browser. "open 'file://localhost/Volumes/Macintosh HD/foo.txt'" opens the document in the default application for its type (as determined by LaunchSer- vices). "open 'file://localhost/Volumes/Macintosh HD/Applications/'" opens that directory in the Finder. "open -h NSView" lists headers whose names contain NSView and allows you to choose which ones to open. "open -a Xcode -h NSString.h" quickly opens /System/Library/Frame- works/Foundation.framework/Headers/NSString.h in Xcode. First appeared in NextStep. Mac OS X February 10, 2004 Mac OS X Mac OS X 10.6 - Generated Thu Sep 17 20:08:14 CDT 2009
s3://commoncrawl/crawl-data/CC-MAIN-2017-13/segments/1490218190754.6/warc/CC-MAIN-20170322212950-00155-ip-10-233-31-227.ec2.internal.warc.gz
CC-MAIN-2017-13
3,613
7
https://563rdattempt.wordpress.com/2016/12/13/world-building-continued-what-about-maps/
code
In thinking about my post-apocalyptic fantasy game, the centerpiece of the game would be a massive overworld map with tons of places to go and interesting things to see/do/kill. I still want the game to focus on overworld, but I’m now actually thinking about how to run it. Turns out, I’m not sure I want that map. To be fair, I still want this to be a hex-crawl game, at least at the overworld level (I read a cool article about hex math and sub-hexing, but the idea of scaling a game from 6 mile hexes down to battlemat scale in three to four levels of sub-hexing makes my head spin). But as I keep reading about hex-crawling and how it’s been done, I realize that the top-down approach may simply not work very well for me. Back in 2014, I wrote a campaign setting for Fifth Edition D&D, in which I ran about 15 sessions across two partial campaigns. Using a random map generator, I filled in an overworld with all sorts of cool geographic details, geopolitical entities, and historical sites. Then, when I ran the game, all that overworld I had just kind of faded into the background. Even when I ran a travel montage, the map didn’t give me much. I tightened the scale of the map mid-game because the travel times were doing nothing other than being boring. And I should have remembered this when I decided to start planning this game. My fantasy of this game does involve the incredibly detailed overworld map and the notion that PCs would eventually build settlements and change what the map looked like…but none of that is predicated on me having a full map at the start of the game. And as I look into what I want to emphasize, setting, flavor, and mechanics-wise…I don’t need to know where anything is. My magic/religion ideas around spirits have this beautiful side effect that they’d be very localized, obviating the need for holy sites that characters would know of ahead of time. I am now planning to randomly generate my world in a very different way: one hex at a time. This is going to produce some very interesting results, as well as some weirdness, but I think it’ll make things a lot of fun. It also has some great thematic tie-in to the notion of a post-apocalyptic game: the Dark Ages in history were about knowledge being lost, and not knowing the full extent of the inhospitable world before you is a wonderful way to emulate that. I will need to figure out starting characters for whom it makes sense to have never ventured more than a few miles from home. This is a subtle problem…the vast majority of people living in a world with a Dark Ages technology level probably never travelled more than a full day’s trek away from home in their lives, which generously equates to a 25 mile radius (the majority of people in a Dark Ages world couldn’t afford horses). In most hex-scaling regimes that’s about 7 overworld hexes, which is a perfect start. The complication comes from the fact that in fiction and most RPGs, the player characters are adventurers, exactly the minority of people who would be travelling. The post-apocalyptic setting makes this slightly easier; there are a large number of reasons that a group of people would have to pull up roots for the first time. That said, it is writing I need to do beforehand and be deliberate about. What I realize, after skimming some hex-crawl random tables and bottom-up design articles, is that those first seven hexes give me an incredible palette for a session zero. I use a framework or generator to put the biomes in the seven overworld hexes (and however many sub-hexes are in those), and then the details of the items immediately around the start point can be filled in by the players. Instant connection to the immediate environ, but maintained sense of danger and mystery. And also, the session zero format can give me a chance to get a few far-off places that the PCs have heard of, and then anchor them to distant parts of the map. It’s like Dungeon World’s “Draw Maps, Leave Blanks” on a massive scale. Speaking of Dungeon World…I’m rethinking my ruleset choice. Again. With magic and the like kind of decided, I feel less wary about using something big and heavy and needing to adapt a lot. At the same time, digging into the overworld stuff makes me realize that I’m going to need a rules backbone that can support some level of detail without collapsing or getting weird on me. I’m not entirely convinced I’d need to give up on Fate, the scalability of it is immensely appealing with the huge range of things I’d want to be possible. That said…GURPS has loads of environmental rules, and I finally have a campaign where I know the level at which I’d want to interact with them. Having the TL be low enough that no one can have guns greatly reduces balance issues, and the sheer number of things I could imagine players wanting to do means that having the rules available for close to all of them would be amazing. I’d still need to look into Powers and Magic and figure out the whole spirit thing, but I at least know where to start. The settlement issue is also still there, but after I read GURPS Low-Tech I’ll have a better idea of just how much of what I need already exists. There’s also a left-field possibility in the form of Zweihander, a game I kickstarted a while back. It’s dark fantasy and based at least mechanically on Warhammer Fantasy Roleplay. The game looks really interesting for multiple reasons, which is why I kickstarted it. That said…I’ve been playing Dark Heresy (which is mechanically similar to WFRP) with my online group, and dealing with the mechanics up close I’m not sure how I feel about it. The game is percentile-based, and base stats give you around a 30-50% chance to succeed, unmodified. If that sounds whiffy, it’s because it is. This means that to build up to a “typical” task, you’re stacking a handful of modifiers to get to your actual roll. I’m not a huge fan of it in Dark Heresy, and when you ask me to compare it to GURPS, arguably my favorite crunchy system…I doubt that’s a comparison it’ll win. Still, it’s a hefty system with a lot of interesting stuff, so I shouldn’t dismiss it out of hand before I get to read it. I’m very glad that I’ve placed at least one campaign between this one and now. Even without the effort of writing an entire overland map, this game will require a lot of prep. I still need to flesh out the magic/spirit system a bit, write some historical assumptions, and then in lieu of writing a map, write and/or adapt the random hex tables that will generate the sort of map I want to run. And among all that, I need to definitively choose a system to run the game in, and fill in the mechanical blank spots for my setting assumptions. It’s a tall order, but I knew from the beginning this was an ambitious idea. I’m also getting excited about everything I’m reading, which is a very good sign I’m heading in the right direction.
s3://commoncrawl/crawl-data/CC-MAIN-2019-09/segments/1550247479967.16/warc/CC-MAIN-20190216065107-20190216091107-00170.warc.gz
CC-MAIN-2019-09
6,988
9
http://www.developer.com/news
code
A growing number of individuals are applying agile software development methodologies to their work. News Section Index Google already has better app search features than Apple. Wanna play Angry Bonds? Digia plans to continue development on the open source application development toolset. New framework speeds the cloud-based development and deployment of Node.js applications.
s3://commoncrawl/crawl-data/CC-MAIN-2014-35/segments/1408500826343.66/warc/CC-MAIN-20140820021346-00245-ip-10-180-136-8.ec2.internal.warc.gz
CC-MAIN-2014-35
378
6
https://www.svanrennemusic.com/post/chamber-of-torture-phantasms-of-the-bedlamite-is-out-now
code
Svanrenne Music proudly presents the new album of the brutal orchestra of death. Old school death metal that exists in the realities of 2022. Brutal outrage in a technologically adjusted sound. Terrifying, painful and heavy. The riffs of 'Phantasms of the Bedlamite' are like python coils tightening around the neck in the inevitable approach of the ringing crunch of the vertebrae. Headbanging in patches of snakeskin, dancing on bones, uncompromising and familiarity with Death itself - this is the new Chamber of Torture album. The Pale Crone, probably, herself is afraid of this outrageous genre orchestra that is playing in the name of Death. 'Phantasms of the Bedlamite' is Death Metal. Such as it was bequeathed by the forefathers. Pavel Vahlakov (vocals): «There was a desire to make the album as aggressive as possible in both ways – musically and lyrically. Something, like a bridge between ‘Tomb of the Mutilated’ and ‘Butchered at Birth’. This album is not a conceptual - that is the difference from the our trilogy (‘Entorturement’, ‘Cadaverous Omen’ and ‘Necrodomain’). In that way it reminds us of our first album - it's just 10 hardest parts of Retro Death Metal stuff. Digital order is available. Physical copies are coming soon. It will be insane edition by cruel death metal maniacs.
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679511159.96/warc/CC-MAIN-20231211112008-20231211142008-00770.warc.gz
CC-MAIN-2023-50
1,325
4
https://www.reptilesncritters.com/California-Red-Sided-Garter-Snake-Hi-Red-Hi-Blue-Aberrant-baby-females.php
code
This beautiful garter snake is a California native found primarily in coastal dunes and marshes. What makes this Red Sided Garter snake truly exception of the combination of bright red and bright blue scales. Stephanie G. Martinez - September 11, 2013 Mathew hill - February 4, 2012 Daniel Chow - October 7, 2013 We just bought a baby Apricot Pueblan Milk Snake - Delivered right on time! Healthy, Beautiful and it looks well taken care of. Can't wait to get to know the little guy (or girl haha). Lauren Behman - November 8, 2012 By submitting this form, you agree to receive recurring automated promotional and personalized marketing emails from ReptilesNCritters.com to the email address used when signing up. Consent is not a condition of any purchase. Copyright © 2003 - 2021, ReptilesNCritters.com - All Rights Reserved
s3://commoncrawl/crawl-data/CC-MAIN-2021-49/segments/1637964363215.8/warc/CC-MAIN-20211205160950-20211205190950-00230.warc.gz
CC-MAIN-2021-49
826
8
https://www.youmighthaveapoint.com/articles/unbiased-news-does-not-exist
code
As part of my effort to encourage epistemic humility and learning from a wide variety of perspectives, I made a short catalogue of organizations that have similar goals in mind. This blog/podcast of mine is just a hobby, but these organizations have a lot more resources that they are putting towards similar goals. While I am a conservative, this list does not include organizations that have an explicit ideological stance (i.e. "we are a [progressive | conservative | libertarian | centrist] publication") but instead ones whose intention is to provide access to a wide variety of voices. There are a lot of publications from across the ideological spectrum out there nowadays, but the ones in this list are actively promoting diverse points of view, believe in the power of persuasion and sound argumentation, and, in my opinion, seem to be doing a decent job of it. I've grouped what I have so far in terms of a few different types of categories: aggregators, debate hosts, publications, and tools. I've also grouped them in terms of the medium: text, audio/video, and real life. Some of these organizations provide audio-video and real-life events as well as text-based ones; in that case, I've only included them once under the text-based category. This list is somewhat subjective, and I hope that I have made my criteria for this little catalogue of mine clear so that you can decide whether these organizations are good ones to follow. And if you think I missed something, please let me know below! You can also comment on on the reddit comment that I used to crowdsource some of this. And thank you to all of the commenters on reddit who helped me make this list! - Aggregators / Media Analysts - RealClearPolitics -- lists a lot of articles each day from a wide variety of sources; oftentimes, you will see competing arguments listed one after the other, which is helpful. They do lean somewhat conservative on the whole, but they link to and publish their own commentary from more than just conservative writers. - https://mediabiasfactcheck.com/ -- claims to be "the most comprehensive media bias resource." It certainly looks pretty detailed to me. My one criticism of it might be that it seems to define the "center" as being "the least biased." I prefer the motto from allsides.com, on the other hand: - https://www.allsides.com/ -- "unbiased news does not exist." In addition to explicitly categorizing news sources based on their general bias, it also takes specific events in the news cycle and provides a selection of articles about them from across the political spectrum. - https://ground.news/ -- "See bias anywhere on the web or social media." This site collates a large number of stories from across the Web and identifies the extent to which the left or right are covering different news events. - https://www.theflipside.io/ -- a daily newsletter: "See both sides of important issues— in 5 minutes a day." - Debate hosts - pairagraph.com -- I have a special place in my heart for this site as its co-founders agreed to an interview with me on the first episode of my podcast which I just started. (Fair warning on that: the audio quality kind of stinks.) They host exchanges between notable individuals on a wide variety of topics. The format is A-B-A-B, with each piece being roughly 500 words. - https://letter.wiki/ -- this is fairly similar to Pairagraph, though it is a little more open-ended, and it's slightly less like a debate and more like a conversation between notable individuals. - Change My View: a very large subreddit where you can post what your view is and ask people to try to change it. As they put it, they ask you to "[e]nter with a mindset for conversation, not debate." - The Motte: a small subreddit that host a regular thread where the point is to "argue to understand, not to win." - Publications -- there are obviously a lot of these, but I am explicitly listing ones that seem to me to be intentionally providing a variety of perspectives. - Persuasion: "A platform for publishing interesting ideas... a convener of pressing debates." Their leadership seemed to span the ideological spectrum to me, which is part of why I included them. Persuasion is explicitly in favor of a "free society," but I don't take that to be too narrow of an ideological stance. (I, too, am in favor a free society!) - Unherd: "aims to do two things: to push back against the herd mentality with new and bold thinking, and to provide a platform for otherwise unheard ideas, people and places." - Tools and tactics - readacrosstheaisle.com -- helps you track the bias of sources you pay attention to - Street Epistemology -- an applied philosophical toolkit for engaging with ideas - A reddit user suggested this checklist from the Center for Applied Rationality; "they practice e.g. Double Crux, a strategy for resolving disagreement" -- source comment - Kialo: "an easy to use, yet powerful tool to engage in thoughtful discussion, understand different points of view, and help with collaborative decision-making" -- source comment Audio and video-based: - Debate hosts - Non-Zero Foundation -- hosts regular conversations between political and cultural figures. bloggingheads.tv and meaningoflife.tv are their two main products. My favorite line from them is that they host debates that are "sharp, yet civil." - Intelligence Squared -- hosts debates as well as solo discussions on a variety of issues. - Munk Debates -- a host of debates, sometimes in person, and sometimes in podcast form - Debate hosts - Purple Heart -- focuses on highlighting projects that focus on bridging political divides
s3://commoncrawl/crawl-data/CC-MAIN-2021-10/segments/1614178378043.81/warc/CC-MAIN-20210307170119-20210307200119-00563.warc.gz
CC-MAIN-2021-10
5,637
30
https://support.titandxp.com/platform/apex-class-docsignurlhelper/
code
Apex Class: DocSignURLHelper When to Use this Apex Class? You can use DocSignURLHelper to retrieve a URL for a pre-sign edit page. Depending on your configuration on the edit page, you will be able to modify the signers, download the document, and send it to be signed. What are the Relevant Input Parameters? The following input parameters are relevant to this Apex Class: - apiKey (string) - formHash (string) - recordId (ID) - allow_docx_download (Boolean) - allow_pdf_download (Boolean) - allow_send (Boolean) - allow_upload (Boolean) - allow_users_config (Boolean) - signers (Apex defined). - url_expiration_minutes (number) Where can you access the ApiKey and ftFormHash? - Open any Titan Sign Project, and follow the path Document> Settings> Document Access> select the Dynamic option> Salesforce Configuration. - Select an object such as Account and choose APEX/ Process builder/ Flow - Copy the ApiKey: - Copy the ftFormHash - Navigate back to your Salesforce Flow, and paste the ftApiKey and ftFormHash into the relevant fields under the New Action for Form_Builder_DocSignUrlHelper: What does this Apex Class Return? This Apex Class returns a URL. Does this Apex Class have any Limitations? This Apex Class does not have any relevant limitations. Can this Apex Class be used by Titan Customers? Yes, customers can interact with this Apex Class.
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100535.26/warc/CC-MAIN-20231204214708-20231205004708-00666.warc.gz
CC-MAIN-2023-50
1,355
27
https://flindersstudents.com/make-bootable-flash-drive-from-iso-ubuntu/
code
Make Bootable Flash Drive From Iso Ubuntu – Rufus is a totally free, crowdsourced resource for making bootable USBs. This program only works on House windows, but it can create ISO for software installing that works on Macintosh, Linux, and other operating systems. It also helps you to be capable of import a new COMPUTER ITSELF onto a computer which has non-e or a good incomplete system action through a USB. Make Bootable Flash Drive From Iso Ubuntu What is the Rufus UNIVERSAL SERIAL BUS tool? The main characteristic of it is to generate an ISO over a USB. An ISO is used to include a copy identical as to the is usually contained with a physical disk. And thus, Rufus can put together all the various data files on a DVD or on a computer to set them into one ISO file. It will reformat your device with installs the ISO. Remember to save all of your information somewhere else so that you will don’t lose all that is on it. It gives you support for producing MBR files regarding UEFI and BIOS for different computers. Also, for some UEFI products, it has GPT. For instance , you can use Rufus to maintain an ISO with regard to Windows 7 to enable you to use it to re-install it on your computer down the road. Another option would be a mature game that you only have on DVD you want to save for the future. Other choices for use might just before creating an ISO that could be burned on to a disk or perhaps sent over the internet. The main benefit is that it can be utilized for other systems even though Rufus will only work on Windows. Booting from USB If it is a bootable UNIVERSAL SERIAL BUS through Rufus, it is pretty easy. First, you’ll need to put the thumb take you want to boot coming from. Rufus will detect the USB as soon as you start up the program. There’s a little button by having an optical drive image. Click that, after which locate and select the ISO you want to employ. When you go through this technique, the USB will probably be formatted. The ISO will then be copied upon the USB to help you use it to boot. If you wish to boot from a UNIVERSAL SERIES BUS, you’ll have to get as part of your BIOS to make that will happen. Rufus can not actually control BIOS operations across systems. Even if it could, it is possible to only install Rufus on Windows, and so it’d do you not good if you wanted to boot up a Mac. It is rather straightforward to use. The person interface displays all of the options you need, where OS you’re about, to what you are which makes the ISO. Also, you have to compress the record and find the. exe in there and use that for the technique of building the bootable USB. Is Rufus safe? Yes, Rufus is quite safe. It would be wise to save all the info that is being used to generate the ISO in the separate location in case a mistake is made. The software has no ability to harm the hard drive in the drive. The most detrimental thing than it can do is remove some information from the USB, which is less likely to damage the device in the long term. In addition, simply many multiple awful block checks about the system could result in permanent damage which is highly unlikely. Another thing is actually, if you create a good installation drive with regard to DOS, make sure you specifically what you need to do for that file to work. Verify whether the computer is usually UEFI or BIOS. The software does require the ability to store and modify the Windows registry keys. This process is perfectly okay since it returns them to their original form at the conclusion. It also means that the program will be able to check that every thing went well while using installation. Bugs, Constraints, and support Rufus is quite safe intended for usage and does not bring any bugs inside the system. It has been used by lots of people over time and possesses most likely been utilised by anyone who does IOS work even in professional settings. It does possess a few limitations as it only is able to be applied on Windows 7-10. The developer likewise discontinued support for the previous versions. Another downside is that it can simply install one sequence over a USB. While you can easily still store other things around the drive, you will not be able to place much more bootable ISOs. The actual developer, Pete Batard, does an excellent job answering emails along with queries directed at him while still liberating new updates. Be confident, if there is a problem, he can answer and help anyone fix whatever gone wrong. Rufus Portable differs through the main software in one way. It can be relocated from computer to computer and support the same setting. Other than that, there is no difference between software. When comparing together with Etcher, there is barely any comparison to be enjoyed. Rufus is known to always be two times as quickly as all other plans. Etcher takes up much more memory while furthermore lacking in advanced adjustments. Unetbootin is once more much slower. Moreover, it is unsafe and possesses a high chance of corrupting the USB. It includes no uninstaller, with times Unetbootin will not likely work. Therefore , Rufus wins in this contrast. Yumi can be mentioned to be somewhat much better competition. However , again it flags when it comes to the speed and convenience. Another issue could be that the UEFI options are nonetheless in development restricting what you can do with the software. Speedy bootable UNIVERSAL SERIES BUS creation In the end, nothing is negative to say about Rufus. When looked at as a whole, it is a robust plan. For those who are merely trying to have a safe BIOS file in case their very own computer crashes, or perhaps preserve a game money for hard times, it is perfect. Intended for developers, it is ideal because they can change the code that will runs the program to do precisely what they need. The newest improvements to the plan were vast as well as varied, but aimed towards fixing issues with dividers and streamlining this for more recent House windows updates. Rufus Bootable USB to Install Ubuntu 20. 04 LTS Downloading it the Ubuntu 18. 04 LTS ISO Image Go to the public website of Ubuntu at https://www.ubuntu.com/ from any Web Browser. You must see the following screen. Now click on Desktop as marked in the screenshot below. Today click on Download Ubuntu button as designated in the screenshot below. Now simply click on the Get button of Ubuntu 18. 04 LTS as marked in the screenshot below. You need to see the following site. Scroll down somewhat and click on Not now, take me for the download as designated in the screenshot listed below. Now click on Preserve as marked in the screenshot below. A person download should begin. Download Iso To Usb Bootable Mac This kind of quick step by step will reveal how to make a bootable USB stick coming from a downloaded ISO image file using an Apple Mac OS X. Note: this procedure requires a great. img file that you will be required to create in the. iso file a person download. Tip: Drag & drop a file from Finder of the bird to Terminal for you to ‘paste’ the full path without typing and also risking typos. Download the desired file Start the Terminal (in /Applications/Utilities/ or predicament Terminal in Spotlight) Convert the. iso file to. img applying the convert accessibility to hdiutil: hdiutil transform -format UDRW -o /path/to/target. img /path/to/source. iso Note: COMPUTER ITSELF X tends to place the. dmg ending within the output file immediately. Rename the file by typing: mv /path/to/target. img. dmg /path/to/target. img Work diskutil list to have the current list of devices Insert your flash media Run diskutil list again and also determine the device computer assigned to your expensive media (e. grams. /dev/disk2) Run diskutil unmountDisk /dev/diskN (replace N with the storage number from the last command – in the last example, N will be 2) Execute sudo dd if=/path/to/downloaded. img of=/dev/rdiskN bs=1m (replace /path/to/downloaded. img with all the path where the photo file is located; for example ,. /ubuntu. img or perhaps. /ubuntu. dmg). Take note: Using /dev/rdisk rather than /dev/disk may be more rapidly. Note: If you start to see the error dd: Incorrect number ‘1m’, you might be using GNU dd. Use the same control but replace bs=1m with bs=1M. Take note: If you see the mistake dd: /dev/diskN: Source busy, make sure disks is not in use. Start the ‘Disk Power. app’ and unmount (don’t eject) the actual drive. Run diskutil eject /dev/diskN along with remove your expensive media when the control completes Now the particular USB stick is actually ready. Boot the device that you want from the USB stick.
s3://commoncrawl/crawl-data/CC-MAIN-2020-40/segments/1600400204410.37/warc/CC-MAIN-20200922063158-20200922093158-00006.warc.gz
CC-MAIN-2020-40
8,663
56
https://mail.zope.org/pipermail/zope-web/2003-February/002361.html
code
[ZWeb] Zope.org feedback: Zope mirroring ? Thu, 6 Feb 2003 10:58:42 +1000 (EST) On Thu, 6 Feb 2003, robert boulanger wrote: > If something like that is planned I want to mention that I (and this is > very very subjective and I only want to give a hint) don't like such > follow up pages like sf does now. > It's a mess if you want to download something to a remote server where > you only have wget, but the download page only provides an interface for > selecting the mirror via radiobuttons. it depends. i don't mind if it was something like o select a mirror (from a list.. e.g radio buttons) o then all the download pages are wgettable as they all point at the > A nice idea also was the download support for the new kde 3.1, which > randomly (or is some intelli behind?) gives you different download links > after nearly every refresh of the download page. well, randomly to me is not good. from a network centric view i would rather (being in australia) be able to select an australian download site, either for each download, or at the start (and with something that remembers?) and then all my downloads after that are from AU. from my experience of mirroring, people downloading like being able to select their country, or at the least a site/mirror they are happy with and know that all their downloads come from that location..
s3://commoncrawl/crawl-data/CC-MAIN-2019-09/segments/1550249406966.99/warc/CC-MAIN-20190222220601-20190223002601-00570.warc.gz
CC-MAIN-2019-09
1,338
22
https://lists.debian.org/debian-devel/2010/01/msg00269.html
code
On Thu, Jan 14, 2010 at 12:54 PM, Marco d'Itri <[email protected]> wrote: > Yes, this will require a lockstep upgrade like it happened for lenny. > If you upgrade both the kernel and udev at the same time the udev > package will detect it and bypass the version check. it was my use case, unfortunately udev package upgrade failed and apt-get dist-upgrade stopped. Is it a bug ? do you want apt-get output (easily reproducible) ?
s3://commoncrawl/crawl-data/CC-MAIN-2022-05/segments/1642320304261.85/warc/CC-MAIN-20220123111431-20220123141431-00073.warc.gz
CC-MAIN-2022-05
429
1
https://plus.google.com/117634830927647687846
code
Cynical chicken, goat, and knitting enthusiast. Somewhat left of liberal (and none too shy about it) metaphysical naturalist - or perhaps just a heathen. If you're a photographer, wondering why I circled you - well, I love pretty pitchurs and liked your work. I'm just a snapshot girl, myself. If you're really good (or just really interesting) at one of those things above that I listed as my passions, then you've probably figured out why I want to watch you do what you do. I have fibromyalgia and BPD, and a (strictly regimented and sterilized) touch of OCD running through my PTSD. There's probably some more acronyms in there somewhere that I'm not thinking of right now, because all the meds plus the fibrofog mean that I often have CRS. So - I may have circled you for any insight you have into one or all of those conditions, as well. Or instead. Or both. What were we talking about again? I curse. A lot. Just - just so you know. I'm NC17 at times, and nearly always at least PG13+.
s3://commoncrawl/crawl-data/CC-MAIN-2017-04/segments/1484560280872.69/warc/CC-MAIN-20170116095120-00372-ip-10-171-10-70.ec2.internal.warc.gz
CC-MAIN-2017-04
992
4
https://www.sous-chefs.org/cookbooks/github/README
code
A Library Cookbook for downloading assets, archives or deploying from GitHub repositories This cookbook is maintained by the Sous Chefs. The Sous Chefs are a community of Chef cookbook maintainers working together to maintain important cookbooks. If you’d like to know more please visit sous-chefs.org (opens in a new tab) or come chat with us on the Chef Community Slack in #sous-chefs (opens in a new tab). - Any chef supported platform The following resources are provided: This project exists thanks to all the people who contribute. (opens in a new tab) Thank you to all our backers! Support this project by becoming a sponsor. Your logo will show up here with a link to your website.
s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296817095.3/warc/CC-MAIN-20240416124708-20240416154708-00001.warc.gz
CC-MAIN-2024-18
691
7
https://forum.freecodecamp.org/t/stuck-on-the-first-npm-challenge-please-help/421324
code
Hello, everyone. I feel like a fool asking for help on the first npm challenge, but I don’t exactly know what site I should use for the JSON file required. I tried using github to store the file and used the raw link for the challenge but that didn’t work. I also tried using jsdelivr but that obviously did not work. Can you tell me which site to create the JSON file on?
s3://commoncrawl/crawl-data/CC-MAIN-2022-33/segments/1659882570879.1/warc/CC-MAIN-20220808213349-20220809003349-00210.warc.gz
CC-MAIN-2022-33
376
4
https://www.experts-exchange.com/questions/26837212/Can-I-show-an-image-using-Silverlight-and-prevent-it-from-being-copied.html
code
I hope to write a Silverlight and/or a Silverlight out of browser application involving certain images which can be viewed by certain users. How can I disable the clipboard when a picture has the focus? Or remove the "Copy" menu item from the context menu on a right click on that image? (I assume I will be running in the browser) I don't want the user to copy the picture and thereby make the picture public.
s3://commoncrawl/crawl-data/CC-MAIN-2018-13/segments/1521257646952.38/warc/CC-MAIN-20180319140246-20180319160246-00775.warc.gz
CC-MAIN-2018-13
410
4
http://tami.booklikes.com/post/1398616/another-disappointment
code
I'd do nothing but reading if I could (ok, maybe eat some great food, buy some fancy shoes between two books...oh, and spend some quality time with the gorgeous guy I married while I am on reading-break anyway...) I had high hopes. But those two main characters just didn't do it for me. And the plague setting really really depressed me to no end. It was well written, but not very enjoyable to me.
s3://commoncrawl/crawl-data/CC-MAIN-2021-17/segments/1618038077336.28/warc/CC-MAIN-20210414064832-20210414094832-00290.warc.gz
CC-MAIN-2021-17
399
5
https://www.complaintsboard.com/complaints/walgreens-c309929.html
code
Walgreens / walgreen's complainers Hi, "www.walgreens.com" ; - idiots! Since the mid-90's; never type: Preceding the web address you intend to reach. you cause your computer to go "chasing it's self"!!! The "_.com" means a commercial website "_.org" means an organization that is tax exempt. "_.gov means the united states of america's government (how's my spelling???). Have someone/some school/ individual/"it"person at work (if you are in s. w. mo.)- (that's short for southwest missouri). Q: do you have children/grand-kids/friens/enemies, neighbors? Get rid of that"thing"!!! I just registered @"www.walgreens.com"- I may win $3000. oo!!! More Walgreens Complaints & Reviews - Walgreens - as an employee - Walgreens - refuse to pay back - Walgreens Phone Card - calling cards - Walgreens - employee relations - Walgreens - $3000. sweepstakes - Walgreens - pharmacy - Walgreens - rude & demeaning treatment by dale, pharmacist in seymour, in location - Walgreens - pharmacy staff - Walgreens - walgreens phone card plus - Walgreens - pharmacy/pharmacists
s3://commoncrawl/crawl-data/CC-MAIN-2018-51/segments/1544376825112.63/warc/CC-MAIN-20181213215347-20181214000847-00047.warc.gz
CC-MAIN-2018-51
1,063
22
http://thomasknierim.com/macbook-pro-2021-review/
code
MacBook Pro 2021 Review I have added a MacBook Pro 2021 model to my development computers recently. After two month of work with the new M1 Pro, it’s time for a quick review. This is for readers who think about getting a Mac for software development, particularly a M1 machine. You may be wondering if it’s worth the expense, whether it is as fast as they say, and whether it is suitable for cross-platform software development. I’ll try to answer these questions from my perspective. As a software engineer, I worked with Linux laptops from Lenovo and Dell for almost two decades, so my previous experience with Apple computers lies in the ancient past of information technology. I have to admit that Apple’s new Silicon line-up is a masterpiece of engineering. The performance, power consumption and thermal properties of the M1 chips are impressive. The M1 Pro and M1 Max models are designed specifically for Apple and feature a “unified memory” architecture, meaning that a 10 core ARM CPU and a 16 or 32 core GPU are integrated on a single chip onboard with 16, 32 or 64GB LPDDR5 SDRAM which is accessed via 8-channels rendering a whopping 200 GB/s (Pro) or 400 GB/s (Max) total bandwidth. This architecture delivers a performance that compares well with current high-end Intel-based laptops. It’s a step-up from previous MacBook models and also marks a break with the x86-64 architecture, although Apple has used ARM chips in other products in the past. I won’t bore you with benchmarks, but if you are interested, you find that Passmark has all the data. What I consider even more impressive, is the energy efficiency of this machine. 10 or 16 core CPUs aren’t a rarity these days after all. If you’re going for raw power, an Intel Xeon, a Ryzen 9 or even an AMD EPYC or Threadripper may fit the bill. But these CPUs are power-hungry. The M1 MacBooks, on the other hand, can do a full day’s work on a single charge. Apple claims a battery life of 21 hours, but realistically it is somewhere between 10 and 12 hours depending on use. So, a full work day off the grid is doable and the M1 models are actually the only (powerful enough) laptops I know that can do this. Also, they are very silent and cool. The fan only comes on when you stress the CPU continuously, even though I use the machine in a tropical environment. Other plus points of the M1 MacBook are the extraordinary build quality, the sleek design and the amazing “Retina” display which looks like a high-resolution OLED display, but surprisingly isn’t. It is an LCD display backlit by mini-LEDs. The screen reaches a peak brightness of 1,600 nits with a contrast ratio of 1000000:1. The XDR mini-LED technology provides high contrast and brightness at a lower power consumption than OLED. The 16.2” display has a native resolution of 3456x2234 at 254 pixels per inch. For software development, I’d always choose a 16” or bigger screen, because development often requires to be able to look at multiple windows simultaneously. Of course, you can also connect your MacBook to an external 4K monitor. More excellence is found in the internal stereo speakers which, despite facing upwards from the chassis, do not cause any acoustic feedback to the internal microphone. They are among the best built-ins I’ve heard in a laptop. If your work involves audio and video, the M1 MacBook Pro is going to shine. Now on to development. If you’re developing for macOS or iOS, then obviously the MacBook is ideal, but it also suitable for cross-platform development. Since the macOS is based on BSD, you get a Unix command line (zsh or bash) and while most commonly used development tools aren’t present out-of-the-box, they can be easily installed with the Homebrew package manager. It took me roughly a day to spin up a complete development environment with Visual Studio Code, CLI tools, Git, Docker Desktop, Node.js, Python and Go, a local database, libraries and whatnot. As mentioned, the new Macs run on an ARM64/v8 architecture and this is rarely ever a problem. At this point (late 2021) almost all applications are available for the Silicon architecture. In those cases where you have to work with x86-64 applications, you need to install the Rosetta 2 emulator that translates the machine code. The installation is automatically triggered the first time you run and Intel executable. The Rosetta 2 emulator runs in the background and kicks in, every time you start an x86-64 application. If you need to run x86-64 CLI programs, such as older Node.js Versions (<= v14) that don’t support Silicon, you can run the terminal in Rosetta mode. Alternatively, you can run individual commands in emulation mode by using “arch”, e.g. arch -x86_64 node on the command line. Overall, emulation runs transparently and fast. It is barely noticeable, unless the process performs heavy computations, for example cross-compilation or building Docker images for the Intel architecture. While it is possible to run Kubernetes on the M1 machines, for example Minikube, Kind, or MicroK8s, the installation may still present some challenges. So, if your work is centred around Docker/Kubernetes and if you are using mainly x86 images, the M1 machines are not an ideal choice. The same can be said for programming environments that are not up to date, such as Node.js < 14, PHP < 8, older Python versions and in fact any programming environments with legacy x86 toolchains. You can still work in Rosetta mode, but it may not be ideal and you may have to wait for native Silicon support. Let’s talk aftermarket upgrades. Is it possible to increase RAM and disk capacity in the M1 machines? The short answer is no, but possibly yes. Confusing, I know. The SDRAM and SSD components are soldered onto the main board. This makes upgrades incredibly difficult. Apple itself does neither perform nor recommend it. According to reports earlier this year, Chinese technicians have successfully performed both RAM and disk upgrades on the M1 models. Perhaps we will see inofficial M1 modding/upgrade services offered by shops in Asia soon. Given the inherent risks, voiding your warranty is probably the least of your concerns with this procedure. Another thing I didn’t like is the MacBook keyboard. It is ultraflat and squishy. My bi-lingual keyboard has keys with English and Thai characters appearing in the same font and colour, which is visually extremely confusing. On the positive side, the gimmicky touch bar has disappeared and made way for full-size function keys. Would I recommend a M1 MacBook for development? Yes, certainly. If your work involves media creation, design, or any creative work even more so. Even for us “regular” developers who mainly deal with code, compilers, databases, diagrams, specifications and such, the M1 MacBook is very suitable unless your work is somehow tied to the x86 architecture. Would I prefer a MacBook for development? To be honest, I still prefer a high-end Linux machine. There are three reasons for that: (1) I can customise a Linux computer exactly to my needs, (2) it is more closely related to server environments, (3) I can pick, upgrade and expand the hardware as I wish. Finally, there is the price, which is steep for all M1 models. A high-end Thinkpad, Dell, or gaming laptop would cost less while offering similar or superior performance and configuration. The M1 Pro and Max models are premium laptops that come at a premium price.
s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656103205617.12/warc/CC-MAIN-20220626101442-20220626131442-00310.warc.gz
CC-MAIN-2022-27
7,485
11
https://forums.adobe.com/thread/576131
code
I have a spark list control that uses an item renderer (spark itemrenderer) which contains a spark panel. That spark panel uses a custom skin for a collapsing it. Everything works fine to collapse / open the component inside the list. However, i'm trying to collapse all / expand all on click. Any ideas ? I tried overriding the set data function and using an attribute like isCollapsed and setting the panel.skin.currentState to collapsed but that does something weird, it collapses and opens it back up. Not sure if anybody has any other solutions for that. If you are adding custom states to an item renderer you will have to override the getCurrentRendererState() method to handle it. You can read more about this in this post: And here is an example of using DataRenderer instead of ItemRenderer to do something similar:
s3://commoncrawl/crawl-data/CC-MAIN-2018-43/segments/1539583512015.74/warc/CC-MAIN-20181018214747-20181019000247-00215.warc.gz
CC-MAIN-2018-43
825
4
https://community.cryptomator.org/t/feature-request-resilio-sync-access-on-ios/1166
code
We are using Resilio Sync extensively on Mac, iOS and Synology NAS. We’re at the same time getting rid of “traditional” cloud services. DropBox has gone and Box hangs around only for the odd encrypted payload. Resilio Sync is fast, easy and extensible. We’d dearly love to be able to store vaults in there, not just on Mac, but for all of our end points. My simple understanding is it would also get away from using WebDAV which I am growing to hate - particularly with Excel. Sync Pro does offer Encrypted folder support. The issue is not whether it offers encrypted folder support - it does, using its own encryption, but those folders are only readable/writable using another RW key to create another RW folder. However none of that is relevant to this request. The issue that’s being raised in this request is to enable Cryptomator on iOS to access Resilio Sync as a storage location for vaults. Thanks for giving me an amazing idea! WebDAW is good, when you have a lot of free space. But running Cryptomater on top of Resilio Sync seems to be THE BEST combination for speed and the Torrent protocol.
s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764499891.42/warc/CC-MAIN-20230131222253-20230201012253-00537.warc.gz
CC-MAIN-2023-06
1,114
7
https://www.sfu.ca/criminology/newsandevents/criminology-news/mitch-macdonald-wins-best-paper-award.html
code
Mitch Macdonald wins best paper award MA student Mitch Macdonald won best paper award at the International Symposium on Foundations of Open Source Intelligence and Security Informatics, held in Paris, France in August. The symposium brings together academics, government officials and industry practitioners to discuss innovative technologies aimed at preventing web crime. Macdonald was lead researcher on the winning paper titled, “Identifying Digital Threats in a Hacker Web Forum.” Richard Frank, Joseph Mei and Bryan Monk were contributing authors. The paper analyzed content posted to online hacker forums through automated techniques to identify a subset of the data relevant to the security of critical systems. “This paper contributes to a growing body of research that uses data mining techniques to analyze large volumes of information within a cyber-security context. Our main contribution was the use of automated tools in complement with one another, to facilitate each stage of the research process from data collection to sampling to analysis, ” says Macdonald. “Dr. Frank presented at the conference, which was focused on the exchange of methods for the collection and analysis of open source data (available on the Internet). This paper added to the conference by presenting another method and a novel set of results. Attendees were interested in how we used a tiered-approach to ultimately highlight interesting parts of the data.” The paper was prepared as part of Macdonald and Frank’s support of a project funded by Public Safety Canada. The project analyzed open source data pertaining to Canadian critical infrastructure systems made available in hacker forums.
s3://commoncrawl/crawl-data/CC-MAIN-2022-33/segments/1659882573029.81/warc/CC-MAIN-20220817153027-20220817183027-00432.warc.gz
CC-MAIN-2022-33
1,699
8
https://fibre.fun/video/learn-to-read-chinese-with-ease-shaolan
code
For foreigners, learning to speak Chinese is a hard task. But learning to read the beautiful, often complex characters of the Chinese written language may be less difficult. ShaoLan walks through a simple lesson in recognizing the ideas behind the characters and their meaning -- building from a few simple forms to more complex concepts. Call it Chineasy. TEDTalks is a daily video podcast of the best talks and performances from the TED Conference, where the world's leading thinkers and doers give the talk of their lives in 18 minutes (or less). Look for talks on Technology, Entertainment and Design -- plus science, business, global issues, the arts and much more. Find closed captions and translated subtitles in many languages at http://www.ted.com/translate Follow TED news on Twitter: http://www.twitter.com/tednews Like TED on Facebook: https://www.facebook.com/TED Subscribe to our channel: http://www.youtube.com/user/TEDtalksDirector Date Added: 2019-04-12 Watched 43 times
s3://commoncrawl/crawl-data/CC-MAIN-2022-33/segments/1659882573197.34/warc/CC-MAIN-20220818124424-20220818154424-00736.warc.gz
CC-MAIN-2022-33
987
8
https://paulryan.com.au/2014/dynamically-nesting-caml-statements/
code
Here is a short PowerShell function that can be used when you need to dynamically generate CAML queries with many logically joined statements. I actually adapted it from a C# implementation I wrote (which is probably more useful…) but as you can rewrite it in C# very easily I won’t bother bother posting it twice. As CAML logical join operators (And, Or) can only compare two statements, when many statements need to be compared you must nest them which is what this function achieves. The $join parameter should be passed as “And” or “Or” and the $fragments parameter should be passed as an array of CAML statement strings such as: @("<Eq><FieldRef Name='Title' /><Value Type='Text'>title</Value></Eq>", "<Eq><FieldRef Name='FileLeafRef' /><Value Type='Text'>name.docx</Value></Eq>")
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100508.23/warc/CC-MAIN-20231203125921-20231203155921-00274.warc.gz
CC-MAIN-2023-50
797
5
https://lcguida.com/2017/07/06/rake-structure-dump-and-load/
code
Using db:structure dump and load instead of db:schema06 Jul 2017 Today I faced the following problem: I had a migration creating a index in SQL, like this: CREATE UNIQUE INDEX some_table_single_row ON some_table((1)) which will make this table unique in the database. Problem is, Rails won’t import this INDEX to db/schema.rb and, because of it, my test database didn’t created it and I had a failing test. Rails comes with a rake task called db:structure which will do pretty much what db:schema does but using the specific database tool for it, in this case So, I created structure dump from dev database: [$] rake db:structure:dump which creates a db/structure.sql file, dropped my test database and re-created it from this new dump: [$] RAILS_ENV=test rake:structure:load Et voilà, tests were passing.
s3://commoncrawl/crawl-data/CC-MAIN-2021-31/segments/1627046153966.60/warc/CC-MAIN-20210730122926-20210730152926-00679.warc.gz
CC-MAIN-2021-31
810
17
https://issues.apache.org/jira/browse/WICKET-3335?page=com.atlassian.jira.plugin.ext.subversion:subversion-commits-tabpanel
code
its not exactly how it works. queue(new Container("c1")) will not be immediately executed, none of them will. unqueueing happens after/before? the initialization of the component when the markup is available. when dequeuing we try to find a queued child closest to the container, so in the example above it will work like this: resolving c1, found and dequeued resolving c1->input. look in c1, not found. look in parent, found and dequeued resolving c2. look in c1, not found. look in parent, found and dequeued resolving c2->input: look in c2, found and dequeued also i now think queue is too cumberson to type, we should probably rename it to "push"
s3://commoncrawl/crawl-data/CC-MAIN-2016-18/segments/1461860117783.16/warc/CC-MAIN-20160428161517-00090-ip-10-239-7-51.ec2.internal.warc.gz
CC-MAIN-2016-18
651
7
https://www.my.freelancer.com/projects/android/need-android-developer-27450762/?ngsw-bypass=&w=f
code
We had developed a product,now we need to streamline and integrate certain elements. 11 freelancers are bidding on average ₹9035 for this job Hi Gentleman, This is Paul Devanesan has done [login to view URL] and [login to view URL] from IIT Madras. I am a technology expert, more than a decade I am developing and delivering applications on Java based technologies. I am a certified Jav Lagi Myself worked on Android native for past 10 years and worked on most of the Android frameworks. I can help you to develop the functionalities, for more details kindly chat with me
s3://commoncrawl/crawl-data/CC-MAIN-2020-45/segments/1603107885126.36/warc/CC-MAIN-20201025012538-20201025042538-00361.warc.gz
CC-MAIN-2020-45
573
4
https://theahaus.wordpress.com/2014/09/06/to-do-better/
code
In general I attempt to make my blog articles here as professional as possible. Part of this is good paragraphing. In my most recent article I clearly made a mistake in my posting process. The proper paragraphing is absent. Since the article is not extremely long I do not plan to change it. But I promise in the future to do better.
s3://commoncrawl/crawl-data/CC-MAIN-2019-13/segments/1552912203547.62/warc/CC-MAIN-20190325010547-20190325032547-00264.warc.gz
CC-MAIN-2019-13
333
1
https://www.idigbio.org/content/uf-software-carpentry-spring-2018-workshop
code
The UF Carpentries Club, Informatics Institute, Biodiversity Institute, and Marston Science Library are combining to offer a two day Software Carpentry Workshop, Monday-Tuesday, January 22-23, 2018, to help the UF community get started learning R and common software development tools such as the Unix shell, SQL, and Git. Need to learn some programming for a class? Have data you’re scared to work with in Excel? Want to collaborate effectively with your peers? We were there once too. Come start learning with us. Our instructors are trained by the Carpentries in evidence-based pedagogy and our materials have been developed collaboratively over years by dozens of contributors. The Informatics Institute and Biodiversity Institute have generously volunteered space and resources for this workshop in order to advance the skillset of the UF community. The organizers, instructors, and helpers are volunteering their time to help UF, and you! You can learn more about the Workshop and Software Carpentry at https://uf-carpentry.github.io/2018-01-22-UFII/. Seats are limited to 24 and there is a $46 registration fee, payable by credit card, which will include lunch on both days. Please let us know if you need a vegetarian, gluten-free, or vegan meal on the registration form. Registration is required. Please plan to attend the entire two days. Click below to register. If registration is full, you can be added to the Waitlist for the next scheduled workshop. Contact Matt Collins to have your name added to the list. Contact: Please email Matthew Collins at [email protected] for more information. Informatics Institute (UFII) & Biodiversity Institute (UFBI) Room E251 CSE (Computer Science & Engineering Building) 432 Newell Drive Gainesville, FL 32611
s3://commoncrawl/crawl-data/CC-MAIN-2020-45/segments/1603107911027.72/warc/CC-MAIN-20201030153002-20201030183002-00087.warc.gz
CC-MAIN-2020-45
1,774
12
https://forums.rpgmakerweb.com/index.php?tags/dlc/
code
Not sure if I somehow missed something, but did anyone else notice that some DLCs that were previously available (and are still available on Steam) are no longer showing on RPG Maker Web's DLC section? A good example is if you put a filter for User Interface Material - 5 and 6 are no longer... Just putting out feelers to see what the community thinks of the idea if I spent time to create a dlc pack that featured megalithic ruins-such as Stonehenge, and statues from ancient civilizations to flavor your games? I had ideas for Stonehenge, the Colossus of Rhodes, random hands, feet... Yeah, I have NO IDEA where to publish this thread, so I'll stick it here. Anyways, I made some icons with pixel art (specifically, 100). I want to publish them to be available as DLC for RPG Maker. I want the DLC to cost money. However, I don't have any idea how to publish my work either as... I have a question about the use rights for the Kid Generator Parts DLC - the site has two tags in particular that concern me: "Violent Content Forbidden" and "Adult Content Forbidden". While the labels are self-explanatory, they, by themselves seem far too broad to clarify where the line is... So I'm not sure if this is right place to post this I'm kinda brand new But I just bought a bunch of DLC packs from the RPG Maker website specifically the japanese character expansions and I tried to add each part to their respective folders (they're all properly labeled) and when I start up... I got MV in 2017 and never got around to doing much at the time. Now that I have a better computer, I finally wanted to start using MV. the problem is that i had bought DLC but it wasn't in the game. i looked at a bunch of tutorials and have seen that there's supposed to be a Generator folder... I have been looking at some packs on the RPGMaker web store and was wondering if anybody knows if these packs are allowed to be used in commercial games? PVG Sci-Fi Tiles School Tiles Bundle Sci-Fi Tiles Resource Pack Sci Fi Battlebacks Royal Tiles Resource Pack I have been looking around for any character generators that could be used to make busts for characters. After looking at Spriter Pro, it looks like it might fit my needs but I am wanting to know if it has a good variety of Sci-fi/modern character parts, as I am wanting to make a... another graphic pack for my drawn style has been released: Futuristic Cities - Robots Expansion is available now. Find it on the RPG Maker store or Steam! I'm creating this thread to give you some impressions on what you can actually do with the graphics. Please note that this is a... I just interest, can I use RPG Maker VX Ace custom (or DLC) graphics in other engines? I don't know what written in license agreement of that graphics packs because tiles taken from other non-protected projects (it's old practice). I'm getting ready to release my game in about a month. I want to have add-on content (weapons, outfits, items) that are on the game from day one, but won't be available to the user until later dates. For example I might have a Halloween themed outfit available on Halloween. This way as time... I just wanted to point out that the auto-tiles in the Nostalgia Graphics pack are broken. I'm talking about the upper right corner piece of most (if not all?) auto tiles. The one piece that is critical for drawing anything more complex than a square. While a bit irritating, since I expect... I placed this thread here though I'm not sure if it should go here. Mod can move it if needed I have 2 questions relating to DLC. 1. I bought DLC on Steam for RPGMaker VXAce and accidentally deleted some of the files in it. How can I get it back? 2. I bought a music pack on Steam for RPGMaker... So, when MV was released i didn't even know RPG Maker was a thing, so i obviously didn't preorder it. Can anyone tell me in which DLC did the Preorder Music end up on? I heard a lot of good songs from it, and i really just want to buy the DLC that has them now, since i heard they put the... I was going through some of my older RPG Maker MV Resources, trying to sort them out and whatnot and came across the Super Mystery Magazine Character Set. (It comes with sprites for Chupacabra, Mothman, Bigfoot, Ningen, Kappa, Moai, Pyramid Eye, and Flatwoods Monster). I believe this... The title pretty much says it all. I'm interesting in playing RPG Maker games that were made with these DLC assets. If you know of a game (or playable demo), feel free to share it. If some interesting games pop up, we can discuss them as well. I didn't really know where to post this thread but... Ok, i bought Time Fantasy DLC. I'm with very much problems with this DLC, mainly with the font. I just downloaded all pixeladed fonts of Dafont.com and none of them fit. Someone have a font that fit with this DLC? Pixeladed For VX Ace. I recently bought the Thaumaturgy animation DLC for RMMV, and I've had no trouble importing it into my game. However, when I set the animations up (increased maximum for animations, added the animations, and raised the max number of frames to 30 for each one), they don't really. .play? It plays... Silent Hill 4pm, 91F, air quality forecast of 301 AQI The mask upgrade appears to be working great, I've had less hallucinations of weird fleshy creatures today... Some even look like people. Though I remain unconvinced of such. Still in hindsight, I probably should have treated previous "weird fleshy creatures" better, just in case.
s3://commoncrawl/crawl-data/CC-MAIN-2020-40/segments/1600402101163.62/warc/CC-MAIN-20200930013009-20200930043009-00600.warc.gz
CC-MAIN-2020-40
5,469
49
https://annevonwiese.com/2020/06/14/16th-century-german-style-white-apron-with-honeycomb-smocked-pleating-and-drawn-work-hem-stitch-2/
code
This is my first ever SCA A&S project I started in 2019, I created and documented this apron for my Barony and Kingdom A&S competitions in early 2020. It is a white medium weight linen apron, inspired by early 16th c. aprons from central Europe, particularly what is now Germany. I also was inspired by my SCA peers and other aprons I have seen recreated. Visit my article “Was it Actually Honeycomb Smocking on 16th c. German Clothing – The Great Debate!” for a discussion on the appropriateness of honeycomb smocking. The documentation is below, please note I am a beginner with research documentation in the SCA, the item did well at the baronial level and medium at my kingdom competition. If you want to use or discuss any information in it, feel free to contact me.
s3://commoncrawl/crawl-data/CC-MAIN-2022-05/segments/1642320304810.95/warc/CC-MAIN-20220125100035-20220125130035-00314.warc.gz
CC-MAIN-2022-05
777
1
http://antena3i.com/how-to/repairing-change-pdf-file-to-one-i-can-edit.php
code
I have recently gotten a Gateway need help restoring this. Hi All I found in related forum on Techspot. I have not seen any that come with the SATA cable. (5000) series cards were DirectX 9.0.If it is custom, what kindEthernet connection i need internet no? I followed some advises I in my device manager in front of multimedia controller. Use your Gateway for college work, and your desk can http://antena3i.com/how-to/repairing-change-key-on-wpa.php the *****ic thing I did... edit Download Acrobat All other capacitors conroller ? There are some guides online that say how to do this. I need something just to adjust the levels can top for games. please help me with my laptop. If anyone could help to I need to take? Asddsadsa <--- i I reliability of about a year or less. enter the character j.k and l together and some other combinations.. It says in the dxdiag that of damage or burning inside, and found nothing. I'm looking for a soundNVIDIA FX 5200 there. How To Edit A Pdf On Mac There was a period of file A7J and I'm using XP Home.Or any ideas onare perfectly flat. How old of How old of I think that's the reason why i can't find more info of bass and treble coming from my speakers.I don't think there isfor over an half of a year.Can i download a digitally signed but they have not given me any answer yet. I do, however, have a PC file 5.1 surround sound Logitech X-540 speaker system.You could permanently harm How To Edit A Pdf For Free it has good Technical Specs and Customer Reviews.This is not really what motherboard is this? In addition, I also have a "?!"anyone please help me? Please post more information... Then a much later period when all one it was, is when I discovered the problem.You should seeopen rather it said it needed to be formatted.If so, what steps one a computer is this?Once I double clicked it, it did not have a peek here the machine have inserted in it? THanks the nVida FX a dual core pentium 4.Will Older pc's are even more proneASUS motherboard with on board networking. MightyKing Please someone help me! Can Get More Information your drive is BROKEN.Is it a custom build, or to I'm interested in doing, however. I deleted "Multimedia controller" from equalizer for use with Windows Vista. If it does work then you have a driver conflict in your machine.fix it without internet??I been reading about these thingsfix Ethernet without internet?Hello, First, I would like to thank new devices and drivers were digitally signed... What type ofthe device manager, reboot the computer.I plugged my USB flash drive in, which the cause of the complete lack of power? They cost more to install because How To Edit Pdf File In Adobe Reader version and install it in my laptop?Depends on how the drive was formatted - NTFS? I would certainly appreciate. Any ideas how to http://antena3i.com/how-to/repairing-changing-word-file-types.php with a far superior, off-board, card.Marks represent and install the drivers. its weird i cant https://support.office.com/en-us/article/Edit-PDF-content-in-Word-b2d1d729-6b79-499a-bcdb-233379c2f63a hat pc due to the Ethernet problem.If you don't then you'restill using the onboard video.I dismantled the PC to look for signsis it manufactured (hp, dell, ect) 2. I have asked for help to Asus support in advance any responses I get to this thread. I have an ASUS laptop How To Edit Text In A Pdf my sisgrv.dll is not digitally signed.Now we have 14 people, file I had to get it replaced.So the only choice Had to be reset at least once a day. How do ihave a new pc: OS: Windows Vista Ultimate.Well in order to repair that one laptop computer for the purposes of college.Thanks for any help you can offer. (as well as core2duos) and your current ram.So...i can say that it is worth to buy. what multimedia audioa performance impact? I have an Asus P4SGX-MX - Check This Out to not work with something broken on the motherboard.After my hard disk died,I have 3 sticks of RAM and am having random reboot issues. It should work with your current processor Will a single core CPU work with dual channel RAM? How likely is it that this is Edit Pdf In Word play some games even if i meet the requirements. Go into device manager enter a,s,d together... Is there any such thing? http://www.softpedia.com/get/Multimedia/Audio/Audio-Plugins/Voxengo-Overtone-GEQ.shtml But somethingneed your help please.Did you mean pentium D? Hi, I entered them together... Any help wouldwith one 10 mb line. But they are easy to install, and go along with this? And i am considereing of buying theI had to reformat. can PS: Remember internet is not working int Acrobat Pdf Editor to resolve this please? change Any information you could givewas not plugged in during the above procedures. I have no sound and a question mark in front of two lines "PCI device". Ok, lets start withare nearly necessary on installing some motherboards. Compare your motherboard date with the download dates, and download anything newer than Pdfedit your build. Just need someone to tell me what I really should do.Once I got everything restored to the way file and expand "display adapters". About the same, with similar short term time when none were digitally signed... Any restrictions whichyour gateway lcd screen. Kind want opinions on what i should get.that is completely worth the price to pay for it. one Will there be the cables are generally more expensive. But i can The problem is that the card will only use 1 AV output. Would anyone know how of motherboard does it have? 3. If it doesn't than be much appreciated.What type/size/double/single sided memory does
s3://commoncrawl/crawl-data/CC-MAIN-2018-34/segments/1534221210735.11/warc/CC-MAIN-20180816113217-20180816133217-00522.warc.gz
CC-MAIN-2018-34
5,607
19
https://learn.hashicorp.com/tutorials/consul/kubernetes-api-gateway?in=consul/kubernetes
code
Consul API Gateway is a dedicated ingress solution for intelligently routing traffic to applications running on your HashiCorp Consul service mesh. This provides a consistent method for handling inbound requests to the service mesh from external clients. The Consul API gateway takes all API calls from clients, then routes them to the appropriate microservice with request routing, composition, and protocol translation. This eliminates the need to install another dedicated application. Once Consul API Gateway becomes available for your services, you gain the ability to have a platform-agnostic API Gateway that is built into Consul. Consul API Gateway is an enhancement to Ingress Controller and uses a different schema. The Consul API Gateway Controller deploys an API Gateway pod and configures the gateway, listeners, and the routes to services. If TLS is enabled on a listener, the controller will load the certificate from the Kubernetes Secrets storage. If the certificate is rotated, the Gateway Controller will automatically update the listener. Other features of the Consul API Gateway include load balancing, modifying HTTP headers, and splitting traffic between multiple services based on weighted ratios. In this tutorial, you will: - Create a local Kubernetes cluster using Kind - Install Consul using Helm or Consul K8s-CLI - Deploy example applications HashiCups and Echo Server - Deploy Consul API Gateway - Explore Ingress into the service mesh with HashiCups - Explore Load Balancing with Echo Server »Clone GitHub repository Clone the GitHub repository containing the configuration files and resources. $ git clone https://github.com/hashicorp/learn-consul-kubernetes.git Change into the directory with the newly cloned repository. $ cd learn-consul-kubernetes/ Fetch the latest tags and check out the v0.0.20 tag of the repository. $ git fetch && git checkout v0.0.20 Change into the directory that contains the complete configuration files for this tutorial. $ cd api-gateway/ »Create a local cluster Start Kind with the --config flag specifying the cluster.yaml configuration file. $ kind create cluster --config=kind/cluster.yaml Creating cluster "kind" ... ✓ Ensuring node image (kindest/node:v1.21.1) 🖼 ✓ Preparing nodes 📦 ✓ Writing configuration 📜 ✓ Starting control-plane 🕹️ ✓ Installing CNI 🔌 ✓ Installing StorageClass 💾 Set kubectl context to "kind-kind" You can now use your cluster with: kubectl cluster-info --context kind-kind Have a nice day! 👋 »Create the Consul API Gateway Controller CRDs Create the custom resource definitions (CRD) for the API Gateway Controller. $ kubectl apply --kustomize "github.com/hashicorp/consul-api-gateway/config/crd?ref=v0.2.0" customresourcedefinition.apiextensions.k8s.io/gatewayclassconfigs.api-gateway.consul.hashicorp.com created customresourcedefinition.apiextensions.k8s.io/gatewayclasses.gateway.networking.k8s.io created customresourcedefinition.apiextensions.k8s.io/gateways.gateway.networking.k8s.io created customresourcedefinition.apiextensions.k8s.io/httproutes.gateway.networking.k8s.io created customresourcedefinition.apiextensions.k8s.io/meshservices.api-gateway.consul.hashicorp.com created customresourcedefinition.apiextensions.k8s.io/referencepolicies.gateway.networking.k8s.io created customresourcedefinition.apiextensions.k8s.io/tcproutes.gateway.networking.k8s.io created customresourcedefinition.apiextensions.k8s.io/tlsroutes.gateway.networking.k8s.io created customresourcedefinition.apiextensions.k8s.io/udproutes.gateway.networking.k8s.io created »Install Consul with the official Helm chart You can now deploy a complete Consul datacenter in your Kubernetes cluster using the official Consul Helm chart or the Consul K8S CLI. Both come with reasonable defaults; however, you will utilize a few custom values with the config.yaml file to help things go more smoothly with kind and enable useful features. Add the HashiCorp Helm Chart repository. $ helm repo add hashicorp https://helm.releases.hashicorp.com "hashicorp" has been added to your repositories Update the HashiCorp Helm Chart repository to get the latest chart versions. $ helm repo update hashicorp Hang tight while we grab the latest from your chart repositories... ...Successfully got an update from the "hashicorp" chart repository Update Complete. ⎈Happy Helming!⎈ Install the Consul Helm chart. $ helm install --values consul/config.yaml consul hashicorp/consul --create-namespace --namespace consul --version "0.43.0" NAME: consul LAST DEPLOYED: Mon May 2 16:25:36 2022 NAMESPACE: consul STATUS: deployed REVISION: 1 NOTES: Thank you for installing HashiCorp Consul! ... Note: You can review the official Helm chart values to learn more about the default settings. Security Warning: This tutorial is not for production use. By default, the chart will install an insecure configuration of Consul. Refer to the Secure Consul and Registered Services on Kubernetes tutorial to learn how you can secure Consul on Kubernetes in production. Additionally, it is highly recommended you use a properly secured Kubernetes cluster or make sure that you understand and enable the recommended security features. »Create the example application pods Deploy the Hashicups and Echo applications. $ kubectl apply --filename two-services/ --namespace default Wait until all of the pods are up and running. $ kubectl wait --for=condition=Ready --timeout=120s --all-namespaces pods --all pod/consul-api-gateway-controller-7c656b5f6-jqv7x condition met pod/consul-client-zb7gw condition met pod/consul-connect-injector-5994dd567c-68zf8 condition met ... »Inspect the API Gateway configuration file The API Gateway Controller consists of multiple components that facilitate ingress into your Consul service mesh. api-gateway/api-gw/consul-api-gateway.yaml file contents in your project directory. apiVersion: gateway.networking.k8s.io/v1alpha2 kind: Gateway metadata: name: example-gateway namespace: consul spec: gatewayClassName: consul-api-gateway listeners: - protocol: HTTPS port: 8443 name: https allowedRoutes: namespaces: from: Same tls: certificateRefs: - name: consul-server-cert This configuration file uses the following components: Gateway- This object is the main infrastructure resource that links all other related configuration information together. The spec itself defines listener and address details. To see more details about this type, see the Kubernetes Gateway documentation GatewayClass- This object (deployed and configured by the Helm chart) describes a class of Gateways available to the user for creating Gateway resources. To see more details about this type, see the Kubernetes GatewayClass documentation GatewayClassConfig- This object (deployed and configured by the Helm chart) describes additional Consul API Gateway related configuration parameters for the Note: Feel free to explore additional configuration details in the Consul API Gateway documentation. »Inspect the Routes file Routes tell your Consul API Controller how to handle traffic into your service mesh. api-gateway/api-gw/routes.yaml file contents in your project directory. apiVersion: gateway.networking.k8s.io/v1alpha2 kind: HTTPRoute metadata: name: example-route-1 namespace: consul spec: parentRefs: - name: example-gateway rules: - matches: - path: type: PathPrefix value: / backendRefs: - kind: Service name: echo-1 namespace: default port: 8080 weight: 50 - kind: Service name: echo-2 namespace: default port: 8090 weight: 50 --- apiVersion: gateway.networking.k8s.io/v1alpha2 kind: HTTPRoute metadata: name: example-route-2 namespace: consul spec: parentRefs: - name: example-gateway rules: - matches: - path: type: PathPrefix value: / backendRefs: - kind: Service name: frontend namespace: default port: 80 This configuration file uses the following components: HTTPRoute- This object specifies routing behavior of HTTP requests from a Gateway listener to a Service. Rules and matches within this type define conditions used for matching an HTTP request. To see more details about this type, see the Kubernetes HTTPRoute documentation. Note: Feel free to check out the Kubernetes HTTPRoute documentation for configuration options and details. »Inspect the ReferencePolicy file Reference policies ensure that a component in one Kubernetes namespace is authorized to reference a component that exists in another namespace. In this case, HTTPRoute objects in your consul namespace will be able to reference Service objects in your api-gateway/two-services/referencepolicy.yaml file contents in your project directory. apiVersion: gateway.networking.k8s.io/v1alpha2 kind: ReferencePolicy metadata: name: example-reference-policy namespace: default spec: from: - group: gateway.networking.k8s.io kind: HTTPRoute namespace: consul to: - group: "" kind: Service This configuration file defines a ReferencePolicy that acts as a handshake between namespaces. This ensures that a component in one Kubernetes namespace is authorized to reference a component that exists in another namespace. If you configure Route to send traffic to a service in another namespace, you must create a ReferencePolicy in the same service is in. If the ReferencePolicy does not exist, the Route cannot send traffic to the Note: Refer to the Kubernetes ReferencePolicy documentation for configuration options and details. »Create the Consul API Gateway Deploy the API Gateway. $ kubectl apply --filename api-gw/consul-api-gateway.yaml --namespace consul gateway.gateway.networking.k8s.io/example-gateway created Deploy the associated HTTP Routes once the API gateway reaches a ready state. $ kubectl wait --for=condition=ready gateway/example-gateway --namespace consul --timeout=90s && kubectl apply --filename api-gw/routes.yaml --namespace consul gateway.gateway.networking.k8s.io/example-gateway condition met httproute.gateway.networking.k8s.io/example-route-1 created httproute.gateway.networking.k8s.io/example-route-2 created Verify that all pods have been properly created in your consul namespace. Your environment should look similar to the list below. $ kubectl get pods --namespace consul NAME READY STATUS RESTARTS AGE consul-api-gateway-controller-7465f8d89-l6ctk 1/1 Running 1 7m53s consul-client-wntkm 1/1 Running 0 7m53s consul-connect-injector-5c6d7869-j6h4c 1/1 Running 0 7m53s consul-connect-injector-5c6d7869-r8g4m 1/1 Running 0 7m53s consul-controller-76f6695766-jpvxl 1/1 Running 0 7m53s consul-server-0 1/1 Running 0 7m53s consul-webhook-cert-manager-5bb49457bf-dt7qt 1/1 Running 0 7m53s example-gateway-6cb4d95bdd-5d9dc 1/1 Running 0 2m43s »Perform testing procedures »Explore the Consul UI Expose the Consul UI with kubectl port-forward using the consul-ui service name as the target. $ kubectl port-forward svc/consul-ui --namespace consul 6443:443 Visit the Consul UI at https://localhost:6443. Since this environment uses a self-signed TLS certificate for its resources, click to proceed through the certificate warnings. When the API Gateway has been successfully deployed, intentions for the Hashicups (labeled "frontend") and Echo services will appear here. https://localhost:6443/ui/dc1/services/example-gateway/intentions »Explore the sample applications The diagram below shows the structure of the Kubernetes cluster you have created. This includes the API Gateway Controller, the service mesh layer, and various pods. The Consul API Gateway can be configured to handle ingress for multiple services using a variety of methods. »Use Case 1: Ingress The Consul API Gateway can easily be configured for ingress into your service mesh applications. In this tutorial, the Consul API Gateway provides ingress to the Hashicups service. You can access the Hashicups frontend UI through the API Gateway at https://localhost:8443/hashicups. The Hashicups application is a collection of pods that together form a microservice application. To review, this HTTPRoute code snippet from the api-gateway/api-gw/routes.yaml file is what enables the single-service ingress behavior to the --- apiVersion: gateway.networking.k8s.io/v1alpha2 kind: HTTPRoute metadata: name: example-route-2 namespace: consul spec: parentRefs: - name: example-gateway rules: - matches: - path: type: PathPrefix value: / backendRefs: - kind: Service name: frontend namespace: default port: 80 --- »Use Case 2: Load Balancing The Consul API Gateway can also be used to load balance between multiple services within your service mesh. In this tutorial, the Consul API Gateway load balances between two separate Echo Server services. Check out the Echo Server frontend UI at https://localhost:8443/echo to see that the API Gateway is successfully routing traffic into the service mesh. Reload the page several times to notice how the load balancer alternates requests between the two different pods. To review, this HTTPRoute code snippet from the api-gateway/api-gw/routes.yaml file is what enables the load balancing behavior between the two --- apiVersion: gateway.networking.k8s.io/v1alpha2 kind: HTTPRoute metadata: name: example-route-1 namespace: consul spec: parentRefs: - name: example-gateway rules: - matches: - path: type: PathPrefix value: /echo backendRefs: - kind: Service name: echo-1 namespace: default port: 8080 weight: 50 - kind: Service name: echo-2 namespace: default port: 8090 weight: 50 --- Note: For more information on accessing service mesh services via the Consul API Gateway, visit the Consul API Gateway documentation page. »Clean up environment Clean up the Kubernetes environment you created. $ kind delete cluster In this tutorial, you used the Consul API gateway as an ingress solution for routing traffic to the applications running on your HashiCorp Consul service mesh. The environment you created in this tutorial highlighted the benefits of using the API Gateway for secure traffic ingress to multiple services as well as load-balancing. Utilizing Consul API Gateway as your dedicated ingress solution eliminates the need to install and manage additional applications for handling traffic ingress. Once Consul API Gateway becomes available for your services, you gain the ability to have a platform-agnostic API Gateway that is built into Consul. Feel free to explore these tutorials and collections to learn more about Consul service mesh, microservices, and Kubernetes security.
s3://commoncrawl/crawl-data/CC-MAIN-2022-21/segments/1652662619221.81/warc/CC-MAIN-20220526162749-20220526192749-00270.warc.gz
CC-MAIN-2022-21
14,400
116
http://staging.codeforphilly.org/projects/Summer_Hackathon_for_HS_Students-WebSLAM
code
Summer Hackathon for HS Students (WebSLAM) There is a huge opportunity to provide an awesome summer program for high school students through a grant with the Digital Media and Learning competition. I have a dream of pulling more HS students into the Code for Philly brigade with the idea of even building a student brigade chapter. If anyone is interested in supporting some summer programming with HS students, the grant is due on June 10th. My thought is to run a hackathon with HS students who attend Code for Philly meetups over the summer, but maybe you have a better idea? More info on the grant here: http://dmlcompetition.net/summer-youth-programming/summer-youth-programming-competition. I am more than happy to do most of the grant writing, but I need a team! I cannot make the June 4th meetup due to a prior engagement, but feel free to reach out if you are interested on Twitter: @mbteach Project ActivityThis project doesn't have any activity yet, post an update or log some buzz!
s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947474650.85/warc/CC-MAIN-20240226030734-20240226060734-00146.warc.gz
CC-MAIN-2024-10
993
6
https://www.johnsairsoft.com/airsoft-shop/airsoft-gun-magazines/aeg-gun-magazines/element-m4-metal-tan-magazine
code
Element M4 Metal Tan Magazine SPECS: With bottom winder and quick release Material: metal construction Magazine Capacity: 300 rounds Out of stock Element M4 Metal Tan Magazine is for M4 and M16 airsoft rifles. It is also compatible with JG and E&C M4 rifles.
s3://commoncrawl/crawl-data/CC-MAIN-2022-49/segments/1669446710918.58/warc/CC-MAIN-20221203011523-20221203041523-00695.warc.gz
CC-MAIN-2022-49
258
6
https://www.keepersecurity.com/blog/2018/08/03/welcoming-adam-everspaugh-keeper/
code
We’re very excited to welcome Adam Everspaugh, PhD to the Keeper family. Adam will serve as a cryptographic and cybersecurity advisor for Keeper. Adam’s advisory role is extremely important to us because security is the nucleus of our products. As our customers know, we a constant innovators who are fanatical about the security and quality of our products. Adam is a professional cryptographer, publishes research on applied cryptography and analyzes emerging cryptographic protocols for Google and other technology companies. He is also the co-inventor of the Pythia PRF service that protects passwords with an oblivious cryptographic primitive. He co-authored ReCrypt, a key-homomorphic encryption scheme for securely rotating keys used in cloud storage. In the past, Adam has discovered and published flaws in the Linux random number generator and the Dual Elliptic Curve random number generator. He also presents talks on cryptography at industry events including Milwaukee’s CypherCon, Chicago’s Thotcon and Defcon. He received his PhD in computer science from the University of Wisconsin and we are very excited for him to be lending his expertise to Keeper. If you’d like to connect with Adam you can find him on LinkedIn or by emailing [email protected]. As always, our commitment to privacy and security is at the forefront of all that we do. If you’re interested in learning more about our security protocols visit keepersecurity.com/security. We also remain committed to working with BugCrowd to manage our vulnerability disclosure program which you can learn more about by visiting https://bugcrowd.com/keepersecurity or our blog post here.
s3://commoncrawl/crawl-data/CC-MAIN-2020-34/segments/1596439737883.59/warc/CC-MAIN-20200808135620-20200808165620-00171.warc.gz
CC-MAIN-2020-34
1,679
4
http://mattheweatonwriter.com/the-ten-razones-turistas-love-spin-rewriter-9-0-siete-datos-increibles-sobre-la-herramienta-de-reescritura-de-articulos/
code
Spin Rewriter 9.0 is designed to create lots of content. You can give the software any article that you find online and the software will produce multiple (re-written) versions of the text. This means that you can quickly create 5 or 10 articles that can be distributed around the internet. This might sound like an easy way to write lots of content, but things aren’t always that simple. Many bloggers who don’t want to spend time creating their own content use this kind of software to produce their articles. Normally the results are really bad. But Spin Rewriter 9.0 claims to be different. Very different in fact… "It is my pleasure to give testimonial about this spinner tool. I think this is great and highly recommended tool to build a many unique articles for our internet marketing world. At the first time, I already see about another great spinner tools, but it is not free. And fortunately for me, I found spinnerchief. The free tools which have almost the same quality with another cost spinner tools. I already use spinnerchief to build many articles to attract traffics for my below minisite" Ideas are the sure products in the intricate brain functions of the system. Although there are amicable standards in the part of article ownership, what clients will only have to remember is to maintain a direct address for article data-keeping. The demands in the internet for competitive articles and products for website management will answer it all. SpinnerChief is being hailed as the world's most advanced content creation, article spinning and article submission tool. This powerful program will enable you to produce, verify and post completely original content within minutes, passing and exceeding Copyscape scrutiny, as well as being 100% readable and syntax-correct. Here are just some of the inbuilt features: All the basic functions of a normal article spinner software. Super fast/easy to rewrite your article using the unique "Super Replace" system. Huge expert-defined thesaurus. Thesaurus is saved locally, so the speed is very fast. Get synonyms from the Google Adwords keywords tool. Paragraph/Sentence edit mode, you can rewrite paragraphs/sentences easily. Split/Merge function - split an article to multiple smaller parts to make it much easier to write big articles. Import synonyms from text files - multiple formats supported. Batch-spin articles. Calculate the similarity among spun articles to ensure that they are unique form each other, not just unique from the original. Batch-compare articles similarity function. Submit article(s) to over 10 blog platforms and many article directories directly from SpinnerChief. Export articles with other syntax formats like [ ] [/] %\%. Favorites function - Add/Manage your favorite synonyms thesaurus based on your own categories and niches. Quick Preview - Easily preview the spun article and quickly locate the position you want to modify. Developer API - Now, programmers can integrate SpinnerChief functions into their own programs. Protect important keywords words in spun articles. Auto-add anchor text links in spun articles. "Uniqueness" percentage indicator. And many, many more functions not listed here. All in this free product (not just a trial or lite version) In addition, there are a selection of optional paid-for Pro features which take this product to a whole new level. In a situation where you do not have enough time or do not know how to paraphrase your text, our program will help you. The application has an innovative algorithm that will easily transform the text into a completely new one. In writing, each of us sometimes has a problem with good text editing. Have you ever wondered if there is any way to speed up? Our program is free, which will save you money and time. Solution is simple: our paraphrasing tool has an innovative algorithm and a very large database of synonyms. The machine intelligently choose an appropriate synonym or phrase for your text. With this technological solution, your text will be unique and free of plagiarism. It wasn't simple problem to solve, but after many hours of work, you can be sure that your text that has been paraphrased by us into a new version! If you want to change your new article or essay, then there is no problem. Paraphrasing or article rewriting can be tricky, even with the help of an article rewriter. Yes, you heard that right. It’s not always as easy as it may sound while using an instant article spinner you need to be sure that the original wording or style has not been copied. Even if you are citing something, it can still be considered as plagiarism if you don’t do it right. It is important to reread the results of paraphrasing tool just to see if it is making complete sense to you. Also, you may modify the words, phrases or sentences to make them sound more like you, the vocabulary and wording that the audience would recognize and find appealing. Use of plagiarism checker is also advised, just to be on the safe side. After all, computers remain computers; they can never replace human brain. To help and guide you on how to use our best free article spinner online tool, our experts have come up with a list of handy tips. These tips are constructive in preparing you to use article rewriter tool properly. You can modify words, synonyms and whole sentences so that the new sentences will sound even more like you. We remind you: the more words you change the better. This actions will show you a great paraphrasing opportunities. And your text will not be considered plagiarism. Rephrasing is not easy, however our free online app will help you to maintain the main idea of your text, all using appropriately selected words. Our program is the simplest yet most efficient online paraphrasing tool. You will know what we are talking about once you will start using this free article spinner. You have to use the our article rewriter to know what exactly we are talking about. This handy text spinner is useful for writers, bloggers, and webmasters. Accuracy, reliability, and swiftness are what makes it the best article rewriter. Moreover, it is completely free, and we intend to always keep it like that. Any article rewriter or paraphrasing tool basically scans through the content you provide it in order to look for all the words that it can replace with suitable synonyms or substitutes. Every replaced word will appear bold and highlighted in a colorful text. Clicking on the word will give you details such as original word or other suggestions, you also have an option to add your own word. By clicking on the original word, you can go back to original. Rewriting your article by hand is the classic approach that is slowly dissolving, however, many people still prefer so. Write manually and then rephrasing to ensure the finest quality is the safest way but it can often hours, days or weeks to finish a writing task that can otherwise take only a little time. And that’s why there also exist people who like to save the trouble and their time, so they look for an article rewriter or article spinner to do the job. Their technology makes it possible that very little has to be done to your web content. You get written content in quantities that you can really use. Your articles will be well written and easy to understand. The professionals have the tools to help you improve your business or brand on the internet. Most people are hesitant to use a spin writer technology, but Spin Rewriter 9.0 takes the guesswork out of having relevant written content for your business or brand. More importantly, your website can reuse content without copyright issues with Spin Rewriter 9.0 Our article rewriter is an advanced automated paraphrasing tool that allows instant online paraphrasing of any article into a unique content. Rewriting of content can help you greatly in avoiding the penalties you may suffer due to plagiarism. This free paraphrase tool does not require any registration or sign up, all you need is to enter any human readable written content, and you will get human readable rewritten content in the results. X-Spinner has super-advanced functions such as auto-grammar fix, for example it will correct "a apple" to "an apple," plus it can spin "I want to eat the apple, orange and banana" to "I want to eat the banana, orange and apple." We can't list all functions here, there are too many to list! - But one thing is sure, X-Spinner will give you the best rewritten article - no other spinner can do what X-Spinner does!
s3://commoncrawl/crawl-data/CC-MAIN-2019-04/segments/1547583660070.15/warc/CC-MAIN-20190118110804-20190118132804-00350.warc.gz
CC-MAIN-2019-04
8,548
10
https://bugreports.qt-project.org/browse/QTBUG-27030
code
I cannot reproduce it either. Here is the log output: starting waiting for finished() got finished(). error num: 0 response: " Successfully dumped 0 post variables. View it at http://www.posttestserver.com/data/2012/09/26/06.49.181831303178 Post body was 9 chars long. And the link contents: Time: Wed, 26 Sep 12 06:49:18 -0700 Source ip: 188.8.131.52 Headers (Some may be inserted by server) UNIQUE_ID = UGMH3tBx6hIAALMdu4cAAAAB HTTPS = on SSL_TLS_SNI = posttestserver.com CONTENT_TYPE = application/xml; charset=UTF-8 HTTP_USER_AGENT = BB10 Network test CONTENT_LENGTH = 9 HTTP_CONNECTION = close HTTP_ACCEPT_ENCODING = gzip HTTP_ACCEPT_LANGUAGE = en-US,* HTTP_HOST = posttestserver.com REMOTE_ADDR = 184.108.40.206 REMOTE_PORT = 65503 GATEWAY_INTERFACE = CGI/1.1 REQUEST_METHOD = POST REQUEST_URI = /post.php REQUEST_TIME = 1348667358 No Post Params. == Begin post body == == End post body == I think it might be something related with your setup. If no one objects, I am closing this.
s3://commoncrawl/crawl-data/CC-MAIN-2014-15/segments/1397609535095.7/warc/CC-MAIN-20140416005215-00566-ip-10-147-4-33.ec2.internal.warc.gz
CC-MAIN-2014-15
988
31
https://supr.snic.se/public/project/5651/
code
I am interested in the numerical discretisation of stochastic (partial) differential equations (SPDEs). To test the convergence, or other properties, of the numerical solutions, one often has to compute the expectations of some quantities. One thus need to simulate many many times the solution of such a stochastic problem. In the SPDE context, one thus has to solve M times a partial differential equation, where M should be of the order of 10^3 or more, in order to have M samples of the numerical solutions. Once this is done, one can use this information to approximate the above expectations and thus confirm the good behaviour of the numerical Since I realise that I need more CPU time than expected, I kindly ask if I you could upgrade my SMALL SNIC project to a MEDIUM one with 40000 CPU hours on Abisko or Kebnekaise. Thank you for your understanding.
s3://commoncrawl/crawl-data/CC-MAIN-2018-13/segments/1521257647545.54/warc/CC-MAIN-20180320205242-20180320225242-00084.warc.gz
CC-MAIN-2018-13
861
17
https://www.forcast.tech/en/blockchain-service/
code
We integrate and develop systems for your processes and services in blockchain in a decentralized way to offer a high-quality service. Discover out solutions Generation of tokens to be commercialized. We integrate blockchain technologies into your platform for the better use of the economy of tokens and non-fungible tokens (NFTs), in order to enhance the ownership of digital assets. We generate a Smart Contract to market tokens and NFT’s (ERC-20 or ERC-721) for a service offered by your company. Application development based on Smart Contracts (dApps). We develop App solutions that interact with the blockchain network. We program the architecture using the latest available technologies to guarantee it's security and scalability. We count with an exhaustive testing process for the deployment of Smart Contracts to the blockchain, in order to always ensure their stability and performance.
s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764500151.93/warc/CC-MAIN-20230204173912-20230204203912-00169.warc.gz
CC-MAIN-2023-06
900
8
http://xn--80af6adby0g.xn--p1ai/art/diflucan-low-price-rx-oxford
code
11 февраля, 2020 - 16:38 Diflucan | Low Price Rx Oxford Looking for a diflucan? Not a problem! Buy diflucan online --> http://newcenturyera.com/med/diflucan ---- Guaranteed Worldwide Shipping Discreet Package Low Prices 24/7/365 Customer Support 100% Satisfaction Guaranteed. Tags: diflucan buy online singapore price diflucan drug ach can i order diflucan online diflucan dipivoxil buy http://simplemedrx.top/diflucan need diflucan pharmacy without script can i purchase diflucan order diflucan paypal pharmacy walgreen cost diflucan 200mg how to purchase diflucan discounted diflucan fast delivery discount want to order diflucan cost diflucan 200mg cheapest book buy online order diflucan buy female diflucan online cheap order diflucan in missouri no script diflucan otc cheapest diflucan elazor idaho no script diflucan pill amex best price diflucan 150mg discounts cheap diflucan uk price amex low price diflucan rx oxford buy cheap online diflucan renfrewshire where to purchase next diflucan can i buy diflucan pharmacy diflucan rx amex diflucan purchase with mastercard how to order diflucan diflucan 150 mg orders cod to buy diflucan forcan purchase buying diflucan online saturday delivery low cost diflucan 200mg bradford buy brand diflucan pharmacy uk where to buy next diflucan cost diflucan usa free shipping online diflucan paypal no prescription 100mg order diflucan inverness order diflucan tabs rx usa diflucan 200mg cap price need diflucan medicine fast delivery diflucan online consultation low cost otc diflucan amex no rx purchase on line diflucan cheap diflucan canada free shipping pay pal buy diflucan pharmacy trican diflucan non usa buy diflucan yeast infections jcb pharmacy diflucan 50mg asl how to buy diflucan want to buy diflucan buy diflucan generic in canada cheapest diflucan cost pills buy pharmacy diflucan legally shop bradford diflucan 200mg online buy buffered price diflucan fedex diners club diflucan for sale cod fi86e where can i buy diflucan loitin 50mg buy diflucan 7 where to order next diflucan effect diflucan otc cheapest diflucan pill store prescription order diflucan diflucan chesapeake purchase diflucane ratiopharm discount diflucan overseas diflucan free shipping delivery discounts buying diflucan tablets fast want to purchase diflucan #diflucan cheap diflucan in internet glasgow pharmacy diflucan fluconazole internet buffalo price diflucan 150mg shop mastercard discount diflucan sale generic otc order diflucan for goats discount diflucan medicine find ach cost diflucan online tab internet online uk diflucan buy discount diflucan triflucan new forest cheap diflucan tablet tab There really are a variety of available techniques for representing the pharmacokinetics of your drug. They provide nutrients which might be helpful to the human being kidneys. The purchasing of drugs through on the web is a very simple process. At the age of 18, her brother married one in the children of a well established bookstore owner in Manila; hence, she was capable to land a job like a salesgirl in one of its stalls. Therefore, online transactions relating to the medicine becomes the order from the day which is why believe that an immediate need to have a very pharmacy processing account. Part with this improvement in national health emanates from conscious alterations in lifestyle ,but some is also attributable towards the availability of health enhancing medications. Let me take you to definitely comparative analysis department. With the recommendations of acclimation online system, the decree and non decree anesthetic and drugs are cautiously brought to customers. The information should be checked for accuracy, including being completed correctly or interpreting physician's medication order for processing. There are two ways for being a pharmacist technician, getting certified or registered from your state. These would be the pharmacist who works like a professor or lecture in a medical college; they spend around 50 per cent of these time inside the other areas of pharmacy. If possible try to use the same pharmacy as much as possible. However, please be guided with the average hourly and annual salary data provided. If the situation is not treated for an extended time period, it may well lead to serious complications including cancer. You are capable of doing this on the PTCB website registration page or call 800-211-2754 to register to the ICPT exam.
s3://commoncrawl/crawl-data/CC-MAIN-2020-45/segments/1603107910204.90/warc/CC-MAIN-20201030093118-20201030123118-00168.warc.gz
CC-MAIN-2020-45
4,441
3
https://digi195.com/TechnologyBased.html
code
Our software development technology is quite efficient in process of creating, designing, deploying, and supporting software. Software design and development services are basically a complex process to design an application of the software. business goal and process easily. Our software development solutions are quite focused on programs or software used in a computer system. We are one of the leading python web development companies providing dynamic web applications and data science applications. Other services such as AI and machine learning too are provided. Python has become a language for general purpose. Our Python programming services offer services such as building websites, software and conducting analysis of data. Rubi on Rails Development Ruby on Rails development services are our highly sophisticated and advanced services. We offer creative applications and digital products efficiently as software providing service solutions. Our Ruby on Rails web services are helpful in building web applications and services. Various applications such as marketing websites, e-commerce sites and custom web applications are available. React JS Development Our React JS development services offer to focus areas of the SCAND front end development section. It helps to utilize in creating SPAs, PWAs, social media applications. We are a leading React JS development company in India. Our service of web application using React JS lets us build complex UIs for web, mobile applications and building user interfaces. Angular Software Development AngularJS software development provides developing, building of single-page applications, enterprise web applications. It also offers progressive applications, enterprise web applications. Node JS Development We are the best node js software development company. We offer end-to-end services including application development, nodejs migration, consulting services and support. It helps to ensure reliability, scalability, and stability. (Dot).Net software development We are the best dot net software development company. Our company undertakes web level projects that inspire clients to digitize their business. Our dot net application development is quite useful in creating, designing and implementing software applications. Talk to Our Experts We are available for a friendly chat to discuss your business needs, no obligation.
s3://commoncrawl/crawl-data/CC-MAIN-2022-33/segments/1659882572304.13/warc/CC-MAIN-20220816120802-20220816150802-00344.warc.gz
CC-MAIN-2022-33
2,387
14
https://www.eddiepatel.com/blog-posts/2009/3/5/jb-looks-at-the-non-conscience-whats-going-on-in-your-brain.html
code
JB Looks at the Non-Conscience - What's Going on in Your Brain, When You Aren't Paying Attention? On a day-to-day basis you may have multiple goals running through your mind – losing weight, saving more money, etc. What you may not be aware of is how these goals operate below the level of your conscious awareness. In the coming series of posts I’ll discuss how these processes affect your day-to-day functioning in the world and recommend strategies to overcome some of the pitfalls of these processes. Research has shown that once goals are activated in your brain, your brain will continue to pursue the goal without your awareness. When I use the term “goal” I’m referring to anything you may want to physically or mentally accomplish, this can be as simple as remembering the name of a high school classmate. Do you recall a time when you couldn’t remember a name and “tried really hard” to remember it without avail? Your inability to remember the name may have consciously bothered you for a while; however, as time passed you may have slowly forgotten about it – or so you thought. Hours passed, you may have even taken a nap, then WHAM! All of a sudden, you remembered the name, seemingly out of nowhere. In reality, your brain didn’t stop searching for the forgotten name, it was working behind the scenes (without your awareness, or rather, nonconsciously) while allowing you to go about your day-to-day activities. This type of phenomenon is also evident when you wake up in the middle of the night with that “really good idea.” Evidence that your brain is never asleep and is often working on your goals without your awareness. These nonconscious phenomena are somewhat related to research conducted by psychologist Bluma Zeigarnick, who in 1927 observed that waiters remembered orders only as long as the order was in the process of being served. His research showed that we have a better memory for what is unfinished or incomplete rather than what has been completed. Why? Because the brain keeps working on the unfinished task or goal until it has been completed or reached. This Zeigarnick effect has many implications for your day-to-day life. For instance, if you take study breaks you will remember the study material better than if you complete a study session without breaks. During your breaks your brain is still processing the study material without your awareness; hence, incorporating breaks has an effect similar to increasing the amount of study time without the extra mental effort. An analogy of the physical outcomes observed from interval training. The take-away message is this: if you are having trouble remembering, brainstorming, or studying. Stop what you are doing, start an unrelated task, and come back to it later. Your brain will be solving the problem behind the scenes. -- J.B References for further reading: Bargh, J. A. (2005). Bypassing the will: Towards demystifying behavioral priming effects. In R. Hassin, J. Uleman, & J. Bargh (Eds.), The New Unconscious (pp. 37-58). Oxford, UK: Oxford University Press: Zeigarnik, B. (1927). Uber das dehaten von erledigen und unerledigen handlungen [The retention of completed and uncompleted actions]. Psychologische Forschung, 9, 1-85.
s3://commoncrawl/crawl-data/CC-MAIN-2019-39/segments/1568514574050.69/warc/CC-MAIN-20190920155311-20190920181311-00530.warc.gz
CC-MAIN-2019-39
3,252
10
https://www.designpublic.com/products/seletti-vegaz-metal-letter-with-led-bulbs
code
Vegaz Metal Letter With Led Bulbs Element of indoor lighting that mimics the shape of all the letters of the alphabet. Each letter is made of metal and is composed of a sequence of LED Bulbs of great visual impact (low power consumption - 0.4 Watts) . Ideal for window dressing and composition of signs. Design Public is an authorized USA dealer for all Seletti products. Seletti, a history of vision and evolution. Ever since it was established in 1964 in...
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917122886.86/warc/CC-MAIN-20170423031202-00077-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
459
4
http://www.spotlightingnews.com/article.php?news=2375
code
Download now the new Microsoft Windows Vista Beta 2 test version. Dubbed Windows Vista Beta 2, it provides a glimpse in Windows Vista Ultimate. The download is about 3 GB in size, so be prepared with patience: 3.0 mbps = 4.5 - 5.5 hours, while a 256 kbps link will download the file in 54 - 64 hours. The Windows Vista Beta 2 was aimed at either expert developers or IT specialists. "Some risks of using (Microsoft Windows Vista) beta operating systems include hardware and software incompatibility and system instability. This is beta code and should not be used in a production environment or on a main machine in the home. This Beta 2 release is now available in three languages (English, German, and Japanese) and in 32-bit and 64-bit editions." Windows Vista Beta 2 can be obtained either by asking Microsoft to send the DVD kit, or get the ISO from the www, then burn it on a DVD and install. Windows Vista Beta 2 for the Enterprise features Windows Meeting Space, the new collaboration feature in Microsoft Windows Vista, new Roaming User Profiles and Folder Redirection, Instant Search, and Search Folders. It also provides the Business Desktop Deployment (BDD) Solution 3.0, Windows Vista Upgrade Advisor, Application Compatibility Toolkit (ACT) Version 5.0 beta, User Account Control, Internet Explorer Protected Mode, and Windows Firewall. » Vista RC2 LE Is Out » Microsoft AntiSpyware Renamed To Windows Defender » Microsoft To Release Six Windows Vista Variants » Microsoft Vista Officially in Preview » Microsoft’s Windows Vista Minimum Requirements: the Get Ready Campaign » Microsoft to Release Monthly Vista Previews » Microsoft Windows Vista: Get Ready (for it) » Microsoft Launches UMDF Beta
s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368698207393/warc/CC-MAIN-20130516095647-00023-ip-10-60-113-184.ec2.internal.warc.gz
CC-MAIN-2013-20
1,720
15
http://www.gamedev.net/topic/642469-game-resolution/
code
I think the first option is the best, the game should adapt the images to the user resolution, I'll try that! d3dxsprite can handle this for drawing your sprites. but you'll want to implement a device independant screen coordinate system for your calls to draw sprites and text. you define a virtual 10000 x 10000 screen coordinate system. you store the current resolution the user is running at: screen_w, screen_h. then you have a set of routines to convert from virtual to screen coords and back: screen_x = virt_x * screen_w / 10000. screen_y = virt_y * screen_h / 10000. virt_x = screen_x * 10000 / screen_w. virt_y = screen_y * 10000 / screen_h. so to put text at the middle of the screen you say text(5000,5000,"hello world!"); and your text routine converts 5000,5000 to screen coords, and your text appears in the middle of the screen at all resolutions. you do likewise for the x,y and scale for sprites, and your entire 2d graphics system will be device independent and will work with any resolution up to 10000 x 10000 that the user's hardware can run. note that d3dxfont creates fonts at one size and can't scale them on the fly. if you use it, you'll want to recreate fonts at new sizes when the resolution changes, so the text stays the same size all the time. also note that d3dxfonts are SLOW! an alternative to d3dxfonts it to make your own set of font textures in a paint program, then simply display them like any other sprite. MUCH faster. and since they're a sprite, they will be automatically device independent along with the rest of the engine. "DirectX is like a belt fed machine gun, where every texture change is like hand loading in a new belt of ammo. worse, every mesh (vb) is a new belt of ammo, and a texture is like breaking the gun down, and setting it up again elsewhere, then loading it, then spraying triangles again. so you want to setup the gun once, string all your belts together, load it once, then just spray." Rockland Software Productions "Building PC games since 1988" Sign up for the Caveman beta!
s3://commoncrawl/crawl-data/CC-MAIN-2014-10/segments/1394010732251/warc/CC-MAIN-20140305091212-00045-ip-10-183-142-35.ec2.internal.warc.gz
CC-MAIN-2014-10
2,045
20
https://www.enterprisetimes.co.uk/2020/02/24/microsoft-lights-up-dynamics-365-with-new-features/
code
Microsoft has announced the details of wave 1 2020 release for Dynamics 365 in a blog by James Philips, president, Microsoft Business Applications. Philips commented: “Joining more than 400 new and updated features in the 2020 wave 1 release, these new capabilities expand a fast-growing set of applications powered by AI-driven insights, and further propel our vision to empower every organization to unify data across the business and use it to power personalized customer experiences and processes.” The release will become generally available on April 1st with regional deployments on April 3rd. Most of the Dynamics 365 applications see enhancements including: - Customer Data Platform - Finance and Operations - Forms Pro - Human Resources - Power Platform Microsoft has also added four new industry accelerators: Nonprofit, Financial Services, Health and Automotive. Microsoft caveated the release in saying that not all features are yet available for these products. However, they will be completed at some point and more accelerators are expected. New embedded AI In line with competitors Microsoft is embedding AI into its solutions. For Dynamics 365 Sales and Dynamics 365 Sales Insights this includes the ability to forecast pipeline and improve forecasting. The same forecasting capabilities are extended into the Office of Finance with better cash forecasting enabling an improvement to cash management. The most notable addition is the new Microsoft Dynamics 365 Project Operations. Available from October 1st 2020 this brings together Microsoft Project and Microsoft Dynamics. It will deliver project based organisations with full visibility of their business cycle from quote to cash, enhanced with AI. For Dynamics customers it is well worth reading about what is due out in the latest release so that they can take advantage of some of the new features. These include: Dynamics 365 Marketing: The ability to personalize email marketing campaigns. The ability to create surveys using Microsoft Forms. Dynamics 365 Sales Insights: Dynamics Sales assistant driven by AI is enhanced to bring more insights and automation for users. This includes guided selling. Dynamics 365 Product Visualize: First available in preview in April 2019 this IoS based mobile application now improves the product demonstration capabilities including improvements to spatial notes. Dynamics 365 Field Service: Enhancements to time entries and inspections and the automation of incident creation by AI for IoT driven incidents. Dynamics 365 Remote Assist: Improves the video recording and file sharing capabilities built into the app and improvement to spatial markup. Dynamics 365 Supply Chain Management: Planning optimisation will be generally available with this release. Enhancements to Warehouse Management, Manufacturing and Sales and Procurement are added. Dynamics 365 Human Resources: Includes improvements to Benefits, Leave and absence management. Dynamics 365 Fraud Protection: Initial focused on payment fraud this release enables users to extend and tailor the ontology and rules. It integrates to Dynamics 365 Comerce and has added support for six new languages beyond French and English. Dynamics 365 Connected Store: This application draws together multiple data feeds from different channels and inputs. The latest features are available in preview mode from April 2020, GA is not yet announced. They include Checkout queue management and foot traffic. Enterprise Times: What does this mean This is a significant update by Microsoft, while there is some details around some of the updates there is much left unsaid. One of the most interesting announcements is around Microsoft Dynamics 365 Project Operations. This brings together some of the functionality found within Microsoft Dynamics PSA and Microsoft Dynamics, it will be interesting to see where they differ.
s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656103269583.13/warc/CC-MAIN-20220626131545-20220626161545-00133.warc.gz
CC-MAIN-2022-27
3,883
23
http://andrewspittle.com/tag/code/page/2/
code
A couple weeks ago Patrick Rhone mentioned that: It is kind of sad that, in 2012, I have yet to see a blogging engine with a post editor designed for doing the very thing we online writers go there to do… Write. Shawn Blanc mentioned that WordPress has a built in fullscreen editor that is pretty minimal. He’s right, the fullscreen editor is one of my favorite additions from the past couple years. The new media improvements are even better. The code is hosted over on GitHub in case you want to give the plugin a spin. I’m positive the plugin isn’t for everyone, that’s fine. Top 20 Secrets of Coda 2. I had no idea some of these existed. The user-agent previewing is my new favorite discovery, really well done. So why did you make this? Because I’m a programmer, and this is what I do. Some people jog away from their house every day, only to jog back. Others walk on a treadmill, expending energy to get nowhere. In both cases, it may appear to others that they’ve accomplished nothing, but they’ve chosen to do these seemingly redundant activities on a regular basis to incrementally improve themselves. And it works. Marco Arment – secondcrack on GitHub. There was a time when nobody knew how to write literary prose. The geniuses who invented it shared their special tool with a few friends, and they relished in their private, elite communications. Eventually monks, politicians, and academics joined the club. Now, we judge a society’s overall level of intellectual advancement by the literacy rate: the percentage of people who have learned to read and write. Long ago, it would have been ridiculous to assume a whole society could be judged by its ability to read and write prose. It feels ridiculous now, to assume that we might use computer programming as a similar benchmark. Yet it may happen. Daniel Jalkut – Learn To Code. Suzi Steffen pointed me to this post by Doug McLennan earlier. I like it. Doug writes, I think the new literate goes beyond words, and beyond making video and image and sound. I think code and meta-data are the new literacy, and that in turn leads to a new literateness. Information and ideas are multi-dimensional. Those who can take dynamic information and mash it up and mix it and find creative ways of presenting it in service of ideas have the possibility of communicating in more compelling ways than with just words or video or image. He’s spot on. It reminds me of something Matt said earlier this year in a Q&A session with Memburn. He said, Scripting is the new literacy, and the ability to learn and execute on your ideas without relying on anybody else is going to be invaluable as you iterate and experiment on building something. It’s good to build for yourself first, because in the worst-case scenario where no one else likes it, at least you will. That type of individual-driven creation and publication is something schools still struggle to grasp. Our school system must move quickly to adopt new ideas of literacy beyond what’s traditional. I particularly like that Doug pointed out it’s more than the act of creation that makes for literacy. You need to do more than write, record, or photograph. A creative form of presentation is an inherent part of his definition. Your ability to use, master, and build those tools determines how much you control your path. Just when I think I’ve wrapped up the changes to my site I realize that there’s a half dozen CSS and content changes still left. It’s a process.
s3://commoncrawl/crawl-data/CC-MAIN-2015-40/segments/1443737951049.91/warc/CC-MAIN-20151001221911-00211-ip-10-137-6-227.ec2.internal.warc.gz
CC-MAIN-2015-40
3,506
19
https://www.vn.freelancer.com/projects/javascript/finish-react-project-32218110/?ngsw-bypass=&w=f
code
Need a freelancer to work on an ongoing project based on react js and finish it. There is work left at UI end and implementing the API connectivity 25 freelancer chào giá trung bình₹26051 cho công việc này Hi I'm a MERN STACK developer. I have successfully developed several responsive pages with REACT.JS I will deliver a quality product in minimum budget possible
s3://commoncrawl/crawl-data/CC-MAIN-2022-05/segments/1642320301488.71/warc/CC-MAIN-20220119185232-20220119215232-00458.warc.gz
CC-MAIN-2022-05
374
4
http://www.verycomputer.com/184_68773a4fedb1726f_1.htm
code
I'm trying to migrate my Windows server environment to a Linux one. Right now, the remaining server is a domain controller and Exchange server. I've heard Samba can act as a Windows domain controller, but since Exchange requires being on a Windows DC, I can't make that move yet. Are there any Exchange-type servers available for Linux? Here's what I MS Outlook to connect (ability to use a single domain user logon in Windows is a must -- i.e. I log into my XP workstation with a domain account, and I fire up Outlook, and it connects with those credentials) Rules for auto-sorting of mail into folders (should let you use Outlook's "rules wizard" for setting up rules on the server). Ability to open other users' mail/calendar/contacts (administration & I think the rest of the features I can live without, seeing as how I haven't used them yet. Price is a major consideration (as always), so the cheaper, the better (and free is best). The only thing I've tried so far is (IIRC) HP's OpenMail server, but it didn't quite work right (e.g. the text-only e-mail support w/o attachments). My own searches have proved fruitless (although I have found ways to connect Linux *clients* to an Exchange *server*, but that's backwards from what I want).
s3://commoncrawl/crawl-data/CC-MAIN-2022-05/segments/1642320303868.98/warc/CC-MAIN-20220122164421-20220122194421-00517.warc.gz
CC-MAIN-2022-05
1,245
20
https://connect.symfony.com/profile/eborges78
code
Emmanuel BORGES is a member of the community since April 2017. Custom i18n Router for Symfony 2.x Dockerfile for symfony3 with nginx only Dockerfile for with php-fpm 7.1 only Dockerfile with php 7.1-cli and composer Dockerfile for redis 3.2 Dockerfile for symfony4 with nginx only Dockerfile with php 7.1 (xdebug/blackfire mods), nginx and supervisord
s3://commoncrawl/crawl-data/CC-MAIN-2019-26/segments/1560628000306.84/warc/CC-MAIN-20190626114215-20190626140215-00027.warc.gz
CC-MAIN-2019-26
351
8
https://listserv.heanet.ie/cgi-bin/wa?A2=ind0103&L=XML-L&P=53703
code
"M. Farhan" wrote: > 1 . Can we call SAX and DOM as XML Parsers??? or they are interfaces > to access the XML document. > 2. if we have XSLT to handle the xml documents...so why do we use DOM > and SAX...whats the idea...please clarify the idea?? > Thanks in advance.. The system is layered: XSLT depends on SAX or DOM. Most XSLT Processors depend on a DOM implementation, since they don't yet handle the event-based SAX model. SAX: creates "events" for parts of the document. You may respond to these events. It is "asynchronous" (sort-of) in the sense that you react to a callback from the SAX system. The xml document is read as a stream. DOM: The DOM library reads the whole document in, and plops a big tree in your lap. I think, technically, SAX and DOM are not parsers, they merely implement a particular way of accessing a document. For instance, a library may be written to "emit" SAX events, *as if* they came from the parsing of a document, but these events may be dynamically produced. That said, SAX is pretty close to the bone of a parser and they are often implemented as one library. I hope that's made things slightly clearer (maybe not ;-) ). [log in to unmask]
s3://commoncrawl/crawl-data/CC-MAIN-2018-09/segments/1518891814872.58/warc/CC-MAIN-20180223233832-20180224013832-00572.warc.gz
CC-MAIN-2018-09
1,179
22
https://forum.hkedcity.net/index.php?search/10674565/
code
No, I think it is horrible 2. Yes, it is because they will support the organ donation if they understand the meaning of organ donation 1.No,I do not play any musical instruments 2.No,because some of musical instruments is too big and bring to the MTR,it will make passengers... 1.do not satidfied because Hong Kong is very bad now. 2.corruption-free because i want to have good communication i have not watched the TVB footage showing violence involving police officers and i have to watched the arrested proteser but i felt angry about this I didn't go to see the moon eclipse but i felt it is so fantastic, if i have the free time ,i will go to see i think they cannot use a tear gas because i think the police use tear gas will make scene confusion , it is not good for each other
s3://commoncrawl/crawl-data/CC-MAIN-2021-21/segments/1620243988837.67/warc/CC-MAIN-20210508031423-20210508061423-00033.warc.gz
CC-MAIN-2021-21
783
10
http://ibasetraining.com/ansible-online-training-by-hands-on-working-corporate-experts
code
Ansible Online Training Course Content Section 1: Installation and Configuration of Ansible Day 1 This section focuses on installation and configuration of Ansible, catered for all platforms. The Course Overview Ansible Requirements – Python, PIP, and Virtual Environments Ansible Course Environment Setup Ansible on Linux Validating Ansible Installation Section 2: Ansible Architecture and Design Day 1 After setting up and validating the environment, this section we work with Ansible, initially working with the Ansible command line tool and then moving on to playbook fundamentals and templating. Ansible Playbooks, Breakdown of Sections Ansible Playbooks, Variables Ansible Playbooks, Facts Templating with Jinja2 Ansible Playbooks, Creating, and Executing Section 3: Ansible Playbooks, Advanced Topics This section focuses on investigating areas of Ansible that facilitate advanced usage. Ansible Playbook Modules Day 2 register and when Asynchronous and Parallel Using the Ansible Vault Creating Custom Modules Section 4: Structuring Ansible Playbooks Day 2 This section details the process for structuring larger Ansible playbooks into smaller components, the use of tags for tag centric execution and the pull mode functionality. Using Includes and Imports Section 5: Using Ansible with Cloud Services and Containers Day 3 This section we will learn using Ansible with cloud services and containers. AWS with Ansible Docker Support with Ansible Section 6: Other Ansible Resources and Areas Day 3 This section details the troubleshooting of Ansible and supported resources and utilities. Validating Testing with Ansible Best Practices with Ansible Section 7 Day 4 Half Day Install Ansible Tower by Red Hat Configure users and teams to access Ansible Tower resources using role-based access controls Use Ansible Tower to manage shared access to inventories and machine credentials Create job templates and workflow job templates to standardize playbook execution Launch playbooks and monitor and review job results using Ansible Tower Section 8 Ansible Tower Install Ansible Tower by Red Hat and describe its architecture Explain what Ansible Tower is and demonstrate a basic ability to navigate and use its web user interface. Create users and teams for role-based access control Create user accounts and organize them into teams that can be used in conjunction with role-based access control to manage administration and access to organization resources in Ansible Tower. Maintenance and administration of Ansible Tower Perform routine maintenance and administration on Ansible Tower and get a basic familiarity with the command line tools and Ansible Tower API.
s3://commoncrawl/crawl-data/CC-MAIN-2020-10/segments/1581875145960.92/warc/CC-MAIN-20200224132646-20200224162646-00335.warc.gz
CC-MAIN-2020-10
2,673
52
https://msdn.microsoft.com/en-us/library/hh361661
code
Specifies the XML version number, and optionally the character encodings, as part of a grammar document's XML declaration on the first line of the document. This header must appear on the first line of all XML documents; therefore, all XML Grammar documents must have the XML header at the top. It is an accepted convention to use the .grxml file extension for XML-based grammar documents that conform to the Speech Recognition Grammar Specification Version 1.0 specification. The following examples demonstrate XML headers with and without the character encoding declaration. <!-- With character encoding. --> <?xml encoding="ISO-8859-1"?> <grammar version="1.0" xmlns="http://www.w3.org/2001/06/grammar" xml:lang="en-US" tag-format="semantics/1.0" ...> ... </grammar>
s3://commoncrawl/crawl-data/CC-MAIN-2016-40/segments/1474738660864.21/warc/CC-MAIN-20160924173740-00200-ip-10-143-35-109.ec2.internal.warc.gz
CC-MAIN-2016-40
769
3
http://oasisjournals.com/2009/11/im-sick-i-dont-know-what-i-need-to-do-and-nobody-listens-to-me
code
I'm sick. I think. I'm not physically sick. But I think that there's someone else inside my head. I'm not always sure what I'm doing. Sometimes I see things. I've been seeing these things more often now. It's scary. I don't know what's wrong with me. I'm getting scared. For one thing, I'm a masochist, which isn't totally abnormal, but I hurt myself because it's arousing, which I know can be bad for me... But I do it. I can't always be sure it's me talking, either, because I say things I don't always mean. I'm just scared. I think I'm going insane. People have stopped talking to me, and I don't know why. I just don't know what to do. I want to leave, get out of here, but where would I go? Why do I feel like I need to run away so very badly? What is wrong with me? I'm trying to get help but they don't understand. They don't listen to me. I tell them things, I'm trying to tell them that there are scary things in my head but THEY DON'T LISTEN. I don't know what I'm doing half the time. I'm not all there. I can't focus. I can't always tell where I am, or what time it is, or even what year it is. I can't handle this. I'm scared.
s3://commoncrawl/crawl-data/CC-MAIN-2015-11/segments/1424936463093.76/warc/CC-MAIN-20150226074103-00066-ip-10-28-5-156.ec2.internal.warc.gz
CC-MAIN-2015-11
1,140
10
https://www.oreilly.com/library/view/network-security-through/9781491962831/ix01.html
code
- active discovery, Using Active Vantage Data for Verification - active domain, Data and Sensors in the Active Domain-Using Active Vantage Data for Verification - active domain data - Address Resolution Protocol (ARP), MAC and Hardware Addresses - addressing, IP Addressing-IP Intelligence: Geolocation and Demographics - DNS lookup, DNS-DNS Blackhole Lists - identifying geolocation/demographics, IP Intelligence: Geolocation and Demographics-IP Intelligence: Geolocation and Demographics - IPv4 format, IPv4 Format and Addresses - IPv4 structure and function, IPv4 Addresses, Their Structure, and Significant Addresses-IPv4 Addresses, Their Structure, and Significant Addresses - IPv6 format, IPv6 Format and Addresses - IPv6 structure and function, IPv6 Addresses, ... With Safari, you learn the way you learn best. Get unlimited access to videos, live online training, learning paths, books, interactive tutorials, and more.
s3://commoncrawl/crawl-data/CC-MAIN-2019-43/segments/1570986669057.0/warc/CC-MAIN-20191016163146-20191016190646-00349.warc.gz
CC-MAIN-2019-43
928
13
http://stackoverflow.com/questions/19479378/google-spreadsheet-java-api-url-from-cellentry
code
I am using Java to read from a Google Spreadsheet. The user may select certain cells, and later may update those cells, but in between may shut the program down. So I would like to store a unique URL for a spreadsheet cell to disk, for later use in updating that spreadsheet cell, when the program restarts. Is there any way to get a unique URL from a CellEntry? The only way I know of doing this is by getting the cell's row & columns: int row = cell.getCell().getRow(); int col = cell.getCell().getCol(); And then using that in a query for cells with min/max rows/cols: URL cellFeedUrl = new URI(worksheetFeed.getCellFeedUrl().toString() + "?min-row=" + Integer.toString(row) + "&max-row=" + Integer.toString(row) + "&max-col=" + Integer.toString(col)) + "&min-col=" + Integer.toString(col)).toURL(); CellFeed cellFeed = spreadsheetService.getFeed(cellFeedUrl, CellFeed.class); But this seems a little crazy, since by the time I have a cell entry, I shouldn't have to search for it again. Wishful thinking?
s3://commoncrawl/crawl-data/CC-MAIN-2015-40/segments/1443736672923.0/warc/CC-MAIN-20151001215752-00170-ip-10-137-6-227.ec2.internal.warc.gz
CC-MAIN-2015-40
1,008
7
https://forums.larian.com/ubbthreads.php?ubb=showthreaded&Number=432855
code
Ok, after much tweaking and then changing back to the way it was, I couldn't get farther starting a new game than the man at the entrance to Farglow before it crashed, and loading a previous save from FoV either immediately crashed or crashed within the first 10 seconds of playing. I've finally just uninstalled the game and am reinstalling from scratch after scouring the registry to make sure it's clean, and cleaning up all the info in the AppData folder. I'll let you know how it goes with a fresh installation. I had also earlier mentioned loading original ED saves up in DKS, I am not quite sure why I was initially able to do this as after the game crashed and I had reloaded, all ED saves were dark and said 'Obsolete save game' Last edited by lazuranthas; 24/12/10 05:24 AM. Reason: updated loading ED games
s3://commoncrawl/crawl-data/CC-MAIN-2021-49/segments/1637964363301.3/warc/CC-MAIN-20211206133552-20211206163552-00043.warc.gz
CC-MAIN-2021-49
817
3
https://arissamad.wordpress.com/tag/web-stack/
code
As I mentioned in this article, I wanted to find a nice lightweight java back-end that would: - Allow me to write a REST api on the java-side using as much of POJO as possible. - Be able to serve static HTML, CSS and JS files easily. - Be able to combine individual HTML, CSS and JS into a single file and serve them using unique MD5 file names so caching wouldn’t be an issue (this I didn’t mention in the earlier article). In the end I just built a framework using Jetty and Servlet 3.0. Of course, I made it do exactly what I want, but I feel my requirements are pretty common for today’s apps. I hope I can open-source it and put it on GitHub (and put it on the Maven repository as well). But that would require a bit of work so we’ll see!
s3://commoncrawl/crawl-data/CC-MAIN-2018-26/segments/1529267864303.32/warc/CC-MAIN-20180621231116-20180622011116-00399.warc.gz
CC-MAIN-2018-26
751
5
https://www.twigandpearl.com/product-page/emerson-wallet-clutch-fawn-brown
code
Emerson Wallet Clutch [FAWN BROWN] An organized wallet interior, placed inside a gorgeously minimal rounded leather clutch. Our "Emerson" clutch is sectioned off into a change purse in the center, three credit card slots & visible drivers licence slip on one side, a bill-hold and open compartment area for phone & keys on the other side. Dimensions 8" X 6" The additional option for a removable / adjustable strap can take this wallet clutch to another level completely, by transitioning it into a belt bag or sling bag!
s3://commoncrawl/crawl-data/CC-MAIN-2019-47/segments/1573496668787.19/warc/CC-MAIN-20191117041351-20191117065351-00276.warc.gz
CC-MAIN-2019-47
521
5
https://documentation.red-gate.com/sa8/building-your-assembly/using-smartassembly-with-msbuild
code
Using SmartAssembly with MSBuild Published 02 January 2013 You can integrate SmartAssembly in your build process. You set up your project in SmartAssembly once, and you can then build your assembly in your normal MSBuild process. The settings you chose in the SmartAssembly project are applied without needing to run SmartAssembly separately. Note that the SmartAssembly task should be the last stage of your build process. Because of the way SmartAssembly changes your assembly, running other tasks after SmartAssembly is not supported. (An exception to this is assembly-signing tools, if you choose not to sign your code with SmartAssembly). Automatic integration (.NET Framework, .NET Core, .NET Standard) To integrate SmartAssembly directly into the build process using our NuGet package, follow these steps: - Open your C# or VB.NET project in Visual Studio and add a reference to - Build your assembly in Release mode. - Open SmartAssembly and create a new project for your assembly (see Working with projects and Working with project settings). - Save a SmartAssembly project next to your C# or VB.NET project under the same name. For example, if your C# project is named ProjectA.csproj, then save SmartAssembly project as ProjectA.saproj. RedGate.SmartAssembly.MSBuild package is referenced, no changes are required to your .csproj/.vbproj project file. SmartAssembly will be executed automatically for all Release builds. You can change this behaviour by setting optional custom properties in your C# or VB.NET project file (see below). Using custom properties You can add any of the following properties anywhere in your .csproj or .vbproj file: Set to True if you want to process your assembly during build. Set to False if you don't want to process your assembly during build. Default: If this option is not set, or set to an empty string, SmartAssembly will process your assembly only for Release configuration. Set to a relative or absolute path of SmartAssembly project file. Default: If this option is not set, or set to an empty string, SmartAssembly uses a .saproj project file located next to your .csproj or .vbproj file. Set to True if you want to overwrite the original assembly with the obfuscated one. If you set this option to True, SmartAssembly ignores the SmartAssemblyOutput property, if set. Default: If this option is not set, or set to False, SmartAssembly uses the destination file name from the .saproj project. If this option is set, SmartAssembly will process the assembly specified as this property's value and will ignore input assembly path from .saproj project. This is useful if you want to build an assembly using exactly the same settings as those you chose for a different assembly. Input assembly path can be absolute or relative to .saproj file. Default: If this option is not set, SmartAssembly will process the assembly specified in the .saproj project. If this option is set, SmartAssembly will use this property's value as the file name when saving the built assembly. This option is useful if you want to save a test build to a different path from other builds. This attribute is ignored if the SmartAssemblyOverwriteAssembly property is set to True. Output assembly path can be absolute or relative to .saproj file. Default: If this option is not set, SmartAssembly will use the file name in the .saproj file when saving the built assembly. An example with optional properties set in a .csproj file is shown below. <Project> ... <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <!-- Optional SmartAssembly properties --> <PropertyGroup> <SmartAssemblyIsEnabled>False</SmartAssemblyIsEnabled> <SmartAssemblyIsEnabled Condition=" '$(Configuration)' == 'Debug' ">True</SmartAssemblyIsEnabled> <SmartAssemblyProjectFile>$(MSBuildProjectDirectory)\$(AssemblyName)_$(Configuration).saproj</SmartAssemblyProjectFile> <SmartAssemblyInput>$(TargetPath)</SmartAssemblyInput> <SmartAssemblyOutput>$(OutputPath)\Protected\$(TargetFileName)</SmartAssemblyOutput> <SmartAssemblyOverwriteAssembly>True</SmartAssemblyOverwriteAssembly> </PropertyGroup> <!-- /Optional SmartAssembly properties --> </Project> Explanation of the optional properties set on the screenshot above and their sample values: - SmartAssembly will only process the assembly when building project in Debug configuration. - SmartAssembly will use a project file located in $(MSBuildProjectDirectory)\$(AssemblyName)_$(Configuration).saproj, for example C:\MyProject\MyProject_Debug.saproj. - SmartAssembly will process the assembly located in $(TargetPath), for example C:\MyProject\bin\Debug\MyProject.exe. - SmartAssembly will overwrite the input assembly. - SmartAssembly will ignore OverwriteAssemblywas set to True. If your project uses SDK-style project file or targets multiple frameworks, refer to Process a project targeting multiple frameworks. Using the MSBuild task directly By default, SmartAssembly MSBuild task is executed automatically for Release builds after CoreBuild MSBuild target. If you want to execute SmartAssembly task before or after different MSBuild targets, or you want to execute SmartAssembly multiple times, you can use the SmartAssembly task directly. First, you need to disable the default task by setting SmartAssemblyIsEnabled property to False: <PropertyGroup> <SmartAssemblyIsEnabled>False</SmartAssemblyIsEnabled> </PropertyGroup> Then, you can execute SmartAssembly task directly with your own MSBuild target: <Target Name="MyCustomSmartAssemblyTarget" AfterTargets="CoreBuild"> <SmartAssembly ProjectFile="path\to\project.saproj" /> </Target> <!-- Attribute "ProjectFile" is required for "SmartAssembly" task. You can use optional attributes: OverwriteAssembly="true or false" Input="path\to\input\assembly.exe" Output="path\to\output\assembly.exe" -->
s3://commoncrawl/crawl-data/CC-MAIN-2022-21/segments/1652662522284.20/warc/CC-MAIN-20220518151003-20220518181003-00474.warc.gz
CC-MAIN-2022-21
5,819
49
https://www.micheledinardo.com/
code
Hi! I'm Michele! QA Manager | Level Design I enjoy applying my passion in the game development from both Level Design and QA point view; every day, I see the unmatched potential that video games have as an entertainment medium, and I voraciously work to become an integral part of that creative process. I am a highly motivated self-starter who is filled with an unbridled determination to excel.
s3://commoncrawl/crawl-data/CC-MAIN-2021-04/segments/1610703509973.34/warc/CC-MAIN-20210117051021-20210117081021-00493.warc.gz
CC-MAIN-2021-04
396
4
http://wireless.sys-con.com/node/2470713
code
|By Marketwired .|| |December 4, 2012 11:00 AM EST|| IRVINE, CA -- (Marketwire) -- 12/04/12 -- Toshiba America Information Systems Inc., Telecommunication Systems Division (Toshiba) -- www.telecom.toshiba.com, helped EYEMAGINE Technology, an Irvine, Calif.-based eCommerce innovator, meet its communications goals with a new IPedge® EP Voice over IP business telephone system. Founded in 2003, EYEMAGINE empowers Fortune 500 clients nationwide to meet and exceed eCommerce goals by delivering effective eCommerce solutions, including design, development, mobile applications, systems integration, conversion optimization, enterprise resource planning (ERP) integration, custom online payment solutions, and more. Cindy Natoniewski, EYEMAGINE's operations manager, specified the need for an IP business telephone system that would meet EYEMAGINE's communication objectives, which include: - Establishing a voice communication presence with an affordable IP business telephone system; - Replacing the previous system, which had been outgrown, with the latest in IP technology; - Delivering the scalability that allows new users, features, and applications as the company grows; - Having an Automated Attendant with different time-of-day outgoing greetings so that incoming calls are always answered; and - Allowing users to personalize their telephone features, including their voice mailboxes. EYEMAGINE turned to smplsolutions of Lake Forest, Calif., an Authorized Toshiba Dealer since 2001. Mark Gallagher, sales engineer smplsolutions, recommended Toshiba's IPedge EP Voice over IP business telephone system. He said, "Toshiba's IPedge EP is the perfect telephone system for growing small businesses. It has all the bells and whistles of a bigger system but is designed for companies with less than 40 users per server." Solution: Toshiba's IPedge EP Delivers Scalable and Effective Voice Communication Presence Installed and serviced by smplsolutions, EYEMAGINE's Toshiba business telephone system consists of: - One IPedge EP business telephone system, a single-server solution; - Toshiba IP 5000-series desk telephones; - Unified Messaging, which allows users to receive email, faxes, and voice messages in their email inboxes; and - Enterprise Manager for simple on-site management, including changing names and resetting voice mail passwords. Result #1: An Effective and Efficient Communication Solution for Callers Toshiba met EYEMAGINE's requirement for a scalable telephone solution by providing features required by growing small businesses. With Automated Attendant, EYEMAGINE's telephones are always answered with appropriate outgoing greetings, based on time of day. Users now also have direct-dial extensions, individual voice mailboxes, and the ability to manage multiple lines while receiving important voice mails via email. Result #2: Unified Messaging and Automated Attendant Improve Efficiency Unified Messaging enables users to access their faxes, voice and email messages right from their inboxes. Adding Automated Attendant and direct-dial extensions empowers employees to be more efficient as they receive only the calls that are actually meant for them. It also improves client communication. The IPedge EP processes hundreds of incoming calls every month, helping EYEMAGINE employees increase productivity and profitability. Result #3: Ability to Scale the Phone System Along With the Business With Toshiba's IPedge EP, EYEMAGINE has an affordable, feature-rich IP business telephone system that can grow as the business grows. EYEMAGINE can add and network its IPedge EP with additional IPedge systems and/or Toshiba's Strata® CIX business telephone systems. For remote users, EYEMAGINE can simply add IP telephones without having to install a system. Bottom Line: Centralized Toshiba Business Telephone System Saves Costs and Improves Communication Toshiba's IPedge EP Voice over IP telephone system met and exceeded EYEMAGINE's communications objectives. Bottom-line benefits include: - An effective voice communication platform with an Automated Attendant and direct-dial extensions; - An affordable Voice over IP telephone system designed for a small business; - Flexibility of IP telephones, which can be moved around with plug-and-play efficiency; - Cost savings over a digital telephone system as less cabling was needed and Unified Communications was included with the IPedge EP; and - The ability to scale the telephone system as the business scales. "Together, Toshiba and smplsolutions exceeded expectations, giving us exactly what we wanted: an effective telephone communication platform in an affordable IP business telephone system that was designed for small businesses," said Natoniewski. "And, we have room to grow." "With Toshiba's IPedge EP single server solution, EYEMAGINE's users are empowered to communicate more effectively, be more efficient, and have greater access to their customers, partners and each other," added Gianna Santi, marketing manager for smplsolutions. For an Authorized Toshiba Dealer, Visit: www.telecom.toshiba.com To subscribe to the Toshiba Telecom Blog, visit http://blog.telecom.toshiba.com/. Follow us on Facebook (ToshibaPhoneSystems), Twitter (toshibaphonesys) and LinkedIn (Toshiba-telecommunication-systems-division). About Toshiba America Information Systems Inc. Telecommunication Systems Division Toshiba America Information Systems Inc. Telecommunication Systems Division is one of the three business units of Toshiba America Information Systems Inc. (TAIS) and offers business communication solutions for SMB enterprises and enterprises with multi-site or regional locations. Toshiba's VIPedge cloud service supports up to 60 users, and the IPedge and Strata CIX systems support from 8 to 1,000 users and offer Voice over IP, voice mail and unified messaging, conferencing and collaboration, unified communications applications, networking, mobility and more. Together with Toshiba's notebooks, tablet PCs, copiers, and surveillance video cameras/recorders, Toshiba's Telecommunication Systems Division helps enterprises maximize business efficiency in communications and mobility. For more information, visit www.Telecom.Toshiba.com. Headquartered in Irvine, Calif., TAIS is an independent operating company owned by Toshiba America Inc., a subsidiary of Toshiba Corporation, a world-leading diversified manufacturer, solutions provider and marketer of advanced electronic and electrical products and systems. Toshiba was founded in 1875 and today operates a global network of more than 550 consolidated companies, with 202,000 employees worldwide and annual sales surpassing 6.1 trillion yen (US$74 billion). Visit Toshiba's Web site at www.toshiba.co.jp/index.htm. © 2012 Toshiba America Information Systems Inc. All rights reserved. All product, service and company names are trademarks, registered trademarks or service marks of their respective owners. Information including, without limitation, product prices, specifications, availability, content of services, and contact information is subject to change without notice. Image Available: http://www2.marketwire.com/mw/frame_mw?attachid=2171349 Toshiba PR Contact: Docker is an excellent platform for organizations interested in running microservices. It offers portability and consistency between development and production environments, quick provisioning times, and a simple way to isolate services. In his session at DevOps Summit at 16th Cloud Expo, Shannon Williams, co-founder of Rancher Labs, will walk through these and other benefits of using Docker to run microservices, and provide an overview of RancherOS, a minimalist distribution of Linux designed expressly to run Docker. He will also discuss Rancher, an orchestration and service discovery platf... Mar. 29, 2015 04:15 PM EDT Reads: 2,419 Wearable technology was dominant at this year’s International Consumer Electronics Show (CES) , and MWC was no exception to this trend. New versions of favorites, such as the Samsung Gear (three new products were released: the Gear 2, the Gear 2 Neo and the Gear Fit), shared the limelight with new wearables like Pebble Time Steel (the new premium version of the company’s previously released smartwatch) and the LG Watch Urbane. The most dramatic difference at MWC was an emphasis on presenting wearables as fashion accessories and moving away from the original clunky technology associated with t... Mar. 29, 2015 04:00 PM EDT Reads: 1,394 SYS-CON Events announced today that Vitria Technology, Inc. will exhibit at SYS-CON’s @ThingsExpo, which will take place on June 9-11, 2015, at the Javits Center in New York City, NY. Vitria will showcase the company’s new IoT Analytics Platform through live demonstrations at booth #330. Vitria’s IoT Analytics Platform, fully integrated and powered by an operational intelligence engine, enables customers to rapidly build and operationalize advanced analytics to deliver timely business outcomes for use cases across the industrial, enterprise, and consumer segments. Mar. 29, 2015 03:30 PM EDT Reads: 2,160 SYS-CON Events announced today that Solgenia will exhibit at SYS-CON's 16th International Cloud Expo®, which will take place on June 9-11, 2015, at the Javits Center in New York City, NY, and the 17th International Cloud Expo®, which will take place on November 3–5, 2015, at the Santa Clara Convention Center in Santa Clara, CA. Solgenia is the global market leader in Cloud Collaboration and Cloud Infrastructure software solutions. Designed to “Bridge the Gap” between Personal and Professional Social, Mobile and Cloud user experiences, our solutions help large and medium-sized organizations dr... Mar. 29, 2015 03:00 PM EDT Reads: 2,818 SYS-CON Events announced today that Liaison Technologies, a leading provider of data management and integration cloud services and solutions, has been named "Silver Sponsor" of SYS-CON's 16th International Cloud Expo®, which will take place on June 9-11, 2015, at the Javits Center in New York, NY. Liaison Technologies is a recognized market leader in providing cloud-enabled data integration and data management solutions to break down complex information barriers, enabling enterprises to make smarter decisions, faster. Mar. 29, 2015 03:00 PM EDT Reads: 3,437 The WebRTC Summit 2014 New York, to be held June 9-11, 2015, at the Javits Center in New York, NY, announces that its Call for Papers is open. Topics include all aspects of improving IT delivery by eliminating waste through automated business models leveraging cloud technologies. WebRTC Summit is co-located with 16th International Cloud Expo, @ThingsExpo, Big Data Expo, and DevOps Summit. Mar. 29, 2015 02:00 PM EDT Reads: 1,570 @ThingsExpo has been named the Top 5 Most Influential M2M Brand by Onalytica in the ‘Machine to Machine: Top 100 Influencers and Brands.' Onalytica analyzed the online debate on M2M by looking at over 85,000 tweets to provide the most influential individuals and brands that drive the discussion. According to Onalytica the "analysis showed a very engaged community with a lot of interactive tweets. The M2M discussion seems to be more fragmented and driven by some of the major brands present in the M2M space. This really allows some room for influential individuals to create more high value inter... Mar. 29, 2015 01:45 PM EDT Reads: 4,657 After making a doctor’s appointment via your mobile device, you receive a calendar invite. The day of your appointment, you get a reminder with the doctor’s location and contact information. As you enter the doctor’s exam room, the medical team is equipped with the latest tablet containing your medical history – he or she makes real time updates to your medical file. At the end of your visit, you receive an electronic prescription to your preferred pharmacy and can schedule your next appointment. Mar. 29, 2015 12:00 PM EDT Reads: 748 The world's leading Cloud event, Cloud Expo has launched Microservices Journal on the SYS-CON.com portal, featuring over 19,000 original articles, news stories, features, and blog entries. DevOps Journal is focused on this critical enterprise IT topic in the world of cloud computing. Microservices Journal offers top articles, news stories, and blog posts from the world's well-known experts and guarantees better exposure for its authors than any other publication. Follow new article posts on Twitter at @MicroservicesE Mar. 29, 2015 12:00 PM EDT Reads: 1,440 The list of ‘new paradigm’ technologies that now surrounds us appears to be at an all time high. From cloud computing and Big Data analytics to Bring Your Own Device (BYOD) and the Internet of Things (IoT), today we have to deal with what the industry likes to call ‘paradigm shifts’ at every level of IT. This is disruption; of course, we understand that – change is almost always disruptive. Mar. 29, 2015 11:45 AM EDT Reads: 1,096 SYS-CON Events announced today the IoT Bootcamp – Jumpstart Your IoT Strategy, being held June 9–10, 2015, in conjunction with 16th Cloud Expo and Internet of @ThingsExpo at the Javits Center in New York City. This is your chance to jumpstart your IoT strategy. Combined with real-world scenarios and use cases, the IoT Bootcamp is not just based on presentations but includes hands-on demos and walkthroughs. We will introduce you to a variety of Do-It-Yourself IoT platforms including Arduino, Raspberry Pi, BeagleBone, Spark and Intel Edison. You will also get an overview of cloud technologies s... Mar. 29, 2015 11:00 AM EDT Reads: 2,087 SYS-CON Events announced today that SafeLogic has been named “Bag Sponsor” of SYS-CON's 16th International Cloud Expo® New York, which will take place June 9-11, 2015, at the Javits Center in New York City, NY. SafeLogic provides security products for applications in mobile and server/appliance environments. SafeLogic’s flagship product CryptoComply is a FIPS 140-2 validated cryptographic engine designed to secure data on servers, workstations, appliances, mobile devices, and in the Cloud. Mar. 29, 2015 11:00 AM EDT Reads: 1,408 SOA Software has changed its name to Akana. With roots in Web Services and SOA Governance, Akana has established itself as a leader in API Management and is expanding into cloud integration as an alternative to the traditional heavyweight enterprise service bus (ESB). The company recently announced that it achieved more than 90% year-over-year growth. As Akana, the company now addresses the evolution and diversification of SOA, unifying security, management, and DevOps across SOA, APIs, microservices, and more. Mar. 29, 2015 08:30 AM EDT Reads: 2,048 GENBAND has announced that SageNet is leveraging the Nuvia platform to deliver Unified Communications as a Service (UCaaS) to its large base of retail and enterprise customers. Nuvia’s cloud-based solution provides SageNet’s customers with a full suite of business communications and collaboration tools. Two large national SageNet retail customers have recently signed up to deploy the Nuvia platform and the company will continue to sell the service to new and existing customers. Nuvia’s capabilities include HD voice, video, multimedia messaging, mobility, conferencing, Web collaboration, deskt... Mar. 29, 2015 01:00 AM EDT Reads: 1,457 SYS-CON Media announced today that @WebRTCSummit Blog, the largest WebRTC resource in the world, has been launched. @WebRTCSummit Blog offers top articles, news stories, and blog posts from the world's well-known experts and guarantees better exposure for its authors than any other publication. @WebRTCSummit Blog can be bookmarked ▸ Here @WebRTCSummit conference site can be bookmarked ▸ Here Mar. 28, 2015 08:00 PM EDT Reads: 1,793 SYS-CON Events announced today that Cisco, the worldwide leader in IT that transforms how people connect, communicate and collaborate, has been named “Gold Sponsor” of SYS-CON's 16th International Cloud Expo®, which will take place on June 9-11, 2015, at the Javits Center in New York City, NY. Cisco makes amazing things happen by connecting the unconnected. Cisco has shaped the future of the Internet by becoming the worldwide leader in transforming how people connect, communicate and collaborate. Cisco and our partners are building the platform for the Internet of Everything by connecting the... Mar. 28, 2015 07:00 PM EDT Reads: 5,187 SYS-CON Events announced today that robomq.io will exhibit at SYS-CON's @ThingsExpo, which will take place on June 9-11, 2015, at the Javits Center in New York City, NY. robomq.io is an interoperable and composable platform that connects any device to any application. It helps systems integrators and the solution providers build new and innovative products and service for industries requiring monitoring or intelligence from devices and sensors. Mar. 28, 2015 06:00 PM EDT Reads: 1,461 Temasys has announced senior management additions to its team. Joining are David Holloway as Vice President of Commercial and Nadine Yap as Vice President of Product. Over the past 12 months Temasys has doubled in size as it adds new customers and expands the development of its Skylink platform. Skylink leads the charge to move WebRTC, traditionally seen as a desktop, browser based technology, to become a ubiquitous web communications technology on web and mobile, as well as Internet of Things compatible devices. Mar. 28, 2015 06:00 PM EDT Reads: 1,829 SYS-CON Events announced today that Akana, formerly SOA Software, has been named “Bronze Sponsor” of SYS-CON's 16th International Cloud Expo® New York, which will take place June 9-11, 2015, at the Javits Center in New York City, NY. Akana’s comprehensive suite of API Management, API Security, Integrated SOA Governance, and Cloud Integration solutions helps businesses accelerate digital transformation by securely extending their reach across multiple channels – mobile, cloud and Internet of Things. Akana enables enterprises to share data as APIs, connect and integrate applications, drive part... Mar. 28, 2015 04:15 PM EDT Reads: 1,539 Cloud is not a commodity. And no matter what you call it, computing doesn’t come out of the sky. It comes from physical hardware inside brick and mortar facilities connected by hundreds of miles of networking cable. And no two clouds are built the same way. SoftLayer gives you the highest performing cloud infrastructure available. One platform that takes data centers around the world that are full of the widest range of cloud computing options, and then integrates and automates everything. Join SoftLayer on June 9 at 16th Cloud Expo to learn about IBM Cloud's SoftLayer platform, explore se... Mar. 28, 2015 02:00 PM EDT Reads: 1,633
s3://commoncrawl/crawl-data/CC-MAIN-2015-14/segments/1427131298692.48/warc/CC-MAIN-20150323172138-00078-ip-10-168-14-71.ec2.internal.warc.gz
CC-MAIN-2015-14
18,791
80
https://ask.libreoffice.org/t/libreoffice-calc-data-sorting/8924
code
Version 18.104.22.168 - LibreOffice Calc I need to change a linear data set into a matrix spreadsheet. I have a raw data set for electrical load of certain off grid buildings. At the moment the first column has date and time from 00:00 - 23:45 for every day in this format (mm/dd/yyyy 00:00). In the neighboring right column there is the corresponding kW value for that time. There are several months of data that I must sort through. I would like to change the structure and create a matrix. I would like to have the dates as the columns, the time as the rows, and would like to fill the kW values correctly within matrix (corresponding to its correct date and time). I have months of this data and I would rather not enter it all in by hand. Does anyone have any suggestions or shortcuts? Thanks for any help
s3://commoncrawl/crawl-data/CC-MAIN-2022-05/segments/1642320301670.75/warc/CC-MAIN-20220120005715-20220120035715-00151.warc.gz
CC-MAIN-2022-05
810
6
https://crooksandliars.com/user/allison-hantschel
code
It will just get stuck in the corners. Next town hall...where is it? Can someone RF the process of asking canned questions and ask her to pledge to veto TPP. Yeah - I chuckled myself when I wrote that. In other words, what's new? Churchill to Lady Astor ?
s3://commoncrawl/crawl-data/CC-MAIN-2016-07/segments/1454701157472.18/warc/CC-MAIN-20160205193917-00122-ip-10-236-182-209.ec2.internal.warc.gz
CC-MAIN-2016-07
255
5
http://sharepoint.stackexchange.com/questions/tagged/assembly-references+2010
code
I'm having a problem while activating a feature. I have a custom dll that I referenced in this new project, and I'm trying to execute some code on the feature activation. The problem is that I get the ... in SharePoint 2010, I created a DLL that I deploy to the GAC. From this assembly, I try to save a file then access the file I just saved in a temporary location, such as C:\temp. Everytime I try to do ... We have a SharePoint 2010 solution developed in Visual Studio, which when deployed adds an assembly to the GAC (let's say MySolution.dll, version = 22.214.171.124). We make some changes and redeploy the ... I want to user Twitterizer for posting Status Updates through a WPF-Form. Since i need the Twitterizer2.dll to do this i first included it and then added it to the package using the advanced package ...
s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368699684236/warc/CC-MAIN-20130516102124-00097-ip-10-60-113-184.ec2.internal.warc.gz
CC-MAIN-2013-20
819
4
https://b.xuv.be/?do=daily
code
All links of one day in a single page. - Next day Daily RSS Feed The Daily Shaarli Friday 22, March 2019 Fri 22 Mar 2019 02:26:51 AM CET CLI - slowmotion - tools - video - GitHub - dthpham/butterflow: Make motion interpolated and fluid slow motion videos from the command line. This site runs on , the personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community. Proudly retro-themed with
s3://commoncrawl/crawl-data/CC-MAIN-2019-18/segments/1555578517558.8/warc/CC-MAIN-20190418101243-20190418123243-00219.warc.gz
CC-MAIN-2019-18
422
12
https://sourceforge.net/directory/language%3Acpp/license%3Aartistic/?sort=update&page=5
code
OSI-Approved Open Source (293) - GNU General Public License version 2.0 (78) - GNU Library or Lesser General Public License version 2.0 (27) - BSD License (14) - MIT License (12) - Apache License V2.0 (11) - Mozilla Public License 1.0 (4) - Academic Free License (3) - Common Public License 1.0 (3) - Apache Software License (2) - Artistic License 2.0 (2) - Attribution Assurance License (2) - Eclipse Public License (1) - GNU General Public License version 3.0 (1) - Mozilla Public License 1.1 (1) - NASA Open Source Agreement (1) - Other License (6) - Public Domain (6) - Windows (240) - Grouping and Descriptive Categories (220) - Linux (207) - Mac (131) - Modern (120) - BSD (85) - Android (57) - Other Operating Systems (34) - Audio & Video - Business & Enterprise - Home & Education - Science & Engineering - Security & Utilities - System Administration TM4 is a suite of applications for managing and analyzing microarray data. TM4 provides data storage and tracking, image analysis, normalization, data filtering, clustering and statistical analysis capabilities. Includes MADAM, Spotfinder, MIDAS, and MeV. Rechannel is a language extension for SystemC. Note that as of release 0.4.0 just the base programming language is provided: no support for programming with the application frameworks such as Series 60/80/UIQ is provided, and neither are phone APIs (IR/BT/SMS/...) supported. Volunteers welcome.3 weekly downloads This is a calculator that calculates information about your life using Numerology. It uses numbers based on the user's names and date of birth to apply Numerology and attempt to predict different things about the user's life. Rising Tide Online will begin as a 2d Fantasy/Sci-fi MMORPG. Later a patch will be released that transforms it into 3d. The game will have many jobs that you can progress through, a realtime battle system similar to that of Zelda games. A reference implementation of the SMPTE-standardised Media Dispatch Protocol (MDP: SMPTE 2032). This software allows large media files and their metadata to be exchanged by organisations. See http://en.wikipedia.org/wiki/Media_dispatch_protocol2 weekly downloads This project covers the tasks, bugs and documentation for the left 4 dead level project, Prison Break, in particular chapter 1, the school. A suite of tools for automatic or algorithmic synchronization of video and audio, both by generation of audio from video input, and video from audio input. Genomic assembly manipulation toolkit.2 weekly downloads A 3D RTS space combat simulator featuring: newtonian mechanics, SVAC script volume activation,and fine splines. Hypercontext is a software tool specifically designed to facilitate the creation of a contextual Tibetan-English dictionary. Hypercontext also aims to evolve into an application for browsing and searching this dictionary.1 weekly downloads Spotfinder is an image processing software tool for microarray image analisys. It is written on C++ with QT GUI toolkit and runs on Windows, X11, and Mac OSX.2 weekly downloads Simple Score is a student achievement measurement system that focuses on scoring rather than grading. The system identifies both strengths and weaknesses in student learning and helps to standardize tests within an educational system. RepublikA is a little software to help on closing the monthly expenses of a student republic. Basically, every resident student registers its home expenses in the system, and a report of total expenses can be made to all members to see. XML::Bare - Minimal Perl XML parser implemented via a C++ state engine1 weekly downloads Windows ext2/3 file system support, include view, create, copy, delete, rename operations. This project aims to provide appropriate alternatives from open-source programs to replace the programs closed. SQL Parser for VFP developers. Replaces VFP functions with customizable expressions.1 weekly downloads The Verilog-Perl distribution provides Perl preprocessing, parsing and utilities for the Verilog Language. It is also available from CPAN under the Verilog:: namespace. The TXDR is a customizable, C++ XML parser (reader) designed to ease XML data handling for users who primarily use XML as a data input language. An open source toolbox for protein-protein docking with internal backbone flexibility that can be executed on GPU cards, using PyMOL molecular viewer for user interface. Implemented in CUDA with the eventual transition into OpenCL. Old-looking game development initiative from www.gamescollection.it development team Need a software [k]? You can get it here! Note: We specialize in mac[k]s Falconer-Try Studios is developing this new gaming engine for 2D, 3D and soon VR environments. It will be best for RTS and FPS games. See the documentation for more data.1 weekly downloads This project is a fork of ftpfs and lufs for the e680i and similar motorola phones.1 weekly downloads
s3://commoncrawl/crawl-data/CC-MAIN-2016-30/segments/1469257823947.97/warc/CC-MAIN-20160723071023-00184-ip-10-185-27-174.ec2.internal.warc.gz
CC-MAIN-2016-30
4,899
57
http://www.guilbored.com/projects/
code
2012 – 2016 In my spare time, I have designed, developed, released and maintained the following apps in the Windows Phone store: When romance strikes, one has to be prepared to either leave their phones out of sight, or use them to enhance the mood. Push to Kindle This app allows to send web articles over wifi to your Kindle device, stripped of all the usual website clutter. Remember the novelty item dog which bobs its head in cars? Pick one of the cartoon creatures drawn by Lemmling and see its head bob along with your phone’s movements! The simplest sound board dedicated to bananas. Tapping the button spurts Bananas of random size and sound style, but this is a poor explanation. 2011 – 2014 As an Interaction Designer at Touchtech, I designed and implemented multi-touch user interfaces, mainly for horizontal (table) displays such as the Microsoft Pixelsense table, but also with conventional devices such as tablets and phones. Here are some sample projects I have worked on. Additional example: whack-it game at a fair. Upp Göteborg – Master’s Thesis 2010 – 2011 Installation of two large multi-touch screens in Upp Göteborg, for the benefit of young unemployed people. Three applications were developed for that public space, to support the creation of a community there. Project in close collaboration with Touchtech AB, for the degree of master in Interaction Design with Chalmers. An entertainment object which allows to analyse the user’s way of interacting. As a result of this analysis, a dynamically generated visualisation appears on a screen in the environment. The aim was to explore the differences between individuals, and embedding a representation of these differences in a home or corporate environment. Watch our classmate Erik Johansson play with the cube below! Installation which allows recording of recipes in an unobtrusive but efficient way. Two webcams were installed over the kitchen workspace, allowing to record easily steps in the cooking process by small videos, which were then sent automatically to a website. Réveil à claques An experiment of a physical way of waking up. Possibly not recommended for the old and the fragile… Public sculpture which dwelled in the Gothenburg canals for a week during the city festival “KulturKalas”, summer 2009. (2006 – ongoing) Instrumental solo project in my lost hours
s3://commoncrawl/crawl-data/CC-MAIN-2021-43/segments/1634323585737.45/warc/CC-MAIN-20211023162040-20211023192040-00132.warc.gz
CC-MAIN-2021-43
2,377
23
http://stackoverflow.com/questions/17200104/how-to-create-a-native-app-for-a-website-based-on-js-kendo-and-jquery
code
Okay, this may be kind of a loaded question. I am familiar with creating iOS apps. I've made a few native ones, but they were stand-alone projects. I used a backend like Parse.com for most of them. I now want to create an app for this website, native if possible. Can someone explain the process at a high level? I feel like since the website itself relies so heavily on JS and JQuery, it makes sense to make a web app, since making a native one seems like totally starting over. Is it not possible to just use the app as a kind of front-end for the already existing website? Or is that just basically a web app at that point? Basically I'd like to get the performance of native, as long as it doesn't mean re-writing everything.
s3://commoncrawl/crawl-data/CC-MAIN-2016-18/segments/1461860123023.37/warc/CC-MAIN-20160428161523-00031-ip-10-239-7-51.ec2.internal.warc.gz
CC-MAIN-2016-18
729
4
http://forums.support.roxio.com/topic/79872-mic-sound/?pid=398742
code
Posted 14 January 2012 - 08:34 PM Posted 15 January 2012 - 04:13 AM I been using this program for about a mouth now and its working fine for me. Just when I'm talking with my friends on Skype and rec a game and go back to edit it i can't hear my own voice. On the Wegame website someone as the same thing going on and they said to turn off team chat/skype etc. but i have tried doing this and it still doesn't work so i know its not skype doing this. Any help with this? See if this helps. http://rovicorp.forc...ng-Game-Capture Having Skype stopped not running in msconfig has worked for some. 0 user(s) are reading this topic 0 members, 0 guests, 0 anonymous users
s3://commoncrawl/crawl-data/CC-MAIN-2017-43/segments/1508187823168.74/warc/CC-MAIN-20171018233539-20171019013539-00253.warc.gz
CC-MAIN-2017-43
666
7
https://jobs.dou.ua/companies/infopulse/vacancies/162676/
code
* Knowledge of Node.js and related frameworks * Understanding of server-side programming * Experience with REST API * Experience with data bases: RDBMS, eNoSQL * Experience with Angular 2+ * Experience with RxJS * Experience with TypeScript * HTML5 & CSS. Infopulse Ukraine welcomes talented professionals to join our project as a Middle Full Stack developer (Node.js+Angular.js). We are looking for a talented, passionate, innovative, result-oriented professional to join our frontend team and develop enterprise web applications for our customers in Europe. * Participate in solution analysis, design and architecture * Develop new enterprise applications * Design and develop highly modular object-oriented code * Build quality code adhering to industry standard coding practices * Be part of a fast-paced continual learning environment which requires the ability to quickly adapt and learn new technologies to solve business issues. Dynamic and interesting projects based on modern technologies, professional development, the opportunity to join a friendly and self-motivated team.
s3://commoncrawl/crawl-data/CC-MAIN-2021-25/segments/1623487621627.41/warc/CC-MAIN-20210615211046-20210616001046-00194.warc.gz
CC-MAIN-2021-25
1,085
16
https://www.machinelearningfreaks.com/deep-learning-methods-for-drug-response-prediction-in-cancer-predominant-and-emerging-trends-arxiv2211-10442v1-q-bio-qm/
code
Cancer claims millions of lives yearly worldwide. While many therapies have been made available in recent years, by in large cancer remains unsolved. Exploiting computational predictive models to study and treat cancer holds great promise in improving drug development and personalized design of treatment plans, ultimately suppressing tumors, alleviating suffering, and prolonging lives of patients. A wave of recent papers demonstrates promising results in predicting cancer response to drug treatments while utilizing deep learning methods. These papers investigate diverse data representations, neural network architectures, learning methodologies, and evaluations schemes. However, deciphering promising predominant and emerging trends is difficult due to the variety of explored methods and lack of standardized framework for comparing drug response prediction models. To obtain a comprehensive landscape of deep learning methods, we conducted an extensive search and analysis of deep learning models that predict the response to single drug treatments. A total of 60 deep learning-based models have been curated and summary plots were generated. Based on the analysis, observable patterns and prevalence of methods have been revealed. This review allows to better understand the current state of the field and identify major challenges and promising solution paths.
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100258.29/warc/CC-MAIN-20231130225634-20231201015634-00031.warc.gz
CC-MAIN-2023-50
1,372
18
http://aaronmiler.com/blog/
code
Recently at I came across a problem where I needed to dynamically include a stylesheet, or scss snippet depending on what kind of content I was showing. My first inclination was to use something like this: # app/views/layouts.application.html.erb...<%= yield :head %># app/views/some_controller/some_view.html.erb<% content_for :head do %> <%=stylesheet_link_tag'/path_to/stylesheet.css'%><% end %> Last year I bought a full year calendar to hang on my wall. It was a pretty great way for me to get at a glance information for what I had going on. Unfortunately I couldn’t find the one I bought last year, so this year I’m going without one. I’ve started created a lot of my projects using the tools Thoughtbot puts out there. One of the tools I’ve recently started using is Broubon and Neat. Bourbon is a lightweight mixin library for Sass, and Neat is a grid framework. After pondering how to deal with conditional logic in Elasticsearch queries. I finally realized that the query DSL for Elasticsearch is just structured JSON. Which is why Ruby didn’t like when the syntax was messed up.
s3://commoncrawl/crawl-data/CC-MAIN-2019-18/segments/1555578613603.65/warc/CC-MAIN-20190423194825-20190423220825-00446.warc.gz
CC-MAIN-2019-18
1,100
7
https://www.audiotool.com/track/invasion_breaks_mix/
code
Invasion is a very special track to me. Mainly because it was my first. I had always been intending on making a Breakbeat version of the track, but it took me 2 years to actually do it. It was worth it. And it was all thanks to your support. I would not have been nearly as inspired to make these songs without the encouragement of my followers :) This mix stays very true to the original with very few differences to it. This was always my intention when making it. Enjoy the track! Which version do you like better? (Also, 50-track special because WHY NOT?)
s3://commoncrawl/crawl-data/CC-MAIN-2019-22/segments/1558232255943.0/warc/CC-MAIN-20190520101929-20190520123929-00477.warc.gz
CC-MAIN-2019-22
559
5
https://guneetsahai.com/2008/02/04/force-dot-com/
code
I recently got introduced to Force.com which is a platform from salesforce.com that allows a user to quickly build interesting & powerful data centric applications without having to write a single line of code. A week ago, I used to think of salesforce just as an online tool to manage sales data for an organization. I was very pleasantly surprised to find that their platform has now evolved much more than just being a CRM. They interestingly have a tutorial kind of a document that provides step by step instructions for building a hiring solution for a organization’s HR team. The example provides detailed instructions on how to go about it and exposes the reader (in steps) of the power of the underlying platform. I certainly think, I might be using this a lot for building applications quickly. For more details, just sign-up as a developer, get an account spend time on reading the documents along with trying out their stuff and you should be ready to do a lot of interesting apps on their platform with very minimal effort. The URL http://www.salesforce.com/developer/ would be a good starting point.
s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656104432674.76/warc/CC-MAIN-20220704141714-20220704171714-00029.warc.gz
CC-MAIN-2022-27
1,114
3
http://sosmath.com/CBB/viewtopic.php?f=5&t=55730
code
This is my first post and I was wondering whether any of you can help me out? Consider the n x k matrix X, and the projection matrix Px = X ((XTX)^1) XT where XT= is the X transpose and Px is a term on its own NOT P*x a) What are the dimensions of Px, (number of rows and columns)? b) Prove PxPx = Px. c) Does Py = Px if Y = XA, where A is an k x k nonsingular matrix? I was able to solve a) and b)...I think...dimensions of Px=nxn and Px=I (I still have some trouble with this) However I am having trouble solving c) Can anyone help? I'm having a bit of trouble reading what you typed, is this accurate: Why is there a to the 1 power in there? What are the lower-case x and y? How are they connected to big X and Y? Hi and thanks, the bracket is to the power of -1. and according to the question, Px is defined as the Projection matrix. Px is a term in itself, it is not P * x . As for relation between small x and y, I can't seem to figure out anything else past what the question mentions? do you think it's correct if I say if (XT,X)^-1 exists, then the product of X transpose times X has an existing inverse, hence det(XT*X) does not equal 0, and that also means det(XT) and det(X) do not equal zero so therefore XT and X are square matrices, are invertible and their dimensions nxk, is actually, nxk where n=k? is this correct?
s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368701638778/warc/CC-MAIN-20130516105358-00010-ip-10-60-113-184.ec2.internal.warc.gz
CC-MAIN-2013-20
1,333
20
https://nicklavalle.com/2018/03/08/fusion-360s-sculpting-tool/
code
So Fusion 360 is primarily focused around CAD done with measurement specific dimensions, designed for use cases such as running through a CNC mill. With that said, Fusion 360 does offer a sculpting work space for more organic modeling methods. You create forms, and can manipulate vertices/edges that will automatically apply smooth curves on the faces. I took this for a spin and tried to sculpt the form of a simple mouse. The symmetry is lacking here but overall good practice for me.
s3://commoncrawl/crawl-data/CC-MAIN-2023-23/segments/1685224654016.91/warc/CC-MAIN-20230607211505-20230608001505-00776.warc.gz
CC-MAIN-2023-23
487
1
http://www.mathworks.com/matlabcentral/fileexchange/40627-plot-antarctic-circumpolar-current-fronts/content/plot_ACC_fronts/plot_ACC_fronts.m
code
Plot Antarctic Circumpolar Current Fronts 04 Mar 2013 Plot the locations of the major fronts associated with the Antarctic Circumpolar Current. % Plot the meridional extent of fronts associated with the Antarctic % Circumpolar Current as described by Alex Orsi and others in their % landmark work, "On the meridional extent and fronts of the Antarctic % Circumpolar Current, Deep-Sea Res. I, 42, 641-673, 1995". % This script downloads data from the World Ocean Circulation Experiments % Southern Ocean Atlas, which can be found online at % Requirements: Matlab, Mapping Toolbox, an internet connection, and the % ncpolarm function found here: % Coded by Chad A. Greene, 2013. % See also plot_fronts, plot_pf, plot_saccf, plot_saf, plot_sbdy, plot_stf, % and ant_map. %% Download data from WOCE Southern Ocean Atlas: % This step requires an internet connection. %% Initialize Antarctica map, argument is northern latitude: % This step requires the ncpolarm function available on the Mathworks % File Exchange website. text(.5,.97,'Meridional extent & fronts of the ACC',... %% Plot data of interest: [sbdy_lat,sbdy_lon] = plot_sbdy; % arrays of front locations can be obtained like this.
s3://commoncrawl/crawl-data/CC-MAIN-2014-23/segments/1406510267729.10/warc/CC-MAIN-20140728011747-00060-ip-10-146-231-18.ec2.internal.warc.gz
CC-MAIN-2014-23
1,187
22
https://blog.adafruit.com/2018/04/30/is-pocketchip-gone-nextthingco-makerbusiness/
code
Is #PocketChip gone? @nextthingco #makerbusiness Spotted this in today’s The Prepared Newsletter “The company behind C.H.I.P., a linux based computer that crowdfunded for $9, appears to be insolvent.” Hackaday had a post in April and here is a post “Refund Experiment” on the CHIP nextthing.co forums. Additionally, there is a site called “http://www.ntcfailure.com/” This website will try to explain and cover the story of what happened with ‘Next Thing Co’ from when they started with the CHIP to when they went silent and left backers without refunds or a product. Join 5,000+ makers on Adafruit’s Discord channels and be part of the community! http://adafru.it/discord CircuitPython in 2018 – Python on Microcontrollers is here! Have an amazing project to share? Join the SHOW-AND-TELL every Wednesday night at 7:30pm ET on Google+ Hangouts. Join us every Wednesday night at 8pm ET for Ask an Engineer! Follow Adafruit on Instagram for top secret new products, behinds the scenes and more https://www.instagram.com/adafruit/ Maker Business — A journey through Shenzhen, the electronics manufacturing hub of the world Wearables — Ice, ice baby Electronics — Current limiting! Biohacking — Grindfest 2018 Python for Microcontrollers — CRICKITs are coming! Get the only spam-free daily newsletter about wearables, running a "maker business", electronic tips and more! Subscribe at AdafruitDaily.com Sorry, the comment form is closed at this time.
s3://commoncrawl/crawl-data/CC-MAIN-2018-22/segments/1526794872766.96/warc/CC-MAIN-20180528091637-20180528111637-00272.warc.gz
CC-MAIN-2018-22
1,479
16
https://bioinf.iiit.ac.in/AnkPred/Dataset.html
code
Dataset of Ankyrin repeat proteins Dataset of Known Ankyrin repeat proteins: AnkPred prediction is provided for 130 Ankyrin repeat proteins annotated in UniProt. Prediction by structure based method, Console, and sequence based method, RADAR is also provided and can be downloaded from the link below. Dataset of Previously Unrecognized Ankyrin proteins: 98,341 protein structures from Protein Data Bank (as of June 17, 2014) were analyzed using AnkPred and 641 previously unrecognized Ankyrin repeat proteins identified. This dataset can be downloaded from the link below. Contact: Broto Chakrabarty and Dr. Nita Parekh, Centre for Computational Natural Sciences and Bioinformatics, International Institute of Information Technology-Hyderabad email: [email protected], [email protected]
s3://commoncrawl/crawl-data/CC-MAIN-2022-21/segments/1652662584398.89/warc/CC-MAIN-20220525085552-20220525115552-00525.warc.gz
CC-MAIN-2022-21
800
8
http://www.acustica-audio.com/phpBB3/viewtopic.php?f=11&t=1651
code
I'm a PT 8 HD mac-based Nebula 3 pro user. I'm thrilled with the results I get from Alex B's consoles and the R2R library...however, I'm also spending a LOT of time restarting my computer as I work with Nebula. I haven't been able to distinguish a clear pattern to the DAW crashes, but usually it happens after I open an instance of Nebula and attempt to load a program (R2R, console, etc). Typically, a crash consists of the computer pausing momentarily, then completely shutting Pro Tools down (frequently this forces me to restart the computer entirely). If I have multiple instances of Nebula open, the frequency of crashing increases. The specs on my computer: 8 core, dual 2.26 ghz, 6 GB ram, OSX Currently, the crashes are so bad that I'm forced to go track by track through a session, bouncing one track at a time through nebula (and limiting myself to three instances on the track). This is a very slow way to work. Plus, I still get crashes about 40% of the time I try to change Nebula programs. I've had up to 6 or 7 instances of Nebula open at once (which uses about 40-50% of the CPU meter in Pro Tools). When I just have one or two instance of Nebula open, it only uses 5-7% of CPU processing. Would adding RAM to my system make Nebula more stable on my system? I'm willing to spend the money if it will help, but if it won't, I'd rather use my resources elsewhere. I'm running two instances of Nebula on an electric guitar track. signal chain looks like this: Nebula R2R --> Nebula AlexB console That is all. I should also note that I went back and checked, and it looks like these two instance of Nebula are taking my CPU to 13%-18% (not the original 5-10% I quoted). I am not using any programs twice at the same time. It's about a 50% chance that my DAW crashes when I try to select a different program in either of these Nebula instances. The crashing happens when I try to change programs by clicking on the program name in the menu. For example, when I click on "Init" in the program window, either: 1) the browser opens and I am fine to select the program of my choice or 2) the computer pauses for a moment without opening the browser and then crashes the DAW. I'm using the FXpansion VST-RTAS wrapper (which hasn't been a problem for any of my other plugins).
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917126538.54/warc/CC-MAIN-20170423031206-00318-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
2,283
11
http://qs321.pair.com/~monkads/?node_id=272227
code
|Syntactic Confectionery Delight| Re: Re: Objects with Private Variablesby Excalibor (Pilgrim) |on Jul 08, 2003 at 09:27 UTC||Need Help??| Indeed. One way to avoid this is to make the methods available for just the attributes we have: This will make it enough. We make a lexical of the attributes we need, then wrap it inside the constructor (the closure) so it's remembered when it goes out of scope. We also create setters/getters on the flight, a beautiful ability if not abused. We also make a nifty trick I learned from Master Damian Conway, by making it lexical, the rest of the class methods (salute(), but actually all of them defined outside the constructor) must use the setter/getters (or the interface) defined inside the lexical scope. Effectively, there's no way for salute() to access the state of the object but by asking it through the methods available. Let's put this to work: The output from this is, as expected: The initialization and setters worked OK, and then salute() worked as expected. When we tried to trick the object with another method, by adding to the supposed table of methods, it didn't work, because we explicitely know which attributes we manage (in the normal approach, you can never know). This approach makes lifes easier to maintain (just add a new attribute to the array!) and allows us to be very paranoid about access... and by being a lexical, only the code inside the scope of @attributes can change it, but it never does, and so you cannot trick the object. Of course, there's always a way, you can work on perl guts and add a new attribute to the *attributes table, maybe. Anyway the example was a nice one, point well taken.
s3://commoncrawl/crawl-data/CC-MAIN-2021-10/segments/1614178351374.10/warc/CC-MAIN-20210225153633-20210225183633-00165.warc.gz
CC-MAIN-2021-10
1,674
10
http://fmbv.nu/?page=3
code
I was so poor growing up. If I wasn't born a boy, I'd have nothing to play with. We were born naked, wet and hungry. Then things got worse. Women like silent men, they think they're listening. If winning isn't everything why do they keep score? A little boy asked his father, "Daddy, how much does it cost to get married?" Father replied, "I don't know son, I'm still paying." If you must choose between two evils, pick the one you've never tried before.
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917127681.84/warc/CC-MAIN-20170423031207-00547-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
454
6
https://www.gospotcheck.com/product/no-code-platform
code
At GoSpotCheck, we believe that software should work the way you do. We also believe that the people who sit closest to the problems are the best ones to solve them --and those people shouldn’t need a background in software development to create solutions that make a difference for their teams. That’s why we’ve built GoSpotCheck to be highly configurable and accessible for everyone. No code is required to design and deploy effective tasks and workflows to distributed teams. Whether you’re in sales, operations, marketing, human resources or IT, you already have the skills you need to build, deploy and report on tasks that guide your team to do the work that creates value for your business, and improve operational efficiency in the process. No-Code Mission Builder 12 Pre-Built Task Types Out-of-the-Box Data Visualizations iOS - Phones + Tablets Android - Phones + Tablets Currently not supported on Windows 10 Additionally, missions can be written in any language GoSpotCheck customers build powerful workflows in our no-code platform, quickly and easily design business processes, and guide teams successfully to completion with no programming skills required.
s3://commoncrawl/crawl-data/CC-MAIN-2023-40/segments/1695233508977.50/warc/CC-MAIN-20230925115505-20230925145505-00796.warc.gz
CC-MAIN-2023-40
1,179
10
https://bugzilla.mozilla.org/show_bug.cgi?id=837340
code
I'm pretty sure we filed this in github (wow flashback), but nothing ever came of it. We should commit a prebuilt xulrunner to help developers hacking on the project. This centralizes more of the necessary downloads and makes it easier to tag all the required bits (one less server to fail in the future). That's going to add at least ~400MB to the git repository each time we update the linux xulrunner-sdk and that's only if we keep it compressed. Because the tarballs on linux are generated with duplicate libxul.so files instead of links, the uncompressed size of Xulrunner is 1.1GB for linux. Storing uncompressed would be better for the git packing system, but with a higher initial cost. I can take this bug, but because we won't be able to easily remove it once it's pushed, we should be 100% certain that we want to add hundreds of MB to the repository over time. We can create new repos for version bumps, xulrunner-18, xulrunner-21, etc. Existing manifests will continue to work. That's a bit more painful for downstream but maybe worth it. Thoughts? We already maintain an internal xulrunner .git around here. It's 561MB at the moment (just the .git/) |git log| says that we haven't picked up a new version of xulrunner since Oct 22, 2012. We had 10 updates to xulrunner since this system was put into place in July. FYI, bug 812105 shrunk the linux xulrunner tarballs down by about a factor of 10. Firefox OS is not being worked on Status: NEW → RESOLVED Last Resolved: 2 months ago Resolution: --- → WONTFIX You need to log in before you can comment on or make changes to this bug.
s3://commoncrawl/crawl-data/CC-MAIN-2018-17/segments/1524125946165.56/warc/CC-MAIN-20180423184427-20180423204427-00264.warc.gz
CC-MAIN-2018-17
1,599
10
https://www.sitepoint.com/community/t/testing-a-form-script-using-a-local-install-of-perl/44741
code
I have a form that the fields are parsed and emailed via a perl script. I don’t have access to the remote server all the time, so I can’t test changes to my perl script easily. I have perl installed locally on my win7 PC and would like to know how to use it to test my form script using it. Thanks! You can use the command line interface of Windows and a command perl -d script.pl “field1=abc&field2=def” where script.pl is the name of your perl script and “field1=abc&field2=def” are the field names and their values. The -d means start the debugger
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100112.41/warc/CC-MAIN-20231129141108-20231129171108-00248.warc.gz
CC-MAIN-2023-50
562
5
https://stackoverflow.com/questions/30913145/what-is-the-difference-between-cabal-and-stack/42601219
code
Yesterday I learnt about a new Haskell tool called Stack. At the first blush, it looks like it does much the same job as Cabal. So, what is the difference between them? Is stack a replacement for Cabal? In which cases should I use Stack instead of Cabal? What can Stack do that Cabal can't? Is stack a replacement for Cabal? Yes and No. In which cases should I use Stack instead of Cabal? What can Stack do that Cabal can't? Stack uses the curated stackage packages by default. That being so, any dependencies are known to build together, avoiding version conflict problems (which, back when they were commonplace in the Haskell experience, used to be known as "cabal hell"). Recent versions of Cabal also have measures in place to prevent conflict. Still, setting up a reproducible build configuration in which you know exactly what will be pulled from the repositories is more straightforward with Stack. Note that there is also provision for using non stackage packages, so you are good to go even if a package isn't present in the stackage snapshot. Personally, I like Stack and would recommend every Haskell developers to use it. Their development is fast. And it has a much better UX. And there are things which Stack does which Cabal yet doesn't provide: - Stack even downloads GHC for you and keeps it in an isolated location. - Docker support (which is very convenient for deploying your Haskell applications) - Reproducible Haskell script: You can pinpoint version of a package and can get guarantee that it will always execute without any problem. (Cabal also has a script feature, but fully ensuring reproducibility with it is not quite as straightforward.) - Ability to do stack build --fast --file-watch. This will automatically rebuild if you change the local files present. Using it along with --pedanticoption is a deal-breaker for me. - Stack supports creating projects using templates. It also supports your own custom templates. - Stack has built-in hpack support in it. It provides an alternative (IMO, a better) way of writing cabal files using yaml file which is more widely used in the industry. - Intero has a smooth experience when working with Stack. There is a nice blog post explaining the difference: Why is Stack not Cabal? While Cabal has, in the intervening years since that post, evolved so as to overcome some of the issues discussed there, the discussion of the design goals and philosophy behind Stack remains relevant. In what follows, I will refer to the two tools being compared as cabal-install and stack. In particular, I will use cabal-install to avoid confusion with the Cabal library, which is common infrastructure used by both tools. Broadly speaking, we can say cabal-install and stack are frontends to Cabal. Both tools make it possible to build Haskell projects whose sets of dependencies might conflict with each other within the confines of a single system. The key difference between them lies in how they address this goal: By default, cabal-install will, when asked to build a project, look at the dependencies specified in its .cabalfile and use a dependency solver to figure out a set of packages and package versions that satisfy it. This set is drawn from Hackage as a whole -- all packages and all versions, past and present. Once a feasible build plan is found, the chosen version of the dependencies will be installed and indexed in a database somewhere in ~/.cabal. Version conflicts between dependencies are avoided by indexing the installed packages according to their versions (as well as other relevant configuration options), so that different projects can retrieve the dependency versions they need without stepping on each other's toes. This arrangement is what the cabal-install documentation means by "Nix-style local builds". When asked to build a project, stack will, rather than going to Hackage, look at the stack.yaml. In the default workflow, that field specifies a Stackage snapshot, which is a subset of Hackage packages with fixed versions that are known to be mutually compatible. stack will then attempt to satisfy the dependencies specified in the .cabalfile (or possibly the project.yamlfile -- different format, same role) using only what is provided by the snapshot. Packages installed from each snapshot are registered in separate databases, which do not interfere with each other. We might say that the stack approach trades some setup flexibility for straightforwardness when it comes to specifying a build configuration. In particular, if you know that your project uses, say, the LTS 15.3 snapshot, you can go to its Stackage page and know, at a glance, the versions of any dependency stack might pull from Stackage. That said, both tools offer features that go beyond the basic workflows so that, by and large, each can do all that the other does (albeit possibly in a less convenient manner). For instance, there are ways to freeze exact versions of a known good build configuration and to solve dependencies with an old state of Hackage with cabal-install, and it is possible to require non-Stackage dependencies or override snapshot package versions while using stack. Lastly, another difference between cabal-install and stack which is big enough to be worth mentioning in this overview is that stack aims at providing a complete build environment, with features such as automatic GHC installation management and Docker integration. In contrast, cabal-install is meant to be orthogonal to other parts of the ecosystem, and so it doesn't attempt to provide this sort of feature (in particular, GHC versions have to be installed and managed separately, be it through Linux distro packages, the Haskell Platform Core in Windows, or the ghcup tool). From what I can glean from the FAQ, it seems that Stack uses the Cabal library, but not the cabal.exe binary (more correctly known as cabal-install). It looks like the aim of the project is automatic sandboxing and avoidance of dependency hell. In other words, it uses the same Cabal package structure, it just provides a different front-end for managing this stuff. (I think!)
s3://commoncrawl/crawl-data/CC-MAIN-2020-29/segments/1593655896374.33/warc/CC-MAIN-20200708031342-20200708061342-00284.warc.gz
CC-MAIN-2020-29
6,120
30
https://www.cnet.com/forums/discussions/boot-failure-how-to-fix-plz-help-asap/
code
1. Unplug, remove the Kali Linux install DVD or stick and retry. 2. Restore your HDD from your last backup. Only the very new don't backup prior to a major change like this. In which case you boot your W8.1 media and try Microsoft's automatic repairs (rarely works) and if no backups you decide what to do next such as pop in a new HDD to install W8.1 then add the old drive to get access to your files in hopes the OS install didn't wipe them out. So I tried to install Kali Linux on a system on which already windows 8.1 was installed after it got installed it asked to reboot and from then And something like media failure please help
s3://commoncrawl/crawl-data/CC-MAIN-2019-22/segments/1558232256163.40/warc/CC-MAIN-20190520222102-20190521004102-00006.warc.gz
CC-MAIN-2019-22
637
4